From a42ebe84c39e69dd9ecf23f7f7d1d0612e316447 Mon Sep 17 00:00:00 2001 From: syedaliObjects Date: Thu, 14 Nov 2024 18:09:18 +0500 Subject: [PATCH] Update WP 6.7 --- .tx/config | 9 - admin/admin.php | 81 +- freemius/assets/css/admin/account.css | 2 +- freemius/assets/css/admin/checkout.css | 2 +- freemius/assets/css/admin/common.css | 2 +- freemius/assets/css/admin/dialog-boxes.css | 2 +- freemius/assets/js/jquery.form.js | 1 + .../14fb1bd5b7c41648488b06147f50a0dc.svg | 227 ++++++ .../178afa6030e76635dbe835e111d2c507.png | Bin 0 -> 6020 bytes .../27b5a722a5553d9de0170325267fccec.png | Bin 0 -> 6501 bytes .../4375c4a3ddc6f637c2ab9a2d7220f91e.png | Bin 0 -> 9380 bytes .../4529cac82a2d1f300d3c4702b7b5e8f3.svg | 227 ++++++ .../5480ed23b199531a8cbc05924f26952b.png | Bin 0 -> 7262 bytes .../b4f3b958f4a019862d81b15f3f8eee3a.svg | 402 ++++++++++ .../c03f665db27af43971565560adfba594.png | Bin 0 -> 6208 bytes .../cb5fc4f6ec7ada72e986f6e7dde365bf.png | Bin 0 -> 23473 bytes .../dd89563360f0272635c8f0ab7d7f1402.png | Bin 0 -> 12087 bytes .../e366d70661d8ad2493bd6afbd779f125.png | Bin 0 -> 11124 bytes .../f18006f6535a1a6e9c6bfbffafe6f18a.svg | 227 ++++++ .../f3aac72a8e63997d6bb888f816457e9b.png | Bin 0 -> 6040 bytes .../f928f1be99776af83e8e6be4baf8ffe7.svg | 227 ++++++ .../fde48e4609a6ddc11d639fc2421f2afd.png | Bin 0 -> 11237 bytes .../assets/js/pricing/freemius-pricing.js | 2 + .../pricing/freemius-pricing.js.LICENSE.txt | 45 ++ freemius/includes/class-freemius.php | 726 ++++++------------ freemius/includes/class-fs-api.php | 4 +- freemius/includes/class-fs-logger.php | 17 +- freemius/includes/class-fs-plugin-updater.php | 57 +- freemius/includes/class-fs-security.php | 18 + freemius/includes/class-fs-storage.php | 1 + .../entities/class-fs-plugin-plan.php | 8 + freemius/includes/entities/class-fs-site.php | 5 +- .../managers/class-fs-checkout-manager.php | 242 ++++++ .../managers/class-fs-clone-manager.php | 2 +- .../class-fs-contact-form-manager.php | 84 ++ .../managers/class-fs-debug-manager.php | 508 ++++++++++++ freemius/languages/freemius-de_DE.mo | Bin 69290 -> 69310 bytes freemius/languages/freemius.pot | 663 ++++++++-------- freemius/require.php | 3 + freemius/start.php | 2 +- freemius/templates/account.php | 11 +- freemius/templates/add-ons.php | 9 - freemius/templates/checkout.php | 337 +------- freemius/templates/checkout/frame.php | 182 +++++ .../templates/checkout/process-redirect.php | 105 +++ freemius/templates/checkout/redirect.php | 102 +++ freemius/templates/connect.php | 1 - freemius/templates/contact.php | 42 +- freemius/templates/debug.php | 65 +- freemius/templates/forms/affiliation.php | 8 - freemius/templates/pricing.php | 110 +-- password-protected.php | 72 +- readme.txt | 77 +- theme/password-protected-login.php | 25 +- 54 files changed, 3532 insertions(+), 1410 deletions(-) delete mode 100644 .tx/config create mode 100644 freemius/assets/js/jquery.form.js create mode 100644 freemius/assets/js/pricing/14fb1bd5b7c41648488b06147f50a0dc.svg create mode 100644 freemius/assets/js/pricing/178afa6030e76635dbe835e111d2c507.png create mode 100644 freemius/assets/js/pricing/27b5a722a5553d9de0170325267fccec.png create mode 100644 freemius/assets/js/pricing/4375c4a3ddc6f637c2ab9a2d7220f91e.png create mode 100644 freemius/assets/js/pricing/4529cac82a2d1f300d3c4702b7b5e8f3.svg create mode 100644 freemius/assets/js/pricing/5480ed23b199531a8cbc05924f26952b.png create mode 100644 freemius/assets/js/pricing/b4f3b958f4a019862d81b15f3f8eee3a.svg create mode 100644 freemius/assets/js/pricing/c03f665db27af43971565560adfba594.png create mode 100644 freemius/assets/js/pricing/cb5fc4f6ec7ada72e986f6e7dde365bf.png create mode 100644 freemius/assets/js/pricing/dd89563360f0272635c8f0ab7d7f1402.png create mode 100644 freemius/assets/js/pricing/e366d70661d8ad2493bd6afbd779f125.png create mode 100644 freemius/assets/js/pricing/f18006f6535a1a6e9c6bfbffafe6f18a.svg create mode 100644 freemius/assets/js/pricing/f3aac72a8e63997d6bb888f816457e9b.png create mode 100644 freemius/assets/js/pricing/f928f1be99776af83e8e6be4baf8ffe7.svg create mode 100644 freemius/assets/js/pricing/fde48e4609a6ddc11d639fc2421f2afd.png create mode 100644 freemius/assets/js/pricing/freemius-pricing.js create mode 100644 freemius/assets/js/pricing/freemius-pricing.js.LICENSE.txt create mode 100644 freemius/includes/managers/class-fs-checkout-manager.php create mode 100644 freemius/includes/managers/class-fs-contact-form-manager.php create mode 100644 freemius/includes/managers/class-fs-debug-manager.php create mode 100644 freemius/templates/checkout/frame.php create mode 100644 freemius/templates/checkout/process-redirect.php create mode 100644 freemius/templates/checkout/redirect.php diff --git a/.tx/config b/.tx/config deleted file mode 100644 index e18b466..0000000 --- a/.tx/config +++ /dev/null @@ -1,9 +0,0 @@ -[main] -host = https://www.transifex.com - -[password-protected.password-protected] -file_filter = languages/password-protected-.po -source_file = languages/password-protected.pot -source_lang = en_US -type = PO -minimum_perc = 20 \ No newline at end of file diff --git a/admin/admin.php b/admin/admin.php index 1453801..c528bb3 100644 --- a/admin/admin.php +++ b/admin/admin.php @@ -23,7 +23,24 @@ public function __construct() { add_filter( 'pre_update_option_password_protected_password', array( $this, 'pre_update_option_password_protected_password' ), 10, 2 ); add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) ); add_action( 'init', array( $this, 'init' ) ); + + add_action( 'password_protected_subtab_cache-issue_content', array( $this, 'cache_related_issue' ) ); + add_action( 'admin_footer', array( $this, 'add_script_in_footer' ), 9999 ); } + + public function add_script_in_footer() { + ?> + + 'advanced', 'icon' => 'dashicons-admin-settings', 'sub-tabs' => array( + 'cache-issue' => array( + 'title' => __( 'Cache Issue', 'password-protected' ), + 'slug' => 'cache-issue', + ), + 'exclude-from-protection' => array( 'title' => __( 'Exclude From Protection', 'password-protected' ), 'slug' => 'exclude-from-protection', @@ -241,8 +263,8 @@ public function admin_menu() { if ( ! class_exists( 'Password_Protected_Pro' ) ) { add_submenu_page( 'password-protected', - __( 'Get Pro', 'password-protected' ), - __( '↳ ⭐ Get Pro', 'password-protected' ), + __( 'Get Pro Now', 'password-protected' ), + __( '⭐ Get Pro Now', 'password-protected' ), 'manage_options', 'password-protected-get-pro', array( $this, 'password_protected_get_pro_features' ) @@ -530,17 +552,24 @@ public function password_protected_settings() { 'password-protected&tab=advanced&sub-tab=password-protected-page-description', 'password-protected-advanced-tab' ); + + add_settings_section( + 'password-protected-advanced-tab-cache-issue', + 'Cache Issue', + '__return_null', + 'password-protected&tab=advanced&sub-tab=cache-issue' + ); - /*add_settings_field( - 'password-protected-use-transient', - __( 'Use Transients', 'password-protected' ), + add_settings_field( + 'password-protected-advance-cache', + __( 'Advance Cache Fix', 'password-protected' ), array( $this, 'password_protected_use_transient' ), - 'password-protected&tab=advanced', - 'password-protected-advanced-tab', + 'password-protected&tab=advanced&sub-tab=cache-issue', + 'password-protected-advanced-tab-cache-issue', array( 'label_for' => 'password-protected-use-transient', ) - );*/ + ); // password protected help tab add_settings_section( @@ -581,6 +610,8 @@ public function password_protected_settings() { register_setting( $this->options_group.'-advanced', 'password_protected_text_above_password', array( 'type' => 'string' ) ); register_setting( $this->options_group.'-advanced', 'password_protected_text_below_password', array( 'type' => 'string' ) ); + + register_setting( 'password_protected_cache_issue', 'password_protected_use_transient' ); } /** @@ -621,6 +652,7 @@ public function sanitize_password_protected_password( $val ) { * @return string Sanitized IP addresses. */ public function sanitize_ip_addresses( $val ) { + $un_sanitized_value = $val; $ip_addresses = explode( "\n", $val ); $ip_addresses = array_map( 'sanitize_text_field', $ip_addresses ); @@ -630,7 +662,7 @@ public function sanitize_ip_addresses( $val ) { $val = implode( "\n", $ip_addresses ); - return $val; + return apply_filters( 'password_protected__sanitize_ip_addresses', $val, $un_sanitized_value ); } @@ -778,9 +810,26 @@ public function password_protected_text_below_password() { } public function password_protected_use_transient() { - $use_transient = get_option( 'password_protected_use_transient', false ); - $checked = empty( $use_transient ) ? '' : 'checked="checked"'; - echo ' ' . esc_attr__( 'This option will save your passwords in transients for your IP instead of cookies. Only use it if you face any cache-related issues on your site.', 'password-protected' ) . ''; + $use_transient = get_option( 'password_protected_use_transient', 'default' ); + + $cache_issue = array( + array( + 'name' => 'default', + 'title' => __( 'Use default settings', 'password-protected' ), + ), + array( + 'name' => 'transient', + 'title' => __( 'Use Transient', 'password-protected' ), + ), + ); + + foreach ( $cache_issue as $issue ) { + echo '

+ +

'; + } } /** @@ -1567,5 +1616,13 @@ public function dummy_content( $k ) { echo ' '; } + + public function cache_related_issue() { + echo '
'; + do_settings_sections( 'password-protected&tab=advanced&sub-tab=cache-issue' ); + settings_fields( 'password_protected_cache_issue' ); + submit_button(); + echo '
'; + } } diff --git a/freemius/assets/css/admin/account.css b/freemius/assets/css/admin/account.css index c9f5abd..6e0feb4 100644 --- a/freemius/assets/css/admin/account.css +++ b/freemius/assets/css/admin/account.css @@ -1 +1 @@ -label.fs-tag,span.fs-tag{background:#ffba00;border-radius:3px;color:#fff;display:inline-block;font-size:11px;line-height:11px;padding:5px;vertical-align:baseline}label.fs-tag.fs-warn,span.fs-tag.fs-warn{background:#ffba00}label.fs-tag.fs-info,span.fs-tag.fs-info{background:#00a0d2}label.fs-tag.fs-success,span.fs-tag.fs-success{background:#46b450}label.fs-tag.fs-error,span.fs-tag.fs-error{background:#dc3232}.fs-notice[data-id=license_not_whitelabeled].success,.fs-notice[data-id=license_whitelabeled].success{border-left-color:#00a0d2;color:inherit}.fs-notice[data-id=license_not_whitelabeled].success label.fs-plugin-title,.fs-notice[data-id=license_whitelabeled].success label.fs-plugin-title{display:none}#fs_account .postbox,#fs_account .widefat{max-width:800px}#fs_account h3{border-bottom:1px solid #f1f1f1;font-size:1.3em;line-height:1.4;margin:0 0 12px;padding:12px 15px}#fs_account h3 .dashicons{font-size:1.3em;height:26px;width:26px}#fs_account i.dashicons{font-size:1.2em;height:1.2em;width:1.2em}#fs_account .dashicons{vertical-align:middle}#fs_account .fs-header-actions{font-size:.9em;position:absolute;right:15px;top:17px}#fs_account .fs-header-actions ul{margin:0}#fs_account .fs-header-actions li{float:left}#fs_account .fs-header-actions li form{display:inline-block}#fs_account .fs-header-actions li a{text-decoration:none}#fs_account_details .button-group{float:right}.rtl #fs_account .fs-header-actions{left:15px;right:auto}.fs-key-value-table{width:100%}.fs-key-value-table form{display:inline-block}.fs-key-value-table tr td:first-child{text-align:right}.fs-key-value-table tr td:first-child nobr{font-weight:700}.fs-key-value-table tr td:first-child form{display:block}.fs-key-value-table tr td.fs-right{text-align:right}.fs-key-value-table tr.fs-odd{background:#ebebeb}.fs-key-value-table td,.fs-key-value-table th{padding:10px}.fs-key-value-table code{line-height:28px}.fs-key-value-table code,.fs-key-value-table input[type=text],.fs-key-value-table var{background:none;color:#0073aa;font-size:16px}.fs-key-value-table input[type=text]{font-weight:700;width:100%}.fs-field-beta_program label{margin-left:7px}label.fs-tag{border-radius:3px;color:#fff;display:inline-block;font-size:11px;line-height:11px;padding:5px;vertical-align:baseline}label.fs-tag,label.fs-tag.fs-warn{background:#ffba00}label.fs-tag.fs-success{background:#46b450}label.fs-tag.fs-error{background:#dc3232}#fs_sites .fs-scrollable-table .fs-table-body{border:1px solid #e5e5e5;max-height:200px;overflow:auto}#fs_sites .fs-scrollable-table .fs-table-body>table.widefat{border:none!important}#fs_sites .fs-scrollable-table .fs-main-column{width:100%}#fs_sites .fs-scrollable-table .fs-site-details td:first-of-type{color:gray;text-align:right;width:1px}#fs_sites .fs-scrollable-table .fs-site-details td:last-of-type{text-align:right}#fs_sites .fs-scrollable-table .fs-install-details table tr td{white-space:nowrap;width:1px}#fs_sites .fs-scrollable-table .fs-install-details table tr td:last-of-type{width:auto}#fs_addons h3{border:none;margin-bottom:0;padding:4px 5px}#fs_addons td{vertical-align:middle}#fs_addons thead{white-space:nowrap}#fs_addons td:first-child,#fs_addons th:first-child{font-weight:700;text-align:left}#fs_addons td:last-child,#fs_addons th:last-child{text-align:right}#fs_addons th{font-weight:700}#fs_billing_address{width:100%}#fs_billing_address tr td{padding:5px;width:50%}#fs_billing_address tr:first-of-type td{padding-top:0}#fs_billing_address span{font-weight:700}#fs_billing_address input,#fs_billing_address select{display:block;margin-top:5px;width:100%}#fs_billing_address input::-moz-placeholder,#fs_billing_address select::-moz-placeholder{color:transparent;opacity:1}#fs_billing_address input:-ms-input-placeholder,#fs_billing_address select:-ms-input-placeholder{color:transparent}#fs_billing_address input::-webkit-input-placeholder,#fs_billing_address select::-webkit-input-placeholder{color:transparent}#fs_billing_address input.fs-read-mode,#fs_billing_address select.fs-read-mode{background:none;border-color:transparent;border-bottom:1px dashed #ccc;color:#777;padding-left:0}#fs_billing_address.fs-read-mode td span{display:none}#fs_billing_address.fs-read-mode input,#fs_billing_address.fs-read-mode select{background:none;border-color:transparent;border-bottom:1px dashed #ccc;color:#777;padding-left:0}#fs_billing_address.fs-read-mode input::-moz-placeholder,#fs_billing_address.fs-read-mode select::-moz-placeholder{color:#ccc;opacity:1}#fs_billing_address.fs-read-mode input:-ms-input-placeholder,#fs_billing_address.fs-read-mode select:-ms-input-placeholder{color:#ccc}#fs_billing_address.fs-read-mode input::-webkit-input-placeholder,#fs_billing_address.fs-read-mode select::-webkit-input-placeholder{color:#ccc}#fs_billing_address button{display:block;width:100%}@media screen and (max-width:639px){#fs_account .fs-header-actions{margin:0 0 12px;padding:0 15px 12px;position:static}#fs_account .fs-header-actions li{display:inline-block;float:none}#fs_account #fs_account_details,#fs_account #fs_account_details tbody,#fs_account #fs_account_details td,#fs_account #fs_account_details th,#fs_account #fs_account_details tr{display:block}#fs_account #fs_account_details tr td:first-child{text-align:left}#fs_account #fs_account_details tr td:nth-child(2){padding:0 12px}#fs_account #fs_account_details tr td:nth-child(2) code{margin:0;padding:0}#fs_account #fs_account_details tr td:nth-child(2) label{margin-left:0}#fs_account #fs_account_details tr td:nth-child(3){text-align:left}#fs_account #fs_account_details tr.fs-field-plan td:nth-child(2) .button-group{float:none;margin:12px 0}} \ No newline at end of file +label.fs-tag,span.fs-tag{background:#ffba00;border-radius:3px;color:#fff;display:inline-block;font-size:11px;line-height:11px;padding:5px;vertical-align:baseline}label.fs-tag.fs-warn,span.fs-tag.fs-warn{background:#ffba00}label.fs-tag.fs-info,span.fs-tag.fs-info{background:#00a0d2}label.fs-tag.fs-success,span.fs-tag.fs-success{background:#46b450}label.fs-tag.fs-error,span.fs-tag.fs-error{background:#dc3232}.fs-notice[data-id=license_not_whitelabeled].success,.fs-notice[data-id=license_whitelabeled].success{border-left-color:#00a0d2;color:inherit}.fs-notice[data-id=license_not_whitelabeled].success label.fs-plugin-title,.fs-notice[data-id=license_whitelabeled].success label.fs-plugin-title{display:none}#fs_account .postbox,#fs_account .widefat{max-width:800px}#fs_account h3{border-bottom:1px solid #f1f1f1;font-size:1.3em;line-height:1.4;margin:0 0 12px;padding:12px 15px}#fs_account h3 .dashicons{font-size:1.3em;height:26px;width:26px}#fs_account i.dashicons{font-size:1.2em;height:1.2em;width:1.2em}#fs_account .dashicons{vertical-align:middle}#fs_account .fs-header-actions{font-size:.9em;position:absolute;right:15px;top:17px}#fs_account .fs-header-actions ul{margin:0}#fs_account .fs-header-actions li{float:left}#fs_account .fs-header-actions li form{display:inline-block}#fs_account .fs-header-actions li a{text-decoration:none}#fs_account_details .button-group{float:right}.rtl #fs_account .fs-header-actions{left:15px;right:auto}.fs-key-value-table{width:100%}.fs-key-value-table form{display:inline-block}.fs-key-value-table tr td:first-child{text-align:right}.fs-key-value-table tr td:first-child nobr{font-weight:700}.fs-key-value-table tr td:first-child form{display:block}.fs-key-value-table tr td.fs-right{text-align:right}.fs-key-value-table tr.fs-odd{background:#ebebeb}.fs-key-value-table td,.fs-key-value-table th{padding:10px}.fs-key-value-table code{line-height:28px}.fs-key-value-table code,.fs-key-value-table input[type=text],.fs-key-value-table var{background:none;color:#0073aa;font-size:16px}.fs-key-value-table input[type=text]{font-weight:700;width:100%}.fs-field-beta_program label{margin-left:7px}label.fs-tag{border-radius:3px;color:#fff;display:inline-block;font-size:11px;line-height:11px;padding:5px;vertical-align:baseline}label.fs-tag,label.fs-tag.fs-warn{background:#ffba00}label.fs-tag.fs-success{background:#46b450}label.fs-tag.fs-error{background:#dc3232}#fs_sites .fs-scrollable-table .fs-table-body{border:1px solid #e5e5e5;max-height:200px;overflow:auto}#fs_sites .fs-scrollable-table .fs-table-body>table.widefat{border:none!important}#fs_sites .fs-scrollable-table .fs-main-column{width:100%}#fs_sites .fs-scrollable-table .fs-site-details td:first-of-type{color:gray;text-align:right;width:1px}#fs_sites .fs-scrollable-table .fs-site-details td:last-of-type{text-align:right}#fs_sites .fs-scrollable-table .fs-install-details table tr td{white-space:nowrap;width:1px}#fs_sites .fs-scrollable-table .fs-install-details table tr td:last-of-type{width:auto}#fs_addons h3{border:none;margin-bottom:0;padding:4px 5px}#fs_addons td{vertical-align:middle}#fs_addons thead{white-space:nowrap}#fs_addons td:first-child,#fs_addons th:first-child{font-weight:700;text-align:left}#fs_addons td:last-child,#fs_addons th:last-child{text-align:right}#fs_addons th{font-weight:700}#fs_billing_address{width:100%}#fs_billing_address tr td{padding:5px;width:50%}#fs_billing_address tr:first-of-type td{padding-top:0}#fs_billing_address span{font-weight:700}#fs_billing_address input,#fs_billing_address select{display:block;margin-top:5px;width:100%}#fs_billing_address input::-moz-placeholder,#fs_billing_address select::-moz-placeholder{color:transparent}#fs_billing_address input::placeholder,#fs_billing_address select::placeholder{color:transparent}#fs_billing_address input.fs-read-mode,#fs_billing_address select.fs-read-mode{background:none;border-color:transparent;border-bottom:1px dashed #ccc;color:#777;padding-left:0}#fs_billing_address.fs-read-mode td span{display:none}#fs_billing_address.fs-read-mode input,#fs_billing_address.fs-read-mode select{background:none;border-color:transparent;border-bottom:1px dashed #ccc;color:#777;padding-left:0}#fs_billing_address.fs-read-mode input::-moz-placeholder,#fs_billing_address.fs-read-mode select::-moz-placeholder{color:#ccc}#fs_billing_address.fs-read-mode input::placeholder,#fs_billing_address.fs-read-mode select::placeholder{color:#ccc}#fs_billing_address button{display:block;width:100%}@media screen and (max-width:639px){#fs_account .fs-header-actions{margin:0 0 12px;padding:0 15px 12px;position:static}#fs_account .fs-header-actions li{display:inline-block;float:none}#fs_account #fs_account_details,#fs_account #fs_account_details tbody,#fs_account #fs_account_details td,#fs_account #fs_account_details th,#fs_account #fs_account_details tr{display:block}#fs_account #fs_account_details tr td:first-child{text-align:left}#fs_account #fs_account_details tr td:nth-child(2){padding:0 12px}#fs_account #fs_account_details tr td:nth-child(2) code{margin:0;padding:0}#fs_account #fs_account_details tr td:nth-child(2) label{margin-left:0}#fs_account #fs_account_details tr td:nth-child(3){text-align:left}#fs_account #fs_account_details tr.fs-field-plan td:nth-child(2) .button-group{float:none;margin:12px 0}} \ No newline at end of file diff --git a/freemius/assets/css/admin/checkout.css b/freemius/assets/css/admin/checkout.css index 26d74ca..cd5e065 100644 --- a/freemius/assets/css/admin/checkout.css +++ b/freemius/assets/css/admin/checkout.css @@ -1 +1 @@ -@media screen and (max-width:782px){#wpbody-content{padding-bottom:0!important}} \ No newline at end of file +.fs-ajax-loader{height:20px;margin:auto;position:relative;width:170px}.fs-ajax-loader .fs-ajax-loader-bar{animation-direction:normal;animation-duration:1.5s;animation-iteration-count:infinite;animation-name:bounce_ajaxLoader;background-color:#fff;height:20px;position:absolute;top:0;transform:scale(.3);width:20px}.fs-ajax-loader .fs-ajax-loader-bar-1{animation-delay:.6s;left:0}.fs-ajax-loader .fs-ajax-loader-bar-2{animation-delay:.75s;left:19px}.fs-ajax-loader .fs-ajax-loader-bar-3{animation-delay:.9s;left:38px}.fs-ajax-loader .fs-ajax-loader-bar-4{animation-delay:1.05s;left:57px}.fs-ajax-loader .fs-ajax-loader-bar-5{animation-delay:1.2s;left:76px}.fs-ajax-loader .fs-ajax-loader-bar-6{animation-delay:1.35s;left:95px}.fs-ajax-loader .fs-ajax-loader-bar-7{animation-delay:1.5s;left:114px}.fs-ajax-loader .fs-ajax-loader-bar-8{animation-delay:1.65s;left:133px}@keyframes bounce_ajaxLoader{0%{background-color:#0074a3;transform:scale(1)}to{background-color:#fff;transform:scale(.3)}}@media screen and (max-width:782px){#wpbody-content{padding-bottom:0!important}}.fs-checkout-process-redirect{padding:40px;text-align:center} \ No newline at end of file diff --git a/freemius/assets/css/admin/common.css b/freemius/assets/css/admin/common.css index fae2810..a005ed4 100644 --- a/freemius/assets/css/admin/common.css +++ b/freemius/assets/css/admin/common.css @@ -1 +1 @@ -.fs-badge{background:#71ae00;border-radius:3px 0 0 3px;border-right:0;box-shadow:0 2px 1px -1px rgba(0,0,0,.3);color:#fff;font-weight:700;padding:5px 10px;position:absolute;right:0;text-transform:uppercase;top:10px}.theme-browser .theme .fs-premium-theme-badge-container{position:absolute;right:0;top:0}.theme-browser .theme .fs-premium-theme-badge-container .fs-badge{margin-top:10px;position:relative;text-align:center;top:0}.theme-browser .theme .fs-premium-theme-badge-container .fs-badge.fs-premium-theme-badge{font-size:1.1em}.theme-browser .theme .fs-premium-theme-badge-container .fs-badge.fs-beta-theme-badge{background:#00a0d2}.fs-switch{background:#ececec;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);box-shadow:0 0 4px rgba(0,0,0,.1),inset 0 1px 3px 0 rgba(0,0,0,.1);color:#ccc;cursor:pointer;display:inline-block;height:18px;padding:6px 6px 5px;position:relative;text-shadow:0 1px 1px hsla(0,0%,100%,.8)}.fs-switch span{display:inline-block;text-transform:uppercase;width:35px}.fs-switch .fs-toggle{background-color:#fff;background-image:linear-gradient(180deg,#ececec,#fff);border:1px solid rgba(0,0,0,.3);border-radius:4px;box-shadow:inset 0 1px 0 0 hsla(0,0%,100%,.5);height:25px;position:absolute;top:1px;transition:.4s cubic-bezier(.54,1.6,.5,1);width:37px;z-index:999}.fs-switch.fs-off .fs-toggle{left:2%}.fs-switch.fs-on .fs-toggle{left:54%}.fs-switch.fs-round{border-radius:24px;padding:4px 25px;top:8px}.fs-switch.fs-round .fs-toggle{border-radius:24px;height:24px;top:0;width:24px}.fs-switch.fs-round.fs-off .fs-toggle{left:-1px}.fs-switch.fs-round.fs-on{background:#0085ba}.fs-switch.fs-round.fs-on .fs-toggle{left:25px}.fs-switch.fs-small.fs-round{padding:1px 19px}.fs-switch.fs-small.fs-round .fs-toggle{border-radius:18px;height:18px;top:0;width:18px}.fs-switch.fs-small.fs-round.fs-on .fs-toggle{left:19px}body.fs-loading,body.fs-loading *{cursor:wait!important}#fs_frame{font-size:0;line-height:0}.fs-full-size-wrapper{margin:40px 0 -65px -20px}@media(max-width:600px){.fs-full-size-wrapper{margin:0 0 -65px -10px}}.fs-notice{position:relative}.fs-notice.fs-has-title{margin-bottom:30px!important}.fs-notice.success{color:green}.fs-notice.promotion{background-color:#f2fcff!important;border-color:#00a0d2!important}.fs-notice .fs-notice-body{margin:.5em 0;padding:2px}.fs-notice .fs-close{color:#aaa;cursor:pointer;float:right}.fs-notice .fs-close:hover{color:#666}.fs-notice .fs-close>*{display:inline-block;margin-top:7px}.fs-notice label.fs-plugin-title{background:rgba(0,0,0,.3);border-radius:0 0 3px 3px;bottom:auto;color:#fff;cursor:auto;font-size:12px;font-weight:700;left:10px;padding:2px 10px;position:absolute;right:auto;top:100%}div.fs-notice.promotion,div.fs-notice.success,div.fs-notice.updated{display:block!important}#fs_connect .fs-error .fs-api-request-error-details,#fs_connect .fs-error .fs-api-request-error-show-details-link,#fs_connect .fs-error ol,.fs-modal .notice-error .fs-api-request-error-details,.fs-modal .notice-error .fs-api-request-error-show-details-link,.fs-modal .notice-error ol,.fs-notice.error .fs-api-request-error-details,.fs-notice.error .fs-api-request-error-show-details-link,.fs-notice.error ol{text-align:left}#fs_connect .fs-error ol,.fs-modal .notice-error ol,.fs-notice.error ol{list-style-type:disc}#fs_connect .fs-error .fs-api-request-error-show-details-link,.fs-modal .notice-error .fs-api-request-error-show-details-link,.fs-notice.error .fs-api-request-error-show-details-link{box-shadow:none;color:#2271b1;text-decoration:none}#fs_connect .fs-error .fs-api-request-error-details,.fs-modal .notice-error .fs-api-request-error-details,.fs-notice.error .fs-api-request-error-details{border:1px solid #ccc;max-height:150px;overflow:auto;padding:5px}.rtl .fs-notice .fs-close{float:left}.fs-secure-notice{background:#ebfdeb;box-shadow:0 2px 2px rgba(6,113,6,.3);color:green;filter:alpha(opacity=95);left:160px;opacity:.95;padding:10px 20px;position:fixed;right:0;top:32px;z-index:9999}.fs-secure-notice:hover{filter:alpha(opacity=100);opacity:1}.fs-secure-notice a.fs-security-proof{color:green;text-decoration:none}@media screen and (max-width:960px){.fs-secure-notice{left:36px}}@media screen and (max-width:600px){.fs-secure-notice{display:none}}@media screen and (max-width:1250px){#fs_promo_tab{display:none}}@media screen and (max-width:782px){.fs-secure-notice{left:0;text-align:center;top:46px}}span.fs-submenu-item.fs-sub:before{content:"↳";padding:0 5px}.rtl span.fs-submenu-item.fs-sub:before{content:"↲"}.fs-submenu-item.pricing.upgrade-mode{color:#adff2f}.fs-submenu-item.pricing.trial-mode{color:#83e2ff}#adminmenu .update-plugins.fs-trial{background-color:#00b9eb}.fs-ajax-spinner{background:url(/wp-admin/images/wpspin_light-2x.gif);background-size:contain;border:0;display:inline-block;height:20px;margin-bottom:-2px;margin-right:5px;vertical-align:sub;width:20px}.wrap.fs-section h2{text-align:left}.plugins p.fs-upgrade-notice{background-color:#d54e21;border:0;color:#f9f9f9;margin-top:10px;padding:10px} \ No newline at end of file +.fs-badge{background:#71ae00;border-radius:3px 0 0 3px;border-right:0;box-shadow:0 2px 1px -1px rgba(0,0,0,.3);color:#fff;font-weight:700;padding:5px 10px;position:absolute;right:0;text-transform:uppercase;top:10px}.theme-browser .theme .fs-premium-theme-badge-container{position:absolute;right:0;top:0}.theme-browser .theme .fs-premium-theme-badge-container .fs-badge{margin-top:10px;position:relative;text-align:center;top:0}.theme-browser .theme .fs-premium-theme-badge-container .fs-badge.fs-premium-theme-badge{font-size:1.1em}.theme-browser .theme .fs-premium-theme-badge-container .fs-badge.fs-beta-theme-badge{background:#00a0d2}.fs-switch{background:#ececec;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);box-shadow:0 0 4px rgba(0,0,0,.1),inset 0 1px 3px 0 rgba(0,0,0,.1);color:#ccc;cursor:pointer;display:inline-block;height:18px;padding:6px 6px 5px;position:relative;text-shadow:0 1px 1px hsla(0,0%,100%,.8)}.fs-switch span{display:inline-block;text-transform:uppercase;width:35px}.fs-switch .fs-toggle{background-color:#fff;background-image:linear-gradient(180deg,#ececec,#fff);border:1px solid rgba(0,0,0,.3);border-radius:4px;box-shadow:inset 0 1px 0 0 hsla(0,0%,100%,.5);height:25px;position:absolute;top:1px;transition:.4s cubic-bezier(.54,1.6,.5,1);width:37px;z-index:999}.fs-switch.fs-off .fs-toggle{left:2%}.fs-switch.fs-on .fs-toggle{left:54%}.fs-switch.fs-round{border-radius:24px;padding:4px 25px;top:8px}.fs-switch.fs-round .fs-toggle{border-radius:24px;height:24px;top:0;width:24px}.fs-switch.fs-round.fs-off .fs-toggle{left:-1px}.fs-switch.fs-round.fs-on{background:#0085ba}.fs-switch.fs-round.fs-on .fs-toggle{left:25px}.fs-switch.fs-small.fs-round{padding:1px 19px}.fs-switch.fs-small.fs-round .fs-toggle{border-radius:18px;height:18px;top:0;width:18px}.fs-switch.fs-small.fs-round.fs-on .fs-toggle{left:19px}body.fs-loading,body.fs-loading *{cursor:wait!important}#fs_frame{font-size:0;line-height:0}.fs-full-size-wrapper{margin:40px 0 -65px -20px}@media(max-width:600px){.fs-full-size-wrapper{margin:0 0 -65px -10px}}.fs-notice{position:relative}.fs-notice.fs-has-title{margin-bottom:30px!important}.fs-notice.success{color:green}.fs-notice.promotion{background-color:#f2fcff!important;border-color:#00a0d2!important}.fs-notice .fs-notice-body{margin:.5em 0;padding:2px}.fs-notice .fs-close{color:#aaa;cursor:pointer;float:right}.fs-notice .fs-close:hover{color:#666}.fs-notice .fs-close>*{display:inline-block;margin-top:7px}.fs-notice label.fs-plugin-title{background:rgba(0,0,0,.3);border-radius:0 0 3px 3px;bottom:auto;color:#fff;cursor:auto;font-size:12px;font-weight:700;left:10px;padding:2px 10px;position:absolute;right:auto;top:100%}div.fs-notice.promotion,div.fs-notice.success,div.fs-notice.updated{display:block!important}#fs_connect .fs-error .fs-api-request-error-details,#fs_connect .fs-error .fs-api-request-error-show-details-link,#fs_connect .fs-error ol,.fs-modal .notice-error .fs-api-request-error-details,.fs-modal .notice-error .fs-api-request-error-show-details-link,.fs-modal .notice-error ol,.fs-notice.error .fs-api-request-error-details,.fs-notice.error .fs-api-request-error-show-details-link,.fs-notice.error ol{text-align:left}#fs_connect .fs-error ol,.fs-modal .notice-error ol,.fs-notice.error ol{list-style-type:disc}#fs_connect .fs-error .fs-api-request-error-show-details-link,.fs-modal .notice-error .fs-api-request-error-show-details-link,.fs-notice.error .fs-api-request-error-show-details-link{box-shadow:none;color:#2271b1;text-decoration:none}#fs_connect .fs-error .fs-api-request-error-details,.fs-modal .notice-error .fs-api-request-error-details,.fs-notice.error .fs-api-request-error-details{border:1px solid #ccc;max-height:150px;overflow:auto;padding:5px}.rtl .fs-notice .fs-close{float:left}.fs-secure-notice{background:#ebfdeb;box-shadow:0 2px 2px rgba(6,113,6,.3);color:green;left:160px;opacity:.95;padding:10px 20px;position:fixed;right:0;top:32px;z-index:9989}.fs-secure-notice:hover{opacity:1}.fs-secure-notice a.fs-security-proof{color:green;text-decoration:none}@media screen and (max-width:960px){.fs-secure-notice{left:36px}}@media screen and (max-width:600px){.fs-secure-notice{display:none}}@media screen and (max-width:1250px){#fs_promo_tab{display:none}}@media screen and (max-width:782px){.fs-secure-notice{left:0;text-align:center;top:46px}}span.fs-submenu-item.fs-sub:before{content:"↳";padding:0 5px}.rtl span.fs-submenu-item.fs-sub:before{content:"↲"}.fs-submenu-item.pricing.upgrade-mode{color:#adff2f}.fs-submenu-item.pricing.trial-mode{color:#83e2ff}#adminmenu .update-plugins.fs-trial{background-color:#00b9eb}.fs-ajax-spinner{background:url(/wp-admin/images/wpspin_light-2x.gif);background-size:contain;border:0;display:inline-block;height:20px;margin-bottom:-2px;margin-right:5px;vertical-align:sub;width:20px}.wrap.fs-section h2{text-align:left}.plugins p.fs-upgrade-notice{background-color:#d54e21;border:0;color:#f9f9f9;margin-top:10px;padding:10px} \ No newline at end of file diff --git a/freemius/assets/css/admin/dialog-boxes.css b/freemius/assets/css/admin/dialog-boxes.css index c16515a..9f47ce6 100644 --- a/freemius/assets/css/admin/dialog-boxes.css +++ b/freemius/assets/css/admin/dialog-boxes.css @@ -1 +1 @@ -.fs-modal{background:rgba(0,0,0,.6);display:none;height:100%;overflow:auto;position:fixed;top:0;width:100%;z-index:100000}@media(min-width:961px){.fs-modal{padding-left:160px}.rtl .fs-modal{padding-left:0;padding-right:160px}}.fs-modal .dashicons{vertical-align:middle}.fs-modal .fs-modal-dialog{background:transparent;left:50%;margin-left:-298px;padding-bottom:30px;position:absolute;top:-100%;width:596px;z-index:100001}@media(max-width:650px){.fs-modal .fs-modal-dialog{box-sizing:border-box;margin-left:-50%;padding-left:10px;padding-right:10px;width:100%}.fs-modal .fs-modal-dialog .fs-modal-panel>h3>strong{font-size:1.3em}}.fs-modal.active,.fs-modal.active:before{display:block}.fs-modal.active .fs-modal-dialog{top:10%}.fs-modal.fs-success .fs-modal-header{border-bottom-color:#46b450}.fs-modal.fs-success .fs-modal-body{background-color:#f7fff7}.fs-modal.fs-warn .fs-modal-header{border-bottom-color:#ffb900}.fs-modal.fs-warn .fs-modal-body{background-color:#fff8e5}.fs-modal.fs-error .fs-modal-header{border-bottom-color:#dc3232}.fs-modal.fs-error .fs-modal-body{background-color:#ffeaea}.fs-modal .fs-modal-body,.fs-modal .fs-modal-footer{background:#fefefe;border:0;padding:20px}.fs-modal .fs-modal-header{background:#fbfbfb;border-bottom:1px solid #eee;margin-bottom:-10px;padding:15px 20px;position:relative}.fs-modal .fs-modal-header h4{color:#cacaca;font-size:1.2em;font-weight:700;letter-spacing:.6px;margin:0;padding:0;text-shadow:1px 1px 1px #fff;text-transform:uppercase;-webkit-font-smoothing:antialiased}.fs-modal .fs-modal-header .fs-close{border-radius:20px;color:#bbb;cursor:pointer;padding:3px;position:absolute;right:10px;top:12px;transition:all .2s ease-in-out}.fs-modal .fs-modal-header .fs-close:hover{background:#aaa;color:#fff}.fs-modal .fs-modal-header .fs-close .dashicons,.fs-modal .fs-modal-header .fs-close:hover .dashicons{text-decoration:none}.fs-modal .fs-modal-body{border-bottom:0}.fs-modal .fs-modal-body p{font-size:14px}.fs-modal .fs-modal-body h2{font-size:20px;line-height:1.5em}.fs-modal .fs-modal-body>div{margin-top:10px}.fs-modal .fs-modal-body>div h2{font-size:20px;font-weight:700;margin-top:0}.fs-modal .fs-modal-footer{border-top:1px solid #eee;text-align:right}.fs-modal .fs-modal-footer>.button{margin:0 7px}.fs-modal .fs-modal-footer>.button:last-of-type{margin:0}.fs-modal .fs-modal-panel>.notice.inline{display:none;margin:0}.fs-modal .fs-modal-panel:not(.active){display:none}.rtl .fs-modal .fs-modal-header .fs-close{left:20px;right:auto}.rtl .fs-modal .fs-modal-footer{text-align:left}body.has-fs-modal{overflow:hidden}.fs-modal.fs-modal-deactivation-feedback .internal-message,.fs-modal.fs-modal-deactivation-feedback .reason-input{margin:3px 0 3px 22px}.fs-modal.fs-modal-deactivation-feedback .internal-message input,.fs-modal.fs-modal-deactivation-feedback .internal-message textarea,.fs-modal.fs-modal-deactivation-feedback .reason-input input,.fs-modal.fs-modal-deactivation-feedback .reason-input textarea{width:100%}.fs-modal.fs-modal-deactivation-feedback li.reason.has-internal-message .internal-message{border:1px solid #ccc;display:none;padding:7px}@media(max-width:650px){.fs-modal.fs-modal-deactivation-feedback li.reason li.reason{margin-bottom:10px}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason .internal-message,.fs-modal.fs-modal-deactivation-feedback li.reason li.reason .reason-input{margin-left:29px}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason label{display:table}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason label>span{display:table-cell;font-size:1.3em}}.fs-modal.fs-modal-deactivation-feedback .anonymous-feedback-label,.fs-modal.fs-modal-deactivation-feedback .feedback-from-snooze-label{float:left;line-height:30px}.rtl .fs-modal.fs-modal-deactivation-feedback .anonymous-feedback-label,.rtl .fs-modal.fs-modal-deactivation-feedback .feedback-from-snooze-label{float:right}.fs-modal.fs-modal-deactivation-feedback .fs-modal-panel{margin-top:0!important}.fs-modal.fs-modal-deactivation-feedback .fs-modal-panel h3{line-height:1.5em;margin-top:0}#the-list .deactivate>.fs-slug{display:none}.fs-modal.fs-modal-subscription-cancellation .fs-price-increase-warning{color:red;font-weight:700;margin-bottom:0;padding:0 25px}.fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label input{float:left;position:relative;top:5px}.rtl .fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label input{float:right}.fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label span{display:block;margin-left:24px}.rtl .fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label span{margin-left:0;margin-right:24px}.fs-license-options-container table,.fs-license-options-container table .fs-available-license-key,.fs-license-options-container table select,.fs-modal.fs-modal-license-activation .fs-modal-body input.fs-license-key{width:100%}.fs-license-options-container table td:first-child{width:1%}.fs-license-options-container table .fs-other-license-key-container label{float:left;margin-right:5px;position:relative;top:6px}.fs-license-options-container table .fs-other-license-key-container div{display:block;height:30px;overflow:hidden;position:relative;top:2px;width:auto}.fs-license-options-container table .fs-other-license-key-container div input{margin:0}.fs-sites-list-container td{cursor:pointer}.fs-modal.fs-modal-user-change .fs-modal-body input#fs_other_email_address{width:100%}.fs-user-change-options-container table{border-collapse:collapse;width:100%}.fs-user-change-options-container table tr{display:block;margin-bottom:2px}.fs-user-change-options-container table .fs-email-address-container td{display:inline-block}.fs-user-change-options-container table .fs-email-address-container input[type=radio]{margin-bottom:0;margin-top:0}.fs-user-change-options-container table .fs-other-email-address-container{width:100%}.fs-user-change-options-container table .fs-other-email-address-container>div{display:table;width:100%}.fs-user-change-options-container table .fs-other-email-address-container>div label,.fs-user-change-options-container table .fs-other-email-address-container>div>div{display:table-cell}.fs-user-change-options-container table .fs-other-email-address-container>div label{padding-left:3px;padding-right:3px;width:1%}.fs-user-change-options-container table .fs-other-email-address-container>div>div{width:auto}.fs-modal.fs-modal-developer-license-debug-mode .fs-modal-body input.fs-license-or-user-key,.fs-user-change-options-container table .fs-other-email-address-container>div>div input{width:100%}.fs-multisite-options-container{border:1px solid #ccc;margin-top:20px;padding:5px}.fs-multisite-options-container a{text-decoration:none}.fs-multisite-options-container a:focus{box-shadow:none}.fs-multisite-options-container a.selected{font-weight:700}.fs-multisite-options-container.fs-apply-on-all-sites{border:0;padding:0}.fs-multisite-options-container.fs-apply-on-all-sites .fs-all-sites-options{border-spacing:0}.fs-multisite-options-container.fs-apply-on-all-sites .fs-all-sites-options td:not(:first-child){display:none}.fs-multisite-options-container .fs-sites-list-container{display:none;overflow:auto}.fs-multisite-options-container .fs-sites-list-container table td{border-top:1px solid #ccc;padding:4px 2px}.fs-modal.fs-modal-license-key-resend .email-address-container{overflow:hidden;padding-right:2px}.fs-modal.fs-modal-license-key-resend.fs-freemium input.email-address{width:300px}.fs-modal.fs-modal-license-key-resend.fs-freemium label{display:block;margin-bottom:10px}.fs-modal.fs-modal-license-key-resend.fs-premium input.email-address{width:100%}.fs-modal.fs-modal-license-key-resend.fs-premium .button-container{float:right;margin-left:7px}@media(max-width:650px){.fs-modal.fs-modal-license-key-resend.fs-premium .button-container{margin-top:2px}}.rtl .fs-modal.fs-modal-license-key-resend .fs-modal-body .input-container>.email-address-container{padding-left:2px;padding-right:0}.rtl .fs-modal.fs-modal-license-key-resend .fs-modal-body .button-container{float:left;margin-left:0;margin-right:7px}a.show-license-resend-modal{display:inline-block;margin-top:4px}.fs-modal.fs-modal-email-address-update .fs-modal-body input[type=text]{width:100%}.fs-modal.fs-modal-email-address-update p{margin-bottom:0}.fs-modal.fs-modal-email-address-update ul{margin:1em .5em}.fs-modal.fs-modal-email-address-update ul li label span{float:left;margin-top:0}.fs-modal.fs-modal-email-address-update ul li label span:last-child{display:block;float:none;margin-left:20px}.fs-ajax-loader{height:20px;margin:auto;position:relative;width:170px}.fs-ajax-loader .fs-ajax-loader-bar{animation-direction:normal;animation-duration:1.5s;animation-iteration-count:infinite;-o-animation-iteration-count:infinite;-ms-animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite;-moz-animation-iteration-count:infinite;animation-name:bounce_ajaxLoader;background-color:#0074a3;height:20px;position:absolute;top:0;transform:.3;width:20px}.fs-ajax-loader .fs-ajax-loader-bar-1{animation-delay:.6s;-o-animation-delay:.6s;-ms-animation-delay:.6s;-webkit-animation-delay:.6s;-moz-animation-delay:.6s;left:0}.fs-ajax-loader .fs-ajax-loader-bar-2{animation-delay:.75s;-o-animation-delay:.75s;-ms-animation-delay:.75s;-webkit-animation-delay:.75s;-moz-animation-delay:.75s;left:19px}.fs-ajax-loader .fs-ajax-loader-bar-3{animation-delay:.9s;-o-animation-delay:.9s;-ms-animation-delay:.9s;-webkit-animation-delay:.9s;-moz-animation-delay:.9s;left:38px}.fs-ajax-loader .fs-ajax-loader-bar-4{animation-delay:1.05s;-o-animation-delay:1.05s;-ms-animation-delay:1.05s;-webkit-animation-delay:1.05s;-moz-animation-delay:1.05s;left:57px}.fs-ajax-loader .fs-ajax-loader-bar-5{animation-delay:1.2s;-o-animation-delay:1.2s;-ms-animation-delay:1.2s;-webkit-animation-delay:1.2s;-moz-animation-delay:1.2s;left:76px}.fs-ajax-loader .fs-ajax-loader-bar-6{animation-delay:1.35s;-o-animation-delay:1.35s;-ms-animation-delay:1.35s;-webkit-animation-delay:1.35s;-moz-animation-delay:1.35s;left:95px}.fs-ajax-loader .fs-ajax-loader-bar-7{animation-delay:1.5s;-o-animation-delay:1.5s;-ms-animation-delay:1.5s;-webkit-animation-delay:1.5s;-moz-animation-delay:1.5s;left:114px}.fs-ajax-loader .fs-ajax-loader-bar-8{animation-delay:1.65s;-o-animation-delay:1.65s;-ms-animation-delay:1.65s;-webkit-animation-delay:1.65s;-moz-animation-delay:1.65s;left:133px}@keyframes bounce_ajaxLoader{0%{background-color:#0074a3;transform:scale(1)}to{background-color:#fff;transform:scale(.3)}}.fs-modal-auto-install #request-filesystem-credentials-form .request-filesystem-credentials-action-buttons,.fs-modal-auto-install #request-filesystem-credentials-form h2{display:none}.fs-modal-auto-install #request-filesystem-credentials-form input[type=email],.fs-modal-auto-install #request-filesystem-credentials-form input[type=password],.fs-modal-auto-install #request-filesystem-credentials-form input[type=text]{-webkit-appearance:none;max-width:100%;padding:10px 10px 5px;width:300px}.fs-modal-auto-install #request-filesystem-credentials-form fieldset,.fs-modal-auto-install #request-filesystem-credentials-form label,.fs-modal-auto-install #request-filesystem-credentials-form>div{display:block;margin:0 auto;max-width:100%;width:300px}.button-primary.warn{background:#f56a48;border-color:#ec6544 #d2593c #d2593c;box-shadow:0 1px 0 #d2593c;text-shadow:0 -1px 1px #d2593c,1px 0 1px #d2593c,0 1px 1px #d2593c,-1px 0 1px #d2593c}.button-primary.warn:hover{background:#fd6d4a;border-color:#d2593c}.button-primary.warn:focus{box-shadow:0 1px 0 #dd6041,0 0 2px 1px #e4a796}.button-primary.warn:active{background:#dd6041;border-color:#d2593c;box-shadow:inset 0 2px 0 #d2593c}.button-primary.warn.disabled{background:#e76444!important;border-color:#d85e40!important;color:#f5b3a1!important;text-shadow:0 -1px 0 rgba(0,0,0,.1)!important} \ No newline at end of file +.fs-modal{background:rgba(0,0,0,.6);display:none;height:100%;overflow:auto;position:fixed;top:0;width:100%;z-index:100000}@media(min-width:961px){.fs-modal{padding-left:160px}.rtl .fs-modal{padding-left:0;padding-right:160px}}.fs-modal .dashicons{vertical-align:middle}.fs-modal .fs-modal-dialog{background:transparent;left:50%;margin-left:-298px;padding-bottom:30px;position:absolute;top:-100%;width:596px;z-index:100001}@media(max-width:650px){.fs-modal .fs-modal-dialog{box-sizing:border-box;margin-left:-50%;padding-left:10px;padding-right:10px;width:100%}.fs-modal .fs-modal-dialog .fs-modal-panel>h3>strong{font-size:1.3em}}.fs-modal.active,.fs-modal.active:before{display:block}.fs-modal.active .fs-modal-dialog{top:10%}.fs-modal.fs-success .fs-modal-header{border-bottom-color:#46b450}.fs-modal.fs-success .fs-modal-body{background-color:#f7fff7}.fs-modal.fs-warn .fs-modal-header{border-bottom-color:#ffb900}.fs-modal.fs-warn .fs-modal-body{background-color:#fff8e5}.fs-modal.fs-error .fs-modal-header{border-bottom-color:#dc3232}.fs-modal.fs-error .fs-modal-body{background-color:#ffeaea}.fs-modal .fs-modal-body,.fs-modal .fs-modal-footer{background:#fefefe;border:0;padding:20px}.fs-modal .fs-modal-header{background:#fbfbfb;border-bottom:1px solid #eee;margin-bottom:-10px;padding:15px 20px;position:relative}.fs-modal .fs-modal-header h4{color:#cacaca;font-size:1.2em;font-weight:700;letter-spacing:.6px;margin:0;padding:0;text-shadow:1px 1px 1px #fff;text-transform:uppercase;-webkit-font-smoothing:antialiased}.fs-modal .fs-modal-header .fs-close{border-radius:20px;color:#bbb;cursor:pointer;padding:3px;position:absolute;right:10px;top:12px;transition:all .2s ease-in-out}.fs-modal .fs-modal-header .fs-close:hover{background:#aaa;color:#fff}.fs-modal .fs-modal-header .fs-close .dashicons,.fs-modal .fs-modal-header .fs-close:hover .dashicons{text-decoration:none}.fs-modal .fs-modal-body{border-bottom:0}.fs-modal .fs-modal-body p{font-size:14px}.fs-modal .fs-modal-body h2{font-size:20px;line-height:1.5em}.fs-modal .fs-modal-body>div{margin-top:10px}.fs-modal .fs-modal-body>div h2{font-size:20px;font-weight:700;margin-top:0}.fs-modal .fs-modal-footer{border-top:1px solid #eee;text-align:right}.fs-modal .fs-modal-footer>.button{margin:0 7px}.fs-modal .fs-modal-footer>.button:last-of-type{margin:0}.fs-modal .fs-modal-panel>.notice.inline{display:none;margin:0}.fs-modal .fs-modal-panel:not(.active){display:none}.rtl .fs-modal .fs-modal-header .fs-close{left:20px;right:auto}.rtl .fs-modal .fs-modal-footer{text-align:left}body.has-fs-modal{overflow:hidden}.fs-modal.fs-modal-deactivation-feedback .internal-message,.fs-modal.fs-modal-deactivation-feedback .reason-input{margin:3px 0 3px 22px}.fs-modal.fs-modal-deactivation-feedback .internal-message input,.fs-modal.fs-modal-deactivation-feedback .internal-message textarea,.fs-modal.fs-modal-deactivation-feedback .reason-input input,.fs-modal.fs-modal-deactivation-feedback .reason-input textarea{width:100%}.fs-modal.fs-modal-deactivation-feedback li.reason.has-internal-message .internal-message{border:1px solid #ccc;display:none;padding:7px}@media(max-width:650px){.fs-modal.fs-modal-deactivation-feedback li.reason li.reason{margin-bottom:10px}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason .internal-message,.fs-modal.fs-modal-deactivation-feedback li.reason li.reason .reason-input{margin-left:29px}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason label{display:table}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason label>span{display:table-cell;font-size:1.3em}}.fs-modal.fs-modal-deactivation-feedback .anonymous-feedback-label,.fs-modal.fs-modal-deactivation-feedback .feedback-from-snooze-label{float:left;line-height:30px}.rtl .fs-modal.fs-modal-deactivation-feedback .anonymous-feedback-label,.rtl .fs-modal.fs-modal-deactivation-feedback .feedback-from-snooze-label{float:right}.fs-modal.fs-modal-deactivation-feedback .fs-modal-panel{margin-top:0!important}.fs-modal.fs-modal-deactivation-feedback .fs-modal-panel h3{font-size:16px;line-height:1.5em;margin-bottom:0;margin-top:10px}#the-list .deactivate>.fs-slug{display:none}.fs-modal.fs-modal-subscription-cancellation .fs-price-increase-warning{color:red;font-weight:700;margin-bottom:0;padding:0 25px}.fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label input{float:left;position:relative;top:5px}.rtl .fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label input{float:right}.fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label span{display:block;margin-left:24px}.rtl .fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label span{margin-left:0;margin-right:24px}.fs-license-options-container table,.fs-license-options-container table .fs-available-license-key,.fs-license-options-container table select,.fs-modal.fs-modal-license-activation .fs-modal-body input.fs-license-key{width:100%}.fs-license-options-container table td:first-child{width:1%}.fs-license-options-container table .fs-other-license-key-container label{float:left;margin-right:5px;position:relative;top:6px}.fs-license-options-container table .fs-other-license-key-container div{display:block;height:30px;overflow:hidden;position:relative;top:2px;width:auto}.fs-license-options-container table .fs-other-license-key-container div input{margin:0}.fs-sites-list-container td{cursor:pointer}.fs-modal.fs-modal-user-change .fs-modal-body input#fs_other_email_address{width:100%}.fs-user-change-options-container table{border-collapse:collapse;width:100%}.fs-user-change-options-container table tr{display:block;margin-bottom:2px}.fs-user-change-options-container table .fs-email-address-container td{display:inline-block}.fs-user-change-options-container table .fs-email-address-container input[type=radio]{margin-bottom:0;margin-top:0}.fs-user-change-options-container table .fs-other-email-address-container{width:100%}.fs-user-change-options-container table .fs-other-email-address-container>div{display:table;width:100%}.fs-user-change-options-container table .fs-other-email-address-container>div label,.fs-user-change-options-container table .fs-other-email-address-container>div>div{display:table-cell}.fs-user-change-options-container table .fs-other-email-address-container>div label{padding-left:3px;padding-right:3px;width:1%}.fs-user-change-options-container table .fs-other-email-address-container>div>div{width:auto}.fs-modal.fs-modal-developer-license-debug-mode .fs-modal-body input.fs-license-or-user-key,.fs-user-change-options-container table .fs-other-email-address-container>div>div input{width:100%}.fs-multisite-options-container{border:1px solid #ccc;margin-top:20px;padding:5px}.fs-multisite-options-container a{text-decoration:none}.fs-multisite-options-container a:focus{box-shadow:none}.fs-multisite-options-container a.selected{font-weight:700}.fs-multisite-options-container.fs-apply-on-all-sites{border:0;padding:0}.fs-multisite-options-container.fs-apply-on-all-sites .fs-all-sites-options{border-spacing:0}.fs-multisite-options-container.fs-apply-on-all-sites .fs-all-sites-options td:not(:first-child){display:none}.fs-multisite-options-container .fs-sites-list-container{display:none;overflow:auto}.fs-multisite-options-container .fs-sites-list-container table td{border-top:1px solid #ccc;padding:4px 2px}.fs-modal.fs-modal-license-key-resend .email-address-container{overflow:hidden;padding-right:2px}.fs-modal.fs-modal-license-key-resend.fs-freemium input.email-address{width:300px}.fs-modal.fs-modal-license-key-resend.fs-freemium label{display:block;margin-bottom:10px}.fs-modal.fs-modal-license-key-resend.fs-premium input.email-address{width:100%}.fs-modal.fs-modal-license-key-resend.fs-premium .button-container{float:right;margin-left:7px}@media(max-width:650px){.fs-modal.fs-modal-license-key-resend.fs-premium .button-container{margin-top:2px}}.rtl .fs-modal.fs-modal-license-key-resend .fs-modal-body .input-container>.email-address-container{padding-left:2px;padding-right:0}.rtl .fs-modal.fs-modal-license-key-resend .fs-modal-body .button-container{float:left;margin-left:0;margin-right:7px}a.show-license-resend-modal{display:inline-block;margin-top:4px}.fs-modal.fs-modal-email-address-update .fs-modal-body input[type=text]{width:100%}.fs-modal.fs-modal-email-address-update p{margin-bottom:0}.fs-modal.fs-modal-email-address-update ul{margin:1em .5em}.fs-modal.fs-modal-email-address-update ul li label span{float:left;margin-top:0}.fs-modal.fs-modal-email-address-update ul li label span:last-child{display:block;float:none;margin-left:20px}.fs-ajax-loader{height:20px;margin:auto;position:relative;width:170px}.fs-ajax-loader .fs-ajax-loader-bar{animation-direction:normal;animation-duration:1.5s;animation-iteration-count:infinite;animation-name:bounce_ajaxLoader;background-color:#fff;height:20px;position:absolute;top:0;transform:scale(.3);width:20px}.fs-ajax-loader .fs-ajax-loader-bar-1{animation-delay:.6s;left:0}.fs-ajax-loader .fs-ajax-loader-bar-2{animation-delay:.75s;left:19px}.fs-ajax-loader .fs-ajax-loader-bar-3{animation-delay:.9s;left:38px}.fs-ajax-loader .fs-ajax-loader-bar-4{animation-delay:1.05s;left:57px}.fs-ajax-loader .fs-ajax-loader-bar-5{animation-delay:1.2s;left:76px}.fs-ajax-loader .fs-ajax-loader-bar-6{animation-delay:1.35s;left:95px}.fs-ajax-loader .fs-ajax-loader-bar-7{animation-delay:1.5s;left:114px}.fs-ajax-loader .fs-ajax-loader-bar-8{animation-delay:1.65s;left:133px}@keyframes bounce_ajaxLoader{0%{background-color:#0074a3;transform:scale(1)}to{background-color:#fff;transform:scale(.3)}}.fs-modal-auto-install #request-filesystem-credentials-form .request-filesystem-credentials-action-buttons,.fs-modal-auto-install #request-filesystem-credentials-form h2{display:none}.fs-modal-auto-install #request-filesystem-credentials-form input[type=email],.fs-modal-auto-install #request-filesystem-credentials-form input[type=password],.fs-modal-auto-install #request-filesystem-credentials-form input[type=text]{-webkit-appearance:none;max-width:100%;padding:10px 10px 5px;width:300px}.fs-modal-auto-install #request-filesystem-credentials-form fieldset,.fs-modal-auto-install #request-filesystem-credentials-form label,.fs-modal-auto-install #request-filesystem-credentials-form>div{display:block;margin:0 auto;max-width:100%;width:300px}.button-primary.warn{background:#f56a48;border-color:#ec6544 #d2593c #d2593c;box-shadow:0 1px 0 #d2593c;text-shadow:0 -1px 1px #d2593c,1px 0 1px #d2593c,0 1px 1px #d2593c,-1px 0 1px #d2593c}.button-primary.warn:hover{background:#fd6d4a;border-color:#d2593c}.button-primary.warn:focus{box-shadow:0 1px 0 #dd6041,0 0 2px 1px #e4a796}.button-primary.warn:active{background:#dd6041;border-color:#d2593c;box-shadow:inset 0 2px 0 #d2593c}.button-primary.warn.disabled{background:#e76444!important;border-color:#d85e40!important;color:#f5b3a1!important;text-shadow:0 -1px 0 rgba(0,0,0,.1)!important} \ No newline at end of file diff --git a/freemius/assets/js/jquery.form.js b/freemius/assets/js/jquery.form.js new file mode 100644 index 0000000..dcbcbb5 --- /dev/null +++ b/freemius/assets/js/jquery.form.js @@ -0,0 +1 @@ +!function(n){n.extend({form:function(r,e,t){null==t&&(t="POST"),null==e&&(e={});var o=n("
").attr({method:t,action:r}).css({display:"none"}),a=function(r,e){if(n.isArray(e))for(var t=0;t").attr({type:"hidden",name:String(r),value:String(e)}))};for(var i in e)e.hasOwnProperty(i)&&a(i,e[i]);return o.appendTo("body")}})}(jQuery); \ No newline at end of file diff --git a/freemius/assets/js/pricing/14fb1bd5b7c41648488b06147f50a0dc.svg b/freemius/assets/js/pricing/14fb1bd5b7c41648488b06147f50a0dc.svg new file mode 100644 index 0000000..2dfccd6 --- /dev/null +++ b/freemius/assets/js/pricing/14fb1bd5b7c41648488b06147f50a0dc.svg @@ -0,0 +1,227 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/freemius/assets/js/pricing/178afa6030e76635dbe835e111d2c507.png b/freemius/assets/js/pricing/178afa6030e76635dbe835e111d2c507.png new file mode 100644 index 0000000000000000000000000000000000000000..d5debf2b75c672c2f8c7296ef12f952fe9f0c122 GIT binary patch literal 6020 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 literal 0 HcmV?d00001 diff --git a/freemius/assets/js/pricing/27b5a722a5553d9de0170325267fccec.png b/freemius/assets/js/pricing/27b5a722a5553d9de0170325267fccec.png new file mode 100644 index 0000000000000000000000000000000000000000..943dad7b163e2f0915fa2561f41a4c748e46859d GIT binary patch literal 6501 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 LNkvXXu0mjfQZ~4F literal 0 HcmV?d00001 diff --git a/freemius/assets/js/pricing/4375c4a3ddc6f637c2ab9a2d7220f91e.png b/freemius/assets/js/pricing/4375c4a3ddc6f637c2ab9a2d7220f91e.png new file mode 100644 index 0000000000000000000000000000000000000000..33902b4a99ec9a3199804151277daabfc610406b GIT binary patch literal 9380 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 TzbJ{mb_A#>Xv){ZEu;Sjxq-&r literal 0 HcmV?d00001 diff --git a/freemius/assets/js/pricing/4529cac82a2d1f300d3c4702b7b5e8f3.svg b/freemius/assets/js/pricing/4529cac82a2d1f300d3c4702b7b5e8f3.svg new file mode 100644 index 0000000..a7cc12b --- /dev/null +++ b/freemius/assets/js/pricing/4529cac82a2d1f300d3c4702b7b5e8f3.svg @@ -0,0 +1,227 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/freemius/assets/js/pricing/5480ed23b199531a8cbc05924f26952b.png b/freemius/assets/js/pricing/5480ed23b199531a8cbc05924f26952b.png new file mode 100644 index 0000000000000000000000000000000000000000..eda6d6fb12df205fd9fd23ff0ff63d1d57d2ec97 GIT binary patch literal 7262 zcmaKRWl$X5+AZ!R1b2qPeFhsexFxtl@L_Nm7zTIO03n9EyM;h-Cjo*6cTI2z5S&ZS zci!{eANSm@>gxUMT5CPBS5TzcwEO zDx`uTQU`8>^s+?2P-Lv(Rxp5yv!yLe8)j+klz{r)l|ixaA#i2zZhO` zXV*veqnMPpt0mMCh6Gr_Z0%hnfk!PJK!ClqB+x)e4W#BO2eY$R_C>&SeARWKzK&2) zYoOF~fP}Z$qkuCEX$kOlc5-nS^OgkuOIPf1{db!W2>2HS=_m>OpP~%aGy!sO1Pma= z3*v!-gh2pdFfUj@5CVa41NcE;5Fd!256sU4hKLF9i-ACZe_z1IYzS)`F>QIpf9HCP zB!PBFq^lSopO=>xua^KX9AV1`78Mo!tHICD^N8Sa_i;g5dh@urGyS6=4|9hi>|K%e za2LQ|MN2EV2T~IFSn2eBPF>d|+PC-@aCUvnEDuB2d%~<05pZX~zgiZv z|L?U3{a3wzbFKe-EyDkm%lB9e-`|7%zYhAJtw;C#UH-?mkHLS84|92RJL0dc^W6zi zP$(x<k*VL5wQ5*z4KxsueA{`y$quQmJ$DRFpj$_pr+= z8Y^}Z0fwGz28~Yr#p{P72s%v^Ue8Jp(amgX2k7?ZH)`)KzI)FVL-r^dSxtz?{bdiX z?lC6wcQhRfjNZtgpf+@xn}^YvX6ffl%4mRK%JJ?HRL&EIxwsA)w0Kn~>8^)|B$lV> zbKJxG-=sU-`B4J8JA1$3C*M3xZdlVX>C+S$h|YDb!tQz6o=R}eg-&VVd2hQl0lmDr zL0!~Nf;>FjVb#7pSqV^<2Hm5scMwQOoLYE=FjEEHT@tu4zs2e4c;F_;mRd$BHN|r0 z+2~kdkh{P2?nNm$LcJoErX?hjp1p0RkLJn28$%T!dI)nfOk%$8A;B3dR~_ywv0cY5 zzk4|1>FMammTtU{z~UV|ehabv|Qy z6=u)M&~tsA4pKVAvd2;y_*mUR`Q1#S_xNT<3CrLUJ(dE83zk{c0|8%lg#~;1M(^?Q zcUdf|XINN_?bS6%HwJQxF6maRZF3ua!pIf#MD)2^f`<^5wTG1>f{KiJf}jTp)GHct z!3>aXbp-Y2wUwh$f{u<%tW(2IdlJ&g)pzH2oT?jECG!j@s6Wd-Byr|}Zbxo7Db%WQ zIL-tya1jUn3S<56(}i73N`{0L;yxIU@t3^z(gIjwaYp~_*SlJb#%r%hR_=L0!MgbB zd#1p^QHI2%URBR+Mylw;p8vz22c0tA?JsgM?2Z&1vn=f+S-?6~Bgp{$wU*JnY>0j= zk8dsQGO7WgIu%R#bt2-oZ1Sub=GSMPjgI!p(9|#@DIq&;TCVq_ST4}kyV1u~=8O|V zNr5Rz>WV?D80XQI<``f&ni1>4UdYkvoCV>cH@ev_@hhe7Kg?O}YCZVc(wDfEiRq$_ z#0~~c{Q;hJc+lT^l;(pL9%s4BnP&6-+lh%yf0z>?ZGUPntFW4v$PU@_ER+@QbDA4H zDfaI0y{G0Po5`}?@Mha8jV*wqiXvZ$h>)hFT=gp_#4J|rR`eSdid6$c&{V04Zbhgf zRO~Z`_Nyd!=}KqhKHa=v+EG3u{A_7=E$nM%qA=*WEFLY&@8on~$j(HCUG!}(EBC}> z1f-h1fV;aI%Xg;xI`sILCScwAJcBYqR+MRnD5BX~B(2rV@##7wd?8x)-L%JRW%c)Y zH7-dYFyZfhkm+y@Z{LOpkTIcSa>smH9DQK~lx{qI!6n}WC-#T0ddAIeX~}X#u+15P z6Jiy;>e>q=*cCK>oA2eGJwU{Mql>s_;&l3?MhHJsu)NGp<#zs1)o3>rYwY-mQSm{s%1M64jovh{^|D929p48S4X+k`R0J!IZV;8tA*jJe@?}_F>=}ypf z7cxYTWK?c@!*yfjqlGfl5B2kcK)aU$B>AP`nxx{n+t(iOQKoTQVT P2NY+Q0x0a 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 CHc1fx literal 0 HcmV?d00001 diff --git a/freemius/assets/js/pricing/b4f3b958f4a019862d81b15f3f8eee3a.svg b/freemius/assets/js/pricing/b4f3b958f4a019862d81b15f3f8eee3a.svg new file mode 100644 index 0000000..930d34e --- /dev/null +++ b/freemius/assets/js/pricing/b4f3b958f4a019862d81b15f3f8eee3a.svg @@ -0,0 +1,402 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/freemius/assets/js/pricing/c03f665db27af43971565560adfba594.png b/freemius/assets/js/pricing/c03f665db27af43971565560adfba594.png new file mode 100644 index 0000000000000000000000000000000000000000..1d0ebff74ad4ebfdd89a508a2880c787f11412ab GIT binary patch literal 6208 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 R=YKv_QP7lsEo%|*{{e1;dy)VE literal 0 HcmV?d00001 diff --git a/freemius/assets/js/pricing/dd89563360f0272635c8f0ab7d7f1402.png b/freemius/assets/js/pricing/dd89563360f0272635c8f0ab7d7f1402.png new file mode 100644 index 0000000000000000000000000000000000000000..e2bd9b32658e1479a6589d5467cdff16f1c2bce0 GIT binary patch literal 12087 zcmbVyb95%pwrD)DZChV#+xEm?Y&)6Q&cwDcv2A-|O+2yr@;m3A``#aSy|>ouwR&~! z>h0RQyJ}ZOC@DxHz~aJ!fPf%KONps`Jw3i|7HB9C5YU}GCWS8m$3|m;W|nGNE?V+(JSO(Gj7I<9FnZWJd{Kjd@CkZ2 z7@1fDU5Jf==9YH+q?a8%q{Nn{{G^)f^33uMqCg8vDK96Ws+WSAiI=qrw<)Qh05P8j z&ldw*poA(2$e6|1SW+Em27mABDKk2`f(vnvq7PWT*607$_`fdFFKJGuW;`ll68|OZ3*slW zaB*?qVPbN3cV~2GWwduPX993@bN|DGg@xe@gTdL;&c(=s!OofNKODq>&L&Ql4lb7V zcEta1G%~h#b>S!d()8aZ*gD9||2Jbh=l^olm&=$uj2xH%jLb~7w*T1mFKlNQ72y9? z_5a`zWcum`Umk#8y-a`%dbH(vJta4akT~7xk!ug zlYYHnG_^G4VP@fC1^_tOm^oRPIk*4-5pHI7ZUC1!3!AtI7mEn%e|Y>)w44Ao5fOF{ zW>ywq001D)$;~CsCd@7&#>UDj$|}Js`X5?pJ7*UoI}_l4dF<~{2HDenK3qz0h7j{uMH;$m9BGdhWFr>4#wl=gV{@24O!8a6ggF2DCMGN<@+Pu8J(=w%NMHkURI zc2T1iHkbbdi_eF1uCVBAZl8R2&hC3$7`$BcB)s5Dg>>xU%N zk~z+2kI(aspn#HR@U9>l8QK2fx+cl=^UFS3+Trf&OmANwsM*n>0(32Udiqa1CRmnmDdw-FeK!x^_v)YZmV_$J)lUC`eQZvNd^D3Q7`?Ps z8v=i6XEciJ*%FwYot+RA0!n4J2LyRe10@c?7FLFg%orRLi+H@;UjMt+WWAK&oQaK& z>b}?b{3@7-)fOmoI>_iX(mNi^Tk-K>e&sncR+l2J zrgrxUMQIW$8ioiElg2j+&w7sCeLN+FqVUrUg}zsZ@2nb!zt-XH&A36R1*}e}u_mW) zY>~bs?NW-Gn?HVfnkRi2cyuBVB6KHdT}!CW2}4P#K|(?@Zy2SI)ZNbG*PRfAO<|kX zm<9Z_WJulR&Y9l6#5zU8OieYJk;y(f{Z8H zV2d-bb;Q8+J~=gc)j1R@3|oZ*;rIFRjx}nQn3!mM-bMl|7ugDa-bfBUKu7@v6#$Zz zEN_9Pj2@zBQxZgivallrEiz}Pl28>HF6EF-+()Dbtqd!I5lqYuCo5d%mhXttCtpTl zI2h9^rKHEEl%fKK8!d$ZAdz9=u&f-8ZnE^tI?JY6{*EPpZFV@-VSmB<*fGM!(VS8+ zuq#B3j%&w}DSPR}Jvm4yY>2Cn%@5PFjijzFkEW{0%=Lo$$$F=-v6G~YQ-_g2HU5VM zUEEQf7NeaHE@N8v_|$pU0=03@cJ>LM`r{8W!mEv%fj+C)Pixji3*Q1wnc!t!S6qLD z_GwKP|7mKmsC~OJMk^b?lKw|5biV=TE+TYaUgJRnodYqJ^k{AM%uUE692Y-Jtx6D5 zbN9S-P;a2USqM#BeT40k~up;cPU>*^kRtRBng4(OP*I%rf5@5(oI zvC0)FcW`<$D#4Xz3}$b>oPpmqnC}IlZVQnIL%C^8{KH$D3MPHe39m}s7*};U0q;BZ zcQC=cBkY65fP+@@Kw@Il7}69Ok_4&Vv-<)qdfXChXo$NPGHiIe&#U3i6Qb|!Xk9aZ zz8#V?h3ncD3mrT0yTmm}2e=58BBlwvfZDaJLr0J7&&IH3E8soJBtqoQeAE8v`VETC zGVeQWN*)nCKH~miAR0mS^xD<3|JdR;d!Z#Oj37})KHbP(OM?E0cdRS*?;)FZxyHs+ z?xb##rOjYb96QjJzOUF2ZBg z_@ys5+MIb=A1D30ow)+SvyU$>phCdKQj!{wkO`L;UOA;)viCepe9<}`)6;m?dQ=-d zNRU`OpSt7X>CaA1cH!1-I3R+AIhbeT=IK^;?>oahb;q?QV*fJZ#$@VrRwIND__Hd= z&(UMTEsP8kkD!F4yjbvrIR*#Hs4aGiguW1}xYzVmKP0y?iOrLkGo*hQNAwvAsi>gp z+Aj7jmkl`7VJMWs%~a?Yc9#>LHG?o65{Yz}L*u4{q7_9aQ4$SPL1wWciIlE|qm>}} z+zdo08pZU)yiF0L8G`x81tN5qFy%8hxdZyY0eA57t2!sI8!IO4$3+a&jOtiB2Qt5n zBp7sqzJoGpq?>xEG6-MiAk8wCI#lR}df0CU?0Sdbbc7fo(r zSqyc|#MQ4j;6$liJNVOzpBcJxeafYPPbTI>pMMjz@Z%nHKBR`(RpuB#SV5s*##UPJ zBy@@ifG@{G8fihTN`Z*9SK~Q`hV9ybW65wxgj1B*N()H#!4=Llg1&Lgi8D{yqFG#C zZrChUKNn&3xTxpUe`6p5Zh;c@==j7;Exmx-;-{+iFh*cMiQ2+eP?m&~z7dus=n!Kg z8_KX>`+a?y?8~QjtEB*Q8+M%brN5OlG@v>*r!NbWp@J#R4{H)Fn$})l6X8fwP;6m3 z!HUX!4X!8p+cCi21fXKf2rqT3HMsB*yT|J50nyRXS4Zfvte=i;dQwtSLd3|(mG~cW zjOvO=Uq3p%`dKeiQ znfT1isK7w5qT*r_CMF~ZqO>V94?eo0P7)*{&QN=(75XEX4Ag{wJ(m2GaiXiFs_Jf})0-()6CB2t z3l4Vd7F8&9b~Q94ZnpjXV_*c4lzJ@m#L?=Q3MKy$rEg;^Dic!U%}s`zip4^B>XjSM z3sNM;RD-Y5_u}G?5m##nIwyDdDaS3Lv+BT^m)U1ieztKx^SChrmQi zo%=+}09XCQuEi*!TrjfO3=zi|px)ukM@s^#IJbPI5@xB1$UKkEf=w$j+Ks#4qJqkJBAmUUiTQ{Y9+{eprW?6>Ppa#~mNwE|gWe zPXtuASQ$NGkwxJt9^Urf?z6q%6sHq~8*0IwjSur03Q#M96#7m(BXGJSw1D(Qap%M8 zw=mS?xb%n{;RidLtD2wmr1x~Q+_TaB!(vX6L8M$DDs;?cWKwF_@ytNhpAbi+EtC+~ zp;Kvp9#QYM7RE?w_X;bdXX#?%Bh>Gv5$>kHull>ffX-9bABhv4L$;0DaLm|RT9$Kr zKj6!pa+q9u;fdpgr(6y%sOsrlXuTu4JZ_6i=#iLnBJni;oC%itq?25(*k>tHe1(F; z8r*MQk(S}bQKT_)`O(*<)@cBWyRC_BkT<;fi`Prp^%2DGaXJ3_@qN%rW8tofB6T8v zmOBDA{HcKZQxXL;%;umgS%pXrF5I`QUJvxXF>$uoRWg8T0T#QNH*cPrd4_7BFt1I( zJlW{acuII|ti;z0tQ12H_fiQfXd1tALz}idAO}NQvTAR8(~3 zTg+~~oL5u?0RsbLGD@WDRrNQ|#r!3*k2FZ$E$%NRc8r9nscG~iMu{wOHv!)R*^q}Y zE(XR>gUHe4<+ktBY~0h6A?6xpazC@U(1RkW%T|GO1bZ1Yu)BIHusU}%E2gHn(N2wI zmiFG_7iT}!9TYZ(wRJHd)!gJ&*L!vexJ$Ih9gEN1A0sa-JJ0}}sB^#6k6owtnv9Q( zgk4-(a>zA|E-efj6uTYe zq5Mt2z%|RKgIQ_mL?`<<11>eeeis7F5dhXAN(7sNNWm3EW`<9KCC>P1qI z%CZahs97aR^<@X#d=evaF;lfaRH_hzamc`Ii;EgDqk$-!xOogUR2|RyRW|CrG=%Uu zNl;Iwq-wJ4Wh5+J|K9x2mi%nPFoluj_Vu8_)sC{sOv|VFJO(YoXHcl~u13PYMV$;7 zxdyq)5?a(=gPq1&N(CxgA*Za#Qze4m@gEjEO}kUQD~|+%8cbPmc$)$(o(}iJ=WDM7 zqNkS??ly^S@EU_gVN9KHl4U5WAql`JA@cl3t@7*hQ6m~nJUpO{=RU=XHxiQh0{*-+ zfHW-=qTjoQ^!VPahWw#GA~OVyxKV@x9OLIB!srd!t(3N+&ws|M2sk z>3Yn%_1$h8sAEH8(ASR5p+^7^?}GGU>lDtBSE?m%f+F~CsT&yh$6y{RLe%_7^NUYbC_$Wj#`ceb0PjOA-w2YQVP|?uD5AaR1h*S($rG!P5)zv8i zzm%Jq^<8n+gDzLhN>vrse+1ySf>r zQlq9%$dIDoP!_p;9xmTX6Z<8)to998k|`sf32`tq#-8{&!kdLcu`VT6dN`eVJJ#SuX~M+ za=M{=A8@%9s(rma%T`*xcwK%Neu=-IlhlQf&#*Ks^iOAjE z*pAX4&~S)Cx{Bay5hU0Mq(7nzg)A}k33H(D;6-JfiE6ehdO0tn#cf3)q3&2rQ`$x;bL&3@iCHAX=YKw!&vxQRz%XZbk$Z|&ggyK<)W3~(O4+Yk&!*Mm%YsMn!=@G^yP2{o0aqR|{&PZ}( zeW1#{Gm-fLgl6T0_7cl5h!YG_DZw$<3j1P7yoqD8yT9cQ{@RkECi~eWa|OgoC-T)` zd;v=2qOm3GV19oLeP#}FumU9O3@88ei>s-V4Ub{(A6X%2idi}?NL#MND+tru{GL!3 z=QkMm4a?#cIS+8(Lc$#W#w!;ayTrbldW*7L^-M6_rYH^$NUdtM_BgY~(xL}9j{7Ui zzT5j3UCm8jRKbc9ECNj7DklVbN>0yaHSV#*?;BI9;qgmH9e*2|Zd4#NW%JIg938CH z)(@SNuuV?N{M?)te<+mf!yaSFNX)QqSyAzko_e}sguWbUi)A>{>#9r~Dmfn0Is}#B zqQ-2d`m6N&7b0e01YutvE?bl3+$PV4mYwPd6Dq}-9VwbqdJNNTQDf6dcy$>{hGB0) z5>Y}A_(Y&!h|CF<6h2;M@_KV-aJNlCA9IMR%+f4QBeYA@@b-iT^7UnJ>OIkF^Y+fA z8$#nO?3#f)ai3sP&e_@Ow1kEPIitmSH|3o@XB(6JveH9>&Q+uYLKD?BD0h&1wZ@sI zhDPX48i8HwMB7M<^RLPEi_bME=;RP4xk&ycaasAYkz4>oeWkbK z!@^Ab$Jx*<-Z~_?761_Uq3zIoBabadpoQ<4+}n-12|mTv8rEn9+PdP1ldE1UX?w(Z zFz{|%sY4^h2tV?k+vbY4gY-A8;CDtHrmQ7Ov{0ipTSM76t?2 zvJZU8q^6;z&5-$Vb~@In>Y#mtG)SpEE9xPtYvx);pf_#mOS4FYvwpZP*3)0Xm%QBr z))ZCSI=wj-`uIfX@ua1!Lofd4!jkLdnnbUuJEo%@taU;!M5h0b{7+xLN^5*4j!wb(ZR|kNrAllB{pq%=CpgC3?V5j6&;u)YmIPXEd zwR|P&V*SRRU6}I`997z-=SAAR=p6D za)}kt`?(ht@wPh`#rQ&taHJ}NF7XEXxq^``*YC^QJQag z1bGojPY;yBy5|5D{6Hs1#y?-Zo)Kuz=doOEHkCmE`vC9eY392SF6>2k^y zTL==a$NfOT2uEu!@oK=HKr$_ioQpq__<5??3>pw`ZzNP3 zy6+ZqQh4`=VqR1in4s6s<`xHN*!hE;9!L1O{IREW|2t~sAqdWGfmY=lYx{(LEy5pn zL$|>w(@^$Xo!YaqHS7($ax|W@H#^yu6!wlsO9YgA@bgL%VGkIG13;fR=d=6`evx3U z;cl9vZ%T|cg>-jASMcaowY{07wyccAw~Y|r2r| zfT^(2!7>Z1J=~R0!tG&H?)=@45k^1iJ*98V=5~hqDz5L4QMiG7)V=X{fV|%2@Ouw> zVql_KSz8Yc`Azvg3tl1$>>G3DTpoEp0OA{4`sY{?4OqtY zRzFpz7VLHf0;m^u(|AsDD-2re^|{mQ6t4b$Nh0d^^S#NS(oTLS0qStu($O}40Rcb2 z^Zi9^Z0yzWutdTq7rVnn5wWK1`&Qu@`G?|~KZM26cwtdh&D&*VMNL;nrI&%QHbiC@ z1+hr9Bsc8A0TMdCvZ3A;wU-3`ovCqFT5!^w1Qx-?iwzVOD z4%i%lMw5})cQCTJ2&9;Kt@!{J#v^BKesZ-U|Kf_y7H7_nr`M@b0+c1o-CQhvUr0s< zUug-~*a%JBh&Q)^oh<#%Ttw7S=9z2;{m;A^UF(!F;3SLVo)|DnTFs|-2$X_Cj~HCi zCpg|p#JMo z37)lY0wvn>)Yy}zJ|kPwCT+lqgPh;GefWOTGfp{v~zN4m{Ty*h+1fiTq6 zA4$~y>efq=MXyT0$02oO=|h3qeOnysW4-*kgO!$DG%=4M>^<;K@-`QRzTS2i7>skQ>G3&<*G8)MhpW2 z969MJp^W&8m&HELYJJ#GwY69#^t!yEe2YZ1b~T8Khi&E7Fl#G^qeSl=cB0|C*MU)n zxI(sCYzoK_R7!~*xW+=dbF?%9EY?Yuq;NG5VbU5b+@-{1;k0PXWK+dZgGPZsw=`QX zslRoRZEgp$YDXfaQ~@)%iUaF71J~6GY(1F~RDK_<8x6;1*8{? zRm7w3U`%XhjmCqdf03fwD|7n~0hiz%bQzV`OVfsthSo5mR4`0m^Mj_;s0G&-Jr?<> z$e>4jWMH1o)f!U4RQK5)<5c&#I(A~R)Dj-!{|3noFr)}p^OpwT;o*IQ(FB=wzVXCL zpjSRuRTPN9($@<+LAoojk->iU)PQGV6qO_YJ-0v`P=Pc@SXKduVtJDr{6;3sPV>`; z&*@zuxr2%r7jD0tfO99<9jT!qAGHGq(bBE=k4vSThpIIdu5Ra5W153Q47kY#YyCx= z0gad~dz%uP2Tm>fR=$iQx=oui?oW+Q_*5WQ?8^t-J-_N^6*gwf?|`xA zmI7|Am@fGq%zP+jicgN{iFZN;_sgMB#U3iOi;=|0RA!pXOECwdw|p~DMDLbLh?PIw zoQBtbnELI;hsrPbwY-mcU=p1jB!{fAe{zGf=Wr@-)=NVe_p4JpPIOt8S$QMYX0>WA z*^mEmUzUi0`ZYh~vyLq{Zcs+QZk_uc6m40p#Q|rB+l8nKXD2CpY|{2vRj?vI`8_=1 z8E$s=mLw<1@nM)3N*nNeod@mVwhFOLjGnFk!bC%(&9rmESfG(K7LM^K7#z3mZaB?K za)3FctY;(IJP@Mc-<7sRO}feR$-Gf){`6I*>#7+~Ni%XWd~W$H3+6?(j0&y)iFR{h z+6F&oRtce|T#B@rE^u&g*qi=GB6}0*m5jgacf+^sE+c{Es!t4w82kvpa;AeScU|!Z zV)~U_dh#~)Znw{yg3s(t;0Eu0sTZ(sie9@Wcpdu*`b^*>7MiJuZHP(7E&Y{;{dX)p z#zp?9fW9RT`&G^L`jycc6gn?uUaw!eMTsWNQ;~lveW<_&*QumT>+8CH@1co%KP|2p z7#CgWz_5*2y>DUz`apyE&PRkdGG^4Z&ApsUXzcM!9LLUD1CgQFgWS25UKAZL8r{zM zDn9yF2c<@H%GUdsTB4&?9k1TvN8k^{BG%#qx|C@F4+dfS#L=7LWO#VFkcJp+z#ids z%Y+pqimLY~aEZyG?9cZ}FRtLg28c*mxjHR5i`%CB5hC$ARVASgeQF}wMVDR5L`;;6 zT;}|P&>ydonS#9u%a2B5v#EriKhu>kx4d~=6FtLLqFRX$8=T;7ZqUlKkb^yq88m91 zy4TPT;F^u1ZAogz4M+&2R#TLVGzIrS)h&sg^#PZ!-^F5~4bf;Fbzz0hrv&vf@(TR~?=tI+b7J()1hU965<)VIh;hNbEg=S}k_s`h zT~N2SyA-FbrCtl)>fosP^tK?)R1J2@=AyE;5%Ct!bbr;jC;{0~VrQ6SD;zS<+YTE{ zaK@Y;r2g9|JS7dklVI(J8vECmoaHm@3PcO0nm)Ro%4`ei<1zo}wh>FVo9&MmbSR%@ zk(;g3*N_L72(dpj2~cfsv!~5E2%y*eIG+v5*uEs946su0_I|a0{JUN{*>|}t5O>iD zp5~?)r*APPO`GT-sNf|WgB8GJ!~A3;9mZ+^tb{NYBsm!OS&BR01hl2WO3iu+hR zw--y+(^pBQ(Z3tpf3j@YM6vs5VPOv$d)b(0@>=X+cHd*XSf)HWMLX>M;Xi!Q?2mS9 z5zi@G7EjM_l+^t$pEuP@N$R^lGyADX?O*t-qv@ARa27=kgzfCl_98F4islL~5$rYl z8~8mr-8nBob8BfIkWS%U_=VJ&Ynz0JL}}z(i=aN{AWIRm48Cl_#xc2{`WUKsgwO$8 z7hF?u0cB@VKTWpMBxg=-&!_}PqF#xH6c4+?>cuq;)VP$$Kc>;0qvGsT8@;t$NiwH! z8^VShc}~PtMOkaI0N;gjh@2;Kdjlsl{V7BXm8wL0*WEg|pBllw!`d3G<~sR%hDmEY zIe=<~Kxo59c(sE!V44_DBzZ~CIheIw^N#R&19X+@v_r;DA`;ScHuD8O#e0$$>{5<~ zT^P*;Q|D&|F(Vr9-fxU2q z)zPWAIrA|f-0GDIDp&pRr3Dow9&hJZs2*fK5Bl0|&m6kK|`bp_o>hBU!ss+2L6#)n=w%SWuQOF5$?{DXNv~v{E);)61@wt&6Y9L+@^t}Jt7@!8dMMvxw z^gldE6w^~zFaF4J^+^n-=2MZR9vva{mMb=wmfp3y!l2VAdzHhzCd_TJTB4<}vFq6@ zNMpDDx#lV7hvYTwOhaqmb&p9)M+Y$KhhT@|VAN;Kx|;yvgnlb|!^n(f?C*PE zFd#obo3AME3oGtoB49N6Gs-|2M%nNQv8IDHhUR4h!o6LxsZir}s%Yr3_n8!_h;^gk-_`SX{UPb?9?H z7CteTEB_6TP%n9WC*g5mtW=|T!CXbG?D_Vnk`|X~SzKGBs98Du?Lw&?!C%q9L63QI zKdHDs3NF#KYJViI^4cQ94(In{*4KLZm`e^W*IJhEX zm~gG=*9s6aH#vnj5nRV*T?E2!B`Bw`!*I$fSlx#hDO)C7u-SBoVstyIvd-lyC`rd( z>#k?}_v}UOfMWCau;5p6r<>L#hH|$+Nb>268_Kzboq+X62Kr9d{0wSXW!nsyeUV~D z7Q+(x%o1$-qO+x?B^sk&@xu9zH`LS_b4!()mAU1`^i@|bPg?KRNDDsjY z0Hs1DyW=Tz_vzd17OBR6Y#PzCgl6cCo{IA5c#S)mv+)uB)i zT>H(uAa=WW^MoI~*(??hC)R)5e^Hb}C?uU*uFP&^4c0x`OiueM`IrJ4HnneV0H)@^ zD2L6u-_=;dBXE+7@k)9csNIZu#S0txXz?+g7888&^{q z>2j3bao|s+_{%R!<5?Nf++ue|;(ywFEZ$~7KL|g0pMA4rOsSX&$I{0Q0~##|h5P$~ zJ{pK&T#g1zEkYsYO{~P&`9oi_*N$AoE*04Nf)R?%(qpFG@1J1*8s5vOAa}e_0aG{v zt#AnQc8}%}q4e1AqE=1u1MkcUma&MgpBW0A@PltD6zct{Ty2xoM_;lYSW#n+BFA>} z`q^E81qZ*im1KcHD9*K9ok$?choXE#=5&@)_V&x{G@W1vi*#qPNn@>x#y~7-_|D)b z8CL20((28aqVmFhZluL2CYm)>(y~NR8h*HL7~yn+)M*Jf;nLzmpb{~Sp|n!1;^Z$& z`a?~=z)DHRWJpv|d$uwSUiLmSw>^g$N*n8TgJPr}je~6R3^7%t5Y{WA``@cxZQrWv z)c`**4@e>Sh%HcVy6&jNve6sCs5!pfd>0S50>!t(5?sHd6u8ys!>Sh5ySSbW`ynQ+ zvSI2g3s(h%64KaZS!6iZ$G7xy%fm{;-k$I3 z(>=NOvq{hLeNY5fo6|mCN@U}@6ileriboXogA~-@*wK6fvWOmQ)IVm*%v(aJ*K~N2 z(4OiP@AO4j3~D$Hb4OQvVh6SHz~yT4oA4NAVTF6iECW`Uu{G2iG=w)YoS5T_2bvCj zHf$@h+8uZf+0I-5n7*o?%D_spi#y8s9Fup>CS&>&4Sc_|lhZil*cMHo0d4*gbRfV^ z%F5EZf0rzm8D47KHwJg+@|V(#1W5x5D4H@R21cdg_2d2gr`bvF_4=6ov6Fx187U&Y zSP=Ansf}2i+`IGy>W@@7=1lTjvSJLWiMc-Ra`&q-^U_A0xkJ$#?U5o?+K0Epmvw_r Za48O6_8h{j_kWJEON%Rr)rc4d{x3#FmGJ-o literal 0 HcmV?d00001 diff --git a/freemius/assets/js/pricing/e366d70661d8ad2493bd6afbd779f125.png b/freemius/assets/js/pricing/e366d70661d8ad2493bd6afbd779f125.png new file mode 100644 index 0000000000000000000000000000000000000000..2fb194450232df293d4269448de456ea27c6f5d4 GIT binary patch literal 11124 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 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/freemius/assets/js/pricing/f3aac72a8e63997d6bb888f816457e9b.png b/freemius/assets/js/pricing/f3aac72a8e63997d6bb888f816457e9b.png new file mode 100644 index 0000000000000000000000000000000000000000..5a0f067d32bd70597dd496eee56e504b9b9bd056 GIT binary patch literal 6040 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 S1TbR&0000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/freemius/assets/js/pricing/fde48e4609a6ddc11d639fc2421f2afd.png b/freemius/assets/js/pricing/fde48e4609a6ddc11d639fc2421f2afd.png new file mode 100644 index 0000000000000000000000000000000000000000..045d4b25f9727fada65dcfd66cf0a0a3d167ee84 GIT binary patch literal 11237 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

{^6Retfv z6e)+Y86 z&-OAhn&%B~c$`zOH~YnViV(=PdD(}Fcr6gb z@qCJTX)KfxzL`hqdq$pyR{#-Ot7VpvXTX&Lf;o10Uz!M^YMI*SFN%7P`VNK(D>QTdyCP-Z<%CK(t*T4j;W{3$D2mM!AexlA- zUb<}1Dx;~3vaWm)z9em_tc|P?cssQ$Hj)Y6^M;Y^!#S7DAf(wTVsi4od$#co(U{KZ4KkEm$NX_fw^6flAOA1wX{X>{{THMY+L{U literal 0 HcmV?d00001 diff --git a/freemius/assets/js/pricing/freemius-pricing.js b/freemius/assets/js/pricing/freemius-pricing.js new file mode 100644 index 0000000..a72ff03 --- /dev/null +++ b/freemius/assets/js/pricing/freemius-pricing.js @@ -0,0 +1,2 @@ +/*! For license information please see freemius-pricing.js.LICENSE.txt */ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.Freemius=t():e.Freemius=t()}(self,(function(){return(()=>{var e={487:e=>{var t={utf8:{stringToBytes:function(e){return t.bin.stringToBytes(unescape(encodeURIComponent(e)))},bytesToString:function(e){return decodeURIComponent(escape(t.bin.bytesToString(e)))}},bin:{stringToBytes:function(e){for(var t=[],n=0;n{var t,n;t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",n={rotl:function(e,t){return e<>>32-t},rotr:function(e,t){return e<<32-t|e>>>t},endian:function(e){if(e.constructor==Number)return 16711935&n.rotl(e,8)|4278255360&n.rotl(e,24);for(var t=0;t0;e--)t.push(Math.floor(256*Math.random()));return t},bytesToWords:function(e){for(var t=[],n=0,a=0;n>>5]|=e[n]<<24-a%32;return t},wordsToBytes:function(e){for(var t=[],n=0;n<32*e.length;n+=8)t.push(e[n>>>5]>>>24-n%32&255);return t},bytesToHex:function(e){for(var t=[],n=0;n>>4).toString(16)),t.push((15&e[n]).toString(16));return t.join("")},hexToBytes:function(e){for(var t=[],n=0;n>>6*(3-i)&63)):n.push("=");return n.join("")},base64ToBytes:function(e){e=e.replace(/[^A-Z0-9+\/]/gi,"");for(var n=[],a=0,r=0;a>>6-2*r);return n}},e.exports=n},477:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(81),r=n.n(a),i=n(645),o=n.n(i)()(r());o.push([e.id,':root{--fs-ds-blue-10: #f0f6fc;--fs-ds-blue-50: #c5d9ed;--fs-ds-blue-100: #9ec2e6;--fs-ds-blue-200: #72aee6;--fs-ds-blue-300: #4f94d4;--fs-ds-blue-400: #3582c4;--fs-ds-blue-500: #2271b1;--fs-ds-blue-600: #135e96;--fs-ds-blue-700: #0a4b78;--fs-ds-blue-800: #043959;--fs-ds-blue-900: #01263a;--fs-ds-neutral-10: #f0f0f1;--fs-ds-neutral-50: #dcdcde;--fs-ds-neutral-100: #c3c4c7;--fs-ds-neutral-200: #a7aaad;--fs-ds-neutral-300: #8c8f94;--fs-ds-neutral-400: #787c82;--fs-ds-neutral-500: #646970;--fs-ds-neutral-600: #50575e;--fs-ds-neutral-700: #3c434a;--fs-ds-neutral-800: #2c3338;--fs-ds-neutral-900: #1d2327;--fs-ds-neutral-900-fade-60: rgba(29, 35, 39, .6);--fs-ds-neutral-900-fade-92: rgba(29, 35, 39, .08);--fs-ds-green-10: #b8e6bf;--fs-ds-green-100: #68de7c;--fs-ds-green-200: #1ed14b;--fs-ds-green-300: #00ba37;--fs-ds-green-400: #00a32a;--fs-ds-green-500: #008a20;--fs-ds-green-600: #007017;--fs-ds-green-700: #005c12;--fs-ds-green-800: #00450c;--fs-ds-green-900: #003008;--fs-ds-red-10: #facfd2;--fs-ds-red-100: #ffabaf;--fs-ds-red-200: #ff8085;--fs-ds-red-300: #f86368;--fs-ds-red-400: #e65054;--fs-ds-red-500: #d63638;--fs-ds-red-600: #b32d2e;--fs-ds-red-700: #8a2424;--fs-ds-red-800: #691c1c;--fs-ds-red-900: #451313;--fs-ds-yellow-10: #fcf9e8;--fs-ds-yellow-100: #f2d675;--fs-ds-yellow-200: #f0c33c;--fs-ds-yellow-300: #dba617;--fs-ds-yellow-400: #bd8600;--fs-ds-yellow-500: #996800;--fs-ds-yellow-600: #755100;--fs-ds-yellow-700: #614200;--fs-ds-yellow-800: #4a3200;--fs-ds-yellow-900: #362400;--fs-ds-white-10: #ffffff}#fs_pricing_app,#fs_pricing_wrapper{--fs-ds-theme-primary-accent-color: var(--fs-ds-blue-500);--fs-ds-theme-primary-accent-color-hover: var(--fs-ds-blue-600);--fs-ds-theme-primary-green-color: var(--fs-ds-green-500);--fs-ds-theme-primary-red-color: var(--fs-ds-red-500);--fs-ds-theme-primary-yellow-color: var(--fs-ds-yellow-500);--fs-ds-theme-error-color: var(--fs-ds-theme-primary-red-color);--fs-ds-theme-success-color: var(--fs-ds-theme-primary-green-color);--fs-ds-theme-warn-color: var(--fs-ds-theme-primary-yellow-color);--fs-ds-theme-background-color: var(--fs-ds-white-10);--fs-ds-theme-background-shade: var(--fs-ds-neutral-10);--fs-ds-theme-background-accented: var(--fs-ds-neutral-50);--fs-ds-theme-background-hover: var(--fs-ds-neutral-200);--fs-ds-theme-background-overlay: var(--fs-ds-neutral-900-fade-60);--fs-ds-theme-background-dark: var(--fs-ds-neutral-800);--fs-ds-theme-background-darkest: var(--fs-ds-neutral-900);--fs-ds-theme-text-color: var(--fs-ds-neutral-900);--fs-ds-theme-heading-text-color: var(--fs-ds-neutral-800);--fs-ds-theme-muted-text-color: var(--fs-ds-neutral-600);--fs-ds-theme-dark-background-text-color: var(--fs-ds-white-10);--fs-ds-theme-dark-background-muted-text-color: var(--fs-ds-neutral-300);--fs-ds-theme-divider-color: var(--fs-ds-theme-background-accented);--fs-ds-theme-border-color: var(--fs-ds-neutral-100);--fs-ds-theme-button-background-color: var(--fs-ds-neutral-50);--fs-ds-theme-button-background-hover-color: var(--fs-ds-neutral-200);--fs-ds-theme-button-text-color: var(--fs-ds-theme-heading-text-color);--fs-ds-theme-button-border-color: var(--fs-ds-neutral-300);--fs-ds-theme-button-border-hover-color: var(--fs-ds-neutral-600);--fs-ds-theme-button-border-focus-color: var(--fs-ds-blue-400);--fs-ds-theme-button-primary-background-color: var(--fs-ds-theme-primary-accent-color);--fs-ds-theme-button-primary-background-hover-color: var(--fs-ds-theme-primary-accent-color-hover);--fs-ds-theme-button-primary-text-color: var(--fs-ds-white-10);--fs-ds-theme-button-primary-border-color: var(--fs-ds-blue-800);--fs-ds-theme-button-primary-border-hover-color: var(--fs-ds-blue-900);--fs-ds-theme-button-primary-border-focus-color: var(--fs-ds-blue-100);--fs-ds-theme-button-disabled-border-color: var(--fs-ds-neutral-100);--fs-ds-theme-button-disabled-background-color: var(--fs-ds-neutral-50);--fs-ds-theme-button-disabled-text-color: var(--fs-ds-neutral-300);--fs-ds-theme-notice-warn-background: var(--fs-ds-yellow-10);--fs-ds-theme-notice-warn-color: var(--fs-ds-yellow-900);--fs-ds-theme-notice-warn-border: var(--fs-ds-theme-warn-color);--fs-ds-theme-notice-info-background: var(--fs-ds-theme-background-shade);--fs-ds-theme-notice-info-color: var(--fs-ds-theme-primary-accent-color-hover);--fs-ds-theme-notice-info-border: var(--fs-ds-theme-primary-accent-color);--fs-ds-theme-package-popular-background: var(--fs-ds-blue-200);--fs-ds-theme-testimonial-star-color: var(--fs-ds-yellow-300)}#fs_pricing.fs-full-size-wrapper{margin-top:0}#root,#fs_pricing_app{background:var(--fs-ds-theme-background-shade);color:var(--fs-ds-theme-text-color);height:auto;line-height:normal;font-size:13px;margin:0}#root h1,#root h2,#root h3,#root h4,#root ul,#root blockquote,#fs_pricing_app h1,#fs_pricing_app h2,#fs_pricing_app h3,#fs_pricing_app h4,#fs_pricing_app ul,#fs_pricing_app blockquote{margin:0;padding:0;text-align:center;color:var(--fs-ds-theme-heading-text-color)}#root h1,#fs_pricing_app h1{font-size:2.5em}#root h2,#fs_pricing_app h2{font-size:1.5em}#root h3,#fs_pricing_app h3{font-size:1.2em}#root ul,#fs_pricing_app ul{list-style-type:none}#root p,#fs_pricing_app p{font-size:.9em}#root p,#root blockquote,#fs_pricing_app p,#fs_pricing_app blockquote{color:var(--fs-ds-theme-text-color)}#root strong,#fs_pricing_app strong{font-weight:700}#root li,#root dd,#fs_pricing_app li,#fs_pricing_app dd{margin:0}#root .fs-app-header .fs-page-title,#fs_pricing_app .fs-app-header .fs-page-title{margin:0 0 15px;text-align:left;display:flex;flex-flow:row wrap;gap:10px;align-items:center;padding:20px 15px 10px}#root .fs-app-header .fs-page-title h1,#fs_pricing_app .fs-app-header .fs-page-title h1{font-size:18px;margin:0}#root .fs-app-header .fs-page-title h3,#fs_pricing_app .fs-app-header .fs-page-title h3{margin:0;font-size:14px;padding:4px 8px;font-weight:400;border-radius:4px;background-color:var(--fs-ds-theme-background-accented);color:var(--fs-ds-theme-muted-text-color)}#root .fs-app-header .fs-plugin-title-and-logo,#fs_pricing_app .fs-app-header .fs-plugin-title-and-logo{margin:0 15px;background:var(--fs-ds-theme-background-color);padding:12px 0;border:1px solid var(--fs-ds-theme-divider-color);border-radius:4px;text-align:center}#root .fs-app-header .fs-plugin-title-and-logo .fs-plugin-logo,#root .fs-app-header .fs-plugin-title-and-logo h1,#fs_pricing_app .fs-app-header .fs-plugin-title-and-logo .fs-plugin-logo,#fs_pricing_app .fs-app-header .fs-plugin-title-and-logo h1{display:inline-block;vertical-align:middle;margin:0 10px}#root .fs-app-header .fs-plugin-title-and-logo .fs-plugin-logo,#fs_pricing_app .fs-app-header .fs-plugin-title-and-logo .fs-plugin-logo{width:48px;height:48px;border-radius:4px}@media screen and (min-width: 601px){#root .fs-app-header .fs-plugin-title-and-logo .fs-plugin-logo,#fs_pricing_app .fs-app-header .fs-plugin-title-and-logo .fs-plugin-logo{width:64px;height:64px}}#root .fs-trial-message,#fs_pricing_app .fs-trial-message{padding:20px;background:var(--fs-ds-theme-notice-warn-background);color:var(--fs-ds-theme-notice-warn-color);font-weight:700;text-align:center;border-top:1px solid var(--fs-ds-theme-notice-warn-border);border-bottom:1px solid var(--fs-ds-theme-notice-warn-border);font-size:1.2em;box-sizing:border-box;margin:0 0 5px}#root .fs-app-main,#fs_pricing_app .fs-app-main{text-align:center}#root .fs-app-main .fs-section,#fs_pricing_app .fs-app-main .fs-section{margin:auto;display:block}#root .fs-app-main .fs-section .fs-section-header,#fs_pricing_app .fs-app-main .fs-section .fs-section-header{font-weight:700}#root .fs-app-main>.fs-section,#fs_pricing_app .fs-app-main>.fs-section{padding:20px;margin:4em auto 0}#root .fs-app-main>.fs-section:nth-child(even),#fs_pricing_app .fs-app-main>.fs-section:nth-child(even){background:var(--fs-ds-theme-background-color)}#root .fs-app-main>.fs-section>header,#fs_pricing_app .fs-app-main>.fs-section>header{margin:0 0 3em}#root .fs-app-main>.fs-section>header h2,#fs_pricing_app .fs-app-main>.fs-section>header h2{margin:0;font-size:2.5em}#root .fs-app-main .fs-section--plans-and-pricing,#fs_pricing_app .fs-app-main .fs-section--plans-and-pricing{padding:20px;margin-top:0}#root .fs-app-main .fs-section--plans-and-pricing>.fs-section,#fs_pricing_app .fs-app-main .fs-section--plans-and-pricing>.fs-section{margin:1.5em auto 0}#root .fs-app-main .fs-section--plans-and-pricing>.fs-section:first-child,#fs_pricing_app .fs-app-main .fs-section--plans-and-pricing>.fs-section:first-child{margin-top:0}#root .fs-app-main .fs-section--plans-and-pricing .fs-annual-discount,#fs_pricing_app .fs-app-main .fs-section--plans-and-pricing .fs-annual-discount{font-weight:700;font-size:small}#root .fs-app-main .fs-section--plans-and-pricing .fs-section--trial-header,#fs_pricing_app .fs-app-main .fs-section--plans-and-pricing .fs-section--trial-header{text-align:center;background:var(--fs-ds-theme-background-color);padding:20px;border-radius:5px;box-sizing:border-box;max-width:945px}#root .fs-app-main .fs-section--plans-and-pricing .fs-section--trial-header h2,#fs_pricing_app .fs-app-main .fs-section--plans-and-pricing .fs-section--trial-header h2{margin-bottom:10px}#root .fs-app-main .fs-section--plans-and-pricing .fs-section--trial-header h4,#fs_pricing_app .fs-app-main .fs-section--plans-and-pricing .fs-section--trial-header h4{font-weight:400}#root .fs-app-main .fs-section--plans-and-pricing .fs-currencies,#fs_pricing_app .fs-app-main .fs-section--plans-and-pricing .fs-currencies{border-color:var(--fs-ds-theme-button-border-color)}#root .fs-app-main .fs-section--plans-and-pricing .fs-section--billing-cycles,#fs_pricing_app .fs-app-main .fs-section--plans-and-pricing .fs-section--billing-cycles{display:inline-block;vertical-align:middle;padding:0 10px;width:auto}#root .fs-app-main .fs-section--plans-and-pricing .fs-section--billing-cycles .fs-billing-cycles,#fs_pricing_app .fs-app-main .fs-section--plans-and-pricing .fs-section--billing-cycles .fs-billing-cycles{overflow:hidden}#root .fs-app-main .fs-section--plans-and-pricing .fs-section--billing-cycles .fs-billing-cycles li,#fs_pricing_app .fs-app-main .fs-section--plans-and-pricing .fs-section--billing-cycles .fs-billing-cycles li{border:1px solid var(--fs-ds-theme-border-color);border-right-width:0;display:inline-block;font-weight:700;margin:0;padding:10px;cursor:pointer}#root .fs-app-main .fs-section--plans-and-pricing .fs-section--billing-cycles .fs-billing-cycles li:first-child,#fs_pricing_app .fs-app-main .fs-section--plans-and-pricing .fs-section--billing-cycles .fs-billing-cycles li:first-child{border-radius:20px 0 0 20px}#root .fs-app-main .fs-section--plans-and-pricing .fs-section--billing-cycles .fs-billing-cycles li:last-child,#fs_pricing_app .fs-app-main .fs-section--plans-and-pricing .fs-section--billing-cycles .fs-billing-cycles li:last-child{border-radius:0 20px 20px 0;border-right-width:1px}#root .fs-app-main .fs-section--plans-and-pricing .fs-section--billing-cycles .fs-billing-cycles li.fs-selected-billing-cycle,#fs_pricing_app .fs-app-main .fs-section--plans-and-pricing .fs-section--billing-cycles .fs-billing-cycles li.fs-selected-billing-cycle{background:var(--fs-ds-theme-background-color);color:var(--fs-ds-theme-primary-accent-color-hover)}#root .fs-app-main .fs-section--plans-and-pricing .fs-section--custom-implementation,#fs_pricing_app .fs-app-main .fs-section--plans-and-pricing .fs-section--custom-implementation{padding:15px;background:var(--fs-ds-theme-background-color);border:1px solid var(--fs-ds-theme-divider-color);border-radius:4px;box-sizing:border-box;max-width:945px;margin:0 auto}#root .fs-app-main .fs-section--plans-and-pricing .fs-section--custom-implementation h2,#fs_pricing_app .fs-app-main .fs-section--plans-and-pricing .fs-section--custom-implementation h2{margin-bottom:10px;font-weight:700}#root .fs-app-main .fs-section--plans-and-pricing .fs-section--custom-implementation p,#fs_pricing_app .fs-app-main .fs-section--plans-and-pricing .fs-section--custom-implementation p{font-size:small;margin:0}#root .fs-app-main .fs-section--plans-and-pricing .fs-section--money-back-guarantee,#fs_pricing_app .fs-app-main .fs-section--plans-and-pricing .fs-section--money-back-guarantee{max-width:857px;margin:30px auto;position:relative}#root .fs-app-main .fs-section--plans-and-pricing .fs-section--money-back-guarantee .fs-money-back-guarantee-title,#fs_pricing_app .fs-app-main .fs-section--plans-and-pricing .fs-section--money-back-guarantee .fs-money-back-guarantee-title{color:var(--fs-ds-theme-heading-text-color);font-weight:700;margin-bottom:15px}#root .fs-app-main .fs-section--plans-and-pricing .fs-section--money-back-guarantee .fs-money-back-guarantee-message,#fs_pricing_app .fs-app-main .fs-section--plans-and-pricing .fs-section--money-back-guarantee .fs-money-back-guarantee-message{font-size:small;line-height:20px;margin-bottom:15px;padding:0 15px}#root .fs-app-main .fs-section--plans-and-pricing .fs-section--money-back-guarantee img,#fs_pricing_app .fs-app-main .fs-section--plans-and-pricing .fs-section--money-back-guarantee img{position:absolute;width:90px;top:50%;right:0;margin-top:-45px}#root .fs-app-main .fs-section--plans-and-pricing .fs-section--badges .fs-badge,#fs_pricing_app .fs-app-main .fs-section--plans-and-pricing .fs-section--badges .fs-badge{display:inline-block;vertical-align:middle;position:relative;box-shadow:none;background:transparent}#root .fs-app-main .fs-section--plans-and-pricing .fs-section--badges .fs-badge+.fs-badge,#fs_pricing_app .fs-app-main .fs-section--plans-and-pricing .fs-section--badges .fs-badge+.fs-badge{margin-left:20px;margin-top:13px}#root .fs-app-main .fs-section--testimonials,#fs_pricing_app .fs-app-main .fs-section--testimonials{border-top:1px solid var(--fs-ds-theme-border-color);border-bottom:1px solid var(--fs-ds-theme-border-color);padding:3em 4em 4em}#root .fs-app-main .fs-section--testimonials .fs-section-header,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-section-header{margin-left:-30px;margin-right:-30px}#root .fs-app-main .fs-section--testimonials .fs-testimonials-nav,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-testimonials-nav{margin:auto;display:block;width:auto;position:relative}#root .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-nav.fs-nav-prev,#root .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-nav.fs-nav-next,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-nav.fs-nav-prev,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-nav.fs-nav-next{top:50%;border:1px solid var(--fs-ds-theme-border-color);border-radius:14px;cursor:pointer;margin-top:11px;position:absolute}#root .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-nav.fs-nav-prev .fs-icon,#root .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-nav.fs-nav-next .fs-icon,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-nav.fs-nav-prev .fs-icon,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-nav.fs-nav-next .fs-icon{display:inline-block;height:1em;width:1em;line-height:1em;color:var(--fs-ds-theme-muted-text-color);padding:5px}#root .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-nav.fs-nav-prev,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-nav.fs-nav-prev{margin-left:-30px}#root .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-nav.fs-nav-next,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-nav.fs-nav-next{right:-30px}#root .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials-track,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials-track{margin:auto;overflow:hidden;position:relative;display:block;padding-top:45px}#root .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials{width:10000px;display:block;position:relative;transition:left .5s ease,right .5s ease}#root .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial{float:left;font-size:small;position:relative;width:340px;box-sizing:border-box;margin:0}#root .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial>section,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial>section{box-sizing:border-box}#root .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial .fs-testimonial-rating,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial .fs-testimonial-rating{color:var(--fs-ds-theme-testimonial-star-color)}#root .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial .fs-testimonial-header,#root .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial>section,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial .fs-testimonial-header,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial>section{background:var(--fs-ds-theme-background-color);padding:10px;margin:0 2em;border:1px solid var(--fs-ds-theme-divider-color)}#root .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial>section,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial>section{border-radius:0 0 8px 8px;border-top:0 none}#root .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial .fs-testimonial-header,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial .fs-testimonial-header{border-bottom:0 none;border-radius:8px 8px 0 0}#root .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial .fs-testimonial-header .fs-testimonial-logo,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial .fs-testimonial-header .fs-testimonial-logo{border:1px solid var(--fs-ds-theme-divider-color);border-radius:44px;padding:5px;background:var(--fs-ds-theme-background-color);width:76px;height:76px;position:relative;margin-top:-54px;left:50%;margin-left:-44px}#root .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial .fs-testimonial-header .fs-testimonial-logo object,#root .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial .fs-testimonial-header .fs-testimonial-logo img,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial .fs-testimonial-header .fs-testimonial-logo object,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial .fs-testimonial-header .fs-testimonial-logo img{max-width:100%;border-radius:40px}#root .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial .fs-testimonial-header h4,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial .fs-testimonial-header h4{margin:15px 0 6px}#root .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial .fs-icon-quote,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial .fs-icon-quote{color:var(--fs-ds-theme-muted-text-color)}#root .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial .fs-testimonial-message,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial .fs-testimonial-message{line-height:18px}#root .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial .fs-testimonial-author,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial .fs-testimonial-author{margin-top:30px;margin-bottom:10px}#root .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial .fs-testimonial-author .fs-testimonial-author-name,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial .fs-testimonial-author .fs-testimonial-author-name{font-weight:700;margin-bottom:2px;color:var(--fs-ds-theme-text-color)}#root .fs-app-main .fs-section--testimonials .fs-nav-pagination,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-nav-pagination{margin:4em 0 0;position:relative}#root .fs-app-main .fs-section--testimonials .fs-nav-pagination li,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-nav-pagination li{position:relative;display:inline-block;margin:0 8px}#root .fs-app-main .fs-section--testimonials .fs-nav-pagination li button.fs-round-button,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-nav-pagination li button.fs-round-button{cursor:pointer;border:1px solid var(--fs-ds-theme-border-color);vertical-align:middle;display:inline-block;line-height:0;width:8px;height:8px;padding:0;color:transparent;outline:none;border-radius:4px;overflow:hidden}#root .fs-app-main .fs-section--testimonials .fs-nav-pagination li button.fs-round-button span,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-nav-pagination li button.fs-round-button span{display:inline-block;width:100%;height:100%;background:var(--fs-ds-theme-background-shade)}#root .fs-app-main .fs-section--testimonials .fs-nav-pagination li.selected button,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-nav-pagination li.selected button{border:0 none}#root .fs-app-main .fs-section--testimonials .fs-nav-pagination li.selected button.fs-round-button span,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-nav-pagination li.selected button.fs-round-button span{background:var(--fs-ds-theme-background-accented)}#root .fs-app-main .fs-section--faq,#fs_pricing_app .fs-app-main .fs-section--faq{background:var(--fs-ds-theme-background-shade)}#root .fs-app-main .fs-section--faq .fs-section--faq-items,#fs_pricing_app .fs-app-main .fs-section--faq .fs-section--faq-items{max-width:945px;margin:0 auto;box-sizing:border-box;text-align:left;columns:2;column-gap:20px}@media only screen and (max-width: 600px){#root .fs-app-main .fs-section--faq .fs-section--faq-items,#fs_pricing_app .fs-app-main .fs-section--faq .fs-section--faq-items{columns:1}}#root .fs-app-main .fs-section--faq .fs-section--faq-items .fs-section--faq-item,#fs_pricing_app .fs-app-main .fs-section--faq .fs-section--faq-items .fs-section--faq-item{width:100%;display:inline-block;vertical-align:top;margin:0 0 20px;overflow:hidden}#root .fs-app-main .fs-section--faq .fs-section--faq-items .fs-section--faq-item h3,#root .fs-app-main .fs-section--faq .fs-section--faq-items .fs-section--faq-item p,#fs_pricing_app .fs-app-main .fs-section--faq .fs-section--faq-items .fs-section--faq-item h3,#fs_pricing_app .fs-app-main .fs-section--faq .fs-section--faq-items .fs-section--faq-item p{margin:0;text-align:left}#root .fs-app-main .fs-section--faq .fs-section--faq-items .fs-section--faq-item h3,#fs_pricing_app .fs-app-main .fs-section--faq .fs-section--faq-items .fs-section--faq-item h3{background:var(--fs-ds-theme-background-dark);color:var(--fs-ds-theme-dark-background-text-color);padding:15px;font-weight:700;border:1px solid var(--fs-ds-theme-background-darkest);border-bottom:0 none;border-radius:4px 4px 0 0}#root .fs-app-main .fs-section--faq .fs-section--faq-items .fs-section--faq-item p,#fs_pricing_app .fs-app-main .fs-section--faq .fs-section--faq-items .fs-section--faq-item p{background:var(--fs-ds-theme-background-color);font-size:small;padding:15px;line-height:20px;border:1px solid var(--fs-ds-theme-border-color);border-top:0 none;border-radius:0 0 4px 4px}#root .fs-button,#fs_pricing_app .fs-button{background:var(--fs-ds-theme-button-background-color);color:var(--fs-ds-theme-button-text-color);padding:12px 10px;display:inline-block;text-transform:uppercase;font-weight:700;font-size:18px;width:100%;border-radius:4px;border:0 none;cursor:pointer;transition:background .2s ease-out,border-bottom-color .2s ease-out}#root .fs-button:focus:not(:disabled),#fs_pricing_app .fs-button:focus:not(:disabled){box-shadow:0 0 0 1px var(--fs-ds-theme-button-border-focus-color)}#root .fs-button:hover:not(:disabled),#root .fs-button:focus:not(:disabled),#root .fs-button:active:not(:disabled),#fs_pricing_app .fs-button:hover:not(:disabled),#fs_pricing_app .fs-button:focus:not(:disabled),#fs_pricing_app .fs-button:active:not(:disabled){will-change:background,border;background:var(--fs-ds-theme-button-background-hover-color)}#root .fs-button.fs-button--outline,#fs_pricing_app .fs-button.fs-button--outline{padding-top:11px;padding-bottom:11px;background:var(--fs-ds-theme-background-color);border:1px solid var(--fs-ds-theme-button-border-color)}#root .fs-button.fs-button--outline:focus:not(:disabled),#fs_pricing_app .fs-button.fs-button--outline:focus:not(:disabled){background:var(--fs-ds-theme-background-shade);border-color:var(--fs-ds-theme-button-border-focus-color)}#root .fs-button.fs-button--outline:hover:not(:disabled),#root .fs-button.fs-button--outline:active:not(:disabled),#fs_pricing_app .fs-button.fs-button--outline:hover:not(:disabled),#fs_pricing_app .fs-button.fs-button--outline:active:not(:disabled){background:var(--fs-ds-theme-background-shade);border-color:var(--fs-ds-theme-button-border-hover-color)}#root .fs-button.fs-button--type-primary,#fs_pricing_app .fs-button.fs-button--type-primary{background-color:var(--fs-ds-theme-button-primary-background-color);color:var(--fs-ds-theme-button-primary-text-color);border-color:var(--fs-ds-theme-button-primary-border-color)}#root .fs-button.fs-button--type-primary:focus:not(:disabled),#root .fs-button.fs-button--type-primary:hover:not(:disabled),#root .fs-button.fs-button--type-primary:active:not(:disabled),#fs_pricing_app .fs-button.fs-button--type-primary:focus:not(:disabled),#fs_pricing_app .fs-button.fs-button--type-primary:hover:not(:disabled),#fs_pricing_app .fs-button.fs-button--type-primary:active:not(:disabled){background-color:var(--fs-ds-theme-button-primary-background-hover-color);border-color:var(--fs-ds-theme-button-primary-border-hover-color)}#root .fs-button.fs-button--type-primary.fs-button--outline,#fs_pricing_app .fs-button.fs-button--type-primary.fs-button--outline{background-color:var(--fs-ds-theme-background-color);color:var(--fs-ds-theme-primary-accent-color);border:1px solid var(--fs-ds-theme-button-primary-border-color)}#root .fs-button.fs-button--type-primary.fs-button--outline:focus:not(:disabled),#root .fs-button.fs-button--type-primary.fs-button--outline:hover:not(:disabled),#root .fs-button.fs-button--type-primary.fs-button--outline:active:not(:disabled),#fs_pricing_app .fs-button.fs-button--type-primary.fs-button--outline:focus:not(:disabled),#fs_pricing_app .fs-button.fs-button--type-primary.fs-button--outline:hover:not(:disabled),#fs_pricing_app .fs-button.fs-button--type-primary.fs-button--outline:active:not(:disabled){background-color:var(--fs-ds-theme-background-shade);color:var(--fs-ds-theme-button-primary-background-hover-color);border-color:var(--fs-ds-theme-primary-accent-color-hover)}#root .fs-button:disabled,#fs_pricing_app .fs-button:disabled{cursor:not-allowed;background-color:var(--fs-ds-theme-button-disabled-background-color);color:var(--fs-ds-theme-button-disabled-text-color);border-color:var(--fs-ds-theme-button-disabled-border-color)}#root .fs-button.fs-button--size-small,#fs_pricing_app .fs-button.fs-button--size-small{font-size:14px;width:auto}#root .fs-placeholder:before,#fs_pricing_app .fs-placeholder:before{content:"";display:inline-block}@media only screen and (max-width: 768px){#root .fs-app-main .fs-section--testimonials .fs-nav-pagination,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-nav-pagination{display:none!important}#root .fs-app-main .fs-section>header h2,#fs_pricing_app .fs-app-main .fs-section>header h2{font-size:1.5em}}@media only screen and (max-width: 455px){#root .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial{width:auto}#root .fs-app-main .fs-section--billing-cycles .fs-billing-cycles li.fs-period--annual span,#fs_pricing_app .fs-app-main .fs-section--billing-cycles .fs-billing-cycles li.fs-period--annual span{display:none}}@media only screen and (max-width: 375px){#root .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial,#fs_pricing_app .fs-app-main .fs-section--testimonials .fs-testimonials-nav .fs-testimonials .fs-testimonial{width:auto}}\n',""]);const s=o},333:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(81),r=n.n(a),i=n(645),o=n.n(i)()(r());o.push([e.id,"#fs_pricing_app .fs-modal,#fs_pricing_wrapper .fs-modal,#fs_pricing_wrapper #fs_pricing_app .fs-modal{position:fixed;inset:0;z-index:1000;zoom:1;text-align:left;display:block!important}#fs_pricing_app .fs-modal .fs-modal-content-container,#fs_pricing_wrapper .fs-modal .fs-modal-content-container,#fs_pricing_wrapper #fs_pricing_app .fs-modal .fs-modal-content-container{display:block;position:absolute;left:50%;background:var(--fs-ds-theme-background-color);box-shadow:0 0 8px 2px #0000004d}#fs_pricing_app .fs-modal .fs-modal-content-container .fs-modal-header,#fs_pricing_wrapper .fs-modal .fs-modal-content-container .fs-modal-header,#fs_pricing_wrapper #fs_pricing_app .fs-modal .fs-modal-content-container .fs-modal-header{background:var(--fs-ds-theme-primary-accent-color);padding:15px}#fs_pricing_app .fs-modal .fs-modal-content-container .fs-modal-header h3,#fs_pricing_app .fs-modal .fs-modal-content-container .fs-modal-header .fs-modal-close,#fs_pricing_wrapper .fs-modal .fs-modal-content-container .fs-modal-header h3,#fs_pricing_wrapper .fs-modal .fs-modal-content-container .fs-modal-header .fs-modal-close,#fs_pricing_wrapper #fs_pricing_app .fs-modal .fs-modal-content-container .fs-modal-header h3,#fs_pricing_wrapper #fs_pricing_app .fs-modal .fs-modal-content-container .fs-modal-header .fs-modal-close{color:var(--fs-ds-theme-background-color)}#fs_pricing_app .fs-modal .fs-modal-content-container .fs-modal-content,#fs_pricing_wrapper .fs-modal .fs-modal-content-container .fs-modal-content,#fs_pricing_wrapper #fs_pricing_app .fs-modal .fs-modal-content-container .fs-modal-content{font-size:1.2em}#fs_pricing_app .fs-modal--loading,#fs_pricing_wrapper .fs-modal--loading,#fs_pricing_wrapper #fs_pricing_app .fs-modal--loading{background-color:#0000004d}#fs_pricing_app .fs-modal--loading .fs-modal-content-container,#fs_pricing_wrapper .fs-modal--loading .fs-modal-content-container,#fs_pricing_wrapper #fs_pricing_app .fs-modal--loading .fs-modal-content-container{width:220px;margin-left:-126px;padding:15px;border:1px solid var(--fs-ds-theme-divider-color);text-align:center;top:50%}#fs_pricing_app .fs-modal--loading .fs-modal-content-container span,#fs_pricing_wrapper .fs-modal--loading .fs-modal-content-container span,#fs_pricing_wrapper #fs_pricing_app .fs-modal--loading .fs-modal-content-container span{display:block;font-weight:700;font-size:16px;text-align:center;color:var(--fs-ds-theme-primary-accent-color);margin-bottom:10px}#fs_pricing_app .fs-modal--loading .fs-modal-content-container .fs-ajax-loader,#fs_pricing_wrapper .fs-modal--loading .fs-modal-content-container .fs-ajax-loader,#fs_pricing_wrapper #fs_pricing_app .fs-modal--loading .fs-modal-content-container .fs-ajax-loader{width:160px}#fs_pricing_app .fs-modal--loading .fs-modal-content-container i,#fs_pricing_wrapper .fs-modal--loading .fs-modal-content-container i,#fs_pricing_wrapper #fs_pricing_app .fs-modal--loading .fs-modal-content-container i{display:block;width:128px;margin:0 auto;height:15px;background:url(//img.freemius.com/blue-loader.gif)}#fs_pricing_app .fs-modal--refund-policy,#fs_pricing_app .fs-modal--trial-confirmation,#fs_pricing_wrapper .fs-modal--refund-policy,#fs_pricing_wrapper .fs-modal--trial-confirmation,#fs_pricing_wrapper #fs_pricing_app .fs-modal--refund-policy,#fs_pricing_wrapper #fs_pricing_app .fs-modal--trial-confirmation{background:rgba(0,0,0,.7)}#fs_pricing_app .fs-modal--refund-policy .fs-modal-content-container,#fs_pricing_app .fs-modal--trial-confirmation .fs-modal-content-container,#fs_pricing_wrapper .fs-modal--refund-policy .fs-modal-content-container,#fs_pricing_wrapper .fs-modal--trial-confirmation .fs-modal-content-container,#fs_pricing_wrapper #fs_pricing_app .fs-modal--refund-policy .fs-modal-content-container,#fs_pricing_wrapper #fs_pricing_app .fs-modal--trial-confirmation .fs-modal-content-container{width:510px;margin-left:-255px;top:20%}#fs_pricing_app .fs-modal--refund-policy .fs-modal-content-container .fs-modal-header .fs-modal-close,#fs_pricing_app .fs-modal--trial-confirmation .fs-modal-content-container .fs-modal-header .fs-modal-close,#fs_pricing_wrapper .fs-modal--refund-policy .fs-modal-content-container .fs-modal-header .fs-modal-close,#fs_pricing_wrapper .fs-modal--trial-confirmation .fs-modal-content-container .fs-modal-header .fs-modal-close,#fs_pricing_wrapper #fs_pricing_app .fs-modal--refund-policy .fs-modal-content-container .fs-modal-header .fs-modal-close,#fs_pricing_wrapper #fs_pricing_app .fs-modal--trial-confirmation .fs-modal-content-container .fs-modal-header .fs-modal-close{line-height:24px;font-size:24px;position:absolute;top:-12px;right:-12px;cursor:pointer}#fs_pricing_app .fs-modal--refund-policy .fs-modal-content-container .fs-modal-content,#fs_pricing_app .fs-modal--trial-confirmation .fs-modal-content-container .fs-modal-content,#fs_pricing_wrapper .fs-modal--refund-policy .fs-modal-content-container .fs-modal-content,#fs_pricing_wrapper .fs-modal--trial-confirmation .fs-modal-content-container .fs-modal-content,#fs_pricing_wrapper #fs_pricing_app .fs-modal--refund-policy .fs-modal-content-container .fs-modal-content,#fs_pricing_wrapper #fs_pricing_app .fs-modal--trial-confirmation .fs-modal-content-container .fs-modal-content{height:100%;padding:1px 15px}#fs_pricing_app .fs-modal--refund-policy .fs-modal-content-container .fs-modal-footer,#fs_pricing_app .fs-modal--trial-confirmation .fs-modal-content-container .fs-modal-footer,#fs_pricing_wrapper .fs-modal--refund-policy .fs-modal-content-container .fs-modal-footer,#fs_pricing_wrapper .fs-modal--trial-confirmation .fs-modal-content-container .fs-modal-footer,#fs_pricing_wrapper #fs_pricing_app .fs-modal--refund-policy .fs-modal-content-container .fs-modal-footer,#fs_pricing_wrapper #fs_pricing_app .fs-modal--trial-confirmation .fs-modal-content-container .fs-modal-footer{padding:10px;text-align:right;border-top:1px solid var(--fs-ds-theme-border-color);background:var(--fs-ds-theme-background-shade)}#fs_pricing_app .fs-modal--refund-policy .fs-modal-content-container .fs-modal-footer .fs-button--approve-trial,#fs_pricing_app .fs-modal--trial-confirmation .fs-modal-content-container .fs-modal-footer .fs-button--approve-trial,#fs_pricing_wrapper .fs-modal--refund-policy .fs-modal-content-container .fs-modal-footer .fs-button--approve-trial,#fs_pricing_wrapper .fs-modal--trial-confirmation .fs-modal-content-container .fs-modal-footer .fs-button--approve-trial,#fs_pricing_wrapper #fs_pricing_app .fs-modal--refund-policy .fs-modal-content-container .fs-modal-footer .fs-button--approve-trial,#fs_pricing_wrapper #fs_pricing_app .fs-modal--trial-confirmation .fs-modal-content-container .fs-modal-footer .fs-button--approve-trial{margin:0 7px}#fs_pricing_app .fs-modal--trial-confirmation .fs-button,#fs_pricing_wrapper .fs-modal--trial-confirmation .fs-button,#fs_pricing_wrapper #fs_pricing_app .fs-modal--trial-confirmation .fs-button{width:auto;font-size:13px}\n",""]);const s=o},267:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(81),r=n.n(a),i=n(645),o=n.n(i)()(r());o.push([e.id,'#root .fs-package,#fs_pricing_app .fs-package{display:inline-block;vertical-align:top;background:var(--fs-ds-theme-dark-background-text-color);border-bottom:3px solid var(--fs-ds-theme-border-color);width:315px;box-sizing:border-box}#root .fs-package:first-child,#root .fs-package+.fs-package,#fs_pricing_app .fs-package:first-child,#fs_pricing_app .fs-package+.fs-package{border-left:1px solid var(--fs-ds-theme-divider-color)}#root .fs-package:last-child,#fs_pricing_app .fs-package:last-child{border-right:1px solid var(--fs-ds-theme-divider-color)}#root .fs-package:not(.fs-featured-plan):first-child,#fs_pricing_app .fs-package:not(.fs-featured-plan):first-child{border-top-left-radius:10px}#root .fs-package:not(.fs-featured-plan):first-child .fs-plan-title,#fs_pricing_app .fs-package:not(.fs-featured-plan):first-child .fs-plan-title{border-top-left-radius:9px}#root .fs-package:not(.fs-featured-plan):last-child,#fs_pricing_app .fs-package:not(.fs-featured-plan):last-child{border-top-right-radius:10px}#root .fs-package:not(.fs-featured-plan):last-child .fs-plan-title,#fs_pricing_app .fs-package:not(.fs-featured-plan):last-child .fs-plan-title{border-top-right-radius:9px}#root .fs-package .fs-package-content,#fs_pricing_app .fs-package .fs-package-content{vertical-align:middle;padding-bottom:30px}#root .fs-package .fs-plan-title,#fs_pricing_app .fs-package .fs-plan-title{padding:10px 0;background:var(--fs-ds-theme-background-shade);text-transform:uppercase;border-bottom:1px solid var(--fs-ds-theme-divider-color);border-top:1px solid var(--fs-ds-theme-divider-color);width:100%;text-align:center}#root .fs-package .fs-plan-title:last-child,#fs_pricing_app .fs-package .fs-plan-title:last-child{border-right:none}#root .fs-package .fs-plan-description,#root .fs-package .fs-undiscounted-price,#root .fs-package .fs-licenses,#root .fs-package .fs-upgrade-button,#root .fs-package .fs-plan-features,#fs_pricing_app .fs-package .fs-plan-description,#fs_pricing_app .fs-package .fs-undiscounted-price,#fs_pricing_app .fs-package .fs-licenses,#fs_pricing_app .fs-package .fs-upgrade-button,#fs_pricing_app .fs-package .fs-plan-features{margin-top:10px}#root .fs-package .fs-plan-description,#fs_pricing_app .fs-package .fs-plan-description{text-transform:uppercase}#root .fs-package .fs-undiscounted-price,#fs_pricing_app .fs-package .fs-undiscounted-price{margin:auto;position:relative;display:inline-block;color:var(--fs-ds-theme-muted-text-color);top:6px}#root .fs-package .fs-undiscounted-price:after,#fs_pricing_app .fs-package .fs-undiscounted-price:after{display:block;content:"";position:absolute;height:1px;background-color:var(--fs-ds-theme-error-color);left:-4px;right:-4px;top:50%;transform:translateY(-50%) skewY(1deg)}#root .fs-package .fs-selected-pricing-amount,#fs_pricing_app .fs-package .fs-selected-pricing-amount{margin:5px 0}#root .fs-package .fs-selected-pricing-amount .fs-currency-symbol,#fs_pricing_app .fs-package .fs-selected-pricing-amount .fs-currency-symbol{font-size:39px}#root .fs-package .fs-selected-pricing-amount .fs-selected-pricing-amount-integer,#fs_pricing_app .fs-package .fs-selected-pricing-amount .fs-selected-pricing-amount-integer{font-size:58px;margin:0 5px}#root .fs-package .fs-selected-pricing-amount .fs-currency-symbol,#root .fs-package .fs-selected-pricing-amount .fs-selected-pricing-amount-integer,#root .fs-package .fs-selected-pricing-amount .fs-selected-pricing-amount-fraction-container,#fs_pricing_app .fs-package .fs-selected-pricing-amount .fs-currency-symbol,#fs_pricing_app .fs-package .fs-selected-pricing-amount .fs-selected-pricing-amount-integer,#fs_pricing_app .fs-package .fs-selected-pricing-amount .fs-selected-pricing-amount-fraction-container{display:inline-block;vertical-align:middle}#root .fs-package .fs-selected-pricing-amount .fs-currency-symbol:not(.fs-selected-pricing-amount-integer),#root .fs-package .fs-selected-pricing-amount .fs-selected-pricing-amount-integer:not(.fs-selected-pricing-amount-integer),#root .fs-package .fs-selected-pricing-amount .fs-selected-pricing-amount-fraction-container:not(.fs-selected-pricing-amount-integer),#fs_pricing_app .fs-package .fs-selected-pricing-amount .fs-currency-symbol:not(.fs-selected-pricing-amount-integer),#fs_pricing_app .fs-package .fs-selected-pricing-amount .fs-selected-pricing-amount-integer:not(.fs-selected-pricing-amount-integer),#fs_pricing_app .fs-package .fs-selected-pricing-amount .fs-selected-pricing-amount-fraction-container:not(.fs-selected-pricing-amount-integer){line-height:18px}#root .fs-package .fs-selected-pricing-amount .fs-currency-symbol .fs-selected-pricing-amount-fraction,#root .fs-package .fs-selected-pricing-amount .fs-currency-symbol .fs-selected-pricing-amount-cycle,#root .fs-package .fs-selected-pricing-amount .fs-selected-pricing-amount-integer .fs-selected-pricing-amount-fraction,#root .fs-package .fs-selected-pricing-amount .fs-selected-pricing-amount-integer .fs-selected-pricing-amount-cycle,#root .fs-package .fs-selected-pricing-amount .fs-selected-pricing-amount-fraction-container .fs-selected-pricing-amount-fraction,#root .fs-package .fs-selected-pricing-amount .fs-selected-pricing-amount-fraction-container .fs-selected-pricing-amount-cycle,#fs_pricing_app .fs-package .fs-selected-pricing-amount .fs-currency-symbol .fs-selected-pricing-amount-fraction,#fs_pricing_app .fs-package .fs-selected-pricing-amount .fs-currency-symbol .fs-selected-pricing-amount-cycle,#fs_pricing_app .fs-package .fs-selected-pricing-amount .fs-selected-pricing-amount-integer .fs-selected-pricing-amount-fraction,#fs_pricing_app .fs-package .fs-selected-pricing-amount .fs-selected-pricing-amount-integer .fs-selected-pricing-amount-cycle,#fs_pricing_app .fs-package .fs-selected-pricing-amount .fs-selected-pricing-amount-fraction-container .fs-selected-pricing-amount-fraction,#fs_pricing_app .fs-package .fs-selected-pricing-amount .fs-selected-pricing-amount-fraction-container .fs-selected-pricing-amount-cycle{display:block;font-size:12px}#root .fs-package .fs-selected-pricing-amount .fs-currency-symbol .fs-selected-pricing-amount-fraction,#root .fs-package .fs-selected-pricing-amount .fs-selected-pricing-amount-integer .fs-selected-pricing-amount-fraction,#root .fs-package .fs-selected-pricing-amount .fs-selected-pricing-amount-fraction-container .fs-selected-pricing-amount-fraction,#fs_pricing_app .fs-package .fs-selected-pricing-amount .fs-currency-symbol .fs-selected-pricing-amount-fraction,#fs_pricing_app .fs-package .fs-selected-pricing-amount .fs-selected-pricing-amount-integer .fs-selected-pricing-amount-fraction,#fs_pricing_app .fs-package .fs-selected-pricing-amount .fs-selected-pricing-amount-fraction-container .fs-selected-pricing-amount-fraction{vertical-align:top}#root .fs-package .fs-selected-pricing-amount .fs-currency-symbol .fs-selected-pricing-amount-cycle,#root .fs-package .fs-selected-pricing-amount .fs-selected-pricing-amount-integer .fs-selected-pricing-amount-cycle,#root .fs-package .fs-selected-pricing-amount .fs-selected-pricing-amount-fraction-container .fs-selected-pricing-amount-cycle,#fs_pricing_app .fs-package .fs-selected-pricing-amount .fs-currency-symbol .fs-selected-pricing-amount-cycle,#fs_pricing_app .fs-package .fs-selected-pricing-amount .fs-selected-pricing-amount-integer .fs-selected-pricing-amount-cycle,#fs_pricing_app .fs-package .fs-selected-pricing-amount .fs-selected-pricing-amount-fraction-container .fs-selected-pricing-amount-cycle{vertical-align:bottom}#root .fs-package .fs-selected-pricing-amount .fs-selected-pricing-amount-fraction-container,#fs_pricing_app .fs-package .fs-selected-pricing-amount .fs-selected-pricing-amount-fraction-container{color:var(--fs-ds-theme-muted-text-color)}#root .fs-package .fs-selected-pricing-amount-free,#fs_pricing_app .fs-package .fs-selected-pricing-amount-free{font-size:48px}#root .fs-package .fs-selected-pricing-cycle,#fs_pricing_app .fs-package .fs-selected-pricing-cycle{margin-bottom:5px;text-transform:uppercase;color:var(--fs-ds-theme-muted-text-color)}#root .fs-package .fs-selected-pricing-license-quantity,#fs_pricing_app .fs-package .fs-selected-pricing-license-quantity{color:var(--fs-ds-theme-muted-text-color)}#root .fs-package .fs-selected-pricing-license-quantity .fs-tooltip,#fs_pricing_app .fs-package .fs-selected-pricing-license-quantity .fs-tooltip{margin-left:5px}#root .fs-package .fs-upgrade-button-container,#fs_pricing_app .fs-package .fs-upgrade-button-container{padding:0 13px;display:block}#root .fs-package .fs-upgrade-button-container .fs-upgrade-button,#fs_pricing_app .fs-package .fs-upgrade-button-container .fs-upgrade-button{margin-top:20px;margin-bottom:5px}#root .fs-package .fs-plan-features,#fs_pricing_app .fs-package .fs-plan-features{text-align:left;margin-left:13px}#root .fs-package .fs-plan-features li,#fs_pricing_app .fs-package .fs-plan-features li{font-size:16px;display:flex;margin-bottom:8px}#root .fs-package .fs-plan-features li:not(:first-child),#fs_pricing_app .fs-package .fs-plan-features li:not(:first-child){margin-top:8px}#root .fs-package .fs-plan-features li>span,#root .fs-package .fs-plan-features li .fs-tooltip,#fs_pricing_app .fs-package .fs-plan-features li>span,#fs_pricing_app .fs-package .fs-plan-features li .fs-tooltip{font-size:small;vertical-align:middle;display:inline-block}#root .fs-package .fs-plan-features li .fs-feature-title,#fs_pricing_app .fs-package .fs-plan-features li .fs-feature-title{margin:0 5px;color:var(--fs-ds-theme-muted-text-color);max-width:260px;overflow-wrap:break-word}#root .fs-package .fs-support-and-main-features,#fs_pricing_app .fs-package .fs-support-and-main-features{margin-top:12px;padding-top:18px;padding-bottom:18px;color:var(--fs-ds-theme-muted-text-color)}#root .fs-package .fs-support-and-main-features .fs-plan-support,#fs_pricing_app .fs-package .fs-support-and-main-features .fs-plan-support{margin-bottom:15px}#root .fs-package .fs-support-and-main-features .fs-plan-features-with-value li,#fs_pricing_app .fs-package .fs-support-and-main-features .fs-plan-features-with-value li{font-size:small}#root .fs-package .fs-support-and-main-features .fs-plan-features-with-value li .fs-feature-title,#fs_pricing_app .fs-package .fs-support-and-main-features .fs-plan-features-with-value li .fs-feature-title{margin:0 2px}#root .fs-package .fs-support-and-main-features .fs-plan-features-with-value li:not(:first-child),#fs_pricing_app .fs-package .fs-support-and-main-features .fs-plan-features-with-value li:not(:first-child){margin-top:5px}#root .fs-package .fs-plan-features-with-value,#fs_pricing_app .fs-package .fs-plan-features-with-value{color:var(--fs-ds-theme-muted-text-color)}#root .fs-package .fs-license-quantities,#fs_pricing_app .fs-package .fs-license-quantities{border-collapse:collapse;position:relative;width:100%}#root .fs-package .fs-license-quantities,#root .fs-package .fs-license-quantities input,#fs_pricing_app .fs-package .fs-license-quantities,#fs_pricing_app .fs-package .fs-license-quantities input{cursor:pointer}#root .fs-package .fs-license-quantities .fs-license-quantity-discount span,#fs_pricing_app .fs-package .fs-license-quantities .fs-license-quantity-discount span{background-color:var(--fs-ds-theme-background-color);border:1px solid var(--fs-ds-theme-primary-accent-color);color:var(--fs-ds-theme-primary-accent-color);display:inline;padding:4px 8px;border-radius:4px;font-weight:700;margin:0 5px;white-space:nowrap}#root .fs-package .fs-license-quantities .fs-license-quantity-discount span.fs-license-quantity-no-discount,#fs_pricing_app .fs-package .fs-license-quantities .fs-license-quantity-discount span.fs-license-quantity-no-discount{visibility:hidden}#root .fs-package .fs-license-quantities .fs-license-quantity-container,#fs_pricing_app .fs-package .fs-license-quantities .fs-license-quantity-container{line-height:30px;border-top:1px solid var(--fs-ds-theme-background-shade);font-size:small;color:var(--fs-ds-theme-muted-text-color)}#root .fs-package .fs-license-quantities .fs-license-quantity-container:last-child,#fs_pricing_app .fs-package .fs-license-quantities .fs-license-quantity-container:last-child{border-bottom:1px solid var(--fs-ds-theme-background-shade)}#root .fs-package .fs-license-quantities .fs-license-quantity-container:last-child.fs-license-quantity-selected,#fs_pricing_app .fs-package .fs-license-quantities .fs-license-quantity-container:last-child.fs-license-quantity-selected{border-bottom-color:var(--fs-ds-theme-divider-color)}#root .fs-package .fs-license-quantities .fs-license-quantity-container.fs-license-quantity-selected,#fs_pricing_app .fs-package .fs-license-quantities .fs-license-quantity-container.fs-license-quantity-selected{background:var(--fs-ds-theme-background-shade);border-color:var(--fs-ds-theme-divider-color);color:var(--fs-ds-theme-text-color)}#root .fs-package .fs-license-quantities .fs-license-quantity-container.fs-license-quantity-selected+.fs-license-quantity-container,#fs_pricing_app .fs-package .fs-license-quantities .fs-license-quantity-container.fs-license-quantity-selected+.fs-license-quantity-container{border-top-color:var(--fs-ds-theme-divider-color)}#root .fs-package .fs-license-quantities .fs-license-quantity-container>td:not(.fs-license-quantity-discount):not(.fs-license-quantity-price),#fs_pricing_app .fs-package .fs-license-quantities .fs-license-quantity-container>td:not(.fs-license-quantity-discount):not(.fs-license-quantity-price){text-align:left}#root .fs-package .fs-license-quantities .fs-license-quantity,#root .fs-package .fs-license-quantities .fs-license-quantity-discount,#root .fs-package .fs-license-quantities .fs-license-quantity-price,#fs_pricing_app .fs-package .fs-license-quantities .fs-license-quantity,#fs_pricing_app .fs-package .fs-license-quantities .fs-license-quantity-discount,#fs_pricing_app .fs-package .fs-license-quantities .fs-license-quantity-price{vertical-align:middle}#root .fs-package .fs-license-quantities .fs-license-quantity,#fs_pricing_app .fs-package .fs-license-quantities .fs-license-quantity{position:relative;white-space:nowrap}#root .fs-package .fs-license-quantities .fs-license-quantity input,#fs_pricing_app .fs-package .fs-license-quantities .fs-license-quantity input{position:relative;margin-top:-1px;margin-left:7px;margin-right:7px}#root .fs-package .fs-license-quantities .fs-license-quantity-price,#fs_pricing_app .fs-package .fs-license-quantities .fs-license-quantity-price{position:relative;margin-right:auto;padding-right:7px;white-space:nowrap;font-variant-numeric:tabular-nums;text-align:right}#root .fs-package.fs-free-plan .fs-license-quantity-container:not(:last-child),#fs_pricing_app .fs-package.fs-free-plan .fs-license-quantity-container:not(:last-child){border-color:transparent}#root .fs-package .fs-most-popular,#fs_pricing_app .fs-package .fs-most-popular{display:none}#root .fs-package.fs-featured-plan .fs-most-popular,#fs_pricing_app .fs-package.fs-featured-plan .fs-most-popular{display:block;line-height:2.8em;margin-top:-2.8em;border-radius:10px 10px 0 0;color:var(--fs-ds-theme-text-color);background:var(--fs-ds-theme-package-popular-background);text-transform:uppercase;font-size:14px}#root .fs-package.fs-featured-plan .fs-plan-title,#fs_pricing_app .fs-package.fs-featured-plan .fs-plan-title{color:var(--fs-ds-theme-dark-background-text-color);background:var(--fs-ds-theme-primary-accent-color);border-top-color:var(--fs-ds-theme-primary-accent-color);border-bottom-color:var(--fs-ds-theme-primary-accent-color)}#root .fs-package.fs-featured-plan .fs-selected-pricing-license-quantity,#fs_pricing_app .fs-package.fs-featured-plan .fs-selected-pricing-license-quantity{color:var(--fs-ds-theme-primary-accent-color)}#root .fs-package.fs-featured-plan .fs-license-quantity-discount span,#fs_pricing_app .fs-package.fs-featured-plan .fs-license-quantity-discount span{background:var(--fs-ds-theme-primary-accent-color);color:var(--fs-ds-theme-dark-background-text-color)}#root .fs-package.fs-featured-plan .fs-license-quantities .fs-license-quantity-selected,#fs_pricing_app .fs-package.fs-featured-plan .fs-license-quantities .fs-license-quantity-selected{background:var(--fs-ds-theme-primary-accent-color);border-color:var(--fs-ds-theme-primary-accent-color);color:var(--fs-ds-theme-dark-background-text-color)}#root .fs-package.fs-featured-plan .fs-license-quantities .fs-license-quantity-selected+.fs-license-quantity-container,#fs_pricing_app .fs-package.fs-featured-plan .fs-license-quantities .fs-license-quantity-selected+.fs-license-quantity-container{border-top-color:var(--fs-ds-theme-primary-accent-color)}#root .fs-package.fs-featured-plan .fs-license-quantities .fs-license-quantity-selected:last-child,#fs_pricing_app .fs-package.fs-featured-plan .fs-license-quantities .fs-license-quantity-selected:last-child{border-bottom-color:var(--fs-ds-theme-primary-accent-color)}#root .fs-package.fs-featured-plan .fs-license-quantities .fs-license-quantity-selected .fs-license-quantity-discount span,#fs_pricing_app .fs-package.fs-featured-plan .fs-license-quantities .fs-license-quantity-selected .fs-license-quantity-discount span{background:var(--fs-ds-theme-background-color);color:var(--fs-ds-theme-primary-accent-color-hover)}\n',""]);const s=o},700:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(81),r=n.n(a),i=n(645),o=n.n(i)()(r());o.push([e.id,'#root .fs-section--packages,#fs_pricing_app .fs-section--packages{display:inline-block;width:100%;position:relative}#root .fs-section--packages .fs-packages-menu,#fs_pricing_app .fs-section--packages .fs-packages-menu{display:none;flex-wrap:wrap;justify-content:center}#root .fs-section--packages .fs-packages-tab,#fs_pricing_app .fs-section--packages .fs-packages-tab{display:none}#root .fs-section--packages .fs-package-tab,#fs_pricing_app .fs-section--packages .fs-package-tab{display:inline-block;flex:1}#root .fs-section--packages .fs-package-tab a,#fs_pricing_app .fs-section--packages .fs-package-tab a{display:block;padding:4px 10px 7px;border-bottom:2px solid transparent;color:#000;text-align:center;text-decoration:none}#root .fs-section--packages .fs-package-tab.fs-package-tab--selected a,#fs_pricing_app .fs-section--packages .fs-package-tab.fs-package-tab--selected a{border-color:#0085ba}#root .fs-section--packages .fs-packages-nav,#fs_pricing_app .fs-section--packages .fs-packages-nav{position:relative;overflow:hidden;margin:auto}#root .fs-section--packages .fs-packages-nav:before,#root .fs-section--packages .fs-packages-nav:after,#fs_pricing_app .fs-section--packages .fs-packages-nav:before,#fs_pricing_app .fs-section--packages .fs-packages-nav:after{position:absolute;top:0;bottom:0;width:60px;margin-bottom:32px}#root .fs-section--packages .fs-packages-nav:before,#fs_pricing_app .fs-section--packages .fs-packages-nav:before{z-index:1}#root .fs-section--packages .fs-packages-nav.fs-has-previous-plan:before,#fs_pricing_app .fs-section--packages .fs-packages-nav.fs-has-previous-plan:before{content:"";left:0;background:linear-gradient(to right,#cccccc96,transparent)}#root .fs-section--packages .fs-packages-nav.fs-has-next-plan:after,#fs_pricing_app .fs-section--packages .fs-packages-nav.fs-has-next-plan:after{content:"";right:0;background:linear-gradient(to left,#cccccc96,transparent)}#root .fs-section--packages .fs-packages-nav.fs-has-featured-plan:before,#root .fs-section--packages .fs-packages-nav.fs-has-featured-plan:after,#fs_pricing_app .fs-section--packages .fs-packages-nav.fs-has-featured-plan:before,#fs_pricing_app .fs-section--packages .fs-packages-nav.fs-has-featured-plan:after{top:2.8em}#root .fs-section--packages .fs-prev-package,#root .fs-section--packages .fs-next-package,#fs_pricing_app .fs-section--packages .fs-prev-package,#fs_pricing_app .fs-section--packages .fs-next-package{position:absolute;top:50%;margin-top:-11px;cursor:pointer;font-size:48px;z-index:1}#root .fs-section--packages .fs-prev-package,#fs_pricing_app .fs-section--packages .fs-prev-package{visibility:hidden;z-index:2}#root .fs-section--packages .fs-has-featured-plan .fs-packages,#fs_pricing_app .fs-section--packages .fs-has-featured-plan .fs-packages{margin-top:2.8em}#root .fs-section--packages .fs-packages,#fs_pricing_app .fs-section--packages .fs-packages{width:auto;display:flex;flex-direction:row;margin-left:auto;margin-right:auto;margin-bottom:30px;border-top-right-radius:10px;position:relative;transition:left .5s ease,right .5s ease;padding-top:5px}#root .fs-section--packages .fs-packages:before,#fs_pricing_app .fs-section--packages .fs-packages:before{content:"";position:absolute;top:0;right:0;bottom:0;width:100px;height:100px}@media only screen and (max-width: 768px){#root .fs-section--plans-and-pricing .fs-section--packages .fs-next-package,#root .fs-section--plans-and-pricing .fs-section--packages .fs-prev-package,#fs_pricing_app .fs-section--plans-and-pricing .fs-section--packages .fs-next-package,#fs_pricing_app .fs-section--plans-and-pricing .fs-section--packages .fs-prev-package{display:none}#root .fs-section--plans-and-pricing .fs-section--packages .fs-packages-menu,#fs_pricing_app .fs-section--plans-and-pricing .fs-section--packages .fs-packages-menu{display:block;font-size:24px;margin:0 auto 10px}#root .fs-section--plans-and-pricing .fs-section--packages .fs-packages-tab,#fs_pricing_app .fs-section--plans-and-pricing .fs-section--packages .fs-packages-tab{display:flex;font-size:18px;margin:0 auto 10px}#root .fs-section--plans-and-pricing .fs-section--packages .fs-packages .fs-most-popular,#root .fs-section--plans-and-pricing .fs-section--packages .fs-package .fs-most-popular,#fs_pricing_app .fs-section--plans-and-pricing .fs-section--packages .fs-packages .fs-most-popular,#fs_pricing_app .fs-section--plans-and-pricing .fs-section--packages .fs-package .fs-most-popular{display:none}#root .fs-section--plans-and-pricing .fs-section--packages .fs-has-featured-plan .fs-packages,#fs_pricing_app .fs-section--plans-and-pricing .fs-section--packages .fs-has-featured-plan .fs-packages{margin-top:0}}@media only screen and (max-width: 455px){#root .fs-section--plans-and-pricing .fs-section--packages .fs-packages .fs-package,#fs_pricing_app .fs-section--plans-and-pricing .fs-section--packages .fs-packages .fs-package{width:100%}#root .fs-section--plans-and-pricing,#fs_pricing_app .fs-section--plans-and-pricing{padding:10px}}@media only screen and (max-width: 375px){#root .fs-section--plans-and-pricing .fs-section--packages .fs-packages .fs-package,#fs_pricing_app .fs-section--plans-and-pricing .fs-section--packages .fs-packages .fs-package{width:100%}}\n',""]);const s=o},302:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(81),r=n.n(a),i=n(645),o=n.n(i)()(r());o.push([e.id,'#root .fs-tooltip,#fs_pricing_app .fs-tooltip{cursor:help;position:relative;color:inherit}#root .fs-tooltip .fs-tooltip-message,#fs_pricing_app .fs-tooltip .fs-tooltip-message{position:absolute;width:200px;background:var(--fs-ds-theme-background-darkest);z-index:1;display:none;border-radius:4px;color:var(--fs-ds-theme-dark-background-text-color);padding:8px;text-align:left;line-height:18px}#root .fs-tooltip .fs-tooltip-message:before,#fs_pricing_app .fs-tooltip .fs-tooltip-message:before{content:"";position:absolute;z-index:1}#root .fs-tooltip .fs-tooltip-message:not(.fs-tooltip-message--position-none),#fs_pricing_app .fs-tooltip .fs-tooltip-message:not(.fs-tooltip-message--position-none){display:block}#root .fs-tooltip .fs-tooltip-message.fs-tooltip-message--position-right,#fs_pricing_app .fs-tooltip .fs-tooltip-message.fs-tooltip-message--position-right{transform:translateY(-50%);left:30px;top:8px}#root .fs-tooltip .fs-tooltip-message.fs-tooltip-message--position-right:before,#fs_pricing_app .fs-tooltip .fs-tooltip-message.fs-tooltip-message--position-right:before{left:-8px;top:50%;margin-top:-6px;border-top:6px solid transparent;border-bottom:6px solid transparent;border-right:8px solid var(--fs-ds-theme-background-darkest)}#root .fs-tooltip .fs-tooltip-message.fs-tooltip-message--position-top,#fs_pricing_app .fs-tooltip .fs-tooltip-message.fs-tooltip-message--position-top{left:50%;bottom:30px;transform:translate(-50%)}#root .fs-tooltip .fs-tooltip-message.fs-tooltip-message--position-top:before,#fs_pricing_app .fs-tooltip .fs-tooltip-message.fs-tooltip-message--position-top:before{left:50%;bottom:-8px;margin-left:-6px;border-right:6px solid transparent;border-left:6px solid transparent;border-top:8px solid var(--fs-ds-theme-background-darkest)}#root .fs-tooltip .fs-tooltip-message.fs-tooltip-message--position-top-right,#fs_pricing_app .fs-tooltip .fs-tooltip-message.fs-tooltip-message--position-top-right{right:-10px;bottom:30px}#root .fs-tooltip .fs-tooltip-message.fs-tooltip-message--position-top-right:before,#fs_pricing_app .fs-tooltip .fs-tooltip-message.fs-tooltip-message--position-top-right:before{right:10px;bottom:-8px;margin-left:-6px;border-right:6px solid transparent;border-left:6px solid transparent;border-top:8px solid var(--fs-ds-theme-background-darkest)}\n',""]);const s=o},645: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,i){"string"==typeof e&&(e=[[null,e,void 0]]);var o={};if(a)for(var s=0;s0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=i),n&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=n):u[2]=n),r&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=r):u[4]="".concat(r)),t.push(u))}},t}},81:e=>{"use strict";e.exports=function(e){return e[1]}},867:(e,t,n)=>{let a=document.getElementById("fs_pricing_wrapper");a&&a.dataset&&a.dataset.publicUrl&&(n.p=a.dataset.publicUrl)},738:e=>{function t(e){return!!e.constructor&&"function"==typeof e.constructor.isBuffer&&e.constructor.isBuffer(e)}e.exports=function(e){return null!=e&&(t(e)||function(e){return"function"==typeof e.readFloatLE&&"function"==typeof e.slice&&t(e.slice(0,0))}(e)||!!e._isBuffer)}},568:(e,t,n)=>{var a,r,i,o,s;a=n(12),r=n(487).utf8,i=n(738),o=n(487).bin,(s=function(e,t){e.constructor==String?e=t&&"binary"===t.encoding?o.stringToBytes(e):r.stringToBytes(e):i(e)?e=Array.prototype.slice.call(e,0):Array.isArray(e)||e.constructor===Uint8Array||(e=e.toString());for(var n=a.bytesToWords(e),l=8*e.length,c=1732584193,u=-271733879,f=-1732584194,p=271733878,d=0;d>>24)|4278255360&(n[d]<<24|n[d]>>>8);n[l>>>5]|=128<>>9<<4)]=l;var m=s._ff,g=s._gg,h=s._hh,b=s._ii;for(d=0;d>>0,u=u+v>>>0,f=f+k>>>0,p=p+_>>>0}return a.endian([c,u,f,p])})._ff=function(e,t,n,a,r,i,o){var s=e+(t&n|~t&a)+(r>>>0)+o;return(s<>>32-i)+t},s._gg=function(e,t,n,a,r,i,o){var s=e+(t&a|n&~a)+(r>>>0)+o;return(s<>>32-i)+t},s._hh=function(e,t,n,a,r,i,o){var s=e+(t^n^a)+(r>>>0)+o;return(s<>>32-i)+t},s._ii=function(e,t,n,a,r,i,o){var s=e+(n^(t|~a))+(r>>>0)+o;return(s<>>32-i)+t},s._blocksize=16,s._digestsize=16,e.exports=function(e,t){if(null==e)throw new Error("Illegal argument "+e);var n=a.wordsToBytes(s(e,t));return t&&t.asBytes?n:t&&t.asString?o.bytesToString(n):a.bytesToHex(n)}},418:e=>{"use strict";var t=Object.getOwnPropertySymbols,n=Object.prototype.hasOwnProperty,a=Object.prototype.propertyIsEnumerable;function r(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}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,i){for(var o,s,l=r(e),c=1;c{"use strict";var a=n(414);function r(){}function i(){}i.resetWarningCache=r,e.exports=function(){function e(e,t,n,r,i,o){if(o!==a){var s=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw s.name="Invariant Violation",s}}function t(){return e}e.isRequired=e;var n={array:e,bigint:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:i,resetWarningCache:r};return n.PropTypes=n,n}},697:(e,t,n)=>{e.exports=n(703)()},414:e=>{"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},448:(e,t,n)=>{"use strict";var a=n(294),r=n(418),i=n(840);function o(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n

-
- -
\ No newline at end of file diff --git a/freemius/templates/checkout/frame.php b/freemius/templates/checkout/frame.php new file mode 100644 index 0000000..22379dd --- /dev/null +++ b/freemius/templates/checkout/frame.php @@ -0,0 +1,182 @@ +get_slug(); + + $fs_checkout = FS_Checkout_Manager::instance(); + + $plugin_id = fs_request_get( 'plugin_id' ); + if ( ! FS_Plugin::is_valid_id( $plugin_id ) ) { + $plugin_id = $fs->get_id(); + } + + $plan_id = fs_request_get( 'plan_id' ); + $licenses = fs_request_get( 'licenses' ); + + $query_params = $fs_checkout->get_query_params( + $fs, + $plugin_id, + $plan_id, + $licenses + ); + + $return_url = $fs->_get_sync_license_url( $plugin_id ); + $query_params['return_url'] = $return_url; + + $xdebug_session = fs_request_get( 'XDEBUG_SESSION' ); + if ( false !== $xdebug_session ) { + $query_params['XDEBUG_SESSION'] = $xdebug_session; + } + + $view_params = array( + 'id' => $VARS['id'], + 'page' => strtolower( $fs->get_text_inline( 'Checkout', 'checkout' ) ) . ' ' . $fs->get_text_inline( 'PCI compliant', 'pci-compliant' ), + ); + fs_require_once_template('secure-https-header.php', $view_params); +?> +
+
+ +
\ No newline at end of file diff --git a/freemius/templates/checkout/process-redirect.php b/freemius/templates/checkout/process-redirect.php new file mode 100644 index 0000000..4cb62a0 --- /dev/null +++ b/freemius/templates/checkout/process-redirect.php @@ -0,0 +1,105 @@ +get_id(); + } + + $fs_checkout->verify_checkout_redirect_nonce( $fs ); + + wp_enqueue_script( 'jquery' ); + wp_enqueue_script( 'json2' ); + fs_enqueue_local_script( 'fs-form', 'jquery.form.js', array( 'jquery' ) ); + + $action = fs_request_get( '_fs_checkout_action' ); + $data = json_decode( fs_request_get_raw( '_fs_checkout_data' ) ); +?> +
+
+ +
+ +
+

+ +

+
+
+ + diff --git a/freemius/templates/checkout/redirect.php b/freemius/templates/checkout/redirect.php new file mode 100644 index 0000000..7094d9f --- /dev/null +++ b/freemius/templates/checkout/redirect.php @@ -0,0 +1,102 @@ +get_id(); + } + + $plan_id = fs_request_get( 'plan_id' ); + $licenses = fs_request_get( 'licenses' ); + + $query_params = $fs_checkout->get_query_params( + $fs, + $plugin_id, + $plan_id, + $licenses + ); + + // The return URL is a special page which will process the result. + $return_url = $fs_checkout->get_checkout_redirect_return_url( $fs ); + $query_params['return_url'] = $return_url; + + // Add the cancel URL to the same pricing page the request originated from. + $query_params['cancel_url'] = $fs->pricing_url( + fs_request_get( 'billing_cycle', 'annual' ), + fs_request_get_bool( 'trial' ) + ); + + if ( has_site_icon() ) { + $query_params['cancel_icon'] = get_site_icon_url(); + } + + // If the user didn't connect his account with Freemius, + // once he accepts the Terms of Service and Privacy Policy, + // and then click the purchase button, the context information + // of the user will be shared with Freemius in order to complete the + // purchase workflow and activate the license for the right user. + $install_data = array_merge( + $fs->get_opt_in_params(), + array( + 'activation_url' => fs_nonce_url( + $fs->_get_admin_page_url( + '', + array( + 'fs_action' => $fs->get_unique_affix() . '_activate_new', + 'plugin_id' => $plugin_id, + ) + ), + $fs->get_unique_affix() . '_activate_new' + ), + ) + ); + $query_params['install_data'] = json_encode( $install_data ); + + $query_params['_fs_dashboard_independent'] = true; + + $redirect_url = $fs_checkout->get_full_checkout_url( $query_params ); + + if ( ! fs_redirect( $redirect_url ) ) { + // The Header was sent, so the server redirect failed. Rely on JS instead. + ?> +
+
+ +
+ +
+

+ click here if you\'re stuck...' ), + esc_url( $redirect_url ) + ), + array( 'a' => array( 'href' => true ) ) + ); ?> +

+
+
+ + is_enable_anonymous() fs_require_once_template( 'plugin-icon.php', $vars ); ?> -
diff --git a/freemius/templates/contact.php b/freemius/templates/contact.php index 79495ef..e23f94a 100644 --- a/freemius/templates/contact.php +++ b/freemius/templates/contact.php @@ -7,14 +7,20 @@ */ /** + * Update (October 9, 2024 by @swashata): + * Following request from the wp.org plugin review team, we have stopped + * embedding the contact form inside an i-frame for wp.org hosted free version + * of plugins. Now they will be opened in a new tab. + * * Note for WordPress.org Theme/Plugin reviewer: * Freemius is an SDK for plugin and theme developers. Since the core * of the SDK is relevant both for plugins and themes, for obvious reasons, * we only develop and maintain one code base. * - * This code (and page) will not run for wp.org themes (only plugins). + * This code (and page) will not run for wp.org themes or plugins. It will + * run only for premium version of the plugin/theme that is using the SDK. * - * In addition, this page loads an i-frame. We intentionally named it 'frame' + * In addition, when this page loads an i-frame. We intentionally named it 'frame' * so it will pass the "Theme Check" that is looking for the string "i" . "frame". * * UPDATE: @@ -50,28 +56,7 @@ $fs = freemius( $VARS['id'] ); $slug = $fs->get_slug(); - $context_params = array( - 'plugin_id' => $fs->get_id(), - 'plugin_public_key' => $fs->get_public_key(), - 'plugin_version' => $fs->get_plugin_version(), - ); - - - // Get site context secure params. - if ( $fs->is_registered() ) { - $context_params = array_merge( $context_params, FS_Security::instance()->get_context_params( - $fs->get_site(), - time(), - 'contact' - ) ); - } - - $query_params = array_merge( $_GET, array_merge( $context_params, array( - 'plugin_version' => $fs->get_plugin_version(), - 'wp_login_url' => wp_login_url(), - 'site_url' => Freemius::get_unfiltered_site_url(), -// 'wp_admin_css' => get_bloginfo('wpurl') . "/wp-admin/load-styles.php?c=1&load=buttons,wp-admin,dashicons", - ) ) ); + $query_params = FS_Contact_Form_Manager::instance()->get_query_params( $fs ); $view_params = array( 'id' => $VARS['id'], @@ -117,12 +102,3 @@ if ( $has_tabs ) { $fs->_add_tabs_after_content(); } - - $params = array( - 'page' => 'contact', - 'module_id' => $fs->get_id(), - 'module_type' => $fs->get_module_type(), - 'module_slug' => $slug, - 'module_version' => $fs->get_plugin_version(), - ); - fs_require_template( 'powered-by.php', $params ); \ No newline at end of file diff --git a/freemius/templates/debug.php b/freemius/templates/debug.php index 4626f64..0427c08 100644 --- a/freemius/templates/debug.php +++ b/freemius/templates/debug.php @@ -17,19 +17,26 @@ $off_text = fs_text_x_inline( 'Off', 'as turned off' ); $on_text = fs_text_x_inline( 'On', 'as turned on' ); + // For some reason css was missing + fs_enqueue_local_style( 'fs_common', '/admin/common.css' ); + $has_any_active_clone = false; $is_multisite = is_multisite(); + + $auto_off_timestamp = wp_next_scheduled( 'fs_debug_turn_off_logging_hook' ) * 1000; ?>

newest->version ?>

-
+ +