WP Table Builder – WordPress Table Plugin - Version 1.3.16

Version Description

  • IMPROVE: WordPress 5.9 compatibility.
  • NEW: Table fix tool for corrupted tables.
  • NEW: Shortcode clipboard copy functionality at table listings.
  • FIX: Startup error for some older PHP versions.
  • FIX: Version control wrong list for available rollback versions.
Download this release

Release Info

Developer imtiazrayhan
Plugin Icon 128x128 WP Table Builder – WordPress Table Plugin
Version 1.3.16
Comparing to
See all releases

Code changes from version 1.3.15 to 1.3.16

assets/images/what-is-new/embed.png ADDED
Binary file
assets/images/what-is-new/horizontal_scroll_control.png DELETED
Binary file
assets/images/what-is-new/listing_shortcode_clipboard_copy.png ADDED
Binary file
assets/images/what-is-new/mailto.png DELETED
Binary file
assets/images/what-is-new/table_fixer.png ADDED
Binary file
inc/admin/base/fix-mode-base.php ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Table_Builder\Inc\Admin\Base;
4
+
5
+ use DOMDocument;
6
+ use Exception;
7
+ use function get_bloginfo;
8
+ use function get_post_meta;
9
+ use function get_post_type;
10
+
11
+
12
+ /**
13
+ * Class for main process logic for specific fix operations.
14
+ */
15
+ abstract class Fix_Mode_Base {
16
+
17
+ /**
18
+ * Create a dom handler to traverse html content of a table.
19
+ * @return DOMDocument dom document instance
20
+ * @throws Exception upon unsuccessful dom parsing result
21
+ */
22
+ protected final function create_dom_handler( $content ) {
23
+ $dom_handler = new DOMDocument( '1.0', 'UTF-8' );
24
+ $status = @$dom_handler->loadHTML( $content, LIBXML_NOERROR | LIBXML_NOWARNING | LIBXML_HTML_NODEFDTD | LIBXML_HTML_NOIMPLIED );
25
+
26
+ if ( $status === false ) {
27
+ throw new Exception( 'could not load html content' );
28
+ }
29
+
30
+ return $dom_handler;
31
+ }
32
+
33
+ /**
34
+ * Fix content of a table.
35
+ *
36
+ * @param integer $table_id table id to fix its content
37
+ *
38
+ * @return boolean fix process result
39
+ */
40
+ public final function fix( $table_id ) {
41
+ $status = false;
42
+ if ( get_post_type( $table_id ) === 'wptb-tables' ) {
43
+ $content = get_post_meta( $table_id, '_wptb_content_', true );
44
+
45
+ if ( $content !== false && empty( $content ) !== true && function_exists( 'mb_convert_encoding' ) ) {
46
+ try {
47
+ $site_charset = get_bloginfo( 'charset' );
48
+ $encoded_content = mb_convert_encoding( $content, "HTML-ENTITIES", $site_charset );
49
+
50
+ $dom_handler = $this->create_dom_handler( $encoded_content );
51
+ $result = $this->fix_logic( $dom_handler );
52
+
53
+ if ( $result ) {
54
+ $status = update_post_meta( $table_id, '_wptb_content_', $dom_handler->saveHTML() );
55
+ }
56
+ } catch ( Exception $e ) {
57
+ $status = false;
58
+ // do nothing
59
+ }
60
+ }
61
+ }
62
+
63
+ return $status;
64
+ }
65
+
66
+ /**
67
+ * Fix table issues according to logic defined in here.
68
+ *
69
+ * @param DOMDocument $dom_handler dom handler instance
70
+ *
71
+ * @return boolean logic fix status
72
+ */
73
+ abstract protected function fix_logic( $dom_handler );
74
+ }
inc/admin/base/manager-base.php CHANGED
@@ -21,7 +21,7 @@ abstract class Manager_Base {
21
  * Class initialization status.
22
  * @var bool
23
  */
24
- public static $initialized = false;
25
 
26
  /**
27
  * Get initialization status of a static class.
21
  * Class initialization status.
22
  * @var bool
23
  */
24
+ protected static $initialized = false;
25
 
26
  /**
27
  * Get initialization status of a static class.
inc/admin/class-admin-menu.php CHANGED
@@ -334,15 +334,28 @@ class Admin_Menu {
334
  wp_enqueue_script( 'wptb-controls-manager-js', plugin_dir_url( __FILE__ ) . 'js/WPTB_BuilderControls.js', [], filemtime( $builder_path ), false );
335
 
336
  $strings = [
337
- 'dirtyConfirmation' => esc_html__( 'You have unsaved changes, leave?', 'wp-table-builder' )
 
 
 
338
  ];
339
 
 
 
340
  $admin_object = [
341
  'ajaxurl' => admin_url( 'admin-ajax.php' ),
342
  'security_code' => wp_create_nonce( 'wptb-security-nonce' ),
343
  'strings' => $strings,
344
  'store' => [
345
- 'pro' => Addon_Manager::check_pro_status()
 
 
 
 
 
 
 
 
346
  ]
347
  ];
348
 
@@ -423,8 +436,9 @@ class Admin_Menu {
423
 
424
  } elseif ( isset( $_GET['page'] ) && sanitize_text_field( $_GET['page'] ) == 'wptb-overview' ) {
425
 
426
- wp_enqueue_script( 'wptb-overview-js', plugin_dir_url( __FILE__ ) . 'js/wptb-overview.js', array( 'jquery' ), NS\PLUGIN_VERSION, true );
427
- wp_enqueue_style( 'wptb-admin-common-css', plugin_dir_url( __FILE__ ) . 'css/admin-common.css', array(), NS\PLUGIN_VERSION, 'all' );
 
428
 
429
  } else if ( isset( $_GET['page'] ) && sanitize_text_field( $_GET['page'] ) == 'wptb-import' ) {
430
 
334
  wp_enqueue_script( 'wptb-controls-manager-js', plugin_dir_url( __FILE__ ) . 'js/WPTB_BuilderControls.js', [], filemtime( $builder_path ), false );
335
 
336
  $strings = [
337
+ 'dirtyConfirmation' => esc_html__( 'You have unsaved changes, leave?', 'wp-table-builder' ),
338
+ 'embedMessage' => esc_html__( 'To embed this table on your site, please paste the following shortcode inside a post or page.', 'wp-table-builder' ),
339
+ 'copyToClipboard' => esc_html__( 'copy to clipboard', 'wp-table-builder' ),
340
+ 'copied' => esc_html__( 'copied', 'wp-table-builder' ),
341
  ];
342
 
343
+ $table_id = isset( $_GET['table'] ) ? $_GET['table'] : null;
344
+
345
  $admin_object = [
346
  'ajaxurl' => admin_url( 'admin-ajax.php' ),
347
  'security_code' => wp_create_nonce( 'wptb-security-nonce' ),
348
  'strings' => $strings,
349
  'store' => [
350
+ 'tableId' => $table_id,
351
+ 'pro' => Addon_Manager::check_pro_status(),
352
+ 'translations' => [
353
+ 'dirtyConfirmation' => esc_html__( 'You have unsaved changes, leave?', 'wp-table-builder' ),
354
+ 'embedMessage' => esc_html__( 'To embed this table on your site, please paste the following shortcode inside a post or page.', 'wp-table-builder' ),
355
+ 'copyToClipboard' => esc_html__( 'copy to clipboard', 'wp-table-builder' ),
356
+ 'copied' => esc_html__( 'copied', 'wp-table-builder' ),
357
+ 'shortcode' => esc_html__( 'shortcode', 'wp-table-builder' ),
358
+ ]
359
  ]
360
  ];
361
 
436
 
437
  } elseif ( isset( $_GET['page'] ) && sanitize_text_field( $_GET['page'] ) == 'wptb-overview' ) {
438
 
439
+ Helpers::enqueue_file( 'inc/admin/js/wptb-overview.js', [], true, 'wptb-overview-js' );
440
+ Helpers::enqueue_file( 'inc/admin/css/admin-common.css', [], true, 'wptb-admin-common-css' );
441
+ Helpers::enqueue_file( 'inc/admin/css/wptb-overview.css' );
442
 
443
  } else if ( isset( $_GET['page'] ) && sanitize_text_field( $_GET['page'] ) == 'wptb-import' ) {
444
 
inc/admin/class-wptb-listing.php CHANGED
@@ -3,6 +3,7 @@
3
  namespace WP_Table_Builder\Inc\Admin;
4
 
5
 
 
6
  use WP_Query;
7
  use WP_Table_Builder\Inc\Core\Init;
8
  use function apply_filters;
@@ -21,7 +22,7 @@ if ( ! class_exists( 'WP_List_Table' ) ) {
21
  *
22
  * @author Imtiaz Rayhan
23
  */
24
- class WPTB_Listing extends \WP_List_Table {
25
 
26
  public function __construct() {
27
 
@@ -215,16 +216,51 @@ class WPTB_Listing extends \WP_List_Table {
215
 
216
  }
217
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
218
  public function column_default( $item, $column_name ) {
219
 
220
  switch ( $column_name ) {
221
  case 'id':
222
  return $item->ID;
223
  case 'shortcode':
224
- $shortcode = '[wptb id=' . $item->ID . ']';
225
- $shortcode = apply_filters( 'wp-table-builder/shortcode_listing', $shortcode, $item->ID );
226
 
227
- return $shortcode;
228
  case 'created':
229
  return get_the_date( '', $item->ID );
230
  default:
3
  namespace WP_Table_Builder\Inc\Admin;
4
 
5
 
6
+ use WP_List_Table;
7
  use WP_Query;
8
  use WP_Table_Builder\Inc\Core\Init;
9
  use function apply_filters;
22
  *
23
  * @author Imtiaz Rayhan
24
  */
25
+ class WPTB_Listing extends WP_List_Table {
26
 
27
  public function __construct() {
28
 
216
 
217
  }
218
 
219
+ /**
220
+ * Get html representation of shortcode column item.
221
+ *
222
+ * @param integer $item_id table id
223
+ *
224
+ * @return string shortcode listing html
225
+ */
226
+ private function get_shortcode_listing_html( $item_id ) {
227
+ ob_start();
228
+
229
+ ?>
230
+ <div class="wptb-main-shortcode-div">
231
+ <div class="wptb-listing-shortcode-inner-wrap">
232
+ <div class="wptb-listing-shortcode-raw">[wptb id=<?php echo esc_html( $item_id ); ?>]
233
+ </div>
234
+ <div data-wptb-copy-status="false" class="wptb-listing-shortcode-icon-wrapper"
235
+ title="<?php esc_attr_e( 'copy', 'wp-table-builder' ); ?>">
236
+ <div class="wptb-listing-shortcode-copy-icon">
237
+ <?php
238
+ Init::instance()->get_icon_manager()->get_icon( 'clipboard', true );
239
+ ?>
240
+ </div>
241
+ <div class="wptb-listing-shortcode-success-icon"
242
+ title="<?php esc_attr_e( 'copied', 'wp-table-builder' ); ?>">
243
+ <?php
244
+ Init::instance()->get_icon_manager()->get_icon( 'clipboard-check', true );
245
+ ?>
246
+ </div>
247
+ </div>
248
+ </div>
249
+ </div>
250
+ <?php
251
+
252
+ return ob_get_clean();
253
+ }
254
+
255
  public function column_default( $item, $column_name ) {
256
 
257
  switch ( $column_name ) {
258
  case 'id':
259
  return $item->ID;
260
  case 'shortcode':
261
+ $shortcode = $this->get_shortcode_listing_html( $item->ID );
 
262
 
263
+ return apply_filters( 'wp-table-builder/shortcode_listing', $shortcode, $item->ID );
264
  case 'created':
265
  return get_the_date( '', $item->ID );
266
  default:
inc/admin/css/admin.css CHANGED
@@ -1 +1,2 @@
1
- @-webkit-keyframes wptb-beat{0%,30%,to{transform:scale(1)}15%{transform:scale(1.5)}}@-webkit-keyframes wptb-settings-rotate{0%{transform:rotateZ(0deg)}to{transform:rotateZ(360deg)}}@keyframes wptb-settings-rotate{0%{transform:rotateZ(0deg)}to{transform:rotateZ(360deg)}}@-webkit-keyframes wptb-basic-appear{0%{opacity:0}to{opacity:1}}@keyframes wptb-basic-appear{0%{opacity:0}to{opacity:1}}@-webkit-keyframes wptb-text-dots{0%{content:''}33%{content:'.'}66%{content:'..'}to{content:'...'}}@keyframes wptb-text-dots{0%{content:''}33%{content:'.'}66%{content:'..'}to{content:'...'}}@-webkit-keyframes wptb-pop{0%{transform:scale(1)}50%{transform:scale(1.05)}}@keyframes wptb-pop{0%{transform:scale(1)}50%{transform:scale(1.05)}}@-webkit-keyframes wptb-more-pop{0%{transform:scale(1)}50%{transform:scale(1.5)}}@keyframes wptb-more-pop{0%{transform:scale(1)}50%{transform:scale(1.5)}}@-webkit-keyframes wptb-basic-disappear{0%{opacity:1}to{opacity:0}}@keyframes wptb-basic-disappear{0%{opacity:1}to{opacity:0}}@-webkit-keyframes wptb-push{0%,to{transform:scale(1)}50%{transform:scale(.9)}}@keyframes wptb-push{0%,to{transform:scale(1)}50%{transform:scale(.9)}}@-webkit-keyframes linear-gradient-move{0%{background-position:0 50%}to{background-position:100% 50%}}@keyframes linear-gradient-move{0%{background-position:0 50%}to{background-position:100% 50%}}@-webkit-keyframes wptb-unfold-up{0%{transform:perspective(100px) rotateX(-90deg)}to{transform:perspective(100px) rotateX(0deg)}}@keyframes wptb-unfold-up{0%{transform:perspective(100px) rotateX(-90deg)}to{transform:perspective(100px) rotateX(0deg)}}@-webkit-keyframes wptb-flip{0%{transform:rotateY(0deg)}to{transform:rotateY(360deg)}}@keyframes wptb-flip{0%{transform:rotateY(0deg)}to{transform:rotateY(360deg)}}@-webkit-keyframes wptb-jump{0%{transform:translateY(25%)}to{transform:translateY(-25%)}}@keyframes wptb-jump{0%{transform:translateY(25%)}to{transform:translateY(-25%)}}@-webkit-keyframes wptb-rotate-simple{0%{transform:rotateZ(0deg)}to{transform:rotateZ(360deg)}}@keyframes wptb-rotate-simple{0%{transform:rotateZ(0deg)}to{transform:rotateZ(360deg)}}@keyframes wptb-beat{0%,30%,to{transform:scale(1)}15%{transform:scale(1.5)}}@-webkit-keyframes blink{50%{background-color:transparent}}@keyframes blink{50%{background-color:transparent}}:root{--wptb-plugin-sidebar-size-full:300px;--wptb-plugin-logo-color:#3299D1;--wptb-plugin-gray-100:#F7FAFC;--wptb-plugin-gray-200:#EDF2F7;--wptb-plugin-gray-300:#E2E8F0;--wptb-plugin-gray-400:#CBD5E0;--wptb-plugin-gray-500:#A0AEC0;--wptb-plugin-gray-600:#718096;--wptb-plugin-gray-700:#4A5568;--wptb-plugin-green-500:#48BB78;--wptb-plugin-yellow-500:#ECC94B;--wptb-plugin-red-300:#FCA5A5;--wptb-plugin-red-500:#F56565;--wptb-plugin-red-600:#E53E3E;--wptb-plugin-red-800:#991B1B;--wptb-plugin-blue-300:#90CDF4;--wptb-plugin-blue-400:#60A5FA;--wptb-plugin-blue-500:#3B82F6;--wptb-plugin-blue-600:#2563EB;--wptb-plugin-white:#FFF;--wptb-plugin-black:#000;--wptb-plugin-gold:#D4AF37;--wptb-plugin-cta-button:#F7C948;--wptb-plugin-theme-text-color-main:var(--wptb-plugin-gray-700);--wptb-plugin-theme-color-light:var(--wptb-plugin-white);--wptb-plugin-theme-sidebar-bg:var(--wptb-plugin-gray-300);--wptb-plugin-theme-side-bar-font-size-base:16px;--wptb-plugin-theme-header-font-size-base:16px;--wptb-plugin-theme-side-bar-sections-font-base:80%;--wptb-plugin-left-panel-constant:40px;--wptb-prebuilt-card-border-size:2px;--wptb-prebuilt-card-control-size:30px;--wptb-busy-duration:0.9s;--wptb-notification-manager-width:300px}html{overflow-y:hidden}body>img{position:absolute;z-index:1000001}.wptb-admin-container,.wptb-container{position:fixed;left:0;top:0;right:0;bottom:0;overflow-y:auto}.wptb-admin-container{background:#fff;color:var(--wptb-plugin-theme-text-color-main);z-index:100000;height:100%;min-width:0;margin:0!important}.wptb-container{overflow-x:hidden}.wptb-container *{box-sizing:border-box}.wptb-builder-header{position:sticky!important;top:0;z-index:10}.wptb-header{width:100%;background-color:var(--wptb-plugin-theme-color-light);border-bottom:1px solid var(--wptb-plugin-theme-sidebar-bg);text-align:center;display:grid;grid-auto-flow:row;grid-template-columns:1fr 1fr;grid-template-areas:"table-name buttons close";align-items:center;justify-content:center;font-size:var(--wptb-plugin-theme-header-font-size-base);position:relative;z-index:10}.wptb-left-panel[data-wptb-panel-location=right]+.wptb-builder-panel .wptb-header{grid-template-areas:"close buttons table-name"!important;grid-template-columns:auto 1fr 1fr!important}.wptb-header-buttons-container{display:flex;flex-direction:row;align-items:center;justify-content:center;grid-area:buttons;height:100%}.wptb-header-close{font-size:30px;width:30px;height:30px;text-decoration:none;color:var(--wptb-plugin-gray-500)}.wptb-logo{padding-left:30px;float:left;margin-top:17px}.wptb-right{width:100%;display:flex;flex-direction:row;justify-content:flex-end;align-items:center;height:100%}.wptb-left-panel[data-wptb-panel-location=right]+.wptb-builder-panel .wptb-right{flex-direction:row-reverse!important}.wptb-right .wptb-settings-section-item{margin:0!important}.wptb-plugin-width-full{width:100%!important}.wptb-plugin-height-full{height:100%}#wptb-messaging-area{align-self:center;position:absolute;left:0;right:0;bottom:100px;pointer-events:none}#wptb-messaging-area .wptb-message{border-radius:4px;max-width:410px;padding:20px;margin:auto}#wptb-messaging-area .wptb-success{color:green;background-color:#90ee90;font-size:15px}#wptb-messaging-area .wptb-error{color:red;background-color:#ffd5d5;font-size:15px}.wptb-panel-night-mode-container,.wptb-panel-sub-container-buttons{display:flex;justify-content:center;align-items:center;height:100%;border-left:1px solid var(--wptb-plugin-theme-sidebar-bg)}.wptb-panel-sub-container-buttons{border-right:1px solid var(--wptb-plugin-theme-sidebar-bg)}.wptb-panel-night-mode-container{padding:10px}.wptb-panel-night-mode-icon-container{width:32px;height:32px;cursor:pointer}[data-wptb-mode=light] .wptb-panel-night-mode-icon-container{color:var(--wptb-plugin-gold)}[data-wptb-mode=dark] .wptb-panel-night-mode-icon-container{color:var(--wptb-plugin-blue-400)}.wptb-header .wptb-settings-section-item{padding:15px!important}.wptb-undo-redo-container{display:flex;justify-content:center;align-items:center;height:100%;padding:0 20px;border-left:1px solid var(--wptb-plugin-theme-sidebar-bg)}.wptb-redo,.wptb-undo{display:inline-block;cursor:pointer}.wptb-undo{margin-right:7px}.wptb-undoredo-disabled{cursor:default;opacity:.4}.wptb-embed-btn,.wptb-preview-btn,.wptb-save-btn{text-decoration:none}.wptb-embed,.wptb-embed-btn,.wptb-preview,.wptb-preview-btn,.wptb-save,.wptb-save-btn{display:flex;justify-content:center;align-items:center;height:100%}.wptb-save{position:relative}#wptb_builder[data-wptb-saving] .wptb-save-btn{opacity:0!important}.wptb-busy{position:absolute;width:100%;height:100%;left:0;right:0;display:flex;justify-content:space-evenly;align-items:center;opacity:0;pointer-events:none;transition:all .2s ease-out}.wptb-busy .wptb-busy-circle{width:10px;height:10px;border-radius:100%;background-color:var(--wptb-plugin-gray-700);-webkit-animation:wptb-beat var(--wptb-busy-duration) ease-out forwards infinite;animation:wptb-beat var(--wptb-busy-duration) ease-out forwards infinite}.wptb-busy-circle:nth-of-type(2){-webkit-animation-delay:calc(var(--wptb-busy-duration)/3);animation-delay:calc(var(--wptb-busy-duration)/3)}.wptb-busy-circle:nth-of-type(3){-webkit-animation-delay:calc(var(--wptb-busy-duration)/1.5);animation-delay:calc(var(--wptb-busy-duration)/1.5)}#wptb_builder[data-wptb-saving] .wptb-busy{opacity:1;pointer-events:all;cursor:not-allowed}.wptb-button-grey{background-color:var(--wptb-plugin-white);text-transform:uppercase;text-decoration:none;color:inherit}.wptb-button-grey:hover{color:inherit}.wptb-button-grey.wptb-button-disable,.wptb-save-btn.wptb-save-disabled{cursor:not-allowed;color:#cbd5e0!important}.wptb-save-btn{color:inherit;opacity:1;transition:all .2s ease-out}.wptb-close a,.wptb-save-btn.wptb-save-disabled:hover{text-decoration:none}.wptb-close{background-color:var(--wptb-plugin-white);border-left:1px solid var(--wptb-plugin-gray-300)}.wptb-close:hover{background:var(--wptb-plugin-gray-300)}.wptb-popup-dark-area{position:fixed;width:100%;height:100%;visibility:hidden;top:0;left:0;z-index:1000;background-color:#708090;opacity:0;transition:all .3s}.wptb-popup-window-modal.wptb-popup-show~.wptb-popup-dark-area{visibility:visible;opacity:.6}.wptb-popup-window-modal{position:fixed;top:50%;left:50%;width:50%;max-width:630px;min-width:300px;height:auto;z-index:2000;visibility:hidden;-webkit-backface-visibility:hidden;backface-visibility:hidden;transform:translateX(-50%) translateY(-50%)}.wptb-popup-window-modal.wptb-popup-show{visibility:visible}.wptb-popup-box{transform:scale(.7);opacity:0;transition:all .3s;border-radius:0;box-shadow:0 2px 6px rgba(0,0,0,.2);padding:30px;background-color:#fff}.wptb-popup-window-modal.wptb-popup-show .wptb-popup-box{transform:scale(1);opacity:1}.wptb-popup-window-close-icon{height:20px;width:20px;position:absolute;top:10px;right:10px;cursor:pointer;opacity:.6;text-align:center;font-size:27px!important;line-height:14px!important;display:none;z-index:1}.wptb-popup-content p{font-size:15px;text-align:center}#wptb-embed-shortcode{width:100%;text-align:center;font-size:24px;display:block;border:1px solid #d6d6d6;padding:10px;box-shadow:none;margin:20px auto 0}.wptb-edit-bar ul{display:flex;display:-webkit-flex;list-style:none;margin:0;padding:0}.wptb-edit-bar{border-radius:2px;display:none;padding:.3em .4em 0;position:relative;width:auto;z-index:10;background:0 0;max-width:870px;margin:auto;clear:both}.wptb-edit-bar.visible{display:block}.wptb-edit-bar ul li{height:auto;margin:0;padding:0}.wptb-table_change_button{cursor:pointer;box-sizing:border-box;height:41px;background:#fafbfc;font-size:13px;color:#37454c;border-radius:3px;border:1px solid #a4a4a4;padding-left:12px;padding-right:12px;position:relative;display:inline-block;text-transform:uppercase;letter-spacing:.02em;font-weight:bolder;text-align:center;margin-top:0;margin-right:1em;line-height:2.4em;margin-bottom:8px}.wptb-management.wptb-bar.wptb-edit-bar.visible button.visible:hover{color:#4fbe31;transition:all .1s ease-out}#wptb-delete-column,#wptb-delete-row{background-color:#eb4c63}#wptb-left-scroll-panel-curtain .wptb-table-edit-mode-close{margin:auto;display:block}.wptb-table-edit-mode-close{background:#329d3f;color:#fff}.wptb-edit-bar svg{cursor:pointer}.wptb-edit-bar svg *{fill:transparent!important;stroke:#fff!important}.wptb-left-panel{position:fixed;height:100%;box-sizing:border-box;background-color:var(--wptb-plugin-theme-sidebar-bg);transition:all .2s ease-out,right .2s ease-out;box-shadow:0 0 5px 3px rgba(0,0,0,.2);z-index:100001;font-size:var(--wptb-plugin-theme-side-bar-font-size-base)}.wptb-left-panel[data-wptb-panel-location=left]{left:0}.wptb-left-panel[data-wptb-panel-location=right]{right:0}.collapsed .wptb-left-panel[data-wptb-panel-location=left]{transform:translateX(calc(-100% + var(--wptb-plugin-left-panel-constant)))}.collapsed .wptb-left-panel[data-wptb-panel-location=right]{transform:translateX(calc(100% - var(--wptb-plugin-left-panel-constant)))}.collapsed .wptb-left-panel .wptb-left-panel-sidebar-content,.collapsed .wptb-left-panel .wptb-panel-tabs{opacity:0}.wptb-left-scroll-panel{height:100%;overflow-y:auto;overflow-x:hidden}#wptb-left-scroll-panel-cell-settings,#wptb-left-scroll-panel-curtain{position:absolute;top:0;right:0;left:0;bottom:0;background-color:var(--wptb-plugin-theme-sidebar-bg);padding:20px;display:none}#wptb-left-scroll-panel-cell-settings{padding:0}#wptb-left-scroll-panel-cell-settings.visible,#wptb-left-scroll-panel-curtain.visible{display:block}.wptb-panel-left{height:100%;width:var(--wptb-plugin-sidebar-size-full);display:grid;grid-template-rows:auto auto 1fr auto;grid-template-columns:1fr;grid-auto-flow:row;transition:width .2s ease-out;grid-template-areas:"brand" "sidebar-tabs" "sidebar-content" "sidebar-footer"}.wptb-left-panel-sidebar-content{grid-area:sidebar-content;overflow:auto;transition:all .2s ease-out}.wptb-panel-drawer-toggle{background-color:var(--wptb-plugin-theme-sidebar-bg);height:50px;width:25px;position:absolute;top:calc(50% - 25px);left:calc(100%);display:flex;justify-content:center;align-items:center;cursor:pointer;border-radius:0 5px 5px 0;box-shadow:3px 1px 5px rgba(0,0,0,.2)}.wptb-panel-drawer-icon::after{content:"\f341"}.collapsed .wptb-panel-drawer-icon::after{content:"\f345"}.wptb-panel-brand{grid-area:brand;background-color:var(--wptb-plugin-logo-color);color:var(--wptb-plugin-white);padding:25px 0;font-size:170%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;grid-template-areas:"brand-position";text-align:center;height:61px}.wptb-brand-logo,.wptb-brand-name{grid-area:brand-position}.wptb-brand-logo{display:none}.wptb-panel-tabs{grid-area:sidebar-tabs;text-align:center;justify-content:stretch;transition:all .2s ease-out}.wptb-panel-tabs div{width:100%;margin:0!important;font-size:90%;padding:10px!important}.wptb-left-panel-extend{position:absolute;top:50%;left:100%;margin-top:-55px;overflow:hidden;width:18px;border-top-right-radius:8px;border-bottom-right-radius:8px;height:40px;background-color:#f0f3f3;box-shadow:1px 0 5px 0 rgba(25,31,40,.2);display:flex;justify-content:center;align-items:center;font-size:12px;color:#353638;z-index:-1;border-right:1px solid #ccc;border-bottom:1px solid #ccc;border-top:1px solid #ccc}.wptb-left-panel-extend svg{display:inline-block;width:1em;height:1em;line-height:1em;vertical-align:middle;stroke-width:0;stroke:currentColor;fill:currentColor}.wptb-container.collapsed .wptb-left-panel .wptb-left-panel-extend svg{transform:rotate(180deg)}.wptb-settings-section p{font-size:16px;margin:0 0 10px}.wptb-input-px{right:35%;top:0;position:absolute;margin-top:7px}.wptb-settings-dropdown{font-size:16px;padding:16px 20px;position:relative;background-color:#fff;color:#186cba;border-top:.5px solid #ccc;border-bottom:.5px solid #ccc}.wptb-panel-table-empty-message{padding:0 20px;text-align:center;font-size:80%;font-style:italic}.wptb-cell-management,.wptb-settings-items{transition:1s 0s ease}.wptb-cell-management{display:none}#wptb-inner-border-settings.visible,.wptb-cell-management.visible,.wptb-settings-items.visible{display:block!important;opacity:1}.wptb-settings-item-title{font-size:14px!important;margin:0!important}.wptb-settings-item-header,.wptb-settings-item-header-include-right{font-size:14px;line-height:14px;padding:14px 0 14px 15px;position:relative;background:var(--wptb-plugin-gray-100)}.wptb-settings-item-header-include-right{padding:14px 10px}.wptb-settings-row,.wptb-settings-row label{display:flex;flex-direction:row;align-items:center}.wptb-settings-row{box-sizing:border-box!important;flex:0 1 auto;flex-wrap:wrap;padding-right:0!important}.wptb-settings-row label{justify-content:space-between}.wptb-settings-middle-xs{align-items:center;background:var(--wptb-plugin-gray-100);padding:15px!important;border-bottom:1px solid #e5dfdf}.wptb-settings-middle-xs *{font-size:14px!important}.wptb-settings-col-xs-12{flex-basis:100%;max-width:100%}.wptb-settings-col-xs-8{flex-basis:66.66666667%;max-width:66.66666667%}.wptb-settings-col-xs-4{flex-basis:33.33333333%;max-width:33.33333333%;position:relative}.wptb-number-input{max-width:75px;width:100%;margin:3px 10px}input[type=number]{height:28px!important;line-height:1;padding:3px 5px!important}input[type=range]::-moz-focus-inner{border:0}input[type=range]::-moz-focus-outer{border:0;outline:0}input[type=range]:focus{outline:0}input[type=range]{-webkit-appearance:none;-webkit-tap-highlight-color:transparent;width:100%;height:8px;margin:0;border:0;padding:1px 2px;border-radius:14px;background:#ccc;outline:0}input[type=range]::-moz-range-track{border:inherit;background:#ccc}input[type=range]::-ms-track{border:inherit;color:transparent;background:#ccc}input[type=range]::-ms-fill-lower,input[type=range]::-ms-fill-upper{background:#ccc}input[type=range]::-ms-tooltip{display:none}input[type=range]::-webkit-slider-thumb:before{content:"";position:absolute;left:-3000px;right:100%;top:50%;height:6px;padding:0;background:#1d9b2a;transform:translate(0,-50%)}input[type=range]::-moz-range-progress{background-color:#3b7ec0;height:6px}input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;width:18px;height:18px;border:1px solid #3b7ec0;border-radius:50%;background-image:linear-gradient(to bottom,#fff 0,#fff 100%)}input[type=range]::-moz-range-thumb{width:18px;height:18px;border:1px solid #3b7ec0;border-radius:50%;background-image:linear-gradient(to bottom,#fff 0,#fff 100%)}input[type=range]::-ms-thumb{width:18px;height:18px;border-radius:50%;border:1px solid #3b7ec0;background-image:linear-gradient(to bottom,#fff 0,#fff 100%)}.wptb-toggle{display:inline-block;width:95%}.wptb-toggle input{display:none}.wptb-toggle input:checked+i::after{transform:translateX(20px)}.wptb-toggle input:checked+i{background:#3b7ec0}.wptb-toggle i{float:right;padding:2px;width:40px;height:20px;border-radius:13px;vertical-align:middle;transition:.25s .09s;position:relative;background:#d8d9db;box-sizing:initial}.wptb-toggle i::after{content:" ";display:block;width:20px;height:20px;border-radius:50%;background:#fff;position:absolute;left:2px;transition:.25s}.wptb-toggle.wptb-size-fixed-auto input:checked+i::after,.wptb-toggle.wptb-toggle2 input:checked+i::after{transform:translateX(50px)}.wptb-toggle.wptb-size-fixed-auto i,.wptb-toggle.wptb-toggle2 i{float:left;width:100px;border-radius:5px;height:25px}.wptb-toggle.wptb-size-fixed-auto i:after,.wptb-toggle.wptb-toggle2 i:after{width:50px;height:25px;border-radius:5px;transform:translateX(0)}.wptb-checkbox{display:block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding-top:3px;padding-bottom:3px}.wptb-checkbox span{vertical-align:middle}.wptb-checkbox input[type=checkbox]{opacity:0;height:0;width:0;display:none}.wptb-checkbox-checkmark{height:25px;width:25px;background-color:#d8d9db;display:inline-block;position:relative;border-radius:3px;margin-left:5px}.wptb-checkbox:hover input[type=checkbox]~.wptb-checkbox-checkmark{background-color:#6ea4d8}.wptb-checkbox input[type=checkbox]:checked~.wptb-checkbox-checkmark{background-color:#3b7ec0}.wptb-checkbox-checkmark:after{content:"";position:absolute;display:none}.wptb-checkbox input[type=checkbox]:checked~.wptb-checkbox-checkmark:after{display:block}.wptb-checkbox .wptb-checkbox-checkmark:after{left:10px;top:7px;width:6px;height:11px;border:solid #fff;border-width:0 2px 2px 0;transform:rotate(45deg)}.wptb-column-auto,.wptb-column-fixed{position:absolute;font-size:15px;width:50%;height:100%;text-align:center;line-height:25px}.wptb-column-fixed{color:#d8d9db}.wptb-column-auto{color:#3b7ec0;right:0}#element-options-group,.wptb-elements-section,.wptb-responsive-section,.wptb-settings-section{grid-area:sidebar-content}#element-options-group{padding-top:20px}[data-wptb-section]{padding-top:20px;-webkit-animation:wptb-basic-appear .2s ease-out;animation:wptb-basic-appear .2s ease-out}.wptb-tabs{width:100%;margin:0;padding:0;background:#fff;border-bottom:.5px solid #ccc;max-width:349px;z-index:10}ul.wptb-tabs{list-style:none}.wptb-tabs li{float:left;width:49.3%;margin:0}.wptb-tabs li:last-of-type{float:right}.wptb-tabs li a{display:block;text-align:center;padding:18px 10px;font-size:16px}.wptb-tabs li a,.wptb-tabs li a:hover{color:#186cba;text-decoration:none}.wptb-tabs li a:focus{box-shadow:none}.wptb-tabs li .active,.wptb-tabs li .active:hover{color:#186cba}.wptb-tabs #element-options .active,.wptb-tabs #wptb-add-elements .active{background:#fff}.wptb-tab-content{padding:0}.wptb-panel-toggle,.wptb-panel-toggle-group{background-color:var(--wptb-plugin-theme-color-light)}.wptb-panel-toggle-group{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06);margin:20px 0}.wptb-panel-toggle{padding:10px;justify-content:space-between;border-bottom:3px solid var(--wptb-plugin-theme-sidebar-bg);cursor:pointer}.wptb-element-options .wptb-panel-toggle{cursor:pointer}.wptb-panel-toggle,.wptb-panel-toggle .header{display:flex;flex-direction:row;align-items:center}.wptb-panel-toggle .header{text-transform:uppercase;font-size:90%;justify-content:center}.wptb-panel-toggle .header .wptb-panel-toggle-group-header-icon{width:17px;margin-right:7px;color:var(--wptb-plugin-logo-color)}.wptb-panel-toggle .header .wptb-panel-toggle-group-header-icon:empty{display:none}.wptb-panel-toggle .header .wptb-panel-toggle-group-header-icon svg{fill:currentColor}.header .wptb-back-button{margin-right:10px}.wptb-panel-toggle .toggle-icon{cursor:pointer}.wptb-panel-toggle .toggle-icon::after{content:"\f343"}.wptb-panel-toggle-content .wptb-panel-toggle .toggle-icon::after{content:"\f347"}.wptb-panel-toggle-target{padding:20px 10px}.wptb-panel-section-toggle-target,.wptb-panel-toggle-target{background-color:var(--wptb-plugin-gray-100)}.wptb-panel-elements-inner-wrapper{display:grid;grid-auto-flow:row;grid-template-columns:1fr 1fr;grid-gap:10px;color:var(--wptb-plugin-theme-text-color-main);font-size:80%}.wptb-section-group-tabbed{display:grid;grid-template-columns:1fr;grid-template-areas:"header" "tabButtons" "controls";grid-auto-flow:row;grid-template-rows:auto}.wptb-section-group-tabbed-header{grid-area:header;justify-content:center!important}.wptb-section-group-tabbed-tabs-buttons{grid-area:tabButtons;display:flex;flex-direction:row;background-color:var(--wptb-plugin-theme-color-light);text-align:center;justify-content:stretch;border-bottom:1px solid #e5dfdf}.wptb-section-group-tabbed-tabs-buttons div{width:100%;margin:0!important;font-size:90%;padding:7px!important}.wptb-section-group-tab-content{grid-area:controls;transition:opacity .2s ease-out}.wptb-plugin-non-visible{height:0;opacity:0;pointer-events:none;transition:none!important}.wptb-plugin-non-visible div{height:0}.wptb-elements-container{width:100%;max-height:inherit;padding:0 0 60px;background-color:inherit}.wptb-element{position:relative;background:var(--wptb-plugin-theme-color-light);display:flex;align-items:center;justify-content:center;flex-direction:column;height:100px;text-align:center;border-radius:5px;border:2px solid var(--wptb-plugin-gray-400);transition:all .25s;cursor:move}.wptb-element p,.wptb-table-generator input{margin:0}.wptb-element:hover{box-shadow:3px 3px 2px .5px rgba(0,0,0,.2)}.wptb-element svg{fill:var(--wptb-plugin-theme-text-color-main)!important}.wptb-element-draggable-icon{position:absolute;top:0;right:0;color:var(--wptb-plugin-gray-500)!important}.left,.right{width:47.5%;float:left;margin:6px 0 -4px 6px}.right{float:right;margin:6px 5px -4px 0}.wptb-builder-panel{display:flex;flex-direction:column;position:relative;min-height:100%;height:100%;transition:all .2s ease-out,right .2s ease-out;width:calc(100% - var(--wptb-plugin-sidebar-size-full));text-align:center;z-index:100000}[data-wptb-night-mode=true] .wptb-builder-panel{background-color:var(--wptb-plugin-gray-500)}.wptb-left-panel[data-wptb-panel-location=left]+.wptb-builder-panel{left:var(--wptb-plugin-sidebar-size-full)}.wptb-left-panel[data-wptb-panel-location=right]+.wptb-builder-panel{left:0}.collapsed .wptb-left-panel[data-wptb-panel-location=left]+.wptb-builder-panel{left:calc(0px + var(--wptb-plugin-left-panel-constant))!important;width:calc(100% - var(--wptb-plugin-left-panel-constant))!important}.collapsed .wptb-left-panel[data-wptb-panel-location=right]+.wptb-builder-panel{right:calc(0px - var(--wptb-plugin-left-panel-constant))!important;width:calc(100% - var(--wptb-plugin-left-panel-constant))!important}.wptb-name-setup{text-align:start;margin:0 20px;grid-area:table-name}.wptb-left-panel[data-wptb-panel-location=right]+.wptb-builder-panel .wptb-name-setup,.wptb-left-panel[data-wptb-panel-location=right]+.wptb-builder-panel .wptb-name-setup input{text-align:end!important}.wptb-plugin-header-close{grid-area:close}#wptb-setup-name{height:50px;box-shadow:none;border:1px solid var(--wptb-plugin-gray-300);font-size:100%;width:420px;padding:0 20px}.wptb-messaging{color:#fff;height:0;margin:0 auto;padding:5px;transition:all 1s 0s;width:90%;text-align:initial}.wptb-messaging.wptb-success{background:#4caf50;background:linear-gradient(45deg,#4caf50 0,#8bc34a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#4caf50', endColorstr='#8bc34a', GradientType=1);height:auto}.wptb-messaging.wptb-warning{background:#f44336;background:linear-gradient(45deg,#f44336 0,#ff5722 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f44336', endColorstr='#ff5722', GradientType=1);height:auto}.wptb-management_table_container{margin:auto;text-align:initial}.wptb-table-setup{justify-content:center;position:relative;z-index:1;margin:30px auto;background:#fff;max-width:700px;overflow-x:auto;overflow-y:hidden}#wptb-cell_mode_background{position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(49,59,71,.49);display:none;text-align:initial}#wptb-cell_mode_background.visible,.wptb-droppable.wptb-cell li .wptb-list-item-content p span.content{display:block}table.wptb-table{border-collapse:collapse}.wptb-wrapper{margin:0 auto;padding:40px;max-width:960px;text-align:initial}.wptb-table{margin:20px 0 60px;width:100%;border:1px solid #ccc;box-shadow:0 1px 3px rgba(0,0,0,.2);display:table}@media screen and (max-width:580px){.wptb-table{display:block}}.wptb-row{display:table-row;background:#bebebe}.wptb-row:nth-of-type(odd){background:#bebebe}.wptb-row.wptb-table-header{font-weight:900;color:#fff;background:#ea6153}.wptb-row.wptb-green{background:#27ae60}.wptb-row.wptb-blue{background:#2980b9}@media screen and (max-width:580px){.wptb-row{padding:14px 0 7px;display:block}.wptb-row.wptb-table-header{padding:0;height:6px}.wptb-row.wptb-table-header .wptb-cell{display:none}.wptb-row .wptb-cell{margin-bottom:10px}.wptb-row .wptb-cell:before{margin-bottom:3px;content:attr(data-title);min-width:98px;font-size:10px;line-height:10px;font-weight:700;text-transform:uppercase;color:#969696;display:block}}.wptb-cell{padding:12px;display:table-wptb-cell}.wptb-preview-table{table-layout:fixed;font-size:15px;display:table;border-collapse:collapse!important;margin:auto;width:auto}.wptb-preview-table.wptb-preview-table-auto-width{width:auto}.wptb-preview-table-manage-cells tbody>tr>td::after{content:'';display:block;position:absolute;top:0;right:0;left:0;bottom:0;z-index:100}.wptb-preview-table-manage-cells td:hover::after{background:rgba(207,218,239,.2);border-color:inherit}.wptb-preview-table p{margin:0;font-size:15px;word-wrap:break-word;overflow-wrap:break-word;word-break:break-word}.wptb-preview-table ul{list-style-type:disc;margin-left:15px}.wptb-preview-table tr{display:table-row;background:#fcfcfc}.wptb-preview-table tr:nth-of-type(odd){background:#eee}.wptb-state-dragging td{cursor:all-scroll}.wptb-preview-table td{padding:15px;position:relative;box-sizing:content-box}.wptb-preview-table td.wptb-td-default-width{width:100px}.wptb-preview-table .wptb-row td.wptb-highlighted,.wptb-state-dragging td:hover{outline:1px solid #acc1e2}.wptb-preview-table .wptb-row.wptb-highlighted-row{background-color:rgba(59,125,191,.34);border:1px solid pink}.wptb-preview-table .wptb-row td.wptb-highlighted-row-first,.wptb-preview-table .wptb-row td.wptb-highlighted-row-inner{background-color:rgba(59,125,191,.34);border-bottom:1px solid pink;border-left:1px solid pink;border-right:inherit;border-top:1px solid pink}.wptb-preview-table .wptb-row td.wptb-highlighted-row-inner{border-left:inherit}.wptb-preview-table .wptb-row td.wptb-highlighted-column-first,.wptb-preview-table .wptb-row td.wptb-highlighted-row-last{background-color:rgba(59,125,191,.34);border-bottom:1px solid pink;border-left:inherit;border-right:1px solid pink;border-top:1px solid pink}.wptb-preview-table .wptb-row td.wptb-highlighted-column-first{border-bottom:inherit;border-left:1px solid pink}.wptb-preview-table .wptb-row td.wptb-highlighted-column-inner,.wptb-preview-table .wptb-row td.wptb-highlighted-column-last{background-color:rgba(59,125,191,.34);border-bottom:inherit;border-left:1px solid pink;border-right:1px solid pink;border-top:inherit}.wptb-preview-table .wptb-row td.wptb-highlighted-column-last{border-bottom:1px solid pink}.wptb-row td:empty::before{content:'Cell';display:block;font-weight:400;font-size:80%;text-align:center;color:#969fa6}.wptb-row td:empty::after{content:'';display:block;border:1px dashed #969fa6;position:absolute;top:2px;right:2px;bottom:2px;left:2px}.wptb-preview-table.wptb-table-preview-head .wptb-row:first-child td:empty::before{content:'Header'}.wptb-ph-element{position:relative;border:1px solid #fff0;min-height:15px}.wptb-image-wrapper img{width:100%;display:block;padding:0;max-width:100%;height:auto;transition:all .2s ease-out}.wptb-image-wrapper a{display:block;position:relative;margin:auto}.wptb-icon-image-button{display:block;padding:5px;background:#747d84;border-radius:5px;color:#000;cursor:pointer}.wptb-image-wrapper::after{content:"";display:block;height:0;width:100%;clear:both}.wptb-button-wrapper>a,.wptb-image-wrapper a{text-decoration:none;max-width:100%}.wptb-button,.wptb-button-icon,.wptb-button-wrapper{display:flex;justify-content:center;align-items:center}.wptb-button{padding:16px;background:#329d3f;color:#fff;cursor:pointer;border-radius:5px;border:0;box-shadow:none;transition:all .2s ease-out}.wptb-button-icon{margin:0 5px;order:-1;width:25px;height:25px}.wptb-button-icon svg{width:100%;height:100%;fill:currentColor}.wptb-button-icon[data-wptb-button-icon-src=""],br[data-mce-bogus="1"]{display:none}.wptb-plugin-button-order-right .wptb-button-icon,[data-wptb-button-icon-position=right] .wptb-button-icon{order:2}.wptb-button:hover{color:#fff}.wptb-table-generator{text-align:center;margin:60px auto 20px}.wptb-generator-btn{width:92%;padding:15px;background:var(--wptb-plugin-logo-color);color:#fff;cursor:pointer;border:0;box-shadow:none;border-radius:5px}.wptb-input-number{width:80px;padding:0 12px;vertical-align:top;text-align:center;outline:0;border:1px solid #ccc;height:40px}.wptb-input-number-decrement,.wptb-input-number-increment{border:1px solid #ccc;height:40px;display:inline-block;width:30px;line-height:38px;background:#f1f1f1;color:#444;text-align:center;font-weight:700;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.wptb-input-number-decrement:active,.wptb-input-number-increment:active{background:#ddd}.wptb-input-number-decrement{border-right:none;border-radius:4px 0 0 4px}.wptb-input-number-increment{border-left:none;border-radius:0 4px 4px 0}.wptb-allow-drop{background:#b5e0d7}#wpcd_fixed_toolbar{min-height:55px;text-align:center;position:sticky!important;top:39px;z-index:100;display:inline-block}#wpcd_fixed_toolbar>div.toolbar-active{display:block!important}.wptb-btn-size-btn{padding:8px 15px;margin:0;vertical-align:middle;border:solid 1px #ccc;font-size:12px;border-radius:4px;cursor:pointer}.wptb-btn-size-switcher{background:linear-gradient(to bottom,#fff,#eee);display:table-cell;border-right:none;border-radius:0;color:#433f33}.wptb-btn-size-switcher:first-child{border-radius:4px 0 0 4px}.wptb-btn-size-switcher:last-child{border-radius:0 4px 4px 0;border-right:solid 1px #ccc}.wptb-btn-size-switcher:hover{background:#fff}.wptb-btn-size-switcher:active{box-shadow:inset 0 0 8px 0 rgba(0,0,0,.1)}.wptb-btn-size-switcher.bnt-selected{background:#fff;box-shadow:inset 0 0 20px 4px rgba(0,0,0,.15);cursor:default}.mce-content-body{min-height:19px;word-break:break-word}.mce-tinymce.mce-tinymce-inline.mce-container.mce-panel{left:50%!important;transform:translate(-50%,0)!important;border:1px solid var(--wptb-plugin-gray-300)!important}.mce-container.mce-panel.mce-floatpanel.mce-window.mce-in{z-index:100100!important}.mce-container.mce-panel.mce-floatpanel.mce-menu.mce-animate.mce-fixed.mce-menu-align.mce-in{z-index:100101!important}.mce-edit-focus{outline:0!important}.mce-btn button{padding:14px 18px!important}.mce-ico{font-size:20px!important}.mce-content-body [data-mce-selected=inline-boundary]{background:0 0!important}.wptb-text-container .mce-content-body a{color:#1e73be}.wptb-text-container p:empty:not(:focus)::before{content:attr(data-placeholder);opacity:.4}.wptb-droppable.wptb-cell ol,.wptb-droppable.wptb-cell ul{border:1px solid transparent;margin:0;padding:1em .2em .4em;width:100%}.wptb-droppable.wptb-cell ol article,.wptb-droppable.wptb-cell ul article{align-items:flex-start;border:1px solid transparent;display:flex;flex-direction:row;justify-content:flex-start;list-style-type:none;margin-bottom:0;padding:0;position:relative;width:100%}.wptb-list-container ul li{list-style:none;margin:0}.wptb-droppable.wptb-cell li .wptb-list-item-content{min-height:30px}.wptb-droppable.wptb-cell li .wptb-list-item-content p{word-wrap:break-word;line-height:30px;font-size:15px;padding-left:20px}.wptb-list-container ul li>div>p::before{content:attr(data-list-style-type-index);display:inline-block;line-height:30px;padding:0 5px 0 0;font-family:verdana,sans-serif;cursor:text;min-width:-webkit-fit-content;min-width:-moz-fit-content;min-width:fit-content;margin-left:-20px}.wptb-list-container ul li>div>p.wptb-list-style-type-disc::before{content:'\25CF'}.wptb-list-container ul li>div>p.wptb-list-style-type-circle::before{content:'\25CB'}.wptb-list-container ul li>div>p.wptb-list-style-type-square::before{content:'\25A0'}.wptb-list-container ul li>div>p.wptb-list-style-type-none::before{content:'';padding-right:0}.wptb-droppable.wptb-cell .wptb-directlyhovered{outline:1px solid #1ea5e5!important;position:relative}.wptb-cell .wptb-ph-element.edit-active{outline:2px solid #1ea5e5!important;position:relative}.wptb-droppable.wptb-cell .wptb-list-container.wptb-directlyhovered,.wptb-rating-stars-box ul>li.wptb-rating-star span svg,wptb_shortcode_container_element{display:block}.wptb-droppable.wptb-cell .wptb-directlyhovered .wptb-directlyhovered{display:flex;width:100%}.wptb-droppable.wptb-cell .wptb-list-container.wptb-directlyhovered .wptb-directlyhovered{display:list-item;border:0!important}.wptb-droppable.wptb-cell .wptb-list-container.wptb-directlyhovered .wptb-directlyhovered:before{content:"";display:inline-block;position:absolute;top:0;right:0;bottom:0;left:0;border:1px solid #1ea5e5!important}.wptb-actions{align-items:center;background-color:#1ea5e5;border-top-left-radius:4px;border-top-right-radius:4px;color:#fff;justify-content:space-between;line-height:1em;padding:0 5px;position:absolute;height:15px;font-size:9pt;display:none;max-width:70px;z-index:100001;box-sizing:border-box}.wptb-ph-element:hover .wptb-actions{display:inline}.wptb-actions .dashicons.dashicons-admin-page.wptb-duplicate-action,.wptb-actions .dashicons.wptb-prebuilt-mark-action{font-size:10pt;margin:0 .05em 0 .1em;width:16px;height:16px;cursor:pointer}.wptb-actions .dashicons.dashicons-trash.wptb-delete-action{font-size:10pt;margin:0 .1em 0 .05em;width:16px;height:16px;order:2;cursor:pointer}.wptb-cell-management .wptb-button{background:#3e99ca;color:#fff;border:0;border-radius:2px;padding:.4em 0;width:100%;box-shadow:2px 1px 0 0 rgba(13,85,126,.71)}.wptb-cell-management .wptb-button[disabled]{display:none}.wptb-space-between{min-height:10px;width:100%}.wptb-ph-element.wptb-directlyhovered.wptb-moving-mode{outline:0!important}.wptb-ph-element.wptb-ondragenter::before{content:"";display:block;position:absolute;top:0;bottom:0;left:0;right:0;z-index:101000}.wptb-ph-element.wptb-moving-mode{opacity:.4;transform:scale(.9) translate(-5%,-5%);transition:all .2s ease-in-out}.wptb-drop-handle{height:11px;position:absolute;z-index:101000;display:none}.wptb-drop-handle::after{content:attr(data-text);background-color:#1e90ff;color:#fff;display:block;font-variant:small-caps;position:relative;text-align:center;width:100%;height:100%;font-size:11px;line-height:1;text-transform:uppercase;box-sizing:border-box}.wptb-drop-border-marker{position:absolute;width:1px;height:1px;z-index:101000}.wptb-drop-border-marker.wptb-moving-into-same-elem,.wptb-drop-handle.wptb-moving-into-same-elem{opacity:0;visibility:hidden}.wptb-drop-border-marker>div{position:absolute;background:#1ea9eb}.wptb-drop-border-marker-top{top:0;left:0;height:1px}.wptb-drop-border-marker-right{top:0;width:1px}.wptb-drop-border-marker-bottom{left:0;height:1px}.wptb-drop-border-marker-left{top:0;left:0;width:1px}.wptb-space-between.visible:empty::before{background-color:#1e90ff;border:1px solid #1e90ff;color:#fff;content:'drop here';display:block;font-variant:small-caps;margin:2px 5%;padding:.5em 0;position:relative;text-align:center;width:90%}.wptb-draggable{border:0}.wptb-actions .dashicons.dashicons-move.wptb-move-action{font-size:14px!important;cursor:move;width:16px;height:16px;order:-1}.wptb-multiple-select-action:not(.visible),.wptb-no-cell-action:not(.visible),.wptb-single-action:not(.visible){cursor:not-allowed;opacity:.3}.wptb-item-dragging{background-color:purple;min-height:30px;min-width:30px;position:absolute;transition:all .2s ease;transition-property:left,top;width:auto;z-index:11000}.wptb-range-input{height:20px;position:relative}.wptb-range-input .slider{background-color:#fff;border:1px solid #4b88c4;border-radius:200px;box-sizing:border-box;height:20px;left:2px;position:absolute;top:0;width:20px;z-index:10}.wptb-range-input .rail{background:#ccc;border-radius:14px;bottom:6px;height:8px;position:absolute;width:100%;z-index:1}.wptb-preview-table.wptb-table-preview-head .wptb-row:first-child td.wptb-drop-here-empty:empty::before,.wptb-row td.wptb-drop-here-empty:empty::before{background-color:#1e90ff;border:1px solid #1e90ff;box-sizing:border-box;color:#fff;content:'drop here';display:block;font-size:1em;font-variant:small-caps;padding:.2em .4em;text-align:center;width:100%}td[class*=wptb-fused-cell]{display:none!important}.wptb-size-s .wptb-button{border-radius:.2rem;padding:.35rem .6rem;max-width:100%}.wptb-size-s .wptb-button p{font-size:.875rem;line-height:1.5}.wptb-size-l .wptb-button,.wptb-size-m .wptb-button{border-radius:.3rem;padding:.475rem .85rem;max-width:100%}.wptb-size-m .wptb-button p{font-size:1.125rem;line-height:1.5}.wptb-size-l .wptb-button{padding:.6rem 1.2rem}.wptb-size-l .wptb-button p{font-size:1.25rem;line-height:1.5}.wptb-size-xl .wptb-button{border-radius:.4rem;padding:.8rem 1.35rem;max-width:100%}.wptb-size-xl .wptb-button p{font-size:1.35rem;line-height:1.5}[class*=wptb-element-text-] p{color:inherit!important;font-size:inherit!important}.wptb-split-page-title-action .wptb-expander::after,.wptb-split-page-title-action a,.wptb-split-page-title-action a:active{padding:6px 10px;position:relative;top:-3px;text-decoration:none;border:1px solid #ccc;border-radius:2px;background:#f7f7f7;text-shadow:none;font-weight:600;font-size:13px;line-height:normal;color:#0073aa;cursor:pointer;outline:0}.wptb-split-page-title-action a:hover{color:#fff;background-color:#1f8abb}.wptb-column-title-mobile{display:none}.wptb-star_rating-container{text-align:center}.wptb-rating-stars-box{text-align:center;display:inline-block;padding:7px}.wptb-rating-stars-box ul{list-style-type:none;-moz-user-select:none;-webkit-user-select:none;padding:.5em .2em .2em}.wptb-rating-stars-box ul li{display:inline-block}.wptb-rating-stars-box ul>li.wptb-rating-star{color:#ccc;cursor:pointer;margin:0;position:relative;width:20px;height:20px}.wptb-rating-stars-box ul>li.wptb-rating-star span{position:absolute;height:100%;width:100%;top:0;left:0;z-index:10;display:block}.wptb-rating-stars-box ul>li.wptb-rating-star span.wptb-rating-star-left-signal-part,.wptb-rating-stars-box ul>li.wptb-rating-star span.wptb-rating-star-right-signal-part{height:100%;width:50%;z-index:20}.wptb-rating-stars-box ul>li.wptb-rating-star span.wptb-rating-star-left-signal-part{left:0}.wptb-rating-stars-box ul>li.wptb-rating-star span.wptb-rating-star-left-signal-part span.wptb-rating-star-zero-set{left:0;width:40%;height:100%;top:0;z-index:30px}.wptb-rating-stars-box ul>li.wptb-rating-star span.wptb-rating-star-right-signal-part{right:0;left:auto}.wptb-rating-stars-box ul>li.wptb-rating-star span.wptb-filled-rating-star,.wptb-rating-stars-box ul>li.wptb-rating-star span.wptb-half-filled-rating-star,.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-hover-half span.wptb-not-filled-rating-star{display:none}.wptb-rating-stars-box ul>li.wptb-rating-star span.wptb-not-filled-rating-star{fill:#ccc}.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-hover-half span.wptb-half-filled-rating-star{display:block;fill:#ff912c;opacity:.5}.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-hover-full span.wptb-half-filled-rating-star,.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-hover-full span.wptb-not-filled-rating-star,.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-hover-half span.wptb-filled-rating-star{display:none}.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-hover-full span.wptb-filled-rating-star,.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-selected-half.wptb-rating-star-hover-full span.wptb-filled-rating-star{display:block;fill:#ff912c;opacity:.5}.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-selected-full.wptb-rating-star-hover-full span,.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-selected-full.wptb-rating-star-hover-half span,.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-selected-half.wptb-rating-star-hover-full span,.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-selected-half.wptb-rating-star-hover-half span{opacity:1}.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-selected-half span.wptb-filled-rating-star,.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-selected-half span.wptb-not-filled-rating-star{display:none}.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-selected-full span.wptb-filled-rating-star,.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-selected-half span.wptb-half-filled-rating-star{display:block;fill:#ff912c}.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-selected-full span.wptb-half-filled-rating-star,.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-selected-full span.wptb-not-filled-rating-star{display:none}.wptb-number-rating-box{text-align:center;font-size:20px}.wptb-number-rating-box>div{vertical-align:top;display:inline-block;color:#888;text-align:center;height:25px;font-size:25px;line-height:25px}@media screen and (max-width:1375px){#wptb-messaging-area{position:relative}#wptb-messaging-area .wptb-message{max-width:400px;padding:20px 5px;box-sizing:border-box}}@media screen and (max-width:1070px){#wptb-messaging-area{position:absolute;top:190px;left:30px;right:30px;margin:auto}#wptb-messaging-area .wptb-message{padding:50px 20px}}@media screen and (max-width:970px){#wptb-setup-name{width:100%;max-width:420px;margin-left:0}}.wptb-cell img{max-width:100%}.wptb-exit-options{text-decoration:none}.wptb-option-text{text-align:center}.wptb-rating-alignment-btn{padding:8px 15px 3px;margin:0;vertical-align:middle;border:solid 1px #ccc;font-size:12px;border-radius:4px;cursor:pointer}.wptb-rating-alignment-switcher{background:linear-gradient(to bottom,#fff,#eee);display:table-cell;border-right:none;border-radius:0;color:#433f33}.wptb-rating-alignment-switcher:first-child{border-radius:4px 0 0 4px}.wptb-rating-alignment-switcher:last-child{border-radius:0 4px 4px 0;border-right:solid 1px #ccc}.wptb-rating-alignment-switcher:hover{background:#fff}.wptb-rating-alignment-switcher:active{box-shadow:inset 0 0 8px 0 rgba(0,0,0,.1)}.wptb-rating-alignment-switcher.selected{background:#fff;box-shadow:inset 0 0 20px 4px rgba(0,0,0,.15);cursor:default}.wptb-list-alignment-btn{padding:8px 15px 3px;margin:0;vertical-align:middle;border:solid 1px #ccc;font-size:12px;border-radius:4px;cursor:pointer}.wptb-list-alignment-switcher{background:linear-gradient(to bottom,#fff,#eee);display:table-cell;border-right:none;border-radius:0;color:#433f33}.wptb-list-alignment-switcher:first-child{border-radius:4px 0 0 4px}.wptb-list-alignment-switcher:last-child{border-radius:0 4px 4px 0;border-right:solid 1px #ccc}.wptb-list-alignment-switcher:hover{background:#fff}.wptb-list-alignment-switcher:active{box-shadow:inset 0 0 8px 0 rgba(0,0,0,.1)}.wptb-list-alignment-switcher.selected{background:#fff;box-shadow:inset 0 0 20px 4px rgba(0,0,0,.15);cursor:default}.wptb-button-alignment-btn{padding:8px 15px 3px;margin:0;vertical-align:middle;border:solid 1px #ccc;font-size:12px;border-radius:4px;cursor:pointer}.wptb-button-alignment-switcher{background:linear-gradient(to bottom,#fff,#eee);display:table-cell;border-right:none;border-radius:0;color:#433f33}.wptb-button-alignment-switcher:first-child{border-radius:4px 0 0 4px}.wptb-button-alignment-switcher:last-child{border-radius:0 4px 4px 0;border-right:solid 1px #ccc}.wptb-button-alignment-switcher:hover{background:#fff}.wptb-button-alignment-switcher:active{box-shadow:inset 0 0 8px 0 rgba(0,0,0,.1)}.wptb-button-alignment-switcher.selected{background:#fff;box-shadow:inset 0 0 20px 4px rgba(0,0,0,.15);cursor:default}.wptb-image-alignment-btn{padding:8px 15px 3px;margin:0;vertical-align:middle;border:solid 1px #ccc;font-size:12px;border-radius:4px;cursor:pointer}.wptb-image-alignment-switcher{background:linear-gradient(to bottom,#fff,#eee);display:table-cell;border-right:none;border-radius:0;color:#433f33}.wptb-image-alignment-switcher:first-child{border-radius:4px 0 0 4px}.wptb-image-alignment-switcher:last-child{border-radius:0 4px 4px 0;border-right:solid 1px #ccc}.wptb-image-alignment-switcher:hover{background:#fff}.wptb-image-alignment-switcher:active{box-shadow:inset 0 0 8px 0 rgba(0,0,0,.1)}.wptb-image-alignment-switcher.selected{background:#fff;box-shadow:inset 0 0 20px 4px rgba(0,0,0,.15);cursor:default}.wptb-justify-content-left{justify-content:left}.wptb-justify-content-center{justify-content:center}.wptb-justify-content-right{justify-content:right}.wptb-float-left{float:left}.wptb-float-center{float:none}.wptb-float-right{float:right}.wptb-text-align-left{text-align:left}.wptb-text-align-center{text-align:center}.wptb-text-align-right{text-align:right}.wptb-menu-page-wrapper{display:flex;justify-content:center;align-items:center;width:100%;height:90vh;color:#4a5568;line-height:normal}.wptb-settings-wrapper{background-color:#fff;min-width:90%;max-width:90%;height:90%;display:grid;grid-template-columns:1fr;grid-template-rows:minmax(-webkit-min-content,-webkit-max-content) minmax(-webkit-min-content,-webkit-max-content) 1fr minmax(-webkit-min-content,-webkit-max-content);grid-template-rows:minmax(min-content,max-content) minmax(min-content,max-content) 1fr minmax(min-content,max-content);border-radius:5px;overflow:hidden;box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.wptb-settings-wrapper .import-export{grid-template-rows:minmax(-webkit-min-content,-webkit-max-content) minmax(-webkit-min-content,-webkit-max-content) minmax(-webkit-min-content,-webkit-max-content) 1fr minmax(-webkit-min-content,-webkit-max-content);grid-template-rows:minmax(min-content,max-content) minmax(min-content,max-content) minmax(min-content,max-content) 1fr minmax(min-content,max-content)}.wptb-settings-header{display:flex;justify-content:space-between;align-items:center;background-color:#3299d1;padding:10px}.wptb-settings-header *{color:#fff}.wptb-settings-header a{text-decoration:none;font-size:1rem;margin:0 10px}.wptb-settings-header a:hover{color:#cbd5e0}.wptb-settings-brand{font-size:2.5rem;display:flex;align-items:center;cursor:default}.wptb-settings-header-name{margin-left:1rem}.wptb-settings-sections-wrapper{position:relative;display:flex;flex-direction:row;background-color:#fff;border-bottom:1px solid #cbd5e0}.wptb-plugins-m-b-40{margin-bottom:40px}.wptb-settings-checkbox-row{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;margin:5px 0;width:100%}.wptb-menu-file-drop div,.wptb-settings-dropdown-row{margin:10px 0}.wptb-settings-sections-wrapper.child{display:flex;flex-direction:row;justify-content:center}.wptb-settings-section-item{text-transform:uppercase;font-size:1rem;padding:20px;margin:0 10px;cursor:pointer;transition:background-color .5s ease-out}.wptb-settings-section-item.static-active{border-bottom:3px solid transparent}.wptb-settings-section-item.static-active.active{border-bottom:3px solid var(--wptb-plugin-logo-color)!important;background-color:var(--wptb-plugin-gray-100)}.child .wptb-settings-section-item{font-size:.8rem;padding:10px}.wptb-settings-section-item:hover{background-color:#edf2f7}.wptb-settings-section-item.disabled{color:#cbd5e0!important}.wptb-panel-tabs .wptb-settings-section-item.disabled{color:inherit!important}.wptb-menu-active-section-indicator{position:absolute;border-bottom:2px solid var(--wptb-plugin-logo-color);transition:all .3s ease-out}.wptb-settings-controls-wrapper{padding:20px 40px;overflow:auto}.wptb-settings-controls-wrapper.grid{display:grid;grid-gap:10px;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));grid-auto-rows:minmax(-webkit-min-content,-webkit-max-content);grid-auto-rows:minmax(min-content,max-content);grid-auto-flow:row}.wptb-settings-controls-wrapper.center{display:flex;justify-content:center;align-items:flex-start}.wptb-setting-control{padding:20px;transition:all .2s ease-out;border:1px solid transparent}.wptb-setting-control:hover{border:1px solid #cbd5e0;box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05);transform:translateY(-5px)}.wptb-setting-control .title{font-weight:700;font-size:1rem;text-transform:capitalize;margin-bottom:30px}.wptb-menu-export-control-title{font-weight:700;font-size:1rem;text-transform:capitalize;width:100%}.wptb-export-list-table-search,.wptb-menu-export-control-title,.wptb-setting-control .title{padding:10px 0;border-bottom:1px solid #cbd5e0}.wptb-setting-control-row{display:flex;align-items:center;margin:20px 0}.wptb-setting-control-row label,.wptb-settings-header a{text-transform:capitalize}.wptb-setting-control-row input,.wptb-setting-control-row select{margin-right:20px}.wptb-settings-footer{background-color:#fff;display:flex;justify-content:space-between;width:100%;border-top:1px solid #cbd5e0;padding:20px 0}.wptb-settings-messages{margin:0 20px;display:flex;align-items:center}.wptb-settings-message{font-style:italic;font-weight:700;text-transform:uppercase}.wptb-settings-message.ok{color:#3299d1}.wptb-settings-message.error{color:#e53e3e}.wptb-settings-fetching{animation:wptb-settings-rotate 1s linear infinite reverse}.wptb-settings-button-container{display:flex;justify-content:center;align-items:center}.wptb-settings-button{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;margin:0 20px;color:#fff;font-size:1rem;padding:10px 20px;border-radius:5px;text-transform:uppercase;cursor:pointer;transition:all .2s ease-out}.wptb-settings-button:hover{color:#cbd5e0}.wptb-settings-button.primary{background-color:#3299d1}.wptb-settings-button.danger{background-color:#e53e3e}.wptb-settings-button.disabled{background-color:#cbd5e0!important}.wptb-settings-button.small{font-size:inherit}.wptb-settings-button.disabled:hover{color:#fff!important;cursor:not-allowed}.wptb-fade-enter-active,.wptb-fade-leave-active,.wptb-prebuilt-card-preview table{transition:opacity .2s ease-out}.wptb-fade-enter,.wptb-fade-leave-to{opacity:0}.wptb-menu-file-drop{border:2px dashed #cbd5e0;width:500px;height:200px;margin:20px 0;display:flex;flex-direction:column;justify-content:center;align-items:center;text-transform:capitalize;transition:all .2s ease-out;border-radius:5px}.wptb-import-table tbody tr:hover,.wptb-menu-file-drop.dragenter,.wptb-menu-list-table thead td:hover{background-color:#edf2f7}.wptb-menu-file-drop .hint{font-style:italic;color:#cbd5e0;font-size:1.3rem}.wptb-menu-file-drop .supported{font-style:italic;color:#cbd5e0;font-size:1rem}.wptb-menu-file-drop .file{text-transform:none;font-size:1.3rem;color:inherit}.wptb-menu-file-drop a{text-decoration:underline;cursor:pointer}.wptb-menu-file-drop .file-icon{color:#cbd5e0;transform:scale(4)}.wptb-flex{display:flex}.wptb-flex-col{flex-direction:column}.wptb-flex-row{flex-direction:row}.wptb-flex-align-center{align-items:center}.wptb-flex-justify-center{justify-content:center}.wptb-flex-justify-space-between{justify-content:space-between}.wptb-import-tables-wrapper{margin-top:50px;margin-bottom:30px;display:flex;justify-content:center}.wptb-import-table{text-align:center;border-collapse:collapse}.wptb-import-table th,td{padding:15px 10px}.wptb-import-table th,.wptb-menu-list-table thead{border-bottom:1px solid #cbd5e0}.wptb-menu-overflow-auto{overflow:auto}.wptb-text-transform-cap{text-transform:capitalize!important}.wptb-text-transform-none{text-transform:none!important}.wptb-import-table-count-info{margin-bottom:20px;font-weight:700;font-style:italic}.wptb-menu-export-wrapper{display:grid;grid-auto-flow:column;grid-template-columns:1fr auto 1fr;grid-template-rows:.9fr;justify-content:center;align-content:center;grid-gap:30px;width:90%;height:100%}.wptb-menu-export-card{display:grid;grid-auto-flow:row;grid-template-rows:auto auto 1fr;grid-template-columns:1fr;position:relative;border:1px solid #cbd5e0;padding:10px;overflow:auto}.wptb-menu-export-controls-wrapper{padding:10px 0;overflow-y:auto;display:grid;grid-auto-flow:row}.wptb-menu-empty-cover{position:absolute;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;font-style:italic;font-size:1.2rem;color:#cbd5e0}.wptb-menu-export-middle-section{display:flex;flex-direction:column;justify-content:space-around;align-items:center}.wptb-menu-export-middle-section .arrow-holder{max-width:100px;width:50%;cursor:pointer}.wptb-menu-export-middle-section img{max-width:100px;cursor:pointer;transition:transform .1s ease-out}.wptb-menu-export-middle-section img:hover{transform:scale(1.2)}.wptb-menu-export-middle-section img:active{transform:scale(1)}.wptb-menu-export-middle-section .flip{transform:rotateZ(180deg)}.wptb-menu-popup-wrapper{display:flex;position:relative;justify-content:center;align-items:center;margin:0 10px;border:1px solid #cbd5e0;width:20px;height:20px;border-radius:50%;cursor:pointer;transition:all .2s ease-out}.wptb-menu-popup-wrapper:hover{background-color:#cbd5e0}.wptb-menu-popup-message{display:block;position:fixed;color:#fff;min-width:100px;max-width:200px;transition:opacity .2s ease-out;opacity:0;text-align:start;z-index:999;pointer-events:none}.wptb-menu-popup-wrapper:hover+.wptb-menu-popup-message{opacity:1}.wptb-menu-popup-inner-holder{position:relative;background-color:#4a5568;padding:10px}.wptb-menu-popup-arrow{position:absolute;background-color:inherit;width:10px;height:10px;bottom:-5px;left:calc(50% - 5px);transform:rotateZ(45deg)}.wptb-menu-list-table{border-collapse:collapse;width:100%}.wptb-menu-list-table thead{text-align:start}.wptb-menu-list-table thead td{font-weight:700;transition:all .2s ease-out;cursor:pointer}.wptb-menu-list-table tbody td .title-label{word-break:break-all}.wptb-menu-list-table tbody tr:nth-child(even){background-color:#edf2f7}.wptb-plugin-box-shadow-md{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.wptb-plugin-filter-box-shadow-md{filter:drop-shadow(4px 6px 2px rgba(0,0,0,.1))}.wptb-plugin-filter-box-shadow-md-close{filter:drop-shadow(4px 1px 2px rgba(0,0,0,.1))}.wptb-plugin-filter-box-shadow-md-around{filter:drop-shadow(0 0 1px rgba(0,0,0,.3))}.wptb-plugin-box-shadow-up-md{box-shadow:0 -5px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.wptb-plugin-box-shadow-xl{box-shadow:0 4px 6px -1px rgba(0,0,0,.3),0 2px 4px -1px rgba(0,0,0,.3)!important}.wptb-plugin-inset-shadow-md{box-shadow:inset 0 4px 6px -1px rgba(0,0,0,.2),0 2px 4px -1px rgba(0,0,0,.2)}.wptb-plugin-margin-no{margin:0!important}.wptb-settings-space-between{display:flex;flex-direction:row;width:100%;justify-content:space-between;align-items:center}.wptb-icon-select-wrapper{align-items:center;height:100%}.wptb-icon-select-wrapper[disabled] .wptb-icon-select-preview{opacity:.2;cursor:default}.wptb-icon-select-display{width:50px;height:50px;background-color:var(--wptb-plugin-theme-color-light);border:1px solid var(--wptb-plugin-gray-400);border-radius:5px;position:relative}.wptb-icon-select-preview{width:100%;height:100%;justify-content:center;align-items:center;padding:5px;cursor:pointer;position:relative}.wptb-icon-select-preview img[src='']{display:none}.wptb-icon-select-preview img,.wptb-prebuilt-card-icon svg{width:100%;height:100%}.wptb-icon-select-drawer{position:fixed;display:grid;grid-template-columns:1fr;grid-template-rows:auto 1fr;grid-auto-flow:row;grid-gap:15px;background-color:var(--wptb-plugin-theme-color-light);border:1px solid var(--wptb-plugin-gray-400);border-radius:5px;padding:10px;width:200px;max-height:200px;overflow-y:hidden;z-index:110000}.wptb-icon-search-wrapper,.wptb-icon-search-wrapper input{width:100%}.wptb-icon-previews{position:relative;width:100%;display:grid;grid-template-columns:repeat(4,1fr);grid-auto-flow:row;grid-gap:10px;justify-content:center;align-items:center;overflow-y:scroll}.wptb-icon-select-drawer-preview{display:flex;justify-content:center;align-items:center}.wptb-icon-select-drawer-preview img{width:25px;height:25px;transition:transform .2s ease-out;cursor:pointer}.wptb-icon-select-drawer-preview img:hover{transform:scale(1.2)}.wptb-icon-preview-active{border:2px solid var(--wptb-plugin-logo-color)}.wptb-icon-reset{border:1px solid var(--wptb-plugin-theme-sidebar-bg);width:100%;height:100%;border-radius:5px;cursor:pointer}.wptb-help-support-section-wrapper,.wptb-html-control-wrapper{display:flex;flex-direction:column;justify-content:center;align-items:center}.wptb-help-support-section-wrapper{padding:20px 0}.wptb-help-support-section-wrapper div{margin:5px 0}.wptb-builder-responsive{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#fff;z-index:400000;margin:auto;padding:40px 10px}#wptb_builder[data-wptb-active-section=table_responsive_menu] .wptb-builder-content,.wptb-builder-responsive[data-wptb-responsive-status=true] .wptb-responsive-builder-main{overflow-x:hidden!important}.wptb-responsive-menu-tools{margin:auto auto 60px;max-width:700px}.wptb-screen-size-slider-wrapper{display:grid;grid-template-columns:1fr;grid-template-areas:'content';justify-content:center;align-items:center;margin-bottom:80px}.wptb-screen-size-slider-empty{width:100%;position:relative;height:5px;border-radius:3px;background-color:#fff;border:1px solid var(--wptb-plugin-gray-400);grid-area:content}.wptb-screen-size-slider-fill{height:100%;position:absolute;left:0;border-radius:3px;background-color:var(--wptb-plugin-logo-color);border:1px solid transparent;transition:all .1s linear}.wptb-drag-active .wptb-screen-size-slider-arrow,.wptb-drag-active .wptb-screen-size-slider-fill{transition:none!important}.wptb-screen-size-slider-arrow{position:absolute;top:-30px;cursor:-webkit-grab;cursor:grab;transition:all .1s linear}.wptb-screen-size-slider-arrow:active{cursor:-webkit-grabbing;cursor:grabbing}.wptb-size-slider-stops-wrapper{z-index:900000;position:absolute;top:-10px}.wptb-slider-stop,.wptb-slider-stop-knob{display:flex;justify-content:center;align-items:center}.wptb-slider-stop{position:absolute;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;flex-direction:column;cursor:pointer}.wptb-slider-stop-knob{width:20px;height:20px;background-color:#fff;border:2px solid var(--wptb-plugin-logo-color);border-radius:50%;margin-bottom:5px;transition:all .2s ease-out}.wptb-slider-stop-label{text-transform:capitalize;font-size:90%;color:var(--wptb-plugin-gray-400)}.wptb-slider-stop-knob[data-wptb-knob-disabled=true]{background-color:var(--wptb-plugin-theme-color-light)!important;border:2px solid var(--wptb-plugin-red-300)!important}.wptb-slider-stop-knob[data-wptb-knob-disabled=true] svg{fill:var(--wptb-plugin-red-600)}.wptb-slider-stop-active .wptb-slider-stop-knob{background-color:var(--wptb-plugin-logo-color);color:inherit!important}.wptb-slider-stop-active .wptb-slider-stop-label{color:inherit!important}.wptb-size-input-wrapper{display:flex;justify-content:center;align-items:center;font-size:90%}.wptb-size-input-wrapper *{margin:0 10px;font-size:inherit!important;font-variant-numeric:tabular-nums}.wptb-size-input{width:calc(9ch);border:1px solid var(--wptb-plugin-gray-400)!important;background-color:var(--wptb-plugin-gray-100)!important;text-align:center;color:var(--wptb-plugin-theme-text-color-main)!important}.wptb-responsive-builder-main{margin-bottom:20px;padding:0 20px;position:relative;overflow:auto}.wptb-responsive-toolbox-wrapper{display:grid;align-items:center;border:1px solid var(--wptb-plugin-gray-300);border-radius:3px;grid-area:toolbox}.wptb-responsive-toolbox-top-static{display:grid;grid-template-columns:repeat(2,1fr);grid-auto-rows:1fr;align-items:center;grid-gap:10px}.wptb-responsive-toolbox-dynamic-wrapper{display:grid;grid-template-columns:1fr;grid-gap:10px;grid-auto-rows:auto}.wptb-responsive-toolbox-wrapper>div{padding:10px;border-bottom:1px solid var(--wptb-plugin-gray-300)}.wptb-responsive-toolbox-row div:nth-child(even){justify-self:end}.wptb-responsive-toolbox-wrapper>div:last-child{border-bottom:none!important}.wptb-responsive-toolbox-dynamic-controls-holder{display:grid;grid-template-columns:repeat(2,1fr);grid-gap:5px}.wptb-responsive-toolbox-dynamic-controls-holder>div:nth-child(even){justify-self:end}.wptb-responsive-size-range-name{justify-self:center;font-weight:700}.wptb-responsive-clone-wrapper{height:100%;grid-area:main;padding:20px 0;justify-self:center;border:1px solid var(--wptb-plugin-gray-300);border-top:none!important;align-items:center}.wptb-responsive-clone-inner-wrapper,.wptb-responsive-clone-wrapper{display:flex;justify-content:center;width:100%}.wptb-checkerboard-pattern{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyIDIiPgogICAgPHJlY3Qgd2lkdGg9IjEiIGhlaWdodD0iMSIgeD0iMCIgeT0iMCIgZmlsbD0icmdiKDIwMywyMTMsMjI0KSIvPgogICAgPHJlY3Qgd2lkdGg9IjEiIGhlaWdodD0iMSIgeD0iMSIgeT0iMCIgZmlsbD0icmdiKDIzNywyNDIsMjQ3KSIvPgogICAgPHJlY3Qgd2lkdGg9IjEiIGhlaWdodD0iMSIgeD0iMSIgeT0iMSIgZmlsbD0icmdiKDIwMywyMTMsMjI0KSIvPgogICAgPHJlY3Qgd2lkdGg9IjEiIGhlaWdodD0iMSIgeD0iMCIgeT0iMSIgZmlsbD0icmdiKDIzNywyNDIsMjQ3KSIvPgo8L3N2Zz4=);background-repeat:repeat;background-size:20px}.wptb-responsive-disabled-table-overlay{position:absolute;left:0;top:0;width:100%;height:100%;background-image:repeating-linear-gradient(45deg,transparent,transparent 15px,rgba(1,1,1,.2) 15px,rgba(1,1,1,.2) 30px);z-index:10}.wptb-responsive-wait-overlay{position:absolute;top:0;left:0;width:100%;height:100%;z-index:10;display:flex;justify-content:center;align-items:center;background-color:rgba(0,0,0,.4);color:#fff;text-transform:uppercase;font-weight:700}.wptb-responsive-wait-overlay:after{content:'';-webkit-animation:wptb-text-dots 2s infinite;animation:wptb-text-dots 2s infinite}.wptb-controls-flex-row{display:flex;align-items:center;flex-direction:row}.wptb-controls-flex-row label{margin:0 5px}.wptb-responsive-builder-main input[type=checkbox]{margin-top:0!important}.wptb-plugin-modal-window,.wptb-responsive-cell-identifier{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center}.wptb-responsive-cell-identifier{font-size:4rem;text-shadow:3px 3px 1px var(--wptb-plugin-gray-300);opacity:0;transition:opacity .5s ease-out;z-index:100}.wptb-responsive-show-cell-identifier .wptb-responsive-cell-identifier{opacity:1!important}.wptb-plugin-modal-window{background-color:rgba(0,0,0,.5);z-index:600000}.wptb-plugin-modal-inner-window{max-width:400px;background-color:#fff;padding:20px;border-radius:3px;display:grid;grid-template-areas:"modalIcon message" "buttonContainer buttonContainer";grid-gap:10px}.wptb-plugin-modal-icon{grid-area:modalIcon;width:50px;height:100%;display:flex;justify-content:center;align-items:center;transform:scale(2);pointer-events:none}.wptb-plugin-modal-message{grid-area:message}.wptb-plugin-modal-button-container{margin:5px 0 0;justify-self:center;grid-area:buttonContainer;width:100%}.wptb-plugin-button-material{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;padding:5px;border-radius:3px;background-color:var(--wptb-plugin-logo-color);color:#fff;cursor:pointer;transition:all .05s ease-out}.wptb-plugin-button-material:active{transform:scale(.95)}.wptb-plugin-button-material[disabled]{background-color:var(--wptb-plugin-gray-400)!important;cursor:not-allowed}.wptb-plugin-button-material[disabled]:active{transform:none}.wptb-plugin-button-material-fit-content{width:-webkit-fit-content!important;width:-moz-fit-content!important;width:fit-content!important}.wptb-plugin-button-material-full-size{width:100%}.wptb-plugin-responsive-base{min-width:auto!important;width:100%!important}.wptb-responsive-toolbox-wrapper .wptb-menu-popup-wrapper{margin-right:0!important}.wptb-responsive-breakpoint-edit-wrapper{display:grid;grid-template-columns:repeat(2,1fr);grid-auto-flow:row;align-items:center}.wptb-toggle input:disabled+i{background:var(--wptb-plugin-gray-400)}.wptb-control-row{width:95%}label.wptb-control-row{text-transform:capitalize}.wptb-builder-content{position:relative;height:100%;overflow:auto}.wptb-responsive-builder-toolbox-float{grid-area:toolbox;padding:10px 0;display:flex;justify-content:space-between}.wptb-responsive-builder-toolbox-left-float{display:flex;justify-content:flex-start;align-items:center}.wptb-number-postfix-buttons-wrapper{margin-left:10px;display:flex!important;height:100%}.wptb-number-postfix-button{display:flex;justify-content:center;align-items:center;width:30px;border:1px solid var(--wptb-plugin-gray-400)!important;background-color:var(--wptb-plugin-gray-100)!important;border-radius:5px;cursor:pointer;font-weight:700;color:var(--wptb-plugin-theme-text-color-main)!important;font-size:110%}.wptb-number-postfix-button:active{-webkit-animation:wptb-push .2s ease-out;animation:wptb-push .2s ease-out}.wptb-panel-toggle-section{grid-area:sidebar-footer;display:flex;flex-direction:row;justify-content:flex-end;align-items:center;padding:20px 10px;background-color:var(--wptb-plugin-logo-color);color:#fff}.wptb-left-panel[data-wptb-panel-location=right] .wptb-panel-toggle-section{justify-content:flex-start!important}.wptb-panel-toggle-section .wptb-panel-drawer-icon{cursor:pointer;transform:scale(2)}.wptb-left-panel[data-wptb-panel-location=right] .wptb-panel-toggle-section .wptb-panel-drawer-icon{transform:scale(2) rotateZ(180deg)}.collapsed .wptb-panel-toggle-section{opacity:1!important}.wptb-cell-related-drop-handle{position:fixed;display:none;background-color:#e2e8f0c7;z-index:300000;pointer-events:none;transition:all .2s ease-out;-webkit-animation:wptb-basic-appear .2s ease-out;animation:wptb-basic-appear .2s ease-out;align-items:center;justify-content:center;font-size:1.5rem;font-weight:700;text-transform:uppercase;color:#4a5568}.wptb-control-media-select-button{width:100px;height:50px;border:1px solid var(--wptb-plugin-gray-400);background-position:center center;background-size:contain;background-repeat:no-repeat;cursor:pointer}.wptb-control-media-button-wrapper{position:relative}.wptb-control-media-clear-button{position:absolute;width:20px;height:20px;top:-5px;right:-10px;color:red;cursor:pointer}.wptb-control-media-clear-button span{transform:scale(1.8)}.wptb-controls-ul-row{display:flex}.wptb-button-svg-center{display:flex!important;justify-content:center;align-items:center}.wptb-sides-link-icon-wrapper{width:16px;height:16px;cursor:pointer;transition:transform .1s ease-out;filter:opacity(.7)}.wptb-sides-link-icon-wrapper:active{transform:scale(.9)}.wptb-sides-controls-wrapper{display:grid;grid-template-columns:repeat(5,1fr)}.wptb-side-control-header{color:var(--wptb-plugin-gray-500);text-align:center;margin:5px 0}.wptb-side-control-main-input{width:100%;height:30px!important;border:1.5px solid var(--wptb-plugin-gray-400)!important;border-radius:0!important;text-align:center}.wptb-side-control-number-input{transition:all .3s ease-out;margin-left:5px}.wptb-side-values-linked .wptb-side-control-number-input{margin-left:0}.wptb-side-control-main-input:active,.wptb-side-control-main-input:focus{outline:0!important;box-shadow:none!important}.wptb-side-control-input-wrapper:first-of-type .wptb-side-control-main-input{border-left-width:3px!important;border-radius:5px 0 0 5px!important}.wptb-side-control-input-wrapper:last-of-type .wptb-side-control-main-input{border-right-width:3px!important;border-radius:0 5px 5px 0!important}.wptb-side-control-dropdown-wrapper{align-self:end}.wptb-side-control-dropdown{background-color:var(--wptb-plugin-gray-400)!important}.wptb-named-toggle-control-wrapper{position:relative;min-height:30px;display:grid;grid-template-columns:1fr;grid-auto-columns:1fr;grid-auto-flow:column;justify-content:center;align-items:center;border:1px solid var(--wptb-plugin-gray-400);border-radius:5px;background-color:var(--wptb-plugin-white);overflow:hidden}.wptb-named-toggle-item{display:flex;justify-content:center;align-items:center;text-wrap:avoid;padding:10px;z-index:10;cursor:pointer;color:var(--wptb-plugin-gray-400);font-weight:700;font-size:90%!important}.wptb-named-toggle-item[data-wptb-named-toggle-active=true]{color:var(--wptb-plugin-white)}.wptb-named-toggle-active-indicator{position:absolute;height:100%;background-color:var(--wptb-plugin-logo-color);z-index:9;transition:left .2s ease-out}.wptb-cell[data-wptb-cell-vertical-alignment=top]{vertical-align:baseline}.wptb-cell[data-wptb-cell-vertical-alignment=center]{vertical-align:middle}.wptb-cell[data-wptb-cell-vertical-alignment=bottom]{vertical-align:bottom}.wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal]::after,.wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical]::after,.wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal]::after,.wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical]::after{position:absolute;top:0;bottom:0;z-index:101;display:grid;font-family:dashicons;font-size:35px;align-content:center;text-align:center}.wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical=ask]::after,.wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical=ask]::after{content:"\f142";right:0}.wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical=desk].sortable-hover::after,.wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical=desk].sortable-hover::after{content:"\f142";cursor:pointer;opacity:.7}.wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical=desk]::after,.wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical=desk]::after{content:"\f140";right:0}.wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical=ask].sortable-hover::after,.wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical=ask].sortable-hover::after{content:"\f140";cursor:pointer;opacity:.7}.wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal=ask]::after,.wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal=ask]::after{content:"\f141";left:0}.wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal=desk].sortable-hover::after,.wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal=desk].sortable-hover::after{content:"\f141";cursor:pointer;opacity:.7}.wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal=desk]::after,.wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal=desk]::after{content:"\f139";left:0}.wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal=ask].sortable-hover::after,.wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal=ask].sortable-hover::after{content:"\f139";cursor:pointer;opacity:.7}.wptb-generate-wrapper{margin:0 50px;display:flex;flex-direction:column;justify-content:center;align-items:center;color:inherit}.wptb-generate-menu{display:grid;grid-template-columns:1fr;grid-template-areas:'header' 'listing'}.wptb-generate-menu-header{grid-area:header;padding:30px;border-bottom:1px solid var(--wptb-plugin-gray-300)}.wptb-generate-menu-listing{grid-area:listing;padding:30px;display:flex;justify-content:center;align-items:center;flex-wrap:wrap}.wptb-generate-search{border:1px solid var(--wptb-plugin-gray-300)!important;text-align:center;font-size:90%;color:inherit}.wptb-generate-search:active,.wptb-generate-search:focus{border:1px solid var(--wptb-plugin-gray-400)!important;inset:0!important;box-shadow:none!important}.wptb-prebuilt-card{width:200px;max-width:200px;display:grid;grid-template-columns:1fr;grid-template-rows:125px auto;grid-template-areas:'main' 'footer';border-radius:5px;transition:all .4s ease-out;background-color:var(--wptb-plugin-theme-color-light);cursor:pointer;margin:calc(var(--wptb-prebuilt-card-control-size) + 10px)}.wptb-prebuilt-card-active{cursor:default;-webkit-animation:wptb-pop .2s ease-out;animation:wptb-pop .2s ease-out}.wptb-prebuilt-card:hover{box-shadow:3px 3px 2px .5px rgba(0,0,0,.2)}.wptb-prebuilt-card-preview{position:relative;grid-area:main;border:var(--wptb-prebuilt-card-border-size) solid var(--wptb-plugin-gray-400);border-bottom:1px solid var(--wptb-plugin-gray-400)!important;background-color:var(--wptb-plugin-gray-300);display:grid;grid-template-columns:1fr;grid-template-rows:1fr;grid-template-areas:'preview';justify-content:center;align-items:center;border-radius:5px 5px 0 0}.wptb-prebuilt-card .wptb-settings-fetching{grid-area:main;z-index:100;color:var(--wptb-plugin-gray-500)}.wptb-team-prebuilt{border:var(--wptb-prebuilt-card-border-size) solid var(--wptb-plugin-logo-color)!important}.wptb-prebuilt-card .wptb-settings-fetching,.wptb-prebuilt-card-controls{width:100%;height:100%;display:flex;justify-content:center;align-items:center}.wptb-prebuilt-card-controls{grid-area:preview;position:relative;pointer-events:none}.wptb-prebuilt-live-display{width:100%;height:100%;grid-area:preview;padding:15px}.wptb-prebuilt-live-table{width:100%;height:100%;background-color:var(--wptb-plugin-theme-color-light);border-radius:5px;border:1px solid var(--wptb-plugin-gray-400);display:grid}.wptb-prebuilt-live-cell{width:100%;height:100%;border:.5px solid var(--wptb-plugin-gray-400);cursor:pointer;display:flex;justify-content:center;align-items:center;position:relative;overflow:visible;z-index:10}.wptb-prebuilt-live-cell-hover{opacity:.7}.wptb-prebuilt-live-cell:hover .wptb-prebuilt-live-control{opacity:unset;pointer-events:all}.wptb-prebuilt-live-control-hide .wptb-prebuilt-live-control{display:none}.wptb-prebuilt-live-cell-hover,.wptb-prebuilt-live-control-active{background-color:var(--wptb-plugin-logo-color)}.wptb-prebuilt-live-control{position:absolute;opacity:0;pointer-events:none;transition:all .1s ease-out;font-size:120%}.wptb-prebuilt-live-control:active{-webkit-animation:wptb-push .2s ease-out;animation:wptb-push .2s ease-out}.wptb-prebuilt-added-cell{background-color:#40e0d0;cursor:default;z-index:1!important}.wptb-prebuilt-control{position:absolute;display:flex;justify-content:center;align-items:center;pointer-events:all}.wptb-prebuilt-control[data-orientation=row]{top:0;transform:translateY(calc(-100% - var(--wptb-prebuilt-card-border-size)));display:flex;justify-content:center;align-items:center}.wptb-prebuilt-control[data-orientation=col]{left:0;transform:translateX(calc(-100% - var(--wptb-prebuilt-card-border-size)));display:flex;flex-wrap:wrap;flex-direction:column-reverse;width:var(--wptb-prebuilt-card-control-size);justify-content:center;align-items:center}.wptb-prebuilt-control-input{text-align:center;width:var(--wptb-prebuilt-card-control-size);height:var(--wptb-prebuilt-card-control-size);border:1px solid var(--wptb-plugin-gray-300)!important;color:inherit!important;border-radius:0!important;margin:0!important}.wptb-prebuilt-control-input:active,.wptb-prebuilt-control-input:focus{border:1px solid var(--wptb-plugin-gray-400)!important;inset:0!important;box-shadow:none!important}.wptb-prebuilt-control-input:disabled{color:var(--wptb-plugin-gray-300)!important}.wptb-prebuilt-control-increment-box{width:var(--wptb-prebuilt-card-control-size);height:var(--wptb-prebuilt-card-control-size);background-color:var(--wptb-plugin-gray-300);display:flex;justify-content:center;align-items:center;font-size:150%;cursor:pointer}.wptb-prebuilt-control-increment-box:hover{background-color:var(--wptb-plugin-gray-400)}.wptb-prebuilt-control-increment-box[disabled]{background-color:var(--wptb-plugin-gray-200)!important;color:var(--wptb-plugin-gray-400)!important;cursor:default}.wptb-prebuilt-card-footer{grid-area:footer;display:flex;justify-content:center;align-items:center}.wptb-prebuilt-card-footer-element{padding:15px;border:var(--wptb-prebuilt-card-border-size) solid var(--wptb-plugin-gray-400);border-top:0!important;width:100%;height:100%;border-radius:0 0 5px 5px}.wptb-prebuilt-card-footer-button-holder{padding:0!important;display:grid;grid-template-columns:repeat(2,1fr);grid-gap:1px;background-color:var(--wptb-plugin-gray-500)}.wptb-prebuilt-card-footer-button-holder-single{grid-template-columns:1fr!important}.wptb-prebuilt-blank{font-size:400%;color:var(--wptb-plugin-gray-500);margin:0!important}.wptb-prebuilt-footer-button{width:100%;height:100%;cursor:pointer;transition:color .2s ease-out;font-weight:700;padding:15px;color:var(--wptb-plugin-gray-400)}.wptb-prebuilt-footer-generate{background-color:var(--wptb-plugin-logo-color)}.wptb-prebuilt-footer-edit{background-color:var(--wptb-plugin-green-500)}.wptb-prebuilt-footer-button:first-of-type{border-radius:0 0 0 5px}.wptb-prebuilt-footer-button:last-of-type{border-radius:0 0 5px 0}.wptb-prebuilt-footer-button:only-of-type{border-radius:0 0 5px 5px}.wptb-prebuilt-footer-button:hover{color:var(--wptb-plugin-theme-color-light)}.wptb-preview-table-manage-cells table tr td div,.wptb-unselectable{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.wptb-no-pointer-events{pointer-events:none}.wptb-plugin-basic-disappear{-webkit-animation:wptb-basic-disappear .1s ease-out;animation:wptb-basic-disappear .1s ease-out}.wptb-prebuilt-ad{margin:50px;color:var(--wptb-plugin-gray-500)}.wptb-prebuilt-ad-link{font-size:120%;color:var(--wptb-plugin-logo-color)!important;font-weight:700}.wptb-prebuilt-table-wrapper{width:100%;overflow:hidden!important;display:flex;justify-content:center;align-items:center;padding:20px;animation:wptb-basic-disappear .2s ease-out alternate-reverse;pointer-events:none}.wptb-prebuilt-card-search-indicator-main{color:var(--wptb-plugin-gray-500)}.wptb-prebuilt-card-search-indicator{color:var(--wptb-plugin-logo-color)!important;font-weight:700}.wptb-prebuilt-card-icon{width:25px;height:25px;position:absolute;cursor:pointer;display:flex;justify-content:center;align-items:center}.wptb-prebuilt-card-fav-icon{left:8px;top:8px}.wptb-prebuilt-card-delete-icon{background-color:var(--wptb-plugin-gray-200);padding:6px;border-radius:50%;width:35px;height:35px;right:-15px;top:-15px;display:flex;justify-content:center;align-items:center;border:2px solid var(--wptb-plugin-gray-400);transition:all .2s ease-out;z-index:120;fill:red}.wptb-prebuilt-card-delete-icon:hover{transform:scale(1.1)}.wptb-prebuilt-card-fav-icon svg{transition:fill .2s ease-out;fill:transparent;stroke-width:40;stroke:var(--wptb-plugin-theme-color-light)}.wptb-prebuilt-card-circle-icon-button:active,.wptb-prebuilt-card-fav-icon:active{-webkit-animation:wptb-push .2s ease-out;animation:wptb-push .2s ease-out}.wptb-prebuilt-card-fav-icon.is-fav svg{fill:var(--wptb-plugin-logo-color)!important;stroke-width:0!important}.wptb-prebuilt-card-fav-icon:hover svg{fill:var(--wptb-plugin-theme-color-light)}.wptb-prebuilt-delete-module-confirmation-overlay{position:absolute;width:100%;height:100%;top:0;left:0;display:flex;flex-direction:column;justify-content:center;align-items:center;background-color:rgba(0,0,0,.5);color:var(--wptb-plugin-theme-color-light);z-index:100;border-radius:5px 5px 0 0}.wptb-prebuilt-delete-module-confirmation-overlay div{margin:5px}.wptb-prebuilt-delete-button-container{width:100%;display:flex;justify-content:space-evenly;align-items:center}.wptb-prebuilt-card-circle-icon-button{width:30px;height:30px;border-radius:50%;display:flex;justify-content:center;align-items:center;cursor:pointer;color:var(--wptb-plugin-theme-color-light)}.wptb-prebuilt-card-circle-icon-button svg{width:100%;height:100%;fill:currentColor}.wptb-prebuilt-card-circle-icon-button[data-wptb-button-type=positive]{background-color:var(--wptb-plugin-green-500)}.wptb-prebuilt-card-circle-icon-button[data-wptb-button-type=negative]{background-color:red}.wptb-prebuilt-mark-indicator{position:absolute;pointer-events:none;width:calc(100% + 10px);height:calc(100% + 10px);top:-5px;left:-5px;opacity:.2}.wptb-prebuilt-mark-indicator,.wptb-repeating-linear-gradient{background:repeating-linear-gradient(45deg,white,white 5px,var(--wptb-plugin-logo-color) 5px,var(--wptb-plugin-logo-color) 10px);background-size:400% 400%;animation:linear-gradient-move 20s linear infinite reverse}.wptb-prebuilt-card .wptb-prebuilt-mark-indicator{display:none}.wptb-prebuilt-tab-control{position:absolute;top:20px;left:20px;border:1px solid var(--wptb-plugin-gray-400);display:flex;justify-content:center;align-items:center;border-radius:5px}.wptb-prebuilt-dev-tool div,.wptb-prebuilt-tab-control div{padding:5px}.wptb-prebuilt-tab-control-label{text-transform:capitalize;border-right:1px solid var(--wptb-plugin-gray-400);white-space:nowrap}.wptb-prebuilt-tab-control-buttons-wrapper{display:flex;justify-content:center;align-items:center;flex-direction:row;flex-wrap:nowrap}.wptb-prebuilt-tab-control-icon{width:35px;height:35px;display:flex;justify-content:center;align-items:center}.wptb-prebuilt-tab-control-icon[data-wptb-prebuilt-tab-control-type=stop]{fill:red}.wptb-prebuilt-tab-control-icon[data-wptb-prebuilt-tab-control-type=restart]{fill:var(--wptb-plugin-green-500)}.wptb-prebuilt-tab-control-icon svg{width:100%;height:100%;cursor:pointer}.wptb-prebuilt-dev-tool .prebuilt-button:active,.wptb-prebuilt-tab-control-icon svg:active{-webkit-animation:wptb-push .2s ease-out;animation:wptb-push .2s ease-out}.wptb-prebuilt-dev-tool{position:absolute;top:20px;right:20px;border:1px solid var(--wptb-plugin-gray-400);display:flex;flex-direction:column;flex-wrap:nowrap;justify-content:center;align-items:center;border-radius:5px}.wptb-prebuilt-dev-tool .label{font-weight:700;border-bottom:1px solid var(--wptb-plugin-gray-400)}.wptb-prebuilt-dev-tool .prebuilt-button{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;padding:10px;margin:5px;color:var(--wptb-plugin-theme-color-light);background-color:var(--wptb-plugin-logo-color);border-radius:5px;cursor:pointer}.wptb-prebuilt-display-calculate{width:700px}.wptb-preview-table-manage-cells table tr td div{pointer-events:none}.wptb-plugin-blocker-element{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center;cursor:pointer}.wptb-highlighted .wptb-plugin-blocker-element{background:repeating-linear-gradient(45deg,white,white 5px,var(--wptb-plugin-logo-color) 5px,var(--wptb-plugin-logo-color) 10px);background-size:400% 400%;animation:linear-gradient-move 40s linear infinite reverse;opacity:.2}.wptb-plugin-blocker-element-empty::before{content:'Cell';display:block;font-weight:400;font-size:80%;text-align:center;color:#969fa6}.wptb-plugin-blocker-element-empty::after{content:'';display:block;border:1px dashed #969fa6;position:absolute;top:2px;right:2px;bottom:2px;left:2px}.wptb-plugin-header-toolbar{top:0;position:absolute;left:50%;padding:0 10px;border:1px solid var(--wptb-plugin-gray-300);z-index:1;background-color:var(--wptb-plugin-gray-100);transition:top .2s ease-out;display:flex;flex-direction:row;align-items:center}.wptb-plugin-header-toolbar div{font-size:110%;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;padding:5px;margin:0 5px}.wptb-plugin-header-toolbar .dashicons{color:var(--wptb-plugin-logo-color)!important;font-weight:700!important}.wptb-settings-version-control{max-width:800px;width:100%;display:grid;grid-template-columns:1fr 300px;grid-template-areas:'main changelog';grid-template-rows:500px;grid-gap:50px}.wptb-version-control-main{grid-area:main;padding:20px;display:flex;flex-direction:column;justify-content:space-between;align-items:center}.wptb-version-control-main-row{width:100%;display:flex;justify-content:center;padding:10px 0;flex-direction:column}.wptb-version-control-warning-span{color:var(--wptb-plugin-red-600)!important;text-transform:uppercase;font-weight:700;font-size:120%}.wptb-version-control-warning-info{font-size:90%}.wptb-version-control-changelog{grid-area:changelog;background-color:var(--wptb-plugin-gray-200);border:1px solid var(--wptb-plugin-gray-300);font-family:Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;padding:10px;overflow-y:scroll;height:100%}.wptb-version-control-controls{width:100%;height:100%;margin:20px 0;display:grid;grid-template-columns:auto 1fr;grid-template-rows:repeat(3,auto);align-items:center;grid-gap:20px}.wptb-version-control-row-element{padding:10px 0}.wptb-version-control-row-label{text-transform:capitalize;font-weight:700}.wptb-version-control-row-label:after{content:':'}.wptb-version-indicator{height:100%;display:flex;align-items:center;margin-right:10px}.wptb-version-indicator-circle{width:15px;height:15px;border-radius:50%;margin-right:10px}.wptb-version-indicator-match{background-color:var(--wptb-plugin-green-500)}.wptb-version-indicator-low{background-color:var(--wptb-plugin-yellow-500)}.wptb-version-control-anchor{text-transform:capitalize}.wptb-version-control-row-slot{width:100%;height:100%;display:flex;justify-content:flex-start;align-items:center;flex-direction:row}.wptb-table-tags-menu-wrapper{position:fixed;width:100%;height:100%;top:0;left:0}.wptb-tag-control-cloud-wrapper{width:100%}.wptb-tag-control-create-wrapper{margin-top:20px!important;border-top:1px solid var(--wptb-plugin-gray-400);padding-top:10px}.wptb-tag-control-cloud-wrapper:nth-of-type(n+1){margin-top:10px}.wptb-tag-control-cloud-wrapper .wptb-settings-item-title{text-transform:capitalize;font-size:90%!important;font-weight:700}.wptb-tag-control-cloud{width:100%;min-height:90px;max-height:90px;overflow-y:auto;background-color:var(--wptb-plugin-gray-200);padding:3px;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:center;align-items:center;position:relative;border:1px solid var(--wptb-plugin-gray-400);border-radius:5px}.wptb-tag-ribbon-wrapper{color:var(--wptb-plugin-theme-color-light);font-size:90%!important;padding:3px 5px 3px 10px;background-color:var(--wptb-plugin-logo-color);border-radius:999px!important;display:flex;align-items:center;justify-content:space-between;margin:5px;cursor:default;-webkit-animation:wptb-basic-appear .2s ease-out;animation:wptb-basic-appear .2s ease-out}.wptb-tag-ribbon-name{font-size:inherit!important}.wptb-tag-ribbon-wrapper:hover .wptb-tag-operation-button{opacity:1}.wptb-tag-operation-button{width:20px;height:20px;border-radius:100%;margin-left:10px;opacity:0;transition:all .3s ease-out;display:flex;justify-content:center;align-items:center;cursor:pointer}.wptb-tag-operation-add-button{background-color:var(--wptb-plugin-green-500)}.wptb-tag-operation-remove-button{background-color:var(--wptb-plugin-red-600)}.wptb-tag-control-cloud-empty,.wptb-tag-control-search-wrapper{width:100%;display:flex;justify-content:center;align-items:center}.wptb-tag-control-cloud-empty{position:absolute;top:0;left:0;height:100%;color:var(--wptb-plugin-gray-500);font-style:italic;font-size:90%!important}.wptb-tag-control-cloud-empty:after,.wptb-tag-control-cloud-empty:before{content:'==';margin:0 5px}.wptb-tag-control-search-wrapper{margin-top:5px}.wptb-tag-control-search{border:1px solid var(--wptb-plugin-gray-400)!important;text-align:center;font-size:90%!important;color:inherit;border-radius:999px!important;padding:0!important}.wptb-tag-control-search:active,.wptb-tag-control-search:focus{border:1px solid var(--wptb-plugin-gray-500)!important;inset:0!important;box-shadow:none!important}.wptb-tag-control-search-input{position:relative;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;font-size:90%!important}.wptb-tag-control-search-clear{position:absolute;top:0;right:10px;height:100%;display:flex;justify-content:center;align-items:center;color:var(--wptb-plugin-gray-500);cursor:pointer;padding:5px}.wptb-tag-control-search-indicator{font-weight:700;color:var(--wptb-plugin-green-500)!important;font-size:inherit!important}.wptb-tag-control-create-controls-wrapper{width:100%;display:grid;grid-template-columns:1fr auto;align-items:center;grid-gap:10px;margin-top:10px}.wptb-tag-control-create-controls-wrapper input{width:100%!important}.wptb-tag-control-create-control-label{font-size:90%!important;text-transform:capitalize}.wptb-tag-control-create-button{background-color:var(--wptb-plugin-logo-color);color:var(--wptb-plugin-theme-color-light);display:flex;justify-self:end;justify-content:center;align-items:center;font-size:90%!important;text-transform:uppercase;padding:5px;border-radius:5px;grid-column:2;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;cursor:pointer;transition:all .2s ease-out}.wptb-tag-control-create-button[data-disabled]{background-color:var(--wptb-plugin-gray-400);pointer-events:none}.wptb-tag-control-busy,.wptb-tag-control-status{grid-column:1;width:100%;height:100%;display:flex;align-items:center}.wptb-tag-control-status[data-status=positive]{color:var(--wptb-plugin-green-500)!important}.wptb-tag-control-status[data-status=negative]{color:var(--wptb-plugin-red-600)!important}.wptb-tag-control-busy{color:var(--wptb-plugin-logo-color)}.wptb-table-cell-select-wrapper{display:grid;grid-gap:5px;width:100%;height:150px;border:1px solid var(--wptb-plugin-gray-400);padding:10px;border-radius:3px;background-color:var(--wptb-plugin-gray-300)}.wptb-table-cell-select-cell{width:100%;height:100%;cursor:pointer;transition:all .2s ease-out;border-radius:3px;background-color:var(--wptb-plugin-gray-400)}.wptb-table-cell-select-cell:hover{background-color:var(--wptb-plugin-gray-500)}.wptb-table-cell-select-cell[data-cell-selected=true]{background-color:var(--wptb-plugin-logo-color)!important}.wptb-table-cell-indicator{position:fixed;opacity:.2;pointer-events:none}.wptb-different-border-control-wrapper .wptb-settings-middle-xs{padding-top:5px!important;border-bottom:0!important}.wptb-different-border-range-input .wptb-settings-item-header{padding-bottom:0!important}.wptb-color-picker-wrapper{width:100%}.wptb-color-picker-input-wrapper{width:100px;height:30px;border:1px solid var(--wptb-plugin-gray-400);border-radius:3px;cursor:pointer;background-color:var(--wptb-plugin-gray-200);display:grid;grid-template-columns:.7fr .3fr;justify-content:center;align-items:center}.wptb-color-picker-input-wrapper[disabled]{pointer-events:none}.wptb-color-picker-inner-indicator{height:100%;padding:3px;display:grid;grid-template-columns:1fr;grid-template-rows:1fr}.wptb-color-picker-clear-color-indicator{width:100%;height:100%;grid-column:1;grid-row:1;z-index:2;display:flex;justify-content:center;align-items:center}.wptb-color-picker-clear-color-indicator svg{fill:var(--wptb-plugin-red-600)}.wptb-color-picker-icon-standards svg{width:15px;height:auto}.wptb-color-picker-selected-color{border-radius:3px 0 0 3px;border:1px solid var(--wptb-plugin-gray-400);transition:background-color .2s ease-out;cursor:pointer;grid-column:1;grid-row:1;z-index:2}.wptb-color-picker-alpha-checkerboard{z-index:1;grid-column:1;grid-row:1;background-size:15px!important}.wptb-color-picker-logo{width:100%;height:100%;font-size:120%!important;color:var(--wptb-plugin-logo-color)}.wptb-color-picker-logo,.wptb-color-picker-logo div{display:flex;justify-content:center;align-items:center}.wptb-color-picker-clear-color svg,.wptb-color-picker-logo svg{fill:currentColor}.wptb-color-picker-tool-wrapper{position:fixed;z-index:100}.wptb-color-picker-tool-inner-wrapper{position:relative}.wptb-color-picker-input{cursor:pointer}.wptb-color-picker-input:disabled{cursor:default}[data-wptb-text-disabled=true]{color:var(--wptb-plugin-gray-400)!important}.wptb-color-picker-clear-color-wrapper{position:absolute;display:flex;justify-content:center;align-items:center;left:0;width:100%;height:30px}.wptb-color-picker-clear-color,.wptb-local-dev-file-chooser{height:100%;display:flex;justify-content:center;align-items:center}.wptb-color-picker-clear-color{background-color:#fff;padding:0 10px;border:1px solid var(--wptb-plugin-gray-400);border-radius:0 0 3px 3px;font-size:90%!important;color:var(--wptb-plugin-red-600);cursor:pointer}.wptb-color-picker-input-wrapper[disabled] .wptb-color-picker-logo svg{fill:var(--wptb-plugin-gray-400)}.wptb-color-picker-input-wrapper[disabled] .wptb-color-picker-selected-color{background-color:var(--wptb-plugin-gray-300)!important}.wptb-local-dev-file-chooser{position:fixed;width:100%;left:0;top:0;background-color:rgba(0,0,0,.6)}.wptb-local-dev-modal{background-color:var(--wptb-plugin-theme-color-light);width:500px;height:300px;border-radius:3px;display:grid;grid-template-columns:1fr;grid-template-rows:minmax(-webkit-min-content,-webkit-max-content) 1fr minmax(-webkit-min-content,-webkit-max-content);grid-template-rows:minmax(min-content,max-content) 1fr minmax(min-content,max-content);grid-template-areas:"header" "files" "footer"}.wptb-local-dev-modal>div{padding:5px;border-bottom:1px solid var(--wptb-plugin-gray-400);display:flex;align-items:center}.wptb-local-dev-modal>div:last-of-type{border-bottom:0}.wptb-local-dev-modal-header{font-weight:700;text-transform:uppercase;justify-content:space-between;padding:0!important}.wptb-local-dev-modal-title{padding:5px!important}.wptb-local-dev-modal-files{position:relative;overflow-y:auto;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:center;align-items:center;background-color:var(--wptb-plugin-gray-200)}.wptb-local-dev-modal-footer{justify-content:flex-end}.wptb-local-dev-modal-footer .wptb-settings-button{margin:0 5px!important;font-size:90%!important}.wptb-local-dev-image-card{width:100px;max-width:100px;display:grid;grid-template-columns:1fr;grid-template-rows:1fr minmax(-webkit-min-content,-webkit-max-content);grid-template-rows:1fr minmax(min-content,max-content);grid-auto-flow:row;cursor:pointer;justify-content:center;align-items:center;margin:5px;border:2px solid var(--wptb-plugin-gray-300);padding:5px;border-radius:5px;transition:all .2s ease-out;background-color:var(--wptb-plugin-theme-color-light)}.wptb-local-dev-image-card[data-active=true]{border:2px solid var(--wptb-plugin-logo-color)!important}.wptb-local-dev-image-card:hover{border:2px solid var(--wptb-plugin-gray-400);transform:scale(1.05)}.wptb-local-dev-image-holder{width:100%;height:100%}.wptb-local-dev-image-holder img{max-width:100%;max-height:100%;display:block}.wptb-local-dev-image-name{word-break:break-all;display:flex;justify-content:center;align-items:center;font-style:italic;font-size:90%;border-top:1px solid var(--wptb-plugin-gray-300)}.wptb-local-dev-modal-close{padding:0 10px;color:var(--wptb-plugin-red-600);cursor:pointer;font-size:120%!important}.wptb-upsells-wrapper{width:100%;padding:15px;color:var(--wptb-plugin-theme-color-light);cursor:pointer;transition:all .2s ease-out;-webkit-animation:wptb-unfold-up .3s ease-out forwards;animation:wptb-unfold-up .3s ease-out forwards;-webkit-animation-delay:.5s;animation-delay:.5s;transform:rotateX(-90deg);transform-origin:top;box-sizing:border-box}.wptb-disclaimer-message p,.wptb-disclaimer-message span,.wptb-left-panel .wptb-upsells-wrapper{font-size:90%!important}.wptb-panel-left .wptb-upsells-anchor{font-size:125%}.wptb-upsells-message-holder{display:flex;flex-direction:column;justify-content:center;align-items:center;width:100%;margin:0!important;border-radius:5px;padding:10px 5px;transition:all .3s ease-out;text-align:center;background-color:var(--wptb-plugin-theme-color-light)!important;border:1px solid var(--wptb-plugin-gray-400);color:var(--wptb-plugin-gray-600);font-weight:500}.wptb-generate-wrapper .wptb-upsells-message-holder{background-color:var(--wptb-plugin-gray-200)!important;padding:15px}.wptb-upsells-pro-label{background-color:var(--wptb-plugin-cta-button)!important;color:var(--wptb-plugin-black);border-radius:3px;padding:5px;font-weight:700;border:1px solid var(--wptb-plugin-gray-400)!important}.wptb-upsells-message-holder:hover{box-shadow:0 4px 6px -1px rgba(0,0,0,.3),0 2px 4px -1px rgba(0,0,0,.3)!important;transform:scale(1.05)}.wptb-upsells-anchor{text-decoration:none}.wptb-notification-manager{position:fixed;display:flex;flex-wrap:nowrap;flex-direction:column;height:-webkit-max-content;height:-moz-max-content;height:max-content;top:50%;right:calc(-1*var(--wptb-notification-manager-width));width:var(--wptb-notification-manager-width);transition:all .2s ease-out;z-index:99999999999}.wptb-notification-wrapper{width:100%;display:grid;grid-template-columns:40px 3px 1fr;justify-content:center;align-items:start;color:var(--wptb-plugin-gray-700);border-radius:3px 0 0 3px;border-right:0!important;margin:0 0 5px;transition:all .3s ease-out;cursor:pointer}.wptb-notification-icon{width:40px;height:40px;display:flex;justify-content:center;align-items:center;position:relative}.wptb-notification-filler,.wptb-notification-message{width:3px;height:40px;background-color:var(--wptb-plugin-gray-200);border-width:1px 0;border-style:solid}.wptb-notification-message{width:100%;height:100%;display:flex;justify-content:flex-start;align-items:center;padding:0 15px;text-transform:capitalize;border-width:1px 0 1px 5px}.wptb-notification-svg-wrapper{display:flex;justify-content:center;align-items:center;width:100%;height:100%}.wptb-notification-svg-wrapper svg{width:25px;height:25px;fill:currentColor}.wptb-notification-manager-dev-tool-wrapper{position:absolute;top:50%;left:10px;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;display:grid;grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(4,minmax(-webkit-min-content,-webkit-max-content));grid-template-rows:repeat(4,minmax(min-content,max-content));grid-template-areas:"header" "selection" "message" "submit";border:1px solid var(--wptb-plugin-gray-400);border-radius:3px;justify-content:center;align-items:center;background-color:var(--wptb-plugin-gray-100)}.wptb-notification-manager-dev-tool-wrapper>div{padding:10px;border-bottom:1px solid var(--wptb-plugin-gray-300)}.wptb-nm-devtool-header{grid-area:header;font-weight:700}.wptb-nm-devtool-selection{grid-area:selection;display:flex;justify-content:space-evenly;align-items:center;flex-wrap:nowrap;flex-direction:row}.wptb-nm-devtool-input{display:grid;grid-template-columns:1fr;grid-template-rows:repeat(2,1fr)}.wptb-nm-devtool-submit{grid-area:submit;justify-self:center}.wptb-nm-devtool-message{grid-area:message;justify-self:center}.wptb-notification-queue-length{position:absolute;width:20px;height:20px;left:-10px;top:-10px;display:flex;justify-content:center;align-items:center;border-radius:100%;color:var(--wptb-plugin-theme-color-light);font-weight:700;-webkit-animation:wptb-more-pop .2s ease-out;animation:wptb-more-pop .2s ease-out}.wptb-builder-panel[data-manage-cells-active=true],[data-manage-cells-active=true] .wptb-builder-content{display:flex;flex-flow:column;height:100%;overflow:hidden!important}[data-manage-cells-active=true] .wptb-management_table_container{width:100%;height:100%;display:grid;grid-template-columns:1fr;grid-template-rows:minmax(-webkit-min-content,-webkit-max-content) 1fr minmax(-webkit-min-content,-webkit-max-content);grid-template-rows:minmax(min-content,max-content) 1fr minmax(min-content,max-content);overflow:hidden!important;margin:unset}[data-manage-cells-active=true] .wptb-preview-table-manage-cells{overflow:auto!important}[data-manage-cells-active=true] .wptb-management_table_container #wptb-bar-top{text-align:center;z-index:10000}.wptb-what-is-new-container{position:fixed;z-index:100000000;background-color:rgba(0,0,0,.3);top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center}.wptb-what-is-new-window{background-color:var(--wptb-plugin-theme-color-light);width:700px;display:grid;grid-template-columns:1fr;grid-template-rows:repeat(2,minmax(-webkit-min-content,-webkit-max-content));grid-template-rows:repeat(2,minmax(min-content,max-content));grid-template-areas:'header' 'content';justify-content:center;align-items:center;border-radius:3px;font-size:110%!important;color:var(--wptb-plugin-gray-700)!important;border:2px solid var(--wptb-plugin-gray-300)}.wptb-what-is-new-header{grid-area:header;border-bottom:2px solid var(--wptb-plugin-gray-300);display:flex;height:45px}.wptb-what-is-new-header-version{display:flex;width:100%;height:100%;justify-content:center;align-items:center;font-weight:700!important;color:var(--wptb-plugin-logo-color)}.wptb-what-is-new-header-text-icon{width:15px;height:auto;fill:var(--wptb-plugin-yellow-500);margin:0 10px}.wptb-what-is-new-header-close{width:45px;height:45px;display:flex;justify-content:center;align-items:center;border-left:2px solid var(--wptb-plugin-gray-300);cursor:pointer;transition:all .2s ease-out}.wptb-what-is-new-header-close:hover{background-color:var(--wptb-plugin-gray-300)}.wptb-what-is-new-header-close:hover svg{fill:var(--wptb-plugin-gray-700)}.wptb-what-is-new-header-close svg{width:15px;height:auto;fill:var(--wptb-plugin-gray-500);transition:all .2s ease-out}.wptb-what-is-new-content{grid-area:content;display:grid;grid-template-columns:1fr;grid-template-rows:200px minmax(-webkit-min-content,-webkit-max-content) 90px;grid-template-rows:200px minmax(min-content,max-content) 90px;grid-template-areas:'imageContainer' 'noteIndex' 'textContainer';justify-content:center;align-items:center}.wptb-what-is-new-note-image-carousel{grid-area:imageContainer;display:grid;grid-template-rows:1fr;grid-template-columns:minmax(-webkit-min-content,-webkit-max-content) 1fr minmax(-webkit-min-content,-webkit-max-content);grid-template-columns:minmax(min-content,max-content) 1fr minmax(min-content,max-content)}.wptb-what-is-new-note-index{grid-area:noteIndex;display:flex;justify-content:center;align-items:center;color:var(--wptb-plugin-gray-500);font-variant-numeric:tabular-nums}.wptb-what-is-new-note-text-container{grid-area:textContainer;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;justify-content:center;align-items:center}.wptb-what-is-new-carousel-nav-button,.wptb-what-is-new-note-text{display:flex;justify-content:center;align-items:center;margin:0 20px}.wptb-what-is-new-note-text{grid-column:1;grid-row:1;flex-direction:column;text-align:center}.wptb-what-is-new-note-text .wptb-upsells-pro-label{margin:10px;text-decoration:none}.wptb-what-is-new-carousel-nav-button{height:100%;color:var(--wptb-plugin-gray-700);cursor:pointer;transition:all .2s ease-out}.wptb-what-is-new-carousel-nav-button:active{-webkit-animation:wptb-pop .2s ease-out;animation:wptb-pop .2s ease-out}.wptb-what-is-new-carousel-nav-button svg{width:25px;height:auto;fill:currentColor}.wptb-what-is-new-carousel-nav-button[disabled=disabled]{color:var(--wptb-plugin-gray-400);cursor:default;pointer-events:none}.wptb-what-is-new-images-wrapper{display:grid;grid-template-columns:1fr;grid-template-rows:200px}.wptb-what-is-new-image-background{position:relative;margin:10px;padding:10px;grid-column:1;grid-row:1;background-color:var(--wptb-plugin-gray-200);display:flex;justify-content:center;align-items:center;border:2px solid var(--wptb-plugin-gray-300)}.wptb-what-is-new-pro-indicator{position:absolute;left:-20px;top:10px;color:var(--wptb-plugin-theme-color-light);z-index:1}.wptb-what-is-new-pro-indicator-text{padding:5px 20px;border-radius:3px 3px 3px 0;background-color:var(--wptb-plugin-logo-color)}.wptb-what-is-new-pro-indicator-triangle-end{width:1px;height:20px;border-left:20px solid transparent;border-top:15px solid var(--wptb-plugin-gray-500)}.wptb-what-is-new-image-background img{width:100%;height:100%;-o-object-fit:contain;object-fit:contain}.wptb-css-code-input{position:relative;width:100%!important;max-width:100%!important;border:1px solid #ddd!important;border-radius:3px}.wptb-css-code-input .wptb-menu-empty-cover{background-color:rgba(0,0,0,.1)!important;z-index:10000000}.CodeMirror{max-height:200px!important;height:200px!important}.CodeMirror *{font-size:12px!important}.wptb-plugin-inner-shadow{box-shadow:transparent 0 0 0 0,transparent 0 0 0 0,rgba(0,0,0,.09) 0 2px 4px 0 inset}.wptb-panel-plain-message{text-align:center;padding:20px 10px;font-size:80%!important;color:var(--wptb-plugin-gray-600)!important}.wptb-bg-selection-item,.wptb-panel-plain-message,.wptb-selector-icon-wrapper{display:flex;justify-content:center;align-items:center}.wptb-bg-selection-item{position:absolute;background-color:var(--wptb-plugin-logo-color);width:30px;transition:all .2s ease-out;cursor:pointer;z-index:10}.wptb-bg-color-selectors[data-visible=false]{display:none!important}.wptb-selector-icon-wrapper{width:100%;height:100%}.wptb-selector-icon-wrapper svg{width:20px;height:auto;fill:var(--wptb-plugin-theme-color-light)}.wptb-col-selection{height:30px}.wptb-bg-column-rail,.wptb-bg-row-rail{position:absolute;display:grid;justify-content:center;align-items:center}.wptb-bg-column-rail{grid-auto-flow:column;height:30px}.wptb-bg-row-rail{grid-template-columns:1fr;grid-auto-flow:row;width:30px;top:0}.wptb-bg-rail-mark{border:2px dashed var(--wptb-plugin-logo-color);height:100%;opacity:0;transition:opacity .2s ease-out;cursor:pointer}.wptb-bg-rail-mark:hover{opacity:.5}.wptb-general-style-settings{width:100%;height:100%;display:grid;grid-template-columns:1fr;grid-template-rows:minmax(-webkit-min-content,-webkit-max-content) 1fr;grid-template-rows:minmax(min-content,max-content) 1fr;grid-gap:20px}.wptb-general-style-settings .wptb-menu-empty-cover{color:var(--wptb-plugin-logo-color)!important}.wptb-general-style-settings .wptb-css-code-input{height:100%!important}.wptb-general-style-settings .CodeMirror{height:100%!important;max-height:100%!important}.wptb-panel-message{color:var(--wptb-plugin-gray-600)}.wptb-panel-message-icon{margin-right:10px}.wptb-panel-message-icon svg{width:20px;height:20px;fill:var(--wptb-plugin-yellow-500)}.wptb-size2-control-input-wrapper{display:grid;grid-template-columns:1.2fr 20px 1.2fr 1fr;grid-template-rows:1fr auto;justify-content:center;align-content:center;grid-gap:10px}.wptb-size2-input input{transition:all .2s ease-out;width:100%;border:1.5px solid var(--wptb-plugin-gray-400);border-radius:3px!important;text-align:end}.wptb-size2-input input[disabled]{background-color:var(--wptb-plugin-gray-300)!important;cursor:not-allowed}.wptb-size2-control-input-component{display:grid;grid-template-columns:1fr;grid-template-rows:repeat(2,1fr);justify-items:center;align-items:center;height:100%;width:100%}.wptb-size2-aspect-icon{width:100%;height:100%;display:flex;justify-content:center;align-items:center;cursor:pointer;color:var(--wptb-plugin-red-600)}.wptb-size2-aspect-icon[data-wptb-linked=true]{color:var(--wptb-plugin-green-500)!important}.wptb-size2-aspect-icon svg{width:100%;height:100%;transition:all .2s ease-out}.wptb-size2-unit-dropdown{border:1.5px solid var(--wptb-plugin-gray-400)!important;border-radius:3px!important}.wptb-size-control-aspect-ratio-info-container{padding:10px;grid-column:1/-1;justify-self:center;color:var(--wptb-plugin-gray-500);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.wptb-multi-checkbox-wrapper .wptb-settings-checkbox-row label,.wptb-settings-reset-size2-control{transition:all .2s ease-out}.wptb-settings-reset-size2-control:active{transform:rotateZ(-180deg)}.wptb-lazy-load-wrapper{max-width:800px;width:100%;height:100%;display:grid;grid-template-columns:repeat(2,1fr);grid-template-rows:1fr;gap:10px;grid-template-areas:'left right'}.wptb-lazy-load-left-column{grid-area:left;display:grid;grid-template-columns:1fr;grid-template-rows:minmax(-webkit-min-content,-webkit-max-content) 1fr minmax(-webkit-min-content,-webkit-max-content);grid-template-rows:minmax(min-content,max-content) 1fr minmax(min-content,max-content);grid-template-areas:'basic' 'preview' 'disclaimer';justify-content:center;align-items:center;gap:10px;overflow:auto}.wptb-lazy-load-basic-options{grid-area:basic}.wptb-lazy-load-preview-container{grid-area:preview;width:100%;height:100%;display:grid;grid-template-columns:minmax(150px,-webkit-max-content);grid-template-columns:minmax(150px,max-content);grid-template-rows:minmax(-webkit-min-content,-webkit-max-content) minmax(150px,-webkit-max-content) minmax(-webkit-min-content,-webkit-max-content);grid-template-rows:minmax(min-content,max-content) minmax(150px,max-content) minmax(min-content,max-content);justify-content:center;justify-items:center;align-content:center;align-items:center;grid-template-areas:'header' 'preview' 'footer';gap:5px}.wptb-lazy-load-preview-header{grid-area:header;text-transform:uppercase;font-weight:700}.wptb-lazy-load-preview{grid-area:preview}.wptb-lazy-load-preview img{width:150px;height:150px}.wptb-lazy-load-preview-button-container{grid-area:footer}.wptb-lazy-load-preview-button-container>div{margin:10px}.wptb-lazy-load-pro-options{padding:0 10px;overflow:auto;color:var(--wptb-plugin-gray-500);position:relative;grid-area:right}.wptb-controls-for-settings>div{border:1px solid var(--wptb-plugin-gray-300);border-bottom:0}.wptb-lazy-load-pro-options>div:last-of-type{border-bottom:1px solid var(--wptb-plugin-gray-300)}.wptb-lazy-load-pro-disabled-overlay{width:100%;height:100%;background-image:repeating-linear-gradient(45deg,transparent,transparent 15px,#3299d132 15px,#3299d132 30px);z-index:10;display:flex;justify-content:center;align-items:center}.wptb-controls-for-settings *{font-size:inherit!important;color:var(--wptb-plugin-theme-text-color-main);box-sizing:border-box}.wptb-control-tip-wrapper{position:relative}.wptb-control-tip-wrapper[disabled] .wptb-tip-popup{color:var(--wptb-plugin-gray-400)}.wptb-control-tip-wrapper[disabled] .wptb-tip-popup:hover{background-color:inherit!important}.wptb-tip-popup{position:absolute;border:2px solid var(--wptb-plugin-gray-300);border-radius:100%;width:20px;height:20px;display:flex;justify-content:center;align-items:center;cursor:pointer;background-color:var(--wptb-plugin-theme-color-light);transition:background-color .2s ease-out}.wptb-tip-popup,.wptb-tip-popup[data-tip-positon=topRight]{top:5px;right:5px}.wptb-tip-popup:hover{background-color:var(--wptb-plugin-gray-200)}.wptb-lazy-load-img[data-wptb-lazy-load-status=false]{opacity:0}.wptb-lazy-load-img[data-wptb-lazy-load-status=true]{opacity:1}.wptb-lazy-load-buffer-element-container{position:relative}.wptb-lazy-load-buffer-element{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:5px}.wptb-lazy-load-buffer-element,.wptb-lazy-load-buffer-icon-wrapper{display:flex;justify-content:center;align-items:center}.wptb-lazy-load-buffer-icon-wrapper[data-wptb-lazy-load-icon-animation=heartBeat] svg{-webkit-animation:wptb-beat 1.3s ease-out forwards infinite;animation:wptb-beat 1.3s ease-out forwards infinite}.wptb-lazy-load-buffer-icon-wrapper[data-wptb-lazy-load-icon-animation=rotate] svg{-webkit-animation:wptb-rotate-simple 1s ease-out forwards infinite;animation:wptb-rotate-simple 1s ease-out forwards infinite}.wptb-lazy-load-buffer-icon-wrapper[data-wptb-lazy-load-icon-animation=jump] svg{-webkit-animation:wptb-jump .5s ease-out alternate infinite;animation:wptb-jump .5s ease-out alternate infinite}.wptb-lazy-load-buffer-icon-wrapper[data-wptb-lazy-load-icon-animation=flip] svg{-webkit-animation:wptb-flip 1s ease-out forwards infinite;animation:wptb-flip 1s ease-out forwards infinite}.wptb-panel-direction-control-indicators-container{display:grid;grid-template-columns:repeat(3,minmax(-webkit-min-content,-webkit-max-content));grid-template-columns:repeat(3,minmax(min-content,max-content));grid-template-rows:repeat(3,minmax(-webkit-min-content,-webkit-max-content));grid-template-rows:repeat(3,minmax(min-content,max-content));grid-template-areas:'up up up' 'left static right' 'down down down';grid-gap:3px;justify-content:center;align-items:center}.wptb-panel-direction-cadet{display:flex;justify-content:center;align-items:center;cursor:pointer}.wptb-panel-direction-cadet svg{width:25px;height:25px;fill:var(--wptb-plugin-gray-400);transition:fill .2s ease-out}.wptb-panel-direction-cadet:hover svg{fill:var(--wptb-plugin-gray-500)}.wptb-panel-direction-cadet[data-wptb-active-direction=true] svg{fill:var(--wptb-plugin-logo-color)}.wptb-panel-direction-cadet[data-wptb-panel-direction=up]{grid-area:up}.wptb-panel-direction-cadet[data-wptb-panel-direction=left]{grid-area:left}.wptb-panel-direction-cadet[data-wptb-panel-direction=right]{grid-area:right}.wptb-panel-direction-cadet[data-wptb-panel-direction=down]{grid-area:down}.wptb-panel-direction-static{grid-area:static;width:20px;height:20px;background-color:var(--wptb-plugin-gray-400);border:1px solid var(--wptb-plugin-gray-500);border-radius:3px}[data-wptb-disabled=true] .wptb-panel-direction-cadet svg{fill:var(--wptb-plugin-gray-300)!important}[data-wptb-disabled=true] .wptb-panel-direction-static{background-color:var(--wptb-plugin-gray-300);border:1px solid var(--wptb-plugin-gray-400)}[data-wptb-disabled=true] .wptb-panel-direction-cadet{cursor:pointer;pointer-events:none}.wptb-disclaimer-container{width:100%;display:flex;justify-content:center;padding:10px 0;flex-direction:column}.wptb-disclaimer-title{color:var(--wptb-plugin-red-600)!important;text-transform:uppercase;font-weight:700;font-size:120%}.wptb-code{font-family:monospace!important;padding:0 3px;border-radius:3px;background-color:#fde68a;border:1px solid #fcd34d;font-size:inherit!important}.wptb-element[data-wptb-dummy=true]{pointer-events:none}.wptb-element[data-wptb-dummy=true] svg{fill:currentColor!important}.wptb-element[data-wptb-dummy=true],.wptb-element[data-wptb-dummy=true] .wptb-element-draggable-icon{color:var(--wptb-plugin-gray-400)!important}.wptb-disabled-overlay-container{display:grid;grid-template-columns:1fr;grid-template-rows:1fr;justify-content:center;align-items:center;grid-template-areas:'content'}.wptb-disabled-overlay{grid-area:content;width:100%;height:100%;z-index:10;background-image:repeating-linear-gradient(45deg,transparent,transparent 15px,#3299d13c 15px,#3299d13c 30px);cursor:not-allowed}.wptb-disabled-overlay-slot-wrapper{grid-area:content;z-index:9}.wptb-upsells-pro-overlay{position:absolute;display:flex;justify-content:center;align-items:center;width:100%;height:100%;top:0;left:0;background-image:repeating-linear-gradient(45deg,transparent,transparent 15px,#3299d13c 15px,#3299d13c 30px)}.wptb-data-listing-row-search-clause-wrap{color:var(--wptb-plugin-gray-500)}.wptb-data-listing-row-search-clause{color:var(--wptb-plugin-logo-color)!important;font-weight:700!important}.wptb-search-input-wrapper{position:relative;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.wptb-search-input-element{width:100%!important;border:1px solid var(--wptb-plugin-gray-400)!important;text-align:center;color:inherit;border-radius:999px!important;padding:0!important;font-size:inherit!important}.wptb-search-input-element:active,.wptb-search-input-element:focus{border:1px solid var(--wptb-plugin-gray-500)!important;inset:0!important;box-shadow:none!important}.wptb-search-input-clear{position:absolute;top:0;right:10px;height:100%;display:flex;justify-content:center;align-items:center;cursor:pointer;padding:0 5px;color:var(--wptb-plugin-red-500);font-weight:700}.wptb-search-input-clear[data-disabled=true]{color:var(--wptb-plugin-gray-500)!important}.wptb-svg-inherit-color svg{fill:currentColor}.wptb-image-element-dummy{display:none!important}.wptb-settings-generic-icon{width:16px;height:16px;cursor:pointer}.wptb-svg-14px svg{width:14px}.wptb-multi-checkbox-wrapper .wptb-settings-checkbox-row[data-wptb-checked=true] label{color:var(--wptb-plugin-logo-color)}.wptb-range-input-wrapper[disabled]{pointer-events:none}.wptb-range-input-operation-button{color:var(--wptb-plugin-gray-500)!important;display:flex;width:100%;justify-content:center;align-items:center;position:absolute;transition:all .1s ease-out;opacity:0}.wptb-range-input-operation-button svg{fill:var(--wptb-plugin-gray-500)!important}.wptb-range-input-operation-button:active{transform:scale(.8)}.wptb-range-input-operation-button[data-wptb-button-position=up]{top:-50%}.wptb-range-input-operation-button[data-wptb-button-position=down]{bottom:-18%}.wptb-range-text-input-wrapper:hover .wptb-range-input-operation-button{opacity:1}.CodeMirror{font-family:monospace;color:#000;direction:ltr}.CodeMirror-lines{padding:4px 0}.CodeMirror pre.CodeMirror-line,.CodeMirror pre.CodeMirror-line-like{padding:0 4px;border-radius:0;border-width:0;background:0 0;font-family:inherit;font-size:inherit;margin:0;white-space:pre;word-wrap:normal;line-height:inherit;color:inherit;z-index:2;position:relative;overflow:visible;-webkit-tap-highlight-color:transparent;font-variant-ligatures:contextual}.CodeMirror-gutter-filler,.CodeMirror-scrollbar-filler{background-color:#fff}.CodeMirror-gutters{border-right:1px solid #ddd;background-color:#f7f7f7;white-space:nowrap}.CodeMirror-linenumber{padding:0 3px 0 5px;min-width:20px;text-align:right;color:#999;white-space:nowrap}.CodeMirror-guttermarker{color:#000}.CodeMirror-guttermarker-subtle{color:#999}.CodeMirror-cursor{border-left:1px solid #000;border-right:none;width:0}.CodeMirror div.CodeMirror-secondarycursor{border-left:1px solid silver}.cm-fat-cursor .CodeMirror-cursor{width:auto;border:0!important;background:#7e7}.cm-fat-cursor div.CodeMirror-cursors{z-index:1}.cm-fat-cursor-mark{background-color:rgba(20,255,20,.5)}.cm-animate-fat-cursor,.cm-fat-cursor-mark{-webkit-animation:blink 1.06s steps(1) infinite;animation:blink 1.06s steps(1) infinite}.cm-animate-fat-cursor{width:auto;border:0;background-color:#7e7}.cm-tab{display:inline-block;text-decoration:inherit}.CodeMirror-rulers{position:absolute;left:0;right:0;top:-50px;bottom:0;overflow:hidden}.CodeMirror-ruler{border-left:1px solid #ccc;top:0;bottom:0;position:absolute}.cm-s-default .cm-header{color:#00f}.cm-s-default .cm-quote{color:#090}.cm-negative{color:#d44}.cm-positive{color:#292}.cm-header,.cm-strong{font-weight:700}.cm-em{font-style:italic}.cm-link{text-decoration:underline}.cm-strikethrough{text-decoration:line-through}.cm-s-default .cm-keyword{color:#708}.cm-s-default .cm-atom{color:#219}.cm-s-default .cm-number{color:#164}.cm-s-default .cm-def{color:#00f}.cm-s-default .cm-variable-2{color:#05a}.cm-s-default .cm-type,.cm-s-default .cm-variable-3{color:#085}.cm-s-default .cm-comment{color:#a50}.cm-s-default .cm-string{color:#a11}.cm-s-default .cm-string-2{color:#f50}.cm-s-default .cm-meta,.cm-s-default .cm-qualifier{color:#555}.cm-s-default .cm-builtin{color:#30a}.cm-s-default .cm-bracket{color:#997}.cm-s-default .cm-tag{color:#170}.cm-s-default .cm-attribute{color:#00c}.cm-s-default .cm-hr{color:#999}.cm-s-default .cm-link{color:#00c}.cm-invalidchar,.cm-s-default .cm-error{color:red}.CodeMirror-composing{border-bottom:2px solid}div.CodeMirror span.CodeMirror-matchingbracket{color:#0b0}div.CodeMirror span.CodeMirror-nonmatchingbracket{color:#a22}.CodeMirror-matchingtag{background:rgba(255,150,0,.3)}.CodeMirror-activeline-background{background:#e8f2ff}.CodeMirror{position:relative;overflow:hidden;background:#fff}.CodeMirror-scroll{overflow:scroll!important;margin-bottom:-50px;margin-right:-50px;padding-bottom:50px;height:100%;outline:0;position:relative}.CodeMirror-sizer{position:relative;border-right:50px solid transparent}.CodeMirror-gutter-filler,.CodeMirror-hscrollbar,.CodeMirror-scrollbar-filler,.CodeMirror-vscrollbar{position:absolute;z-index:6;display:none;outline:0}.CodeMirror-vscrollbar{right:0;top:0;overflow-x:hidden;overflow-y:scroll}.CodeMirror-hscrollbar{bottom:0;left:0;overflow-y:hidden;overflow-x:scroll}.CodeMirror-scrollbar-filler{right:0;bottom:0}.CodeMirror-gutter-filler{left:0;bottom:0}.CodeMirror-gutters{position:absolute;left:0;top:0;min-height:100%;z-index:3}.CodeMirror-gutter{white-space:normal;height:100%;display:inline-block;vertical-align:top;margin-bottom:-50px}.CodeMirror-gutter-wrapper{position:absolute;z-index:4;background:0 0!important;border:0!important}.CodeMirror-gutter-background{position:absolute;top:0;bottom:0;z-index:4}.CodeMirror-gutter-elt{position:absolute;cursor:default;z-index:4}.CodeMirror-gutter-wrapper ::selection{background-color:transparent}.CodeMirror-gutter-wrapper ::-moz-selection{background-color:transparent}.CodeMirror-lines{cursor:text;min-height:1px}.CodeMirror-wrap pre.CodeMirror-line,.CodeMirror-wrap pre.CodeMirror-line-like{word-wrap:break-word;white-space:pre-wrap;word-break:normal}.CodeMirror-linebackground{position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}.CodeMirror-linewidget{position:relative;z-index:2;padding:.1px}.CodeMirror-rtl pre{direction:rtl}.CodeMirror-code{outline:0}.CodeMirror-gutter,.CodeMirror-gutters,.CodeMirror-linenumber,.CodeMirror-scroll,.CodeMirror-sizer{box-sizing:content-box}.CodeMirror-measure{position:absolute;width:100%;height:0;overflow:hidden;visibility:hidden}.CodeMirror-cursor{position:absolute;pointer-events:none}.CodeMirror-measure pre{position:static}div.CodeMirror-cursors{visibility:hidden;position:relative;z-index:3}.CodeMirror-focused div.CodeMirror-cursors,div.CodeMirror-dragcursors{visibility:visible}.CodeMirror-selected{background:#d9d9d9}.CodeMirror-focused .CodeMirror-selected{background:#d7d4f0}.CodeMirror-crosshair{cursor:crosshair}.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:#d7d4f0}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:#d7d4f0}.cm-searching{background-color:#ffa;background-color:rgba(255,255,0,.4)}.cm-force-border{padding-right:.1px}@media print{.CodeMirror div.CodeMirror-cursors{visibility:hidden}}.cm-tab-wrap-hack:after{content:""}span.CodeMirror-selectedtext{background:0 0}
 
1
+ :root{--wptb-plugin-sidebar-size-full: 300px;--wptb-plugin-logo-color: #3299D1;--wptb-plugin-gray-100: #F7FAFC;--wptb-plugin-gray-200: #EDF2F7;--wptb-plugin-gray-300: #E2E8F0;--wptb-plugin-gray-400: #CBD5E0;--wptb-plugin-gray-500: #A0AEC0;--wptb-plugin-gray-600: #718096;--wptb-plugin-gray-700: #4A5568;--wptb-plugin-green-500: #48BB78;--wptb-plugin-yellow-500: #ECC94B;--wptb-plugin-red-300: #FCA5A5;--wptb-plugin-red-500: #F56565;--wptb-plugin-red-600: #E53E3E;--wptb-plugin-red-800: #991B1B;--wptb-plugin-blue-300: #90CDF4;--wptb-plugin-blue-400: #60A5FA;--wptb-plugin-blue-500: #3B82F6;--wptb-plugin-blue-600: #2563EB;--wptb-plugin-white: #FFF;--wptb-plugin-black: #000;--wptb-plugin-gold: #D4AF37;--wptb-plugin-cta-button: #F7C948;--wptb-plugin-theme-text-color-main: var(--wptb-plugin-gray-700);--wptb-plugin-theme-color-light: var(--wptb-plugin-white);--wptb-plugin-theme-sidebar-bg: var(--wptb-plugin-gray-300);--wptb-plugin-theme-side-bar-font-size-base: 16px;--wptb-plugin-theme-header-font-size-base: 16px;--wptb-plugin-theme-side-bar-sections-font-base: 80%;--wptb-plugin-left-panel-constant: 40px;--wptb-prebuilt-card-border-size: 2px;--wptb-prebuilt-card-control-size: 30px;--wptb-busy-duration: 0.9s;--wptb-notification-manager-width: 300px}.wptb-plugin-modal-header .wptb-plugin-modal-header-close .wptb-plugin-modal-close-wrapper,.wptb-table-fixer-settings .wptb-table-fixer-listing .wptb-menu-list-table .wptb-list-table-row{transition:all .1s ease-out}.wptb-plugin-modal-icon .wptb-plugin-modal-icon-parent-wrapper .wptb-plugin-modal-icon-inner-wrapper svg,.wptb-plugin-modal-icon .wptb-plugin-modal-icon-parent-wrapper .wptb-plugin-modal-icon-inner-wrapper,.wptb-plugin-modal-icon .wptb-plugin-modal-icon-parent-wrapper{width:100%;height:100%}.wptb-table-fixer-settings .wptb-table-fixer-listing,.wptb-table-fixer-settings{height:100%}.wptb-plugin-modal-message,.wptb-plugin-modal-icon .wptb-plugin-modal-icon-parent-wrapper .wptb-plugin-modal-icon-inner-wrapper,.wptb-plugin-modal-icon .wptb-plugin-modal-icon-parent-wrapper,.wptb-fix-summary-wrapper .wptb-fix-summary-list .wptb-fix-summary-column .icon-wrapper-parent .icon-wrapper,.wptb-fix-summary-wrapper .wptb-fix-summary-list .wptb-fix-summary-column .icon-wrapper-parent,.wptb-fix-summary-wrapper .wptb-fix-summary-list .wptb-fix-summary-column,.wptb-table-fixer-settings .wptb-table-fixer-listing .wptb-menu-list-table .wptb-list-table-row td:first-child{display:flex;justify-content:center;align-items:center}.wptb-plugin-modal-header .wptb-plugin-modal-header-close .wptb-plugin-modal-close-wrapper,.wptb-table-fixer-settings .wptb-table-fixer-listing .wptb-menu-list-table .wptb-list-table-row{transition:all .1s ease-out}.wptb-plugin-modal-icon .wptb-plugin-modal-icon-parent-wrapper .wptb-plugin-modal-icon-inner-wrapper svg,.wptb-plugin-modal-icon .wptb-plugin-modal-icon-parent-wrapper .wptb-plugin-modal-icon-inner-wrapper,.wptb-plugin-modal-icon .wptb-plugin-modal-icon-parent-wrapper{width:100%;height:100%}.wptb-table-fixer-settings .wptb-table-fixer-listing,.wptb-table-fixer-settings{height:100%}.wptb-plugin-modal-message,.wptb-plugin-modal-icon .wptb-plugin-modal-icon-parent-wrapper .wptb-plugin-modal-icon-inner-wrapper,.wptb-plugin-modal-icon .wptb-plugin-modal-icon-parent-wrapper,.wptb-fix-summary-wrapper .wptb-fix-summary-list .wptb-fix-summary-column .icon-wrapper-parent .icon-wrapper,.wptb-fix-summary-wrapper .wptb-fix-summary-list .wptb-fix-summary-column .icon-wrapper-parent,.wptb-fix-summary-wrapper .wptb-fix-summary-list .wptb-fix-summary-column,.wptb-table-fixer-settings .wptb-table-fixer-listing .wptb-menu-list-table .wptb-list-table-row td:first-child{display:flex;justify-content:center;align-items:center}.wptb-table-fixer-settings{display:grid;grid-template-columns:1fr;grid-template-rows:minmax(-webkit-min-content, -webkit-max-content) 1fr minmax(-webkit-min-content, -webkit-max-content);grid-template-rows:minmax(min-content, max-content) 1fr minmax(min-content, max-content);grid-template-areas:"search" "listing" "disclaimer";justify-content:center;justify-items:center;align-items:center;grid-gap:10px;min-width:50%}.wptb-table-fixer-settings .wptb-table-fixer-table-filter{grid-area:search}.wptb-table-fixer-settings .wptb-table-fixer-disclaimer{grid-area:disclaimer;max-width:50%}.wptb-table-fixer-settings .wptb-table-fixer-listing{grid-area:listing;border:1px solid #cbd5e0;border-radius:3px;min-width:50%;overflow:auto}.wptb-table-fixer-settings .wptb-table-fixer-listing .wptb-menu-list-table .wptb-list-table-row[data-selected=true]{background-color:#3299d1;color:#fff}.wptb-table-fixer-settings .wptb-table-fixer-listing .wptb-menu-list-table .wptb-list-table-row[data-selected=true] .wptb-data-listing-row-search-clause{color:#fff !important}.wptb-fix-summary-wrapper{width:100%;display:flex;justify-content:center;align-items:center;max-height:200px;overflow:auto}.wptb-fix-summary-wrapper .wptb-fix-summary-list .wptb-fix-summary-column{background-color:#e2e8f0;padding:5px;font-weight:bold}.wptb-fix-summary-wrapper .wptb-fix-summary-list .wptb-fix-summary-column[data-fix-status=true]{color:#48bb78}.wptb-fix-summary-wrapper .wptb-fix-summary-list .wptb-fix-summary-column[data-fix-status=false]{color:#f56565}.wptb-fix-summary-wrapper .wptb-fix-summary-list .wptb-fix-summary-column .icon-wrapper-parent{width:100%;height:100%}.wptb-fix-summary-wrapper .wptb-fix-summary-list .wptb-fix-summary-column .icon-wrapper-parent .icon-wrapper{width:15px;height:15px}.wptb-fix-summary-wrapper .wptb-fix-summary-list .wptb-fix-summary-column .icon-wrapper-parent .icon-wrapper svg{width:100%;height:100%}html{overflow-y:hidden}body>img{position:absolute;z-index:1000001}.wptb-admin-container{background:#fff;color:var(--wptb-plugin-theme-text-color-main);z-index:100000;position:fixed;top:0;bottom:0;left:0;right:0;height:100%;min-width:0;margin:0 !important;overflow-y:auto}.wptb-container{position:fixed;left:0;top:0;right:0;bottom:0;overflow-y:auto;overflow-x:hidden}.wptb-container *{box-sizing:border-box}.wptb-builder-header{position:sticky !important;top:0;z-index:10}.wptb-header{width:100%;background-color:var(--wptb-plugin-theme-color-light);border-bottom:1px solid var(--wptb-plugin-theme-sidebar-bg);text-align:center;display:grid;grid-auto-flow:row;grid-template-columns:1fr 1fr;grid-template-areas:"table-name buttons close";align-items:center;justify-content:center;font-size:var(--wptb-plugin-theme-header-font-size-base);position:relative;z-index:10}.wptb-left-panel[data-wptb-panel-location=right]+.wptb-builder-panel .wptb-header{grid-template-areas:"close buttons table-name" !important;grid-template-columns:auto 1fr 1fr !important}.wptb-header-buttons-container{display:flex;flex-direction:row;align-items:center;justify-content:center;grid-area:buttons;height:100%}.wptb-header-close{font-size:30px;width:30px;height:30px;text-decoration:none;color:var(--wptb-plugin-gray-500)}.wptb-logo{padding-left:30px;float:left;margin-top:17px}.wptb-right{width:100%;display:flex;flex-direction:row;justify-content:flex-end;align-items:center;height:100%}.wptb-left-panel[data-wptb-panel-location=right]+.wptb-builder-panel .wptb-right{flex-direction:row-reverse !important}.wptb-right .wptb-settings-section-item{margin:0 !important}.wptb-plugin-width-full{width:100% !important}.wptb-plugin-height-full{height:100%}#wptb-messaging-area{align-self:center;position:absolute;left:0;right:0;bottom:100px;pointer-events:none}#wptb-messaging-area .wptb-message{border-radius:4px;max-width:410px;padding:20px;margin:auto}#wptb-messaging-area .wptb-success{color:green;background-color:#90ee90;font-size:15px}#wptb-messaging-area .wptb-error{color:red;background-color:#ffd5d5;font-size:15px}.wptb-panel-sub-container-buttons{display:flex;justify-content:center;align-items:center;height:100%;border-left:1px solid var(--wptb-plugin-theme-sidebar-bg);border-right:1px solid var(--wptb-plugin-theme-sidebar-bg)}.wptb-panel-night-mode-container{display:flex;justify-content:center;align-items:center;height:100%;border-left:1px solid var(--wptb-plugin-theme-sidebar-bg);padding:10px}.wptb-panel-night-mode-icon-container{width:32px;height:32px;cursor:pointer}[data-wptb-mode=light] .wptb-panel-night-mode-icon-container{color:var(--wptb-plugin-gold)}[data-wptb-mode=dark] .wptb-panel-night-mode-icon-container{color:var(--wptb-plugin-blue-400)}.wptb-header .wptb-settings-section-item{padding:15px !important}.wptb-undo-redo-container{display:flex;justify-content:center;align-items:center;height:100%;padding:0 20px;border-left:1px solid var(--wptb-plugin-theme-sidebar-bg)}.wptb-undo,.wptb-redo{display:inline-block;cursor:pointer}.wptb-undo{margin-right:7px}.wptb-undoredo-disabled{cursor:default;opacity:.4}.wptb-embed-btn,.wptb-preview-btn,.wptb-save-btn{height:100%;display:flex;justify-content:center;align-items:center;text-decoration:none}.wptb-embed,.wptb-preview,.wptb-save{display:flex;justify-content:center;align-items:center;height:100%}.wptb-save{position:relative}#wptb_builder[data-wptb-saving] .wptb-save-btn{opacity:0 !important}.wptb-busy{position:absolute;width:100%;height:100%;left:0;right:0;display:flex;justify-content:space-evenly;align-items:center;opacity:0;pointer-events:none;transition:all .2s ease-out}.wptb-busy .wptb-busy-circle{width:10px;height:10px;border-radius:100%;background-color:var(--wptb-plugin-gray-700);-webkit-animation:wptb-beat var(--wptb-busy-duration) ease-out forwards infinite;animation:wptb-beat var(--wptb-busy-duration) ease-out forwards infinite}.wptb-busy-circle:nth-of-type(2){-webkit-animation-delay:calc(var(--wptb-busy-duration)/3);animation-delay:calc(var(--wptb-busy-duration)/3)}.wptb-busy-circle:nth-of-type(3){-webkit-animation-delay:calc(var(--wptb-busy-duration)/1.5);animation-delay:calc(var(--wptb-busy-duration)/1.5)}@-webkit-keyframes wptb-beat{0%{transform:scale(1)}15%{transform:scale(1.5)}30%{transform:scale(1)}100%{transform:scale(1)}}@keyframes wptb-beat{0%{transform:scale(1)}15%{transform:scale(1.5)}30%{transform:scale(1)}100%{transform:scale(1)}}#wptb_builder[data-wptb-saving] .wptb-busy{opacity:1;pointer-events:all;cursor:not-allowed}.wptb-button-grey{background-color:var(--wptb-plugin-white);text-transform:uppercase;text-decoration:none;color:inherit}.wptb-button-grey:hover{color:inherit}.wptb-button-grey.wptb-button-disable{cursor:not-allowed;color:#cbd5e0 !important}.wptb-save-btn{color:inherit;opacity:1;transition:all .2s ease-out}.wptb-save-btn.wptb-save-disabled{cursor:not-allowed;color:#cbd5e0 !important}.wptb-save-btn.wptb-save-disabled:hover{text-decoration:none}.wptb-close{background-color:var(--wptb-plugin-white);border-left:1px solid var(--wptb-plugin-gray-300)}.wptb-close:hover{background:var(--wptb-plugin-gray-300)}.wptb-close a{text-decoration:none}.wptb-popup-dark-area{position:fixed;width:100%;height:100%;visibility:hidden;top:0;left:0;z-index:1000;background-color:#708090;opacity:0;transition:all .3s}.wptb-popup-window-modal.wptb-popup-show~.wptb-popup-dark-area{visibility:visible;opacity:.6}.wptb-popup-window-modal{position:fixed;top:50%;left:50%;width:50%;max-width:630px;min-width:300px;height:auto;z-index:2000;visibility:hidden;-webkit-backface-visibility:hidden;backface-visibility:hidden;transform:translateX(-50%) translateY(-50%)}.wptb-popup-window-modal.wptb-popup-show{visibility:visible}.wptb-popup-box{transform:scale(0.7);opacity:0;transition:all .3s;border-radius:0;box-shadow:0 2px 6px rgba(0,0,0,.2);padding:30px;background-color:#fff}.wptb-popup-window-modal.wptb-popup-show .wptb-popup-box{transform:scale(1);opacity:1}.wptb-popup-window-close-icon{height:20px;width:20px;position:absolute;top:10px;right:10px;cursor:pointer;opacity:.6;text-align:center;font-size:27px !important;line-height:14px !important;display:none;z-index:1}.wptb-popup-content p{font-size:15px;text-align:center}#wptb-embed-shortcode{width:100%;text-align:center;font-size:24px;display:block;border:1px solid #d6d6d6;padding:10px;box-shadow:none;margin:20px auto 0 auto}.wptb-edit-bar ul{display:flex;display:-webkit-flex;list-style:none;margin:0;padding:0}.wptb-edit-bar{border-radius:2px;display:none;padding:.3em .4em 0em .4em;position:relative;width:auto;z-index:10;background:none;max-width:870px;margin:auto;clear:both}.wptb-edit-bar.visible{display:block}.wptb-edit-bar ul li{height:auto;margin:0;padding:0}.wptb-table_change_button{cursor:pointer;box-sizing:border-box;height:41px;background:#fafbfc;font-size:13px;color:#37454c;border-radius:3px;border:1px solid #a4a4a4;padding-left:12px;padding-right:12px;position:relative;display:inline-block;text-transform:uppercase;letter-spacing:.02em;font-weight:bolder;text-align:center;margin-top:0;margin-right:1em;line-height:2.4em;margin-bottom:8px}.wptb-management.wptb-bar.wptb-edit-bar.visible button.visible:hover{color:#4fbe31;transition:all .1s ease-out}#wptb-delete-column,#wptb-delete-row{background-color:#eb4c63}#wptb-left-scroll-panel-curtain .wptb-table-edit-mode-close{margin:auto;display:block}.wptb-table-edit-mode-close{background:#329d3f;color:#fff}.wptb-edit-bar svg{cursor:pointer}.wptb-edit-bar svg *{fill:rgba(0,0,0,0) !important;stroke:#fff !important}.wptb-left-panel{position:fixed;height:100%;box-sizing:border-box;background-color:var(--wptb-plugin-theme-sidebar-bg);transition:all .2s ease-out,right .2s ease-out;box-shadow:0 0 5px 3px rgba(0,0,0,.2);z-index:100001;font-size:var(--wptb-plugin-theme-side-bar-font-size-base)}.wptb-left-panel[data-wptb-panel-location=left]{left:0}.wptb-left-panel[data-wptb-panel-location=right]{right:0}.collapsed .wptb-left-panel[data-wptb-panel-location=left]{transform:translateX(calc(-100% + var(--wptb-plugin-left-panel-constant)))}.collapsed .wptb-left-panel[data-wptb-panel-location=right]{transform:translateX(calc(100% - var(--wptb-plugin-left-panel-constant)))}.collapsed .wptb-left-panel .wptb-left-panel-sidebar-content{opacity:0}.collapsed .wptb-left-panel .wptb-panel-tabs{opacity:0}.wptb-left-scroll-panel{height:100%;overflow-y:auto;overflow-x:hidden}#wptb-left-scroll-panel-curtain,#wptb-left-scroll-panel-cell-settings{position:absolute;top:0;right:0;left:0;bottom:0;background-color:var(--wptb-plugin-theme-sidebar-bg);padding:20px;display:none}#wptb-left-scroll-panel-cell-settings{padding:0px}#wptb-left-scroll-panel-curtain.visible{display:block}#wptb-left-scroll-panel-cell-settings.visible{display:block}.wptb-panel-left{height:100%;width:var(--wptb-plugin-sidebar-size-full);display:grid;grid-template-rows:auto auto 1fr auto;grid-template-columns:1fr;grid-auto-flow:row;transition:width .2s ease-out;grid-template-areas:"brand" "sidebar-tabs" "sidebar-content" "sidebar-footer"}.wptb-left-panel-sidebar-content{grid-area:sidebar-content;overflow:auto;transition:all .2s ease-out}.wptb-panel-drawer-toggle{background-color:var(--wptb-plugin-theme-sidebar-bg);height:50px;width:25px;position:absolute;top:calc(50% - 25px);left:100%;display:flex;justify-content:center;align-items:center;cursor:pointer;border-radius:0px 5px 5px 0;box-shadow:3px 1px 5px rgba(0,0,0,.2)}.wptb-panel-drawer-icon::after{content:""}.collapsed .wptb-panel-drawer-icon::after{content:""}.wptb-panel-brand{grid-area:brand;background-color:var(--wptb-plugin-logo-color);color:var(--wptb-plugin-white);padding:25px 0;font-size:170%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;grid-template-areas:"brand-position";text-align:center;height:61px}.wptb-brand-name{grid-area:brand-position}.wptb-brand-logo{grid-area:brand-position;display:none}.wptb-panel-tabs{grid-area:sidebar-tabs;text-align:center;justify-content:stretch;transition:all .2s ease-out}.wptb-panel-tabs div{width:100%;margin:0 !important;font-size:90%;padding:10px !important}.wptb-left-panel-extend{position:absolute;top:50%;left:100%;margin-top:-55px;overflow:hidden;width:18px;border-top-right-radius:8px;border-bottom-right-radius:8px;height:40px;background-color:#f0f3f3;box-shadow:1px 0 5px 0 rgba(25,31,40,.2);display:flex;justify-content:center;align-items:center;font-size:12px;color:#353638;z-index:-1;border-right:1px solid #ccc;border-bottom:1px solid #ccc;border-top:1px solid #ccc}.wptb-left-panel-extend svg{display:inline-block;width:1em;height:1em;line-height:1em;vertical-align:middle;stroke-width:0;stroke:currentColor;fill:currentColor}.wptb-container.collapsed .wptb-left-panel .wptb-left-panel-extend svg{transform:rotate(180deg)}.wptb-settings-section p{font-size:16px;margin:0 0 10px 0}.wptb-input-px{right:35%;top:0px;position:absolute;margin-top:7px}.wptb-settings-dropdown{font-size:16px;padding:16px 20px 16px 20px;position:relative;background-color:#fff;color:#186cba;border-top:.5px solid #ccc;border-bottom:.5px solid #ccc}.wptb-panel-table-empty-message{padding:0 20px;text-align:center;font-size:80%;font-style:italic}.wptb-settings-items,.wptb-cell-management{transition:1s 0s ease}.wptb-cell-management{display:none}.wptb-settings-items.visible,#wptb-inner-border-settings.visible,.wptb-cell-management.visible{display:block !important;opacity:1}.wptb-settings-item-title{font-size:14px !important;margin:0 !important;margin:0}.wptb-settings-item-header{font-size:14px;line-height:14px;padding:14px 0 14px 15px;position:relative;background:var(--wptb-plugin-gray-100)}.wptb-settings-item-header-include-right{font-size:14px;line-height:14px;padding:14px 10px 14px 10px;position:relative;background:var(--wptb-plugin-gray-100)}.wptb-settings-row{box-sizing:border-box !important;display:flex;flex:0 1 auto;flex-direction:row;flex-wrap:wrap;align-items:center;padding-right:0 !important}.wptb-settings-row label{display:flex;flex-direction:row;justify-content:space-between;align-items:center}.wptb-settings-middle-xs{align-items:center;background:var(--wptb-plugin-gray-100);padding:15px !important;border-bottom:1px solid #e5dfdf}.wptb-settings-middle-xs *{font-size:14px !important}.wptb-settings-col-xs-12{flex-basis:100%;max-width:100%}.wptb-settings-col-xs-8{flex-basis:66.66666667%;max-width:66.66666667%}.wptb-settings-col-xs-4{flex-basis:33.33333333%;max-width:33.33333333%;position:relative}.wptb-number-input{max-width:75px;width:100%;margin:3px 10px}input[type=number]{height:28px !important;line-height:1;padding:3px 5px !important}input[type=range]::-moz-focus-inner{border:0}input[type=range]::-moz-focus-outer{border:none;outline:none}input[type=range]:focus{outline:0}input[type=range]{-webkit-appearance:none;-webkit-tap-highlight-color:rgba(255,255,255,0);width:100%;height:8px;margin:0;border:none;padding:1px 2px;border-radius:14px;background:#ccc;outline:none}input[type=range]::-moz-range-track{border:inherit;background:#ccc}input[type=range]::-ms-track{border:inherit;color:transparent;background:#ccc}input[type=range]::-ms-fill-lower,input[type=range]::-ms-fill-upper{background:#ccc}input[type=range]::-ms-tooltip{display:none}input[type=range]::-webkit-slider-thumb:before{content:"";position:absolute;left:-3000px;right:100%;top:50%;height:6px;padding:0;background:#1d9b2a;transform:translate(0, -50%)}input[type=range]::-moz-range-progress{background-color:#3b7ec0;height:6px}input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;width:18px;height:18px;border:1px solid #3b7ec0;border-radius:50%;background-image:linear-gradient(to bottom, #ffffff 0, #ffffff 100%)}input[type=range]::-moz-range-thumb{width:18px;height:18px;border:1px solid #3b7ec0;border-radius:50%;background-image:linear-gradient(to bottom, #ffffff 0, #ffffff 100%)}input[type=range]::-ms-thumb{width:18px;height:18px;border-radius:50%;border:1px solid #3b7ec0;background-image:linear-gradient(to bottom, #ffffff 0, #ffffff 100%)}.wptb-toggle{display:inline-block;width:95%}.wptb-toggle input{display:none}.wptb-toggle input:checked+i::after{transform:translateX(20px)}.wptb-toggle input:checked+i{background:#3b7ec0}.wptb-toggle i{float:right;padding:2px;width:40px;height:20px;border-radius:13px;vertical-align:middle;transition:.25s .09s;position:relative;background:#d8d9db;box-sizing:initial}.wptb-toggle i::after{content:" ";display:block;width:20px;height:20px;border-radius:50%;background:#fff;position:absolute;left:2px;transition:.25s}.wptb-toggle.wptb-toggle2 input:checked+i::after,.wptb-toggle.wptb-size-fixed-auto input:checked+i::after{transform:translateX(50px)}.wptb-toggle.wptb-toggle2 i,.wptb-toggle.wptb-size-fixed-auto i{float:left;width:100px;border-radius:5px;height:25px}.wptb-toggle.wptb-toggle2 i:after,.wptb-toggle.wptb-size-fixed-auto i:after{width:50px;height:25px;border-radius:5px;transform:translateX(0px)}.wptb-checkbox{display:block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding-top:3px;padding-bottom:3px}.wptb-checkbox span{vertical-align:middle}.wptb-checkbox input[type=checkbox]{opacity:0;height:0;width:0;display:none}.wptb-checkbox-checkmark{height:25px;width:25px;background-color:#d8d9db;display:inline-block;position:relative;border-radius:3px;margin-left:5px}.wptb-checkbox:hover input[type=checkbox]~.wptb-checkbox-checkmark{background-color:#6ea4d8}.wptb-checkbox input[type=checkbox]:checked~.wptb-checkbox-checkmark{background-color:#3b7ec0}.wptb-checkbox-checkmark:after{content:"";position:absolute;display:none}.wptb-checkbox input[type=checkbox]:checked~.wptb-checkbox-checkmark:after{display:block}.wptb-checkbox .wptb-checkbox-checkmark:after{left:10px;top:7px;width:6px;height:11px;border:solid #fff;border-width:0 2px 2px 0;transform:rotate(45deg)}.wptb-column-fixed,.wptb-column-auto{position:absolute;font-size:15px;width:50%;height:100%;text-align:center;line-height:25px}.wptb-column-fixed{color:#d8d9db}.wptb-column-auto{color:#3b7ec0;right:0}.wptb-elements-section{grid-area:sidebar-content}#element-options-group{grid-area:sidebar-content;padding-top:20px}.wptb-settings-section{grid-area:sidebar-content}.wptb-responsive-section{grid-area:sidebar-content}[data-wptb-section]{padding-top:20px;-webkit-animation:wptb-basic-appear .2s ease-out;animation:wptb-basic-appear .2s ease-out}.wptb-tabs{width:100%;margin:0;padding:0;background:#fff;border-bottom:.5px solid #ccc;max-width:349px;z-index:10}ul.wptb-tabs{list-style:none}.wptb-tabs li{float:left;width:49.3%;margin:0}.wptb-tabs li:last-of-type{float:right}.wptb-tabs li a{display:block;text-align:center;padding:18px 10px;font-size:16px;color:#186cba;text-decoration:none}.wptb-tabs li a:hover{color:#186cba;text-decoration:none}.wptb-tabs li a:focus{box-shadow:none}.wptb-tabs li .active,.wptb-tabs li .active:hover{color:#186cba}.wptb-tabs #wptb-add-elements .active{background:#fff}.wptb-tabs #element-options .active{background:#fff}.wptb-tab-content{padding:0}.wptb-panel-toggle-group{background-color:var(--wptb-plugin-theme-color-light);box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06);margin:20px 0}.wptb-panel-toggle{background-color:var(--wptb-plugin-theme-color-light);padding:10px;display:flex;flex-direction:row;justify-content:space-between;align-items:center;border-bottom:3px solid var(--wptb-plugin-theme-sidebar-bg);cursor:pointer}.wptb-element-options .wptb-panel-toggle{cursor:pointer}.wptb-panel-toggle .header{text-transform:uppercase;font-size:90%;display:flex;flex-direction:row;justify-content:center;align-items:center}.wptb-panel-toggle .header .wptb-panel-toggle-group-header-icon{width:17px;margin-right:7px;color:var(--wptb-plugin-logo-color)}.wptb-panel-toggle .header .wptb-panel-toggle-group-header-icon:empty{display:none}.wptb-panel-toggle .header .wptb-panel-toggle-group-header-icon svg{fill:currentColor}.header .wptb-back-button{margin-right:10px}.wptb-panel-toggle .toggle-icon{cursor:pointer}.wptb-panel-toggle .toggle-icon::after{content:""}.wptb-panel-toggle-content .wptb-panel-toggle .toggle-icon::after{content:""}.wptb-panel-toggle-target{background-color:var(--wptb-plugin-gray-100);padding:20px 10px}.wptb-panel-section-toggle-target{background-color:var(--wptb-plugin-gray-100)}.wptb-panel-elements-inner-wrapper{display:grid;grid-auto-flow:row;grid-template-columns:1fr 1fr;grid-gap:10px;color:var(--wptb-plugin-theme-text-color-main);font-size:80%}.wptb-section-group-tabbed{display:grid;grid-template-columns:1fr;grid-template-areas:"header" "tabButtons" "controls";grid-auto-flow:row;grid-template-rows:auto}.wptb-section-group-tabbed-header{grid-area:header;justify-content:center !important}.wptb-section-group-tabbed-tabs-buttons{grid-area:tabButtons;display:flex;flex-direction:row;background-color:var(--wptb-plugin-theme-color-light);text-align:center;justify-content:stretch;border-bottom:1px solid #e5dfdf}.wptb-section-group-tabbed-tabs-buttons div{width:100%;margin:0 !important;font-size:90%;padding:7px !important}.wptb-section-group-tab-content{grid-area:controls;transition:opacity .2s ease-out}.wptb-plugin-non-visible{height:0;opacity:0;pointer-events:none;transition:none !important}.wptb-plugin-non-visible div{height:0}.wptb-elements-container{width:100%;max-height:inherit;padding:0 0 60px 0;background-color:inherit}.wptb-element{position:relative;background:var(--wptb-plugin-theme-color-light);display:flex;align-items:center;justify-content:center;flex-direction:column;height:100px;text-align:center;border-radius:5px;border:2px solid var(--wptb-plugin-gray-400);transition:all .25s;cursor:move}.wptb-element p{margin:0}.wptb-element:hover{box-shadow:3px 3px 2px .5px rgba(0,0,0,.2)}.wptb-element svg{fill:var(--wptb-plugin-theme-text-color-main) !important}.wptb-element-draggable-icon{position:absolute;top:0;right:0;color:var(--wptb-plugin-gray-500) !important}.left{width:47.5%;float:left;margin:6px 0 -4px 6px}.right{width:47.5%;float:right;margin:6px 5px -4px 0}.wptb-builder-panel{display:flex;flex-direction:column;position:relative;min-height:100%;height:100%;transition:all .2s ease-out,right .2s ease-out;width:calc(100% - var(--wptb-plugin-sidebar-size-full));text-align:center;z-index:100000}[data-wptb-night-mode=true] .wptb-builder-panel{background-color:var(--wptb-plugin-gray-500)}.wptb-left-panel[data-wptb-panel-location=left]+.wptb-builder-panel{left:var(--wptb-plugin-sidebar-size-full)}.wptb-left-panel[data-wptb-panel-location=right]+.wptb-builder-panel{left:0}.collapsed .wptb-left-panel[data-wptb-panel-location=left]+.wptb-builder-panel{left:calc(0px + var(--wptb-plugin-left-panel-constant)) !important;width:calc(100% - var(--wptb-plugin-left-panel-constant)) !important}.collapsed .wptb-left-panel[data-wptb-panel-location=right]+.wptb-builder-panel{right:calc(0px - var(--wptb-plugin-left-panel-constant)) !important;width:calc(100% - var(--wptb-plugin-left-panel-constant)) !important}.wptb-name-setup{text-align:start;margin:0 20px;grid-area:table-name}.wptb-left-panel[data-wptb-panel-location=right]+.wptb-builder-panel .wptb-name-setup{text-align:end !important}.wptb-left-panel[data-wptb-panel-location=right]+.wptb-builder-panel .wptb-name-setup input{text-align:end !important}.wptb-plugin-header-close{grid-area:close}#wptb-setup-name{height:50px;box-shadow:none;border:1px solid var(--wptb-plugin-gray-300);font-size:100%;width:420px;padding:0 20px}.wptb-messaging{color:#fff;height:0;margin:0 auto;padding:5px;transition:all 1s 0s;width:90%;text-align:initial}.wptb-messaging.wptb-success{background:#4caf50;background:linear-gradient(45deg, #4caf50 0%, #8bc34a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#4caf50", endColorstr="#8bc34a", GradientType=1);height:auto}.wptb-messaging.wptb-warning{background:#f44336;background:linear-gradient(45deg, #f44336 0%, #ff5722 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#f44336", endColorstr="#ff5722", GradientType=1);height:auto}.wptb-management_table_container{margin:auto;text-align:initial}.wptb-table-setup{justify-content:center;position:relative;z-index:1;margin:30px auto;background:#fff;max-width:700px;overflow-x:auto;overflow-y:hidden}#wptb-cell_mode_background{position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(49,59,71,.49);display:none;text-align:initial}#wptb-cell_mode_background.visible{display:block}table.wptb-table{border-collapse:collapse}.wptb-wrapper{margin:0 auto;padding:40px;max-width:960px;text-align:initial}.wptb-table{margin:20px 0 60px 0;width:100%;border:1px solid #ccc;box-shadow:0 1px 3px rgba(0,0,0,.2);display:table}@media screen and (max-width: 580px){.wptb-table{display:block}}.wptb-row{display:table-row;background:#bebebe}.wptb-row:nth-of-type(odd){background:#bebebe}.wptb-row.wptb-table-header{font-weight:900;color:#fff;background:#ea6153}.wptb-row.wptb-green{background:#27ae60}.wptb-row.wptb-blue{background:#2980b9}@media screen and (max-width: 580px){.wptb-row{padding:14px 0 7px;display:block}.wptb-row.wptb-table-header{padding:0;height:6px}.wptb-row.wptb-table-header .wptb-cell{display:none}.wptb-row .wptb-cell{margin-bottom:10px}.wptb-row .wptb-cell:before{margin-bottom:3px;content:attr(data-title);min-width:98px;font-size:10px;line-height:10px;font-weight:bold;text-transform:uppercase;color:#969696;display:block}}.wptb-cell{padding:12px 12px;display:table-wptb-cell}.wptb-preview-table{table-layout:fixed;font-size:15px;display:table;border-collapse:collapse !important;margin:auto;width:auto}.wptb-preview-table.wptb-preview-table-auto-width{width:auto}.wptb-preview-table-manage-cells tbody>tr>td::after{content:"";display:block;position:absolute;top:0;right:0;left:0;bottom:0;z-index:100}.wptb-preview-table-manage-cells td:hover::after{background:rgba(207,218,239,.2);border-color:inherit}.wptb-preview-table p{margin:0;font-size:15px;word-wrap:break-word;overflow-wrap:break-word;word-break:break-word}.wptb-preview-table ul{list-style-type:disc;margin-left:15px}.wptb-preview-table tr{display:table-row;background:#fcfcfc}.wptb-preview-table tr:nth-of-type(odd){background:#eee}.wptb-state-dragging td{cursor:all-scroll}.wptb-preview-table td{padding:15px;position:relative;box-sizing:content-box}.wptb-preview-table td.wptb-td-default-width{width:100px}.wptb-preview-table .wptb-row td.wptb-highlighted,.wptb-state-dragging td:hover{outline:1px solid #acc1e2}.wptb-preview-table .wptb-row.wptb-highlighted-row{background-color:rgba(59,125,191,.34);border:1px solid pink}.wptb-preview-table .wptb-row td.wptb-highlighted-row-first{background-color:rgba(59,125,191,.34);border-bottom:1px solid pink;border-left:1px solid pink;border-right:inherit;border-top:1px solid pink}.wptb-preview-table .wptb-row td.wptb-highlighted-row-inner{background-color:rgba(59,125,191,.34);border-bottom:1px solid pink;border-left:inherit;border-right:inherit;border-top:1px solid pink}.wptb-preview-table .wptb-row td.wptb-highlighted-row-last{background-color:rgba(59,125,191,.34);border-bottom:1px solid pink;border-left:inherit;border-right:1px solid pink;border-top:1px solid pink}.wptb-preview-table .wptb-row td.wptb-highlighted-column-first{background-color:rgba(59,125,191,.34);border-bottom:inherit;border-left:1px solid pink;border-right:1px solid pink;border-top:1px solid pink}.wptb-preview-table .wptb-row td.wptb-highlighted-column-inner{background-color:rgba(59,125,191,.34);border-bottom:inherit;border-left:1px solid pink;border-right:1px solid pink;border-top:inherit}.wptb-preview-table .wptb-row td.wptb-highlighted-column-last{background-color:rgba(59,125,191,.34);border-bottom:1px solid pink;border-left:1px solid pink;border-right:1px solid pink;border-top:inherit}.wptb-row td:empty::before{content:"Cell";display:block;font-weight:normal;font-size:80%;text-align:center;color:#969fa6}.wptb-row td:empty::after{content:"";display:block;border:1px dashed #969fa6;position:absolute;top:2px;right:2px;bottom:2px;left:2px}.wptb-preview-table.wptb-table-preview-head .wptb-row:first-child td:empty::before{content:"Header"}.wptb-ph-element{position:relative;border:1px solid #fff0;min-height:15px}.wptb-image-wrapper img{width:100%;display:block;padding:0;max-width:100%;height:auto;transition:all .2s ease-out}.wptb-image-wrapper a{display:block;max-width:100%;position:relative;margin:auto;text-decoration:none}.wptb-icon-image-button{display:block;padding:5px;background:#747d84;border-radius:5px;color:#000;cursor:pointer}.wptb-image-wrapper::after{content:"";display:block;height:0;width:100%;clear:both}.wptb-button-wrapper{display:flex;align-items:center;justify-content:center}.wptb-button-wrapper>a{text-decoration:none;max-width:100%}.wptb-button{padding:16px;background:#329d3f;color:#fff;cursor:pointer;border-radius:5px;border:0;box-shadow:none;transition:all .2s ease-out;display:flex;justify-content:center;align-items:center}.wptb-button-icon{margin:0 5px;order:-1;width:25px;height:25px;display:flex;justify-content:center;align-items:center}.wptb-button-icon svg{width:100%;height:100%;fill:currentColor}.wptb-button-icon[data-wptb-button-icon-src=""]{display:none}[data-wptb-button-icon-position=right] .wptb-button-icon{order:2}.wptb-plugin-button-order-right .wptb-button-icon{order:2}.wptb-button:hover{color:#fff}.wptb-table-generator{text-align:center;margin:60px auto 20px auto}.wptb-table-generator input{margin:0}.wptb-generator-btn{width:92%;padding:15px;background:var(--wptb-plugin-logo-color);color:#fff;cursor:pointer;border:none;box-shadow:none;border-radius:5px}.wptb-input-number{width:80px;padding:0 12px;vertical-align:top;text-align:center;outline:none}.wptb-input-number,.wptb-input-number-decrement,.wptb-input-number-increment{border:1px solid #ccc;height:40px}.wptb-input-number-decrement,.wptb-input-number-increment{display:inline-block;width:30px;line-height:38px;background:#f1f1f1;color:#444;text-align:center;font-weight:bold;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.wptb-input-number-decrement:active,.wptb-input-number-increment:active{background:#ddd}.wptb-input-number-decrement{border-right:none;border-radius:4px 0 0 4px}.wptb-input-number-increment{border-left:none;border-radius:0 4px 4px 0}.wptb-allow-drop{background:#b5e0d7}#wpcd_fixed_toolbar{min-height:55px;text-align:center;position:sticky !important;top:39px;z-index:100;display:inline-block}#wpcd_fixed_toolbar>div.toolbar-active{display:block !important}.wptb-btn-size-btn{padding:8px 15px;margin:0;vertical-align:middle;border:solid 1px #ccc;font-size:12px;border-radius:4px;cursor:pointer}.wptb-btn-size-switcher{background:linear-gradient(to bottom, white, #eeeeee);display:table-cell;border-right:none;border-radius:0;color:#433f33}.wptb-btn-size-switcher:first-child{border-radius:4px 0 0 4px}.wptb-btn-size-switcher:last-child{border-radius:0 4px 4px 0;border-right:solid 1px #ccc}.wptb-btn-size-switcher:hover{background:#fff}.wptb-btn-size-switcher:active{box-shadow:inset 0px 0px 8px 0px rgba(0,0,0,.1)}.wptb-btn-size-switcher.bnt-selected{background:#fff;box-shadow:inset 0px 0px 20px 4px rgba(0,0,0,.15);cursor:default}.mce-content-body{min-height:19px;word-break:break-word}.mce-tinymce.mce-tinymce-inline.mce-container.mce-panel{left:50% !important;transform:translate(-50%, 0) !important;border:1px solid var(--wptb-plugin-gray-300) !important}.mce-container.mce-panel.mce-floatpanel.mce-window.mce-in{z-index:100100 !important}.mce-container.mce-panel.mce-floatpanel.mce-menu.mce-animate.mce-fixed.mce-menu-align.mce-in{z-index:100101 !important}.mce-edit-focus{outline:none !important}.mce-btn button{padding:14px 18px !important}.mce-ico{font-size:20px !important}.mce-content-body [data-mce-selected=inline-boundary]{background:transparent !important}br[data-mce-bogus="1"]{display:none}.wptb-text-container .mce-content-body a{color:#1e73be}.wptb-text-container p:empty:not(:focus)::before{content:attr(data-placeholder);opacity:.4}.wptb-droppable.wptb-cell ul,.wptb-droppable.wptb-cell ol{border:1px solid transparent;margin:0;padding:1em .2em .4em;width:100%}.wptb-droppable.wptb-cell ul article,.wptb-droppable.wptb-cell ol article{align-items:flex-start;border:1px solid transparent;display:flex;flex-direction:row;justify-content:flex-start;list-style-type:none;margin-bottom:0;padding:0;position:relative;width:100%}.wptb-list-container ul li{list-style:none;margin:0px}.wptb-droppable.wptb-cell li .wptb-list-item-content{min-height:30px}.wptb-droppable.wptb-cell li .wptb-list-item-content p{word-wrap:break-word;line-height:30px;font-size:15px;padding-left:20px}.wptb-list-container ul li>div>p::before{content:attr(data-list-style-type-index);display:inline-block;line-height:30px;padding:0 5px 0 0;font-family:verdana,sans-serif;cursor:text;min-width:-webkit-fit-content;min-width:-moz-fit-content;min-width:fit-content}.wptb-droppable.wptb-cell li .wptb-list-item-content p span.content{display:block}.wptb-list-container ul li>div>p::before{margin-left:-20px}.wptb-list-container ul li>div>p.wptb-list-style-type-disc::before{content:"●"}.wptb-list-container ul li>div>p.wptb-list-style-type-circle::before{content:"○"}.wptb-list-container ul li>div>p.wptb-list-style-type-square::before{content:"■"}.wptb-list-container ul li>div>p.wptb-list-style-type-none::before{content:"";padding-right:0px}.wptb-droppable.wptb-cell .wptb-directlyhovered{outline:1px solid #1ea5e5 !important;position:relative}.wptb-cell .wptb-ph-element.edit-active{outline:2px solid #1ea5e5 !important;position:relative}.wptb-droppable.wptb-cell .wptb-list-container.wptb-directlyhovered{display:block}.wptb-droppable.wptb-cell .wptb-directlyhovered .wptb-directlyhovered{display:flex;width:100%}.wptb-droppable.wptb-cell .wptb-list-container.wptb-directlyhovered .wptb-directlyhovered{display:list-item;border:none !important}.wptb-droppable.wptb-cell .wptb-list-container.wptb-directlyhovered .wptb-directlyhovered:before{content:"";display:inline-block;position:absolute;top:0;right:0;bottom:0;left:0;border:1px solid #1ea5e5 !important}.wptb-actions{align-items:center;background-color:#1ea5e5;border-top-left-radius:4px;border-top-right-radius:4px;box-sizing:content-box;color:#fff;justify-content:space-between;line-height:1em;padding:0px 5px;position:absolute;height:15px;font-size:9pt;display:none;max-width:70px;z-index:100001;box-sizing:border-box}.wptb-ph-element:hover .wptb-actions{display:inline}.wptb-actions .dashicons.dashicons-admin-page.wptb-duplicate-action{font-size:10pt;margin:0em .05em 0 .1em;width:16px;height:16px;cursor:pointer}.wptb-actions .dashicons.wptb-prebuilt-mark-action{font-size:10pt;margin:0em .05em 0 .1em;width:16px;height:16px;cursor:pointer}.wptb-actions .dashicons.dashicons-trash.wptb-delete-action{font-size:10pt;margin:0em .1em 0 .05em;width:16px;height:16px;order:2;cursor:pointer}.wptb-cell-management .wptb-button{background:#3e99ca;color:#fff;border:none;border-radius:2px;padding:.4em 0;width:100%;box-shadow:2px 1px 0px 0px rgba(13,85,126,.71)}.wptb-cell-management .wptb-button[disabled]{display:none}.wptb-space-between{min-height:10px;width:100%}.wptb-ph-element.wptb-directlyhovered.wptb-moving-mode{outline:0px !important}.wptb-ph-element.wptb-ondragenter::before{content:"";display:block;position:absolute;top:0;bottom:0;left:0;right:0;z-index:101000}.wptb-ph-element.wptb-moving-mode{opacity:.4;transform:scale(0.9) translate(-5%, -5%);transition:all .2s ease-in-out}.wptb-drop-handle{height:11px;position:absolute;z-index:101000;display:none}.wptb-drop-handle::after{content:attr(data-text);background-color:#1e90ff;color:#fff;display:block;font-variant:small-caps;position:relative;text-align:center;width:100%;height:100%;font-size:11px;line-height:1;text-transform:uppercase;box-sizing:border-box}.wptb-drop-border-marker{position:absolute;width:1px;height:1px;z-index:101000}.wptb-drop-handle.wptb-moving-into-same-elem,.wptb-drop-border-marker.wptb-moving-into-same-elem{opacity:0;visibility:hidden}.wptb-drop-border-marker>div{position:absolute;background:#1ea9eb}.wptb-drop-border-marker-top{top:0;left:0;height:1px}.wptb-drop-border-marker-right{top:0;width:1px}.wptb-drop-border-marker-bottom{left:0;height:1px}.wptb-drop-border-marker-left{top:0;left:0;width:1px}.wptb-space-between.visible:empty::before{background-color:#1e90ff;border:1px solid #1e90ff;color:#fff;content:"drop here";display:block;font-variant:small-caps;margin:2px 5%;padding:.5em 0;position:relative;text-align:center;width:90%}.wptb-draggable{border:none}.wptb-actions .dashicons.dashicons-move.wptb-move-action{font-size:14px !important;cursor:move;width:16px;height:16px;order:-1}.wptb-no-cell-action:not(.visible),.wptb-single-action:not(.visible),.wptb-multiple-select-action:not(.visible){cursor:not-allowed;opacity:.3}.wptb-item-dragging{background-color:purple;min-height:30px;min-width:30px;position:absolute;transition:all .2s ease;transition-property:left,top;width:auto;z-index:11000}.wptb-range-input{height:20px;position:relative}.wptb-range-input .slider{background-color:#fff;border:1px solid #4b88c4;border-radius:200px;box-sizing:border-box;height:20px;left:2px;position:absolute;top:0;width:20px;z-index:10}.wptb-range-input .rail{background:#ccc;border-radius:14px;bottom:6px;height:8px;position:absolute;width:100%;z-index:1}.wptb-preview-table.wptb-table-preview-head .wptb-row:first-child td.wptb-drop-here-empty:empty::before,.wptb-row td.wptb-drop-here-empty:empty::before{background-color:#1e90ff;border:1px solid #1e90ff;box-sizing:border-box;color:#fff;content:"drop here";display:block;font-size:1em;font-variant:small-caps;padding:.2em .4em;text-align:center;width:100%}td[class*=wptb-fused-cell]{display:none !important}.wptb-size-s .wptb-button{border-radius:.2rem;padding:.35rem .6rem;max-width:100%}.wptb-size-s .wptb-button p{font-size:.875rem;line-height:1.5}.wptb-size-m .wptb-button{border-radius:.3rem;padding:.475rem .85rem;max-width:100%}.wptb-size-m .wptb-button p{font-size:1.125rem;line-height:1.5}.wptb-size-l .wptb-button{border-radius:.3rem;padding:.6rem 1.2rem;max-width:100%}.wptb-size-l .wptb-button p{font-size:1.25rem;line-height:1.5}.wptb-size-xl .wptb-button{border-radius:.4rem;padding:.8rem 1.35rem;max-width:100%}.wptb-size-xl .wptb-button p{font-size:1.35rem;line-height:1.5}[class*=wptb-element-text-] p{color:inherit !important;font-size:inherit !important}.wptb-split-page-title-action a,.wptb-split-page-title-action a:active,.wptb-split-page-title-action .wptb-expander::after{padding:6px 10px;position:relative;top:-3px;text-decoration:none;border:1px solid #ccc;border-radius:2px;background:#f7f7f7;text-shadow:none;font-weight:600;font-size:13px;line-height:normal;color:#0073aa;cursor:pointer;outline:0}.wptb-split-page-title-action a:hover{color:#fff;background-color:#1f8abb}.wptb-column-title-mobile{display:none}.wptb-star_rating-container{text-align:center}.wptb-rating-stars-box{text-align:center;display:inline-block;padding:7px}.wptb-rating-stars-box ul{list-style-type:none;padding:0;-moz-user-select:none;-webkit-user-select:none;padding:.5em .2em .2em}.wptb-rating-stars-box ul li{display:inline-block}.wptb-rating-stars-box ul>li.wptb-rating-star{color:#ccc;cursor:pointer;margin:0px;position:relative;width:20px;height:20px}.wptb-rating-stars-box ul>li.wptb-rating-star span{position:absolute;height:100%;width:100%;top:0px;left:0px;z-index:10}.wptb-rating-stars-box ul>li.wptb-rating-star span.wptb-rating-star-left-signal-part,.wptb-rating-stars-box ul>li.wptb-rating-star span.wptb-rating-star-right-signal-part{height:100%;width:50%;z-index:20}.wptb-rating-stars-box ul>li.wptb-rating-star span.wptb-rating-star-left-signal-part{left:0px}.wptb-rating-stars-box ul>li.wptb-rating-star span.wptb-rating-star-left-signal-part span.wptb-rating-star-zero-set{left:0px;width:40%;height:100%;top:0px;z-index:30px}.wptb-rating-stars-box ul>li.wptb-rating-star span.wptb-rating-star-right-signal-part{right:0px;left:auto}.wptb-rating-stars-box ul>li.wptb-rating-star span{display:block}.wptb-rating-stars-box ul>li.wptb-rating-star span.wptb-filled-rating-star{display:none}.wptb-rating-stars-box ul>li.wptb-rating-star span.wptb-half-filled-rating-star{display:none}.wptb-rating-stars-box ul>li.wptb-rating-star span.wptb-not-filled-rating-star{fill:#ccc}.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-hover-half span.wptb-not-filled-rating-star{display:none}.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-hover-half span.wptb-half-filled-rating-star{display:block;fill:#ff912c;opacity:.5}.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-hover-half span.wptb-filled-rating-star{display:none}.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-hover-full span.wptb-not-filled-rating-star{display:none}.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-hover-full span.wptb-half-filled-rating-star{display:none}.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-hover-full span.wptb-filled-rating-star{display:block;fill:#ff912c;opacity:.5}.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-selected-half.wptb-rating-star-hover-half span,.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-selected-half.wptb-rating-star-hover-full span,.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-selected-full.wptb-rating-star-hover-half span,.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-selected-full.wptb-rating-star-hover-full span{opacity:1}.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-selected-half span.wptb-filled-rating-star{display:none}.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-selected-half.wptb-rating-star-hover-full span.wptb-filled-rating-star{display:block;fill:#ff912c;opacity:.5}.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-selected-half span.wptb-not-filled-rating-star{display:none}.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-selected-half span.wptb-half-filled-rating-star{display:block;fill:#ff912c}.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-selected-full span.wptb-filled-rating-star{display:block;fill:#ff912c}.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-selected-full span.wptb-not-filled-rating-star{display:none}.wptb-rating-stars-box ul>li.wptb-rating-star.wptb-rating-star-selected-full span.wptb-half-filled-rating-star{display:none}.wptb-rating-stars-box ul>li.wptb-rating-star span svg{display:block}.wptb-number-rating-box{text-align:center;font-size:20px}.wptb-number-rating-box>div{vertical-align:top;display:inline-block;color:#888;text-align:center;height:25px;font-size:25px;line-height:25px}wptb_shortcode_container_element{display:block}@media screen and (max-width: 1375px){#wptb-messaging-area{position:relative}#wptb-messaging-area .wptb-message{max-width:400px;padding:20px 5px;box-sizing:border-box}}@media screen and (max-width: 1070px){#wptb-messaging-area{position:absolute;top:190px;left:30px;right:30px;margin:auto}#wptb-messaging-area .wptb-message{padding:50px 20px}}@media screen and (max-width: 970px){#wptb-setup-name{width:100%;max-width:420px;margin-left:0px}}.wptb-cell img{max-width:100%}.wptb-exit-options{text-decoration:none}.wptb-option-text{text-align:center}.wptb-rating-alignment-btn{padding:8px 15px 3px 15px;margin:0;vertical-align:middle;border:solid 1px #ccc;font-size:12px;border-radius:4px;cursor:pointer}.wptb-rating-alignment-switcher{background:linear-gradient(to bottom, white, #eeeeee);display:table-cell;border-right:none;border-radius:0;color:#433f33}.wptb-rating-alignment-switcher:first-child{border-radius:4px 0 0 4px}.wptb-rating-alignment-switcher:last-child{border-radius:0 4px 4px 0;border-right:solid 1px #ccc}.wptb-rating-alignment-switcher:hover{background:#fff}.wptb-rating-alignment-switcher:active{box-shadow:inset 0px 0px 8px 0px rgba(0,0,0,.1)}.wptb-rating-alignment-switcher.selected{background:#fff;box-shadow:inset 0px 0px 20px 4px rgba(0,0,0,.15);cursor:default}.wptb-list-alignment-btn{padding:8px 15px 3px 15px;margin:0;vertical-align:middle;border:solid 1px #ccc;font-size:12px;border-radius:4px;cursor:pointer}.wptb-list-alignment-switcher{background:linear-gradient(to bottom, white, #eeeeee);display:table-cell;border-right:none;border-radius:0;color:#433f33}.wptb-list-alignment-switcher:first-child{border-radius:4px 0 0 4px}.wptb-list-alignment-switcher:last-child{border-radius:0 4px 4px 0;border-right:solid 1px #ccc}.wptb-list-alignment-switcher:hover{background:#fff}.wptb-list-alignment-switcher:active{box-shadow:inset 0px 0px 8px 0px rgba(0,0,0,.1)}.wptb-list-alignment-switcher.selected{background:#fff;box-shadow:inset 0px 0px 20px 4px rgba(0,0,0,.15);cursor:default}.wptb-button-alignment-btn{padding:8px 15px 3px 15px;margin:0;vertical-align:middle;border:solid 1px #ccc;font-size:12px;border-radius:4px;cursor:pointer}.wptb-button-alignment-switcher{background:linear-gradient(to bottom, white, #eeeeee);display:table-cell;border-right:none;border-radius:0;color:#433f33}.wptb-button-alignment-switcher:first-child{border-radius:4px 0 0 4px}.wptb-button-alignment-switcher:last-child{border-radius:0 4px 4px 0;border-right:solid 1px #ccc}.wptb-button-alignment-switcher:hover{background:#fff}.wptb-button-alignment-switcher:active{box-shadow:inset 0px 0px 8px 0px rgba(0,0,0,.1)}.wptb-button-alignment-switcher.selected{background:#fff;box-shadow:inset 0px 0px 20px 4px rgba(0,0,0,.15);cursor:default}.wptb-image-alignment-btn{padding:8px 15px 3px 15px;margin:0;vertical-align:middle;border:solid 1px #ccc;font-size:12px;border-radius:4px;cursor:pointer}.wptb-image-alignment-switcher{background:linear-gradient(to bottom, white, #eeeeee);display:table-cell;border-right:none;border-radius:0;color:#433f33}.wptb-image-alignment-switcher:first-child{border-radius:4px 0 0 4px}.wptb-image-alignment-switcher:last-child{border-radius:0 4px 4px 0;border-right:solid 1px #ccc}.wptb-image-alignment-switcher:hover{background:#fff}.wptb-image-alignment-switcher:active{box-shadow:inset 0px 0px 8px 0px rgba(0,0,0,.1)}.wptb-image-alignment-switcher.selected{background:#fff;box-shadow:inset 0px 0px 20px 4px rgba(0,0,0,.15);cursor:default}.wptb-justify-content-left{justify-content:left}.wptb-justify-content-center{justify-content:center}.wptb-justify-content-right{justify-content:right}.wptb-float-left{float:left}.wptb-float-center{float:none}.wptb-float-right{float:right}.wptb-text-align-left{text-align:left}.wptb-text-align-center{text-align:center}.wptb-text-align-right{text-align:right}.wptb-menu-page-wrapper{display:flex;justify-content:center;align-items:center;width:100%;height:90vh;color:#4a5568;line-height:normal}.wptb-settings-wrapper{background-color:#fff;min-width:90%;max-width:90%;height:90%;display:grid;grid-template-columns:1fr;grid-template-rows:minmax(-webkit-min-content, -webkit-max-content) minmax(-webkit-min-content, -webkit-max-content) 1fr minmax(-webkit-min-content, -webkit-max-content);grid-template-rows:minmax(min-content, max-content) minmax(min-content, max-content) 1fr minmax(min-content, max-content);border-radius:5px;overflow:hidden;box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.wptb-settings-wrapper .import-export{grid-template-rows:minmax(-webkit-min-content, -webkit-max-content) minmax(-webkit-min-content, -webkit-max-content) minmax(-webkit-min-content, -webkit-max-content) 1fr minmax(-webkit-min-content, -webkit-max-content);grid-template-rows:minmax(min-content, max-content) minmax(min-content, max-content) minmax(min-content, max-content) 1fr minmax(min-content, max-content)}.wptb-settings-header{display:flex;justify-content:space-between;align-items:center;background-color:var(--wptb-plugin-logo-color);padding:10px}.wptb-settings-header *{color:#fff}.wptb-settings-header a{text-decoration:none;font-size:1rem;margin:0 10px;text-transform:capitalize}.wptb-settings-header a:hover{color:#cbd5e0}.wptb-settings-brand{font-size:2.5rem;display:flex;align-items:center;cursor:default}.wptb-settings-header-name{margin-left:1rem}.wptb-settings-sections-wrapper{position:relative;display:flex;flex-direction:row;background-color:#fff;border-bottom:1px solid #cbd5e0}.wptb-plugins-m-b-40{margin-bottom:40px}.wptb-settings-checkbox-row{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;margin:5px 0;width:100%}.wptb-settings-dropdown-row{margin:10px 0}.wptb-settings-sections-wrapper.child{display:flex;flex-direction:row;justify-content:center}.wptb-settings-section-item{text-transform:uppercase;font-size:1rem;padding:20px;margin:0 10px;cursor:pointer;transition:background-color .5s ease-out}.wptb-settings-section-item.static-active{border-bottom:3px solid transparent}.wptb-settings-section-item.static-active.active{border-bottom:3px solid var(--wptb-plugin-logo-color) !important;background-color:var(--wptb-plugin-gray-100)}.child .wptb-settings-section-item{font-size:.8rem;padding:10px}.wptb-settings-section-item:hover{background-color:#edf2f7}.wptb-settings-section-item.disabled{color:#cbd5e0 !important}.wptb-panel-tabs .wptb-settings-section-item.disabled{color:inherit !important}.wptb-menu-active-section-indicator{position:absolute;border-bottom:2px solid var(--wptb-plugin-logo-color);transition:all .3s ease-out}.wptb-settings-controls-wrapper{padding:20px 40px;overflow:auto}.wptb-settings-controls-wrapper.grid{display:grid;grid-gap:10px;grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));grid-auto-rows:minmax(-webkit-min-content, -webkit-max-content);grid-auto-rows:minmax(min-content, max-content);grid-auto-flow:row}.wptb-settings-controls-wrapper.center{display:flex;justify-content:center;align-items:flex-start}.wptb-setting-control{padding:20px;transition:all .2s ease-out;border:1px solid transparent}.wptb-setting-control:hover{border:1px solid #cbd5e0;box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05);transform:translateY(-5px)}.wptb-setting-control .title{font-weight:bold;font-size:1rem;text-transform:capitalize;margin-bottom:30px;border-bottom:1px solid #cbd5e0;padding:10px 0}.wptb-menu-export-control-title{font-weight:bold;font-size:1rem;text-transform:capitalize;padding:10px 0;width:100%;border-bottom:1px solid #cbd5e0}.wptb-export-list-table-search{padding:10px 0;border-bottom:1px solid #cbd5e0}.wptb-setting-control-row{display:flex;align-items:center;margin:20px 0}.wptb-setting-control-row label{text-transform:capitalize}.wptb-setting-control-row input{margin-right:20px}.wptb-setting-control-row select{margin-right:20px}.wptb-settings-footer{background-color:#fff;display:flex;justify-content:space-between;width:100%;border-top:1px solid #cbd5e0;padding:20px 0}.wptb-settings-messages{margin:0 20px;display:flex;align-items:center}.wptb-settings-message{font-style:italic;font-weight:bold;text-transform:uppercase}.wptb-settings-message.ok{color:#3299d1}.wptb-settings-message.error{color:#e53e3e}.wptb-settings-fetching{animation:wptb-settings-rotate 1s linear infinite reverse}.wptb-settings-button-container{display:flex;justify-content:center;align-items:center}.wptb-settings-button{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;margin:0 20px;color:#fff;font-size:1rem;padding:10px 20px;border-radius:5px;text-transform:uppercase;cursor:pointer;transition:all .2s ease-out}.wptb-settings-button:hover{color:#cbd5e0}.wptb-settings-button.primary{background-color:#3299d1}.wptb-settings-button.danger{background-color:#e53e3e}.wptb-settings-button.disabled{background-color:#cbd5e0 !important}.wptb-settings-button.small{font-size:inherit}.wptb-settings-button.disabled:hover{color:#fff !important;cursor:not-allowed}.wptb-fade-enter-active,.wptb-fade-leave-active{transition:opacity .2s ease-out}.wptb-fade-enter,.wptb-fade-leave-to{opacity:0}.wptb-menu-file-drop{border:2px dashed #cbd5e0;width:500px;height:200px;margin:20px 0;display:flex;flex-direction:column;justify-content:center;align-items:center;text-transform:capitalize;transition:all .2s ease-out;border-radius:5px}.wptb-menu-file-drop.dragenter{background-color:#edf2f7}.wptb-menu-file-drop div{margin:10px 0}.wptb-menu-file-drop .hint{font-style:italic;color:#cbd5e0;font-size:1.3rem}.wptb-menu-file-drop .supported{font-style:italic;color:#cbd5e0;font-size:1rem}.wptb-menu-file-drop .file{text-transform:none;font-size:1.3rem;color:inherit}.wptb-menu-file-drop a{text-decoration:underline;cursor:pointer}.wptb-menu-file-drop .file-icon{color:#cbd5e0;transform:scale(4)}.wptb-flex{display:flex}.wptb-flex-col{flex-direction:column}.wptb-flex-row{flex-direction:row}.wptb-flex-align-center{align-items:center}.wptb-flex-justify-center{justify-content:center}.wptb-flex-justify-space-between{justify-content:space-between}.wptb-import-tables-wrapper{margin-top:50px;margin-bottom:30px;display:flex;justify-content:center}.wptb-import-table{text-align:center;border-collapse:collapse}.wptb-import-table th{padding:15px 10px}.wptb-import-table th{border-bottom:1px solid #cbd5e0}.wptb-import-table tbody tr:hover{background-color:#edf2f7}.wptb-menu-overflow-auto{overflow:auto}.wptb-text-transform-cap{text-transform:capitalize !important}.wptb-text-transform-none{text-transform:none !important}.wptb-import-table-count-info{margin-bottom:20px;font-weight:bold;font-style:italic}.wptb-menu-export-wrapper{display:grid;grid-auto-flow:column;grid-template-columns:1fr auto 1fr;grid-template-rows:.9fr;justify-content:center;align-content:center;grid-gap:30px;width:90%;height:100%}.wptb-menu-export-card{display:grid;grid-auto-flow:row;grid-template-rows:auto auto 1fr;grid-template-columns:1fr;position:relative;border:1px solid #cbd5e0;padding:10px;overflow:auto}.wptb-menu-export-controls-wrapper{padding:10px 0;overflow-y:auto;display:grid;grid-auto-flow:row}.wptb-menu-empty-cover{position:absolute;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;font-style:italic;font-size:1.2rem;color:#cbd5e0}.wptb-menu-export-middle-section{display:flex;flex-direction:column;justify-content:space-around;align-items:center}.wptb-menu-export-middle-section .arrow-holder{max-width:100px;width:50%;cursor:pointer}.wptb-menu-export-middle-section img{max-width:100px;cursor:pointer;transition:transform .1s ease-out}.wptb-menu-export-middle-section img:hover{transform:scale(1.2)}.wptb-menu-export-middle-section img:active{transform:scale(1)}.wptb-menu-export-middle-section .flip{transform:rotateZ(180deg)}.wptb-menu-popup-wrapper{display:flex;position:relative;justify-content:center;align-items:center;margin:0 10px;border:1px solid #cbd5e0;width:20px;height:20px;border-radius:50%;cursor:pointer;transition:all .2s ease-out}.wptb-menu-popup-wrapper:hover{background-color:#cbd5e0}.wptb-menu-popup-message{display:block;position:fixed;color:#fff;min-width:100px;max-width:200px;transition:opacity .2s ease-out;opacity:0;text-align:start;z-index:999;pointer-events:none}.wptb-menu-popup-wrapper:hover+.wptb-menu-popup-message{opacity:1}.wptb-menu-popup-inner-holder{position:relative;background-color:#4a5568;padding:10px}.wptb-menu-popup-arrow{position:absolute;background-color:inherit;width:10px;height:10px;bottom:-5px;left:calc(50% - 5px);transform:rotateZ(45deg)}.wptb-menu-list-table{border-collapse:collapse;width:100%}.wptb-menu-list-table td{padding:15px 10px}.wptb-menu-list-table thead{border-bottom:1px solid #cbd5e0;text-align:start}.wptb-menu-list-table thead td{font-weight:bold;transition:all .2s ease-out;cursor:pointer;text-transform:capitalize}.wptb-menu-list-table thead td:first-child{pointer-events:none}.wptb-menu-list-table thead td:first-child input{visibility:collapse}.wptb-menu-list-table thead td:hover{background-color:#edf2f7}.wptb-menu-list-table tbody td .title-label{word-break:break-all}.wptb-menu-list-table tbody tr:nth-child(even){background-color:#edf2f7}.wptb-plugin-box-shadow-md{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.wptb-plugin-filter-box-shadow-md{filter:drop-shadow(4px 6px 2px rgba(0, 0, 0, 0.1))}.wptb-plugin-filter-box-shadow-md-close{filter:drop-shadow(4px 1px 2px rgba(0, 0, 0, 0.1))}.wptb-plugin-filter-box-shadow-md-around{filter:drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.3))}.wptb-plugin-box-shadow-up-md{box-shadow:0 -5px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.wptb-plugin-box-shadow-xl{box-shadow:0 4px 6px -1px rgba(0,0,0,.3),0 2px 4px -1px rgba(0,0,0,.3) !important}.wptb-plugin-inset-shadow-md{box-shadow:inset 0 4px 6px -1px rgba(0,0,0,.2),0 2px 4px -1px rgba(0,0,0,.2)}.wptb-plugin-margin-no{margin:0 !important}@-webkit-keyframes wptb-settings-rotate{0%{transform:rotateZ(0deg)}100%{transform:rotateZ(360deg)}}@keyframes wptb-settings-rotate{0%{transform:rotateZ(0deg)}100%{transform:rotateZ(360deg)}}@-webkit-keyframes wptb-basic-appear{0%{opacity:0}100%{opacity:1}}@keyframes wptb-basic-appear{0%{opacity:0}100%{opacity:1}}.wptb-settings-space-between{display:flex;flex-direction:row;width:100%;justify-content:space-between;align-items:center}.wptb-icon-select-wrapper{align-items:center;height:100%}.wptb-icon-select-wrapper[disabled] .wptb-icon-select-preview{opacity:.2;cursor:default}.wptb-icon-select-display{width:50px;height:50px;background-color:var(--wptb-plugin-theme-color-light);border:1px solid var(--wptb-plugin-gray-400);border-radius:5px;position:relative}.wptb-icon-select-preview{width:100%;height:100%;justify-content:center;align-items:center;padding:5px;cursor:pointer;position:relative}.wptb-icon-select-preview img[src=""]{display:none}.wptb-icon-select-preview img{width:100%;height:100%}.wptb-icon-select-drawer{position:fixed;display:grid;grid-template-columns:1fr;grid-template-rows:auto 1fr;grid-auto-flow:row;grid-gap:15px;background-color:var(--wptb-plugin-theme-color-light);border:1px solid var(--wptb-plugin-gray-400);border-radius:5px;padding:10px;width:200px;max-height:200px;overflow-y:hidden;z-index:110000}.wptb-icon-search-wrapper{width:100%}.wptb-icon-search-wrapper input{width:100%}.wptb-icon-previews{position:relative;width:100%;display:grid;grid-template-columns:repeat(4, 1fr);grid-auto-flow:row;grid-gap:10px;justify-content:center;align-items:center;overflow-y:scroll}.wptb-icon-select-drawer-preview{display:flex;justify-content:center;align-items:center}.wptb-icon-select-drawer-preview img{width:25px;height:25px;transition:transform .2s ease-out;cursor:pointer}.wptb-icon-select-drawer-preview img:hover{transform:scale(1.2)}.wptb-icon-preview-active{border:2px solid var(--wptb-plugin-logo-color)}.wptb-icon-reset{border:1px solid var(--wptb-plugin-theme-sidebar-bg);width:100%;height:100%;border-radius:5px;cursor:pointer}.wptb-html-control-wrapper{display:flex;flex-direction:column;justify-content:center;align-items:center}.wptb-help-support-section-wrapper{display:flex;flex-direction:column;justify-content:center;align-items:center;padding:20px 0}.wptb-help-support-section-wrapper div{margin:5px 0}.wptb-builder-responsive{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#fff;z-index:400000;margin:auto;padding:40px 10px}.wptb-builder-responsive[data-wptb-responsive-status=true] .wptb-responsive-builder-main{overflow-x:hidden !important}.wptb-responsive-menu-tools{margin:auto auto 60px auto;max-width:700px}.wptb-screen-size-slider-wrapper{display:grid;grid-template-columns:1fr;grid-template-areas:"content";justify-content:center;align-items:center;margin-bottom:80px}.wptb-screen-size-slider-empty{width:100%;position:relative;height:5px;border-radius:3px;background-color:#fff;border:1px solid var(--wptb-plugin-gray-400);grid-area:content}.wptb-screen-size-slider-fill{height:100%;position:absolute;left:0;border-radius:3px;background-color:var(--wptb-plugin-logo-color);border:1px solid transparent;transition:all .1s linear}.wptb-drag-active .wptb-screen-size-slider-fill{transition:none !important}.wptb-screen-size-slider-arrow{position:absolute;top:-30px;cursor:-webkit-grab;cursor:grab;transition:all .1s linear}.wptb-drag-active .wptb-screen-size-slider-arrow{transition:none !important}.wptb-screen-size-slider-arrow:active{cursor:-webkit-grabbing;cursor:grabbing}.wptb-size-slider-stops-wrapper{z-index:900000;position:absolute;top:-10px}.wptb-slider-stop{position:absolute;display:flex;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;flex-direction:column;justify-content:center;align-items:center;cursor:pointer}.wptb-slider-stop-knob{width:20px;height:20px;background-color:#fff;border:2px solid var(--wptb-plugin-logo-color);border-radius:50%;margin-bottom:5px;transition:all .2s ease-out;display:flex;justify-content:center;align-items:center}.wptb-slider-stop-label{text-transform:capitalize;font-size:90%;color:var(--wptb-plugin-gray-400)}.wptb-slider-stop-knob[data-wptb-knob-disabled=true]{background-color:var(--wptb-plugin-theme-color-light) !important;border:2px solid var(--wptb-plugin-red-300) !important}.wptb-slider-stop-knob[data-wptb-knob-disabled=true] svg{fill:var(--wptb-plugin-red-600)}.wptb-slider-stop-active .wptb-slider-stop-knob{background-color:var(--wptb-plugin-logo-color);color:inherit !important}.wptb-slider-stop-active .wptb-slider-stop-label{color:inherit !important}.wptb-size-input-wrapper{display:flex;justify-content:center;align-items:center;font-size:90%}.wptb-size-input-wrapper *{margin:0 10px;font-size:inherit !important;font-variant-numeric:tabular-nums}.wptb-size-input{width:9ch;border:1px solid var(--wptb-plugin-gray-400) !important;background-color:var(--wptb-plugin-gray-100) !important;text-align:center;color:var(--wptb-plugin-theme-text-color-main) !important}.wptb-responsive-builder-main{margin-bottom:20px;padding:0 20px;position:relative;overflow:auto}.wptb-responsive-toolbox-wrapper{display:grid;align-items:center;border:1px solid var(--wptb-plugin-gray-300);border-radius:3px;grid-area:toolbox}.wptb-responsive-toolbox-top-static{display:grid;grid-template-columns:repeat(2, 1fr);grid-auto-rows:1fr;align-items:center;grid-gap:10px}.wptb-responsive-toolbox-dynamic-wrapper{display:grid;grid-template-columns:1fr;grid-gap:10px;grid-auto-rows:auto}.wptb-responsive-toolbox-wrapper>div{padding:10px;border-bottom:1px solid var(--wptb-plugin-gray-300)}.wptb-responsive-toolbox-row div:nth-child(even){justify-self:end}.wptb-responsive-toolbox-wrapper>div:last-child{border-bottom:none !important}.wptb-responsive-toolbox-dynamic-controls-holder{display:grid;grid-template-columns:repeat(2, 1fr);grid-gap:5px}.wptb-responsive-toolbox-dynamic-controls-holder>div:nth-child(even){justify-self:end}.wptb-responsive-size-range-name{justify-self:center;font-weight:bold}.wptb-responsive-clone-wrapper{width:100%;height:100%;grid-area:main;padding:20px 0;justify-self:center;border:1px solid var(--wptb-plugin-gray-300);border-top:none !important;display:flex;justify-content:center;align-items:center}.wptb-responsive-clone-inner-wrapper{display:flex;justify-content:center;width:100%}.wptb-checkerboard-pattern{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyIDIiPgogICAgPHJlY3Qgd2lkdGg9IjEiIGhlaWdodD0iMSIgeD0iMCIgeT0iMCIgZmlsbD0icmdiKDIwMywyMTMsMjI0KSIvPgogICAgPHJlY3Qgd2lkdGg9IjEiIGhlaWdodD0iMSIgeD0iMSIgeT0iMCIgZmlsbD0icmdiKDIzNywyNDIsMjQ3KSIvPgogICAgPHJlY3Qgd2lkdGg9IjEiIGhlaWdodD0iMSIgeD0iMSIgeT0iMSIgZmlsbD0icmdiKDIwMywyMTMsMjI0KSIvPgogICAgPHJlY3Qgd2lkdGg9IjEiIGhlaWdodD0iMSIgeD0iMCIgeT0iMSIgZmlsbD0icmdiKDIzNywyNDIsMjQ3KSIvPgo8L3N2Zz4=");background-repeat:repeat;background-size:20px}.wptb-responsive-disabled-table-overlay{position:absolute;left:0;top:0;width:100%;height:100%;background-image:repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(1, 1, 1, 0.2) 15px, rgba(1, 1, 1, 0.2) 30px);z-index:10}.wptb-responsive-wait-overlay{position:absolute;top:0;left:0;width:100%;height:100%;z-index:10;display:flex;justify-content:center;align-items:center;background-color:rgba(0,0,0,.4);color:#fff;text-transform:uppercase;font-weight:bold}.wptb-responsive-wait-overlay:after{content:"";-webkit-animation:wptb-text-dots 2s infinite;animation:wptb-text-dots 2s infinite}@-webkit-keyframes wptb-text-dots{0%{content:""}33%{content:"."}66%{content:".."}100%{content:"..."}}@keyframes wptb-text-dots{0%{content:""}33%{content:"."}66%{content:".."}100%{content:"..."}}.wptb-controls-flex-row{display:flex;align-items:center;flex-direction:row}.wptb-controls-flex-row label{margin:0 5px}.wptb-responsive-builder-main input[type=checkbox]{margin-top:0 !important}.wptb-responsive-cell-identifier{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center;font-size:4rem;text-shadow:3px 3px 1px var(--wptb-plugin-gray-300);opacity:0;transition:opacity .5s ease-out;z-index:100}.wptb-responsive-show-cell-identifier .wptb-responsive-cell-identifier{opacity:1 !important}.wptb-plugin-modal-window{position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.5);z-index:600000;display:flex;justify-content:center;align-items:center;box-sizing:border-box;text-align:center}.wptb-plugin-modal-window[data-is-fixed=true]{position:fixed}.wptb-plugin-modal-window *{box-sizing:border-box}.wptb-plugin-modal-inner-window{max-width:400px;background-color:#fff;border-radius:3px;display:grid;grid-template-columns:1fr;grid-template-areas:"modalHeader" "modalContent";overflow:hidden}.wptb-plugin-modal-header{grid-area:modalHeader;display:grid;justify-content:center;grid-template-columns:1fr;align-items:center;border-bottom:1px solid #cbd5e0}.wptb-plugin-modal-header .wptb-plugin-modal-header-title{font-weight:bold;grid-row:1;grid-column:1}.wptb-plugin-modal-header .wptb-plugin-modal-header-close{display:flex;justify-content:flex-end;align-items:center;grid-row:1;grid-column:1}.wptb-plugin-modal-header .wptb-plugin-modal-header-close .wptb-plugin-modal-close-wrapper{padding:10px 15px;font-weight:bold;border-left:1px solid #cbd5e0;color:#cbd5e0;cursor:pointer;font-size:120%}.wptb-plugin-modal-header .wptb-plugin-modal-header-close .wptb-plugin-modal-close-wrapper:hover{color:#fff;background-color:#cbd5e0}.wptb-plugin-modal-content-container{grid-area:modalContent;padding:20px;display:grid;grid-template-areas:"modalIcon message" "slotContainer slotContainer" "buttonContainer buttonContainer";grid-gap:20px}.wptb-embed-button-success{background-color:#48bb78 !important}.wptb-plugin-modal-slot-container{grid-area:slotContainer}.wptb-plugin-modal-icon{grid-area:modalIcon;width:50px;height:100%;display:flex;justify-content:center;align-items:center;pointer-events:none;color:#3299d1}.wptb-plugin-modal-message{grid-area:message}.wptb-plugin-modal-button-container{margin:5px 0 0 0;justify-self:center;grid-area:buttonContainer;width:100%}.wptb-plugin-button-material{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;padding:5px;border-radius:3px;background-color:var(--wptb-plugin-logo-color);color:#fff;cursor:pointer;transition:all .05s ease-out}.wptb-plugin-button-material:active{transform:scale(0.95)}.wptb-plugin-button-material[disabled]{background-color:var(--wptb-plugin-gray-400) !important;cursor:not-allowed}.wptb-plugin-button-material[disabled]:active{transform:none}.wptb-plugin-button-material-fit-content{width:-webkit-fit-content !important;width:-moz-fit-content !important;width:fit-content !important}.wptb-plugin-button-material-full-size{width:100%}.wptb-plugin-responsive-base{min-width:auto !important;width:100% !important}.wptb-responsive-toolbox-wrapper .wptb-menu-popup-wrapper{margin-right:0 !important}.wptb-responsive-breakpoint-edit-wrapper{display:grid;grid-template-columns:repeat(2, 1fr);grid-auto-flow:row;align-items:center}.wptb-toggle input:disabled+i{background:var(--wptb-plugin-gray-400)}.wptb-control-row{width:95%}label.wptb-control-row{text-transform:capitalize}.wptb-builder-content{position:relative;height:100%;overflow:auto}#wptb_builder[data-wptb-active-section=table_responsive_menu] .wptb-builder-content{overflow-x:hidden !important}.wptb-responsive-builder-toolbox-float{grid-area:toolbox;padding:10px 0;display:flex;justify-content:space-between}.wptb-responsive-builder-toolbox-left-float{display:flex;justify-content:flex-start;align-items:center}.wptb-number-postfix-buttons-wrapper{margin-left:10px;display:flex !important;height:100%}.wptb-number-postfix-button{display:flex;justify-content:center;align-items:center;width:30px;border:1px solid var(--wptb-plugin-gray-400) !important;background-color:var(--wptb-plugin-gray-100) !important;border-radius:5px;cursor:pointer;font-weight:bold;color:var(--wptb-plugin-theme-text-color-main) !important;font-size:110%}.wptb-number-postfix-button:active{-webkit-animation:wptb-push .2s ease-out;animation:wptb-push .2s ease-out}.wptb-panel-toggle-section{grid-area:sidebar-footer;display:flex;flex-direction:row;justify-content:flex-end;align-items:center;padding:20px 10px;background-color:var(--wptb-plugin-logo-color);color:#fff}.wptb-left-panel[data-wptb-panel-location=right] .wptb-panel-toggle-section{justify-content:flex-start !important}.wptb-panel-toggle-section .wptb-panel-drawer-icon{cursor:pointer;transform:scale(2)}.wptb-left-panel[data-wptb-panel-location=right] .wptb-panel-toggle-section .wptb-panel-drawer-icon{transform:scale(2) rotateZ(180deg)}.collapsed .wptb-panel-toggle-section{opacity:1 !important}.wptb-cell-related-drop-handle{position:fixed;display:none;background-color:#e2e8f0c7;z-index:300000;pointer-events:none;transition:all .2s ease-out;-webkit-animation:wptb-basic-appear .2s ease-out;animation:wptb-basic-appear .2s ease-out;align-items:center;justify-content:center;font-size:1.5rem;font-weight:bold;text-transform:uppercase;color:#4a5568}.wptb-control-media-select-button{width:100px;height:50px;border:1px solid var(--wptb-plugin-gray-400);background-position:center center;background-size:contain;background-repeat:no-repeat;cursor:pointer}.wptb-control-media-button-wrapper{position:relative}.wptb-control-media-clear-button{position:absolute;width:20px;height:20px;top:-5px;right:-10px;color:red;cursor:pointer}.wptb-control-media-clear-button span{transform:scale(1.8)}.wptb-controls-ul-row{display:flex}.wptb-button-svg-center{display:flex !important;justify-content:center;align-items:center}.wptb-sides-link-icon-wrapper{width:16px;height:16px;cursor:pointer;transition:transform .1s ease-out;filter:opacity(0.7)}.wptb-sides-link-icon-wrapper:active{transform:scale(0.9)}.wptb-sides-controls-wrapper{display:grid;grid-template-columns:repeat(5, 1fr)}.wptb-side-control-header{color:var(--wptb-plugin-gray-500);text-align:center;margin:5px 0}.wptb-side-control-main-input{width:100%;height:30px !important;border:1.5px solid var(--wptb-plugin-gray-400) !important;border-radius:0 !important;text-align:center}.wptb-side-control-number-input{transition:all .3s ease-out;margin-left:5px}.wptb-side-values-linked .wptb-side-control-number-input{margin-left:0}.wptb-side-control-main-input:active,.wptb-side-control-main-input:focus{outline:none !important;box-shadow:none !important}.wptb-side-control-input-wrapper:first-of-type .wptb-side-control-main-input{border-left-width:3px !important;border-radius:5px 0 0 5px !important}.wptb-side-control-input-wrapper:last-of-type .wptb-side-control-main-input{border-right-width:3px !important;border-radius:0 5px 5px 0 !important}.wptb-side-control-dropdown-wrapper{align-self:end}.wptb-side-control-dropdown{background-color:var(--wptb-plugin-gray-400) !important}.wptb-named-toggle-control-wrapper{position:relative;min-height:30px;display:grid;grid-template-columns:1fr;grid-auto-columns:1fr;grid-auto-flow:column;justify-content:center;align-items:center;border:1px solid var(--wptb-plugin-gray-400);border-radius:5px;background-color:var(--wptb-plugin-white);overflow:hidden}.wptb-named-toggle-item{display:flex;justify-content:center;align-items:center;text-wrap:avoid;padding:10px;z-index:10;cursor:pointer;color:var(--wptb-plugin-gray-400);font-weight:bold;font-size:90% !important}.wptb-named-toggle-item[data-wptb-named-toggle-active=true]{color:var(--wptb-plugin-white)}.wptb-named-toggle-active-indicator{position:absolute;height:100%;background-color:var(--wptb-plugin-logo-color);z-index:9;transition:left .2s ease-out}.wptb-cell[data-wptb-cell-vertical-alignment=top]{vertical-align:baseline}.wptb-cell[data-wptb-cell-vertical-alignment=center]{vertical-align:middle}.wptb-cell[data-wptb-cell-vertical-alignment=bottom]{vertical-align:bottom}.wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical]::after,.wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal]::after,.wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical]::after,.wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal]::after{position:absolute;top:0;bottom:0;z-index:101;display:grid;font-family:dashicons;font-size:35px;align-content:center;text-align:center}.wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical=ask]::after,.wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical=ask]::after{content:"";right:0}.wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical=desk].sortable-hover::after,.wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical=desk].sortable-hover::after{content:"";cursor:pointer;opacity:.7}.wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical=desk]::after,.wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical=desk]::after{content:"";right:0}.wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical=ask].sortable-hover::after,.wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical=ask].sortable-hover::after{content:"";cursor:pointer;opacity:.7}.wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal=ask]::after,.wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal=ask]::after{content:"";left:0}.wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal=desk].sortable-hover::after,.wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal=desk].sortable-hover::after{content:"";cursor:pointer;opacity:.7}.wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal=desk]::after,.wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal=desk]::after{content:"";left:0}.wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal=ask].sortable-hover::after,.wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal=ask].sortable-hover::after{content:"";cursor:pointer;opacity:.7}.wptb-generate-wrapper{margin:0 50px 0 50px;display:flex;flex-direction:column;justify-content:center;align-items:center;color:inherit}.wptb-generate-menu{display:grid;grid-template-columns:1fr;grid-template-areas:"header" "listing"}.wptb-generate-menu-header{grid-area:header;padding:30px;border-bottom:1px solid var(--wptb-plugin-gray-300)}.wptb-generate-menu-listing{grid-area:listing;padding:30px;display:flex;justify-content:center;align-items:center;flex-wrap:wrap}.wptb-generate-search{border:1px solid var(--wptb-plugin-gray-300) !important;text-align:center;font-size:90%;color:inherit}.wptb-generate-search:active,.wptb-generate-search:focus{border:1px solid var(--wptb-plugin-gray-400) !important;inset:0 !important;box-shadow:none !important}.wptb-prebuilt-card{width:200px;max-width:200px;display:grid;grid-template-columns:1fr;grid-template-rows:125px auto;grid-template-areas:"main" "footer";border-radius:5px;transition:all .4s ease-out;background-color:var(--wptb-plugin-theme-color-light);cursor:pointer;margin:calc(var(--wptb-prebuilt-card-control-size) + 10px)}.wptb-prebuilt-card-active{cursor:default;-webkit-animation:wptb-pop .2s ease-out;animation:wptb-pop .2s ease-out}@-webkit-keyframes wptb-pop{0%{transform:scale(1)}50%{transform:scale(1.05)}0%{transform:scale(1)}}@keyframes wptb-pop{0%{transform:scale(1)}50%{transform:scale(1.05)}0%{transform:scale(1)}}@-webkit-keyframes wptb-more-pop{0%{transform:scale(1)}50%{transform:scale(1.5)}0%{transform:scale(1)}}@keyframes wptb-more-pop{0%{transform:scale(1)}50%{transform:scale(1.5)}0%{transform:scale(1)}}.wptb-prebuilt-card:hover{box-shadow:3px 3px 2px .5px rgba(0,0,0,.2)}.wptb-prebuilt-card-preview{position:relative;grid-area:main;border:var(--wptb-prebuilt-card-border-size) solid var(--wptb-plugin-gray-400);border-bottom:1px solid var(--wptb-plugin-gray-400) !important;background-color:var(--wptb-plugin-gray-300);display:grid;grid-template-columns:1fr;grid-template-rows:1fr;grid-template-areas:"preview";justify-content:center;align-items:center;border-radius:5px 5px 0 0}.wptb-prebuilt-card .wptb-settings-fetching{grid-area:main;width:100%;height:100%;z-index:100;display:flex;justify-content:center;align-items:center;color:var(--wptb-plugin-gray-500)}.wptb-prebuilt-card-preview table{transition:opacity .2s ease-out}.wptb-team-prebuilt{border:var(--wptb-prebuilt-card-border-size) solid var(--wptb-plugin-logo-color) !important}.wptb-prebuilt-card-controls{grid-area:preview;position:relative;width:100%;height:100%;display:flex;justify-content:center;align-items:center;pointer-events:none}.wptb-prebuilt-live-display{width:100%;height:100%;grid-area:preview;padding:15px}.wptb-prebuilt-live-table{width:100%;height:100%;background-color:var(--wptb-plugin-theme-color-light);border-radius:5px;border:1px solid var(--wptb-plugin-gray-400);display:grid}.wptb-prebuilt-live-cell{width:100%;height:100%;border:.5px solid var(--wptb-plugin-gray-400);cursor:pointer;display:flex;justify-content:center;align-items:center;position:relative;overflow:visible;z-index:10}.wptb-prebuilt-live-cell-hover{opacity:.7;background-color:var(--wptb-plugin-logo-color)}.wptb-prebuilt-live-cell:hover .wptb-prebuilt-live-control{opacity:unset;pointer-events:all}.wptb-prebuilt-live-control-hide .wptb-prebuilt-live-control{display:none}.wptb-prebuilt-live-control-active{background-color:var(--wptb-plugin-logo-color)}.wptb-prebuilt-live-control{position:absolute;opacity:0;pointer-events:none;transition:all .1s ease-out;font-size:120%}.wptb-prebuilt-live-control:active{-webkit-animation:wptb-push .2s ease-out;animation:wptb-push .2s ease-out}.wptb-prebuilt-added-cell{background-color:#40e0d0;cursor:default;z-index:1 !important}.wptb-prebuilt-control{position:absolute;display:flex;justify-content:center;align-items:center;pointer-events:all}.wptb-prebuilt-control[data-orientation=row]{top:0;transform:translateY(calc(-100% - var(--wptb-prebuilt-card-border-size)));display:flex;justify-content:center;align-items:center}.wptb-prebuilt-control[data-orientation=col]{left:0;transform:translateX(calc(-100% - var(--wptb-prebuilt-card-border-size)));display:flex;flex-wrap:wrap;flex-direction:column-reverse;width:var(--wptb-prebuilt-card-control-size);justify-content:center;align-items:center}.wptb-prebuilt-control-input{text-align:center;width:var(--wptb-prebuilt-card-control-size);height:var(--wptb-prebuilt-card-control-size);border:1px solid var(--wptb-plugin-gray-300) !important;color:inherit !important;border-radius:0 !important;margin:0 !important}.wptb-prebuilt-control-input:active,.wptb-prebuilt-control-input:focus{border:1px solid var(--wptb-plugin-gray-400) !important;inset:0 !important;box-shadow:none !important}.wptb-prebuilt-control-input:disabled{color:var(--wptb-plugin-gray-300) !important}.wptb-prebuilt-control-increment-box{width:var(--wptb-prebuilt-card-control-size);height:var(--wptb-prebuilt-card-control-size);background-color:var(--wptb-plugin-gray-300);display:flex;justify-content:center;align-items:center;font-size:150%;cursor:pointer}.wptb-prebuilt-control-increment-box:hover{background-color:var(--wptb-plugin-gray-400)}.wptb-prebuilt-control-increment-box[disabled]{background-color:var(--wptb-plugin-gray-200) !important;color:var(--wptb-plugin-gray-400) !important;cursor:default}.wptb-prebuilt-card-footer{grid-area:footer;display:flex;justify-content:center;align-items:center}.wptb-prebuilt-card-footer-element{padding:15px;border:var(--wptb-prebuilt-card-border-size) solid var(--wptb-plugin-gray-400);border-top:0 !important;width:100%;height:100%;border-radius:0 0 5px 5px}.wptb-prebuilt-card-footer-button-holder{padding:0 !important;display:grid;grid-template-columns:repeat(2, 1fr);grid-gap:1px;background-color:var(--wptb-plugin-gray-500)}.wptb-prebuilt-card-footer-button-holder-single{grid-template-columns:1fr !important}.wptb-prebuilt-blank{font-size:400%;color:var(--wptb-plugin-gray-500);margin:0 !important}.wptb-prebuilt-footer-button{width:100%;height:100%;cursor:pointer;transition:color .2s ease-out;font-weight:bold;padding:15px;color:var(--wptb-plugin-gray-400)}.wptb-prebuilt-footer-generate{background-color:var(--wptb-plugin-logo-color)}.wptb-prebuilt-footer-edit{background-color:var(--wptb-plugin-green-500)}.wptb-prebuilt-footer-button:first-of-type{border-radius:0 0 0 5px}.wptb-prebuilt-footer-button:last-of-type{border-radius:0 0 5px 0}.wptb-prebuilt-footer-button:only-of-type{border-radius:0 0 5px 5px}.wptb-prebuilt-footer-button:hover{color:var(--wptb-plugin-theme-color-light)}.wptb-unselectable{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.wptb-no-pointer-events{pointer-events:none}.wptb-plugin-basic-disappear{-webkit-animation:wptb-basic-disappear .1s ease-out;animation:wptb-basic-disappear .1s ease-out}@-webkit-keyframes wptb-basic-disappear{0%{opacity:1}100%{opacity:0}}@keyframes wptb-basic-disappear{0%{opacity:1}100%{opacity:0}}.wptb-prebuilt-ad{margin:50px;color:var(--wptb-plugin-gray-500)}.wptb-prebuilt-ad-link{font-size:120%;color:var(--wptb-plugin-logo-color) !important;font-weight:bold}.wptb-prebuilt-table-wrapper{width:100%;overflow:hidden !important;display:flex;justify-content:center;align-items:center;padding:20px;animation:wptb-basic-disappear .2s ease-out alternate-reverse;pointer-events:none}.wptb-prebuilt-card-search-indicator-main{color:var(--wptb-plugin-gray-500)}.wptb-prebuilt-card-search-indicator{color:var(--wptb-plugin-logo-color) !important;font-weight:bold}.wptb-prebuilt-card-icon{width:25px;height:25px;position:absolute;cursor:pointer;display:flex;justify-content:center;align-items:center}.wptb-prebuilt-card-icon svg{width:100%;height:100%}.wptb-prebuilt-card-fav-icon{left:8px;top:8px}.wptb-prebuilt-card-delete-icon{background-color:var(--wptb-plugin-gray-200);padding:6px;border-radius:50%;width:35px;height:35px;right:-15px;top:-15px;display:flex;justify-content:center;align-items:center;border:2px solid var(--wptb-plugin-gray-400);transition:all .2s ease-out;z-index:120}.wptb-prebuilt-card-delete-icon:hover{transform:scale(1.1)}.wptb-prebuilt-card-delete-icon{fill:red}.wptb-prebuilt-card-fav-icon svg{transition:fill .2s ease-out;fill:transparent;stroke-width:40;stroke:var(--wptb-plugin-theme-color-light)}.wptb-prebuilt-card-fav-icon:active{-webkit-animation:wptb-push .2s ease-out;animation:wptb-push .2s ease-out}.wptb-prebuilt-card-fav-icon.is-fav svg{fill:var(--wptb-plugin-logo-color) !important;stroke-width:0 !important}.wptb-prebuilt-card-fav-icon:hover svg{fill:var(--wptb-plugin-theme-color-light)}@-webkit-keyframes wptb-push{0%{transform:scale(1)}50%{transform:scale(0.9)}100%{transform:scale(1)}}@keyframes wptb-push{0%{transform:scale(1)}50%{transform:scale(0.9)}100%{transform:scale(1)}}.wptb-prebuilt-delete-module-confirmation-overlay{position:absolute;width:100%;height:100%;top:0;left:0;display:flex;flex-direction:column;justify-content:center;align-items:center;background-color:rgba(0,0,0,.5);color:var(--wptb-plugin-theme-color-light);z-index:100;border-radius:5px 5px 0 0}.wptb-prebuilt-delete-module-confirmation-overlay div{margin:5px}.wptb-prebuilt-delete-button-container{width:100%;display:flex;justify-content:space-evenly;align-items:center}.wptb-prebuilt-card-circle-icon-button{width:30px;height:30px;border-radius:50%;display:flex;justify-content:center;align-items:center;cursor:pointer;color:var(--wptb-plugin-theme-color-light)}.wptb-prebuilt-card-circle-icon-button svg{width:100%;height:100%;fill:currentColor}.wptb-prebuilt-card-circle-icon-button:active{-webkit-animation:wptb-push .2s ease-out;animation:wptb-push .2s ease-out}.wptb-prebuilt-card-circle-icon-button[data-wptb-button-type=positive]{background-color:var(--wptb-plugin-green-500)}.wptb-prebuilt-card-circle-icon-button[data-wptb-button-type=negative]{background-color:red}.wptb-prebuilt-mark-indicator{position:absolute;pointer-events:none;width:calc(100% + 10px);height:calc(100% + 10px);top:-5px;left:-5px;background:repeating-linear-gradient(45deg, white, white 5px, var(--wptb-plugin-logo-color) 5px, var(--wptb-plugin-logo-color) 10px);background-size:400% 400%;animation:linear-gradient-move 20s linear infinite reverse;opacity:.2}.wptb-repeating-linear-gradient{background:repeating-linear-gradient(45deg, white, white 5px, var(--wptb-plugin-logo-color) 5px, var(--wptb-plugin-logo-color) 10px);background-size:400% 400%;animation:linear-gradient-move 20s linear infinite reverse}@-webkit-keyframes linear-gradient-move{0%{background-position:0% 50%}100%{background-position:100% 50%}}@keyframes linear-gradient-move{0%{background-position:0% 50%}100%{background-position:100% 50%}}.wptb-prebuilt-card .wptb-prebuilt-mark-indicator{display:none}.wptb-prebuilt-tab-control{position:absolute;top:20px;left:20px;border:1px solid var(--wptb-plugin-gray-400);display:flex;justify-content:center;align-items:center;border-radius:5px}.wptb-prebuilt-tab-control div{padding:5px}.wptb-prebuilt-tab-control-label{text-transform:capitalize;border-right:1px solid var(--wptb-plugin-gray-400);white-space:nowrap}.wptb-prebuilt-tab-control-buttons-wrapper{display:flex;justify-content:center;align-items:center;flex-direction:row;flex-wrap:nowrap}.wptb-prebuilt-tab-control-icon{width:35px;height:35px;display:flex;justify-content:center;align-items:center}.wptb-prebuilt-tab-control-icon[data-wptb-prebuilt-tab-control-type=stop]{fill:red}.wptb-prebuilt-tab-control-icon[data-wptb-prebuilt-tab-control-type=restart]{fill:var(--wptb-plugin-green-500)}.wptb-prebuilt-tab-control-icon svg{width:100%;height:100%;cursor:pointer}.wptb-prebuilt-tab-control-icon svg:active{-webkit-animation:wptb-push .2s ease-out;animation:wptb-push .2s ease-out}.wptb-prebuilt-dev-tool{position:absolute;top:20px;right:20px;border:1px solid var(--wptb-plugin-gray-400);display:flex;flex-direction:column;flex-wrap:nowrap;justify-content:center;align-items:center;border-radius:5px}.wptb-prebuilt-dev-tool div{padding:5px}.wptb-prebuilt-dev-tool .label{font-weight:bold;border-bottom:1px solid var(--wptb-plugin-gray-400)}.wptb-prebuilt-dev-tool .prebuilt-button{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;padding:10px;margin:5px;color:var(--wptb-plugin-theme-color-light);background-color:var(--wptb-plugin-logo-color);border-radius:5px;cursor:pointer}.wptb-prebuilt-dev-tool .prebuilt-button:active{-webkit-animation:wptb-push .2s ease-out;animation:wptb-push .2s ease-out}.wptb-prebuilt-display-calculate{width:700px}.wptb-preview-table-manage-cells table tr td div{pointer-events:none;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.wptb-plugin-blocker-element{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center;cursor:pointer}.wptb-highlighted .wptb-plugin-blocker-element{background:repeating-linear-gradient(45deg, white, white 5px, var(--wptb-plugin-logo-color) 5px, var(--wptb-plugin-logo-color) 10px);background-size:400% 400%;animation:linear-gradient-move 40s linear infinite reverse;opacity:.2}.wptb-plugin-blocker-element-empty::before{content:"Cell";display:block;font-weight:normal;font-size:80%;text-align:center;color:#969fa6}.wptb-plugin-blocker-element-empty::after{content:"";display:block;border:1px dashed #969fa6;position:absolute;top:2px;right:2px;bottom:2px;left:2px}.wptb-plugin-header-toolbar{top:0;position:absolute;left:50%;padding:0 10px;border:1px solid var(--wptb-plugin-gray-300);z-index:1;background-color:var(--wptb-plugin-gray-100);transition:top .2s ease-out;display:flex;flex-direction:row;align-items:center}.wptb-plugin-header-toolbar div{font-size:110%;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;padding:5px;margin:0 5px}.wptb-plugin-header-toolbar .dashicons{color:var(--wptb-plugin-logo-color) !important;font-weight:bold !important}.wptb-settings-version-control{max-width:800px;width:100%;display:grid;grid-template-columns:1fr 300px;grid-template-areas:"main changelog";grid-template-rows:500px;grid-gap:50px}.wptb-version-control-main{grid-area:main;padding:20px;display:flex;flex-direction:column;justify-content:space-between;align-items:center}.wptb-version-control-main-row{width:100%;display:flex;justify-content:center;padding:10px 0;flex-direction:column}.wptb-version-control-warning-span{color:var(--wptb-plugin-red-600) !important;text-transform:uppercase;font-weight:bold;font-size:120%}.wptb-version-control-warning-info{font-size:90%}.wptb-version-control-changelog{grid-area:changelog;background-color:var(--wptb-plugin-gray-200);border:1px solid var(--wptb-plugin-gray-300);font-family:Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;padding:10px;overflow-y:scroll;height:100%}.wptb-version-control-controls{width:100%;height:100%;margin:20px 0;display:grid;grid-template-columns:auto 1fr;grid-template-rows:repeat(3, auto);align-items:center;grid-gap:20px}.wptb-version-control-row-element{padding:10px 0}.wptb-version-control-row-label{text-transform:capitalize;font-weight:bold}.wptb-version-control-row-label:after{content:":"}.wptb-version-indicator{height:100%;display:flex;align-items:center;margin-right:10px}.wptb-version-indicator-circle{width:15px;height:15px;border-radius:50%;margin-right:10px}.wptb-version-indicator-match{background-color:var(--wptb-plugin-green-500)}.wptb-version-indicator-low{background-color:var(--wptb-plugin-yellow-500)}.wptb-version-control-anchor{text-transform:capitalize}.wptb-version-control-row-slot{width:100%;height:100%;display:flex;justify-content:flex-start;align-items:center;flex-direction:row}.wptb-table-tags-menu-wrapper{position:fixed;width:100%;height:100%;top:0;left:0}.wptb-tag-control-cloud-wrapper{width:100%}.wptb-tag-control-create-wrapper{margin-top:20px !important;border-top:1px solid var(--wptb-plugin-gray-400);padding-top:10px}.wptb-tag-control-cloud-wrapper:nth-of-type(n+1){margin-top:10px}.wptb-tag-control-cloud-wrapper .wptb-settings-item-title{text-transform:capitalize;font-size:90% !important;font-weight:bold}.wptb-tag-control-cloud{width:100%;min-height:90px;max-height:90px;overflow-y:auto;background-color:var(--wptb-plugin-gray-200);padding:3px;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:center;align-items:center;position:relative;border:1px solid var(--wptb-plugin-gray-400);border-radius:5px}.wptb-tag-ribbon-wrapper{color:var(--wptb-plugin-theme-color-light);font-size:90% !important;padding:3px 5px 3px 10px;background-color:var(--wptb-plugin-logo-color);border-radius:999px !important;display:flex;align-items:center;justify-content:space-between;margin:5px;cursor:default;-webkit-animation:wptb-basic-appear .2s ease-out;animation:wptb-basic-appear .2s ease-out}.wptb-tag-ribbon-name{font-size:inherit !important}.wptb-tag-ribbon-wrapper:hover .wptb-tag-operation-button{opacity:1}.wptb-tag-operation-button{width:20px;height:20px;border-radius:100%;margin-left:10px;opacity:0;transition:all .3s ease-out;display:flex;justify-content:center;align-items:center;cursor:pointer}.wptb-tag-operation-add-button{background-color:var(--wptb-plugin-green-500)}.wptb-tag-operation-remove-button{background-color:var(--wptb-plugin-red-600)}.wptb-tag-control-cloud-empty{position:absolute;top:0;left:0;width:100%;height:100%;color:var(--wptb-plugin-gray-500);display:flex;justify-content:center;align-items:center;font-style:italic;font-size:90% !important}.wptb-tag-control-cloud-empty:before,.wptb-tag-control-cloud-empty:after{content:"==";margin:0 5px}.wptb-tag-control-search-wrapper{margin-top:5px;width:100%;display:flex;justify-content:center;align-items:center}.wptb-tag-control-search{border:1px solid var(--wptb-plugin-gray-400) !important;text-align:center;font-size:90% !important;color:inherit;border-radius:999px !important;padding:0 !important}.wptb-tag-control-search:active,.wptb-tag-control-search:focus{border:1px solid var(--wptb-plugin-gray-500) !important;inset:0 !important;box-shadow:none !important}.wptb-tag-control-search-input{position:relative;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;font-size:90% !important}.wptb-tag-control-search-clear{position:absolute;top:0;right:10px;height:100%;display:flex;justify-content:center;align-items:center;color:var(--wptb-plugin-gray-500);cursor:pointer;padding:5px}.wptb-tag-control-search-indicator{font-weight:bold;color:var(--wptb-plugin-green-500) !important;font-size:inherit !important}.wptb-tag-control-create-controls-wrapper{width:100%;display:grid;grid-template-columns:1fr auto;align-items:center;grid-gap:10px;margin-top:10px}.wptb-tag-control-create-controls-wrapper input{width:100% !important}.wptb-tag-control-create-control-label{font-size:90% !important;text-transform:capitalize}.wptb-tag-control-create-button{background-color:var(--wptb-plugin-logo-color);color:var(--wptb-plugin-theme-color-light);display:flex;justify-self:end;justify-content:center;align-items:center;font-size:90% !important;text-transform:uppercase;padding:5px;border-radius:5px;grid-column:2;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;cursor:pointer;transition:all .2s ease-out}.wptb-tag-control-create-button[data-disabled]{background-color:var(--wptb-plugin-gray-400);pointer-events:none}.wptb-tag-control-status{grid-column:1;width:100%;height:100%;display:flex;align-items:center}.wptb-tag-control-status[data-status=positive]{color:var(--wptb-plugin-green-500) !important}.wptb-tag-control-status[data-status=negative]{color:var(--wptb-plugin-red-600) !important}.wptb-tag-control-busy{width:100%;height:100%;display:flex;align-items:center;color:var(--wptb-plugin-logo-color);grid-column:1}.wptb-table-cell-select-wrapper{display:grid;grid-gap:5px;width:100%;height:150px;border:1px solid var(--wptb-plugin-gray-400);padding:10px;border-radius:3px;background-color:var(--wptb-plugin-gray-300)}.wptb-table-cell-select-cell{width:100%;height:100%;cursor:pointer;transition:all .2s ease-out;border-radius:3px;background-color:var(--wptb-plugin-gray-400)}.wptb-table-cell-select-cell:hover{background-color:var(--wptb-plugin-gray-500)}.wptb-table-cell-select-cell[data-cell-selected=true]{background-color:var(--wptb-plugin-logo-color) !important}.wptb-table-cell-indicator{position:fixed;opacity:.2;pointer-events:none}.wptb-different-border-control-wrapper .wptb-settings-middle-xs{padding-top:5px !important;border-bottom:0 !important}.wptb-different-border-range-input .wptb-settings-item-header{padding-bottom:0 !important}.wptb-color-picker-wrapper{width:100%}.wptb-color-picker-input-wrapper{width:100px;height:30px;border:1px solid var(--wptb-plugin-gray-400);border-radius:3px;cursor:pointer;background-color:var(--wptb-plugin-gray-200);display:grid;grid-template-columns:.7fr .3fr;justify-content:center;align-items:center}.wptb-color-picker-input-wrapper[disabled]{pointer-events:none}.wptb-color-picker-inner-indicator{height:100%;padding:3px;display:grid;grid-template-columns:1fr;grid-template-rows:1fr}.wptb-color-picker-clear-color-indicator{width:100%;height:100%;grid-column:1;grid-row:1;z-index:2;display:flex;justify-content:center;align-items:center}.wptb-color-picker-clear-color-indicator svg{fill:var(--wptb-plugin-red-600)}.wptb-color-picker-icon-standards svg{width:15px;height:auto}.wptb-color-picker-selected-color{border-radius:3px 0 0 3px;border:1px solid var(--wptb-plugin-gray-400);transition:background-color .2s ease-out;cursor:pointer;grid-column:1;grid-row:1;z-index:2}.wptb-color-picker-alpha-checkerboard{z-index:1;grid-column:1;grid-row:1;background-size:15px !important}.wptb-color-picker-logo{display:flex;justify-content:center;align-items:center;width:100%;height:100%;font-size:120% !important;color:var(--wptb-plugin-logo-color)}.wptb-color-picker-logo div{display:flex;justify-content:center;align-items:center}.wptb-color-picker-logo svg{fill:currentColor}.wptb-color-picker-tool-wrapper{position:fixed;z-index:100}.wptb-color-picker-tool-inner-wrapper{position:relative}.wptb-color-picker-input{cursor:pointer}.wptb-color-picker-input:disabled{cursor:default}[data-wptb-text-disabled=true]{color:var(--wptb-plugin-gray-400) !important}.wptb-color-picker-clear-color-wrapper{position:absolute;display:flex;justify-content:center;align-items:center;left:0;width:100%;height:30px}.wptb-color-picker-clear-color{background-color:#fff;height:100%;padding:0 10px;display:flex;justify-content:center;align-items:center;border:1px solid var(--wptb-plugin-gray-400);border-radius:0 0 3px 3px;font-size:90% !important;color:var(--wptb-plugin-red-600);cursor:pointer}.wptb-color-picker-clear-color svg{fill:currentColor}.wptb-color-picker-input-wrapper[disabled] .wptb-color-picker-logo svg{fill:var(--wptb-plugin-gray-400)}.wptb-color-picker-input-wrapper[disabled] .wptb-color-picker-selected-color{background-color:var(--wptb-plugin-gray-300) !important}.wptb-local-dev-file-chooser{position:fixed;width:100%;height:100%;left:0;top:0;display:flex;justify-content:center;align-items:center;background-color:rgba(0,0,0,.6)}.wptb-local-dev-modal{background-color:var(--wptb-plugin-theme-color-light);width:500px;height:300px;border-radius:3px;display:grid;grid-template-columns:1fr;grid-template-rows:minmax(-webkit-min-content, -webkit-max-content) 1fr minmax(-webkit-min-content, -webkit-max-content);grid-template-rows:minmax(min-content, max-content) 1fr minmax(min-content, max-content);grid-template-areas:"header" "files" "footer"}.wptb-local-dev-modal>div{padding:5px;border-bottom:1px solid var(--wptb-plugin-gray-400);display:flex;align-items:center}.wptb-local-dev-modal>div:last-of-type{border-bottom:0}.wptb-local-dev-modal-header{font-weight:bold;text-transform:uppercase;justify-content:space-between;padding:0 !important}.wptb-local-dev-modal-title{padding:5px !important}.wptb-local-dev-modal-files{position:relative;overflow-y:auto;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:center;align-items:center;background-color:var(--wptb-plugin-gray-200)}.wptb-local-dev-modal-footer{justify-content:flex-end}.wptb-local-dev-modal-footer .wptb-settings-button{margin:0 5px !important;font-size:90% !important}.wptb-local-dev-image-card{width:100px;max-width:100px;display:grid;grid-template-columns:1fr;grid-template-rows:1fr minmax(-webkit-min-content, -webkit-max-content);grid-template-rows:1fr minmax(min-content, max-content);grid-auto-flow:row;cursor:pointer;justify-content:center;align-items:center;margin:5px;border:2px solid var(--wptb-plugin-gray-300);padding:5px;border-radius:5px;transition:all .2s ease-out;background-color:var(--wptb-plugin-theme-color-light)}.wptb-local-dev-image-card[data-active=true]{border:2px solid var(--wptb-plugin-logo-color) !important}.wptb-local-dev-image-card:hover{border:2px solid var(--wptb-plugin-gray-400);transform:scale(1.05)}.wptb-local-dev-image-holder{width:100%;height:100%}.wptb-local-dev-image-holder img{max-width:100%;max-height:100%;display:block}.wptb-local-dev-image-name{word-break:break-all;display:flex;justify-content:center;align-items:center;font-style:italic;font-size:90%;border-top:1px solid var(--wptb-plugin-gray-300)}.wptb-local-dev-modal-close{padding:0 10px;color:var(--wptb-plugin-red-600);cursor:pointer;font-size:120% !important}.wptb-upsells-wrapper{width:100%;padding:15px;color:var(--wptb-plugin-theme-color-light);cursor:pointer;transition:all .2s ease-out;-webkit-animation:wptb-unfold-up .3s ease-out forwards;animation:wptb-unfold-up .3s ease-out forwards;-webkit-animation-delay:.5s;animation-delay:.5s;transform:rotateX(-90deg);transform-origin:top;box-sizing:border-box}.wptb-left-panel .wptb-upsells-wrapper{font-size:90% !important}.wptb-panel-left .wptb-upsells-anchor{font-size:125%}.wptb-upsells-message-holder{display:flex;flex-direction:column;justify-content:center;align-items:center;width:100%;margin:0 !important;border-radius:5px;padding:10px 5px;transition:all .3s ease-out;text-align:center;background-color:var(--wptb-plugin-theme-color-light) !important;border:1px solid var(--wptb-plugin-gray-400);color:var(--wptb-plugin-gray-600);font-weight:500}.wptb-generate-wrapper .wptb-upsells-message-holder{background-color:var(--wptb-plugin-gray-200) !important;padding:15px}.wptb-upsells-pro-label{background-color:var(--wptb-plugin-cta-button) !important;color:var(--wptb-plugin-black);border-radius:3px;padding:5px;font-weight:bold;border:1px solid var(--wptb-plugin-gray-400) !important}.wptb-upsells-message-holder:hover{box-shadow:0 4px 6px -1px rgba(0,0,0,.3),0 2px 4px -1px rgba(0,0,0,.3) !important;transform:scale(1.05)}.wptb-upsells-anchor{text-decoration:none}@-webkit-keyframes wptb-unfold-up{0%{transform:perspective(100px) rotateX(-90deg)}100%{transform:perspective(100px) rotateX(0deg)}}@keyframes wptb-unfold-up{0%{transform:perspective(100px) rotateX(-90deg)}100%{transform:perspective(100px) rotateX(0deg)}}.wptb-notification-manager{position:fixed;display:flex;flex-wrap:nowrap;flex-direction:column;height:-webkit-max-content;height:-moz-max-content;height:max-content;top:50%;right:calc(-1*var(--wptb-notification-manager-width));width:var(--wptb-notification-manager-width);transition:all .2s ease-out;z-index:99999999999}.wptb-notification-wrapper{width:100%;display:grid;grid-template-columns:40px 3px 1fr;justify-content:center;align-items:start;color:var(--wptb-plugin-gray-700);border-radius:3px 0 0 3px;border-right:0 !important;margin:0 0 5px 0;transition:all .3s ease-out;cursor:pointer}.wptb-notification-icon{width:40px;height:40px;display:flex;justify-content:center;align-items:center;position:relative}.wptb-notification-filler{width:3px;height:40px;background-color:var(--wptb-plugin-gray-200);border-width:1px 0 1px 0;border-style:solid}.wptb-notification-message{width:100%;height:100%;display:flex;justify-content:flex-start;align-items:center;padding:0 15px;text-transform:capitalize;border-width:1px 0 1px 5px;border-style:solid;background-color:var(--wptb-plugin-gray-200)}.wptb-notification-svg-wrapper{display:flex;justify-content:center;align-items:center;width:100%;height:100%}.wptb-notification-svg-wrapper svg{width:25px;height:25px;fill:currentColor}.wptb-notification-manager-dev-tool-wrapper{position:absolute;top:50%;left:10px;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;display:grid;grid-template-columns:repeat(1, 1fr);grid-template-rows:repeat(4, minmax(-webkit-min-content, -webkit-max-content));grid-template-rows:repeat(4, minmax(min-content, max-content));grid-template-areas:"header" "selection" "message" "submit";border:1px solid var(--wptb-plugin-gray-400);border-radius:3px;justify-content:center;align-items:center;background-color:var(--wptb-plugin-gray-100)}.wptb-notification-manager-dev-tool-wrapper>div{padding:10px;border-bottom:1px solid var(--wptb-plugin-gray-300)}.wptb-nm-devtool-header{grid-area:header;font-weight:bold}.wptb-nm-devtool-selection{grid-area:selection;display:flex;justify-content:space-evenly;align-items:center;flex-wrap:nowrap;flex-direction:row}.wptb-nm-devtool-input{display:grid;grid-template-columns:1fr;grid-template-rows:repeat(2, 1fr)}.wptb-nm-devtool-submit{grid-area:submit;justify-self:center}.wptb-nm-devtool-message{grid-area:message;justify-self:center}.wptb-notification-queue-length{position:absolute;width:20px;height:20px;left:-10px;top:-10px;display:flex;justify-content:center;align-items:center;border-radius:100%;color:var(--wptb-plugin-theme-color-light);font-weight:bold;-webkit-animation:wptb-more-pop .2s ease-out;animation:wptb-more-pop .2s ease-out}.wptb-builder-panel[data-manage-cells-active=true]{display:flex;flex-flow:column;height:100%;overflow:hidden !important}[data-manage-cells-active=true] .wptb-builder-content{display:flex;flex-flow:column;height:100%;overflow:hidden !important}[data-manage-cells-active=true] .wptb-management_table_container{width:100%;height:100%;display:grid;grid-template-columns:1fr;grid-template-rows:minmax(-webkit-min-content, -webkit-max-content) 1fr minmax(-webkit-min-content, -webkit-max-content);grid-template-rows:minmax(min-content, max-content) 1fr minmax(min-content, max-content);overflow:hidden !important;margin:unset}[data-manage-cells-active=true] .wptb-preview-table-manage-cells{overflow:auto !important}[data-manage-cells-active=true] .wptb-management_table_container #wptb-bar-top{text-align:center;z-index:10000}.wptb-what-is-new-container{position:fixed;z-index:100000000;background-color:rgba(0,0,0,.3);top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center}.wptb-what-is-new-window{background-color:var(--wptb-plugin-theme-color-light);width:700px;display:grid;grid-template-columns:1fr;grid-template-rows:repeat(2, minmax(-webkit-min-content, -webkit-max-content));grid-template-rows:repeat(2, minmax(min-content, max-content));grid-template-areas:"header" "content";justify-content:center;align-items:center;border-radius:3px;font-size:110% !important;color:var(--wptb-plugin-gray-700) !important;border:2px solid var(--wptb-plugin-gray-300)}.wptb-what-is-new-header{grid-area:header;border-bottom:2px solid var(--wptb-plugin-gray-300);display:flex;height:45px}.wptb-what-is-new-header-version{display:flex;width:100%;height:100%;justify-content:center;align-items:center;font-weight:bold !important;color:var(--wptb-plugin-logo-color)}.wptb-what-is-new-header-text-icon{width:15px;height:auto;fill:var(--wptb-plugin-yellow-500);margin:0 10px}.wptb-what-is-new-header-close{width:45px;height:45px;display:flex;justify-content:center;align-items:center;border-left:2px solid var(--wptb-plugin-gray-300);cursor:pointer;transition:all .2s ease-out}.wptb-what-is-new-header-close:hover{background-color:var(--wptb-plugin-gray-300)}.wptb-what-is-new-header-close:hover svg{fill:var(--wptb-plugin-gray-700)}.wptb-what-is-new-header-close svg{width:15px;height:auto;fill:var(--wptb-plugin-gray-500);transition:all .2s ease-out}.wptb-what-is-new-content{grid-area:content;display:grid;grid-template-columns:1fr;grid-template-rows:200px minmax(-webkit-min-content, -webkit-max-content) 90px;grid-template-rows:200px minmax(min-content, max-content) 90px;grid-template-areas:"imageContainer" "noteIndex" "textContainer";justify-content:center;align-items:center}.wptb-what-is-new-note-image-carousel{grid-area:imageContainer;display:grid;grid-template-rows:1fr;grid-template-columns:minmax(-webkit-min-content, -webkit-max-content) 1fr minmax(-webkit-min-content, -webkit-max-content);grid-template-columns:minmax(min-content, max-content) 1fr minmax(min-content, max-content)}.wptb-what-is-new-note-index{grid-area:noteIndex;display:flex;justify-content:center;align-items:center;color:var(--wptb-plugin-gray-500);font-variant-numeric:tabular-nums}.wptb-what-is-new-note-text-container{grid-area:textContainer;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;justify-content:center;align-items:center}.wptb-what-is-new-note-text{grid-column:1;grid-row:1;display:flex;justify-content:center;flex-direction:column;align-items:center;text-align:center;margin:0 20px}.wptb-what-is-new-note-text .wptb-upsells-pro-label{margin:10px;text-decoration:none}.wptb-what-is-new-carousel-nav-button{display:flex;justify-content:center;align-items:center;height:100%;margin:0 20px;color:var(--wptb-plugin-gray-700);cursor:pointer;transition:all .2s ease-out}.wptb-what-is-new-carousel-nav-button:active{-webkit-animation:wptb-pop .2s ease-out;animation:wptb-pop .2s ease-out}.wptb-what-is-new-carousel-nav-button svg{width:25px;height:auto;fill:currentColor}.wptb-what-is-new-carousel-nav-button[disabled=disabled]{color:var(--wptb-plugin-gray-400);cursor:default;pointer-events:none}.wptb-what-is-new-images-wrapper{display:grid;grid-template-columns:1fr;grid-template-rows:200px}.wptb-what-is-new-image-background{position:relative;margin:10px;padding:10px;grid-column:1;grid-row:1;background-color:var(--wptb-plugin-gray-200);display:flex;justify-content:center;align-items:center;border:2px solid var(--wptb-plugin-gray-300)}.wptb-what-is-new-pro-indicator{position:absolute;left:-20px;top:10px;color:var(--wptb-plugin-theme-color-light);z-index:1}.wptb-what-is-new-pro-indicator-text{padding:5px 20px;border-radius:3px 3px 3px 0;background-color:var(--wptb-plugin-logo-color)}.wptb-what-is-new-pro-indicator-triangle-end{width:1px;height:20px;border-left:20px solid transparent;border-top:15px solid var(--wptb-plugin-gray-500)}.wptb-what-is-new-image-background:not([data-last=true]) img{height:100%;-o-object-fit:contain;object-fit:contain;border:2px solid #cbd5e0;border-radius:5px}.wptb-css-code-input{position:relative;width:100% !important;max-width:100% !important;border:1px solid #ddd !important;border-radius:3px}.wptb-css-code-input .wptb-menu-empty-cover{background-color:rgba(0,0,0,.1) !important;z-index:10000000}.CodeMirror{max-height:200px !important;height:200px !important}.CodeMirror *{font-size:12px !important}.wptb-plugin-inner-shadow{box-shadow:rgba(0,0,0,0) 0px 0px 0px 0px,rgba(0,0,0,0) 0px 0px 0px 0px,rgba(0,0,0,.09) 0px 2px 4px 0px inset}.wptb-panel-plain-message{display:flex;justify-content:center;align-items:center;text-align:center;padding:20px 10px;font-size:80% !important;color:var(--wptb-plugin-gray-600) !important}.wptb-bg-selection-item{position:absolute;background-color:var(--wptb-plugin-logo-color);width:30px;transition:all .2s ease-out;cursor:pointer;z-index:10;display:flex;justify-content:center;align-items:center}.wptb-bg-color-selectors[data-visible=false]{display:none !important}.wptb-selector-icon-wrapper{width:100%;height:100%;display:flex;justify-content:center;align-items:center}.wptb-selector-icon-wrapper svg{width:20px;height:auto;fill:var(--wptb-plugin-theme-color-light)}.wptb-col-selection{height:30px}.wptb-bg-column-rail{position:absolute;display:grid;grid-auto-flow:column;justify-content:center;align-items:center;height:30px}.wptb-bg-row-rail{position:absolute;display:grid;grid-template-columns:1fr;grid-auto-flow:row;justify-content:center;align-items:center;width:30px;top:0}.wptb-bg-rail-mark{border:2px dashed var(--wptb-plugin-logo-color);height:100%;opacity:0;transition:opacity .2s ease-out;cursor:pointer}.wptb-bg-rail-mark:hover{opacity:.5}.wptb-general-style-settings{width:100%;height:100%;display:grid;grid-template-columns:1fr;grid-template-rows:minmax(-webkit-min-content, -webkit-max-content) 1fr;grid-template-rows:minmax(min-content, max-content) 1fr;grid-gap:20px}.wptb-general-style-settings .wptb-menu-empty-cover{color:var(--wptb-plugin-logo-color) !important}.wptb-general-style-settings .wptb-css-code-input{height:100% !important}.wptb-general-style-settings .CodeMirror{height:100% !important;max-height:100% !important}.wptb-panel-message{color:var(--wptb-plugin-gray-600)}.wptb-panel-message-icon{margin-right:10px}.wptb-panel-message-icon svg{width:20px;height:20px;fill:var(--wptb-plugin-yellow-500)}.wptb-size2-control-input-wrapper{display:grid;grid-template-columns:1.2fr 20px 1.2fr 1fr;grid-template-rows:1fr auto;justify-content:center;align-content:center;grid-gap:10px}.wptb-size2-input input{transition:all .2s ease-out;width:100%;border:1.5px solid var(--wptb-plugin-gray-400);border-radius:3px !important;text-align:end}.wptb-size2-input input[disabled]{background-color:var(--wptb-plugin-gray-300) !important;cursor:not-allowed}.wptb-size2-control-input-component{display:grid;grid-template-columns:1fr;grid-template-rows:repeat(2, 1fr);justify-items:center;align-items:center;height:100%;width:100%}.wptb-size2-aspect-icon{width:100%;height:100%;display:flex;justify-content:center;align-items:center;cursor:pointer;color:var(--wptb-plugin-red-600)}.wptb-size2-aspect-icon[data-wptb-linked=true]{color:var(--wptb-plugin-green-500) !important}.wptb-size2-aspect-icon svg{width:100%;height:100%;transition:all .2s ease-out}.wptb-size2-unit-dropdown{border:1.5px solid var(--wptb-plugin-gray-400) !important;border-radius:3px !important}.wptb-size-control-aspect-ratio-info-container{padding:10px;grid-column:1/-1;justify-self:center;color:var(--wptb-plugin-gray-500);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.wptb-settings-reset-size2-control{transition:all .2s ease-out}.wptb-settings-reset-size2-control:active{transform:rotateZ(-180deg)}.wptb-lazy-load-wrapper{max-width:800px;width:100%;height:100%;display:grid;grid-template-columns:repeat(2, 1fr);grid-template-rows:1fr;gap:10px;grid-template-areas:"left right"}.wptb-lazy-load-left-column{grid-area:left;display:grid;grid-template-columns:1fr;grid-template-rows:minmax(-webkit-min-content, -webkit-max-content) 1fr minmax(-webkit-min-content, -webkit-max-content);grid-template-rows:minmax(min-content, max-content) 1fr minmax(min-content, max-content);grid-template-areas:"basic" "preview" "disclaimer";justify-content:center;align-items:center;gap:10px;overflow:auto}.wptb-lazy-load-basic-options{grid-area:basic}.wptb-lazy-load-preview-container{grid-area:preview;width:100%;height:100%;display:grid;grid-template-columns:minmax(150px, -webkit-max-content);grid-template-columns:minmax(150px, max-content);grid-template-rows:minmax(-webkit-min-content, -webkit-max-content) minmax(150px, -webkit-max-content) minmax(-webkit-min-content, -webkit-max-content);grid-template-rows:minmax(min-content, max-content) minmax(150px, max-content) minmax(min-content, max-content);justify-content:center;justify-items:center;align-content:center;align-items:center;grid-template-areas:"header" "preview" "footer";gap:5px}.wptb-lazy-load-preview-header{grid-area:header;text-transform:uppercase;font-weight:bold}.wptb-lazy-load-preview{grid-area:preview}.wptb-lazy-load-preview img{width:150px;height:150px}.wptb-lazy-load-preview-button-container{grid-area:footer}.wptb-lazy-load-preview-button-container>div{margin:10px}.wptb-lazy-load-pro-options{padding:0 10px;overflow:auto;color:var(--wptb-plugin-gray-500);position:relative;grid-area:right}.wptb-controls-for-settings>div{border:1px solid var(--wptb-plugin-gray-300);border-bottom:0}.wptb-lazy-load-pro-options>div:last-of-type{border-bottom:1px solid var(--wptb-plugin-gray-300)}.wptb-lazy-load-pro-disabled-overlay{width:100%;height:100%;background-image:repeating-linear-gradient(45deg, transparent, transparent 15px, #3299D132 15px, #3299D132 30px);z-index:10;display:flex;justify-content:center;align-items:center}.wptb-controls-for-settings *{font-size:inherit !important;color:var(--wptb-plugin-theme-text-color-main);box-sizing:border-box}.wptb-control-tip-wrapper{position:relative}.wptb-control-tip-wrapper[disabled] .wptb-tip-popup{color:var(--wptb-plugin-gray-400)}.wptb-control-tip-wrapper[disabled] .wptb-tip-popup:hover{background-color:inherit !important}.wptb-tip-popup{position:absolute;border:2px solid var(--wptb-plugin-gray-300);border-radius:100%;width:20px;height:20px;display:flex;justify-content:center;align-items:center;cursor:pointer;background-color:var(--wptb-plugin-theme-color-light);transition:background-color .2s ease-out;top:5px;right:5px}.wptb-tip-popup[data-tip-positon=topRight]{top:5px;right:5px}.wptb-tip-popup:hover{background-color:var(--wptb-plugin-gray-200)}.wptb-lazy-load-img[data-wptb-lazy-load-status=false]{opacity:0}.wptb-lazy-load-img[data-wptb-lazy-load-status=true]{opacity:1}.wptb-lazy-load-buffer-element-container{position:relative}.wptb-lazy-load-buffer-element{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:5px;display:flex;justify-content:center;align-items:center}.wptb-lazy-load-buffer-icon-wrapper{display:flex;justify-content:center;align-items:center}.wptb-lazy-load-buffer-icon-wrapper[data-wptb-lazy-load-icon-animation=heartBeat] svg{-webkit-animation:wptb-beat 1.3s ease-out forwards infinite;animation:wptb-beat 1.3s ease-out forwards infinite}.wptb-lazy-load-buffer-icon-wrapper[data-wptb-lazy-load-icon-animation=rotate] svg{-webkit-animation:wptb-rotate-simple 1s ease-out forwards infinite;animation:wptb-rotate-simple 1s ease-out forwards infinite}.wptb-lazy-load-buffer-icon-wrapper[data-wptb-lazy-load-icon-animation=jump] svg{-webkit-animation:wptb-jump .5s ease-out alternate infinite;animation:wptb-jump .5s ease-out alternate infinite}.wptb-lazy-load-buffer-icon-wrapper[data-wptb-lazy-load-icon-animation=flip] svg{-webkit-animation:wptb-flip 1s ease-out forwards infinite;animation:wptb-flip 1s ease-out forwards infinite}@-webkit-keyframes wptb-flip{0%{transform:rotateY(0deg)}100%{transform:rotateY(360deg)}}@keyframes wptb-flip{0%{transform:rotateY(0deg)}100%{transform:rotateY(360deg)}}@-webkit-keyframes wptb-jump{0%{transform:translateY(25%)}100%{transform:translateY(-25%)}}@keyframes wptb-jump{0%{transform:translateY(25%)}100%{transform:translateY(-25%)}}@-webkit-keyframes wptb-rotate-simple{0%{transform:rotateZ(0deg)}100%{transform:rotateZ(360deg)}}@keyframes wptb-rotate-simple{0%{transform:rotateZ(0deg)}100%{transform:rotateZ(360deg)}}@keyframes wptb-beat{0%{transform:scale(1)}15%{transform:scale(1.5)}30%{transform:scale(1)}100%{transform:scale(1)}}.wptb-panel-direction-control-indicators-container{display:grid;grid-template-columns:repeat(3, minmax(-webkit-min-content, -webkit-max-content));grid-template-columns:repeat(3, minmax(min-content, max-content));grid-template-rows:repeat(3, minmax(-webkit-min-content, -webkit-max-content));grid-template-rows:repeat(3, minmax(min-content, max-content));grid-template-areas:"up up up" "left static right" "down down down";grid-gap:3px;justify-content:center;align-items:center}.wptb-panel-direction-cadet{display:flex;justify-content:center;align-items:center;cursor:pointer}.wptb-panel-direction-cadet svg{width:25px;height:25px;fill:var(--wptb-plugin-gray-400);transition:fill .2s ease-out}.wptb-panel-direction-cadet:hover svg{fill:var(--wptb-plugin-gray-500)}.wptb-panel-direction-cadet[data-wptb-active-direction=true] svg{fill:var(--wptb-plugin-logo-color)}.wptb-panel-direction-cadet[data-wptb-panel-direction=up]{grid-area:up}.wptb-panel-direction-cadet[data-wptb-panel-direction=left]{grid-area:left}.wptb-panel-direction-cadet[data-wptb-panel-direction=right]{grid-area:right}.wptb-panel-direction-cadet[data-wptb-panel-direction=down]{grid-area:down}.wptb-panel-direction-static{grid-area:static;width:20px;height:20px;background-color:var(--wptb-plugin-gray-400);border:1px solid var(--wptb-plugin-gray-500);border-radius:3px}[data-wptb-disabled=true] .wptb-panel-direction-cadet svg{fill:var(--wptb-plugin-gray-300) !important}[data-wptb-disabled=true] .wptb-panel-direction-static{background-color:var(--wptb-plugin-gray-300);border:1px solid var(--wptb-plugin-gray-400)}[data-wptb-disabled=true] .wptb-panel-direction-cadet{cursor:pointer;pointer-events:none}.wptb-disclaimer-container{width:100%;display:flex;justify-content:center;padding:10px 0;flex-direction:column}.wptb-disclaimer-title{color:var(--wptb-plugin-red-600) !important;text-transform:uppercase;font-weight:bold;font-size:120%}.wptb-disclaimer-message p,.wptb-disclaimer-message span{font-size:90% !important}.wptb-code{font-family:monospace !important;padding:0 3px;border-radius:3px;background-color:#fde68a;border:1px solid #fcd34d;font-size:inherit !important}.wptb-element[data-wptb-dummy=true]{pointer-events:none;color:var(--wptb-plugin-gray-400) !important}.wptb-element[data-wptb-dummy=true] svg{fill:currentColor !important}.wptb-element[data-wptb-dummy=true] .wptb-element-draggable-icon{color:var(--wptb-plugin-gray-400) !important}.wptb-disabled-overlay-container{display:grid;grid-template-columns:1fr;grid-template-rows:1fr;justify-content:center;align-items:center;grid-template-areas:"content"}.wptb-disabled-overlay{grid-area:content;width:100%;height:100%;z-index:10;background-image:repeating-linear-gradient(45deg, transparent, transparent 15px, #3299D13C 15px, #3299D13C 30px);cursor:not-allowed}.wptb-disabled-overlay-slot-wrapper{grid-area:content;z-index:9}.wptb-upsells-pro-overlay{position:absolute;display:flex;justify-content:center;align-items:center;width:100%;height:100%;top:0;left:0;background-image:repeating-linear-gradient(45deg, transparent, transparent 15px, #3299D13C 15px, #3299D13C 30px)}.wptb-data-listing-row-search-clause-wrap{color:var(--wptb-plugin-gray-500)}.wptb-data-listing-row-search-clause{color:var(--wptb-plugin-logo-color) !important;font-weight:bold !important}.wptb-search-input-wrapper{position:relative;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.wptb-search-input-element{width:100% !important;border:1px solid var(--wptb-plugin-gray-400) !important;text-align:center;color:inherit;border-radius:999px !important;padding:0 !important;font-size:inherit !important}.wptb-search-input-element:active,.wptb-search-input-element:focus{border:1px solid var(--wptb-plugin-gray-500) !important;inset:0 !important;box-shadow:none !important}.wptb-search-input-clear{position:absolute;top:0;right:10px;height:100%;display:flex;justify-content:center;align-items:center;cursor:pointer;padding:0 5px;color:var(--wptb-plugin-red-500);font-weight:bold}.wptb-search-input-clear[data-disabled=true]{color:var(--wptb-plugin-gray-500) !important}.wptb-svg-inherit-color svg{fill:currentColor}.wptb-image-element-dummy{display:none !important}.wptb-settings-generic-icon{width:16px;height:16px;cursor:pointer}.wptb-svg-14px svg{width:14px}.wptb-multi-checkbox-wrapper .wptb-settings-checkbox-row label{transition:all .2s ease-out}.wptb-multi-checkbox-wrapper .wptb-settings-checkbox-row[data-wptb-checked=true] label{color:var(--wptb-plugin-logo-color)}.wptb-range-input-wrapper[disabled]{pointer-events:none}.wptb-range-input-operation-button{color:var(--wptb-plugin-gray-500) !important;display:flex;width:100%;justify-content:center;align-items:center;position:absolute;transition:all .1s ease-out;opacity:0}.wptb-range-input-operation-button svg{fill:var(--wptb-plugin-gray-500) !important}.wptb-range-input-operation-button:active{transform:scale(0.8)}.wptb-range-input-operation-button[data-wptb-button-position=up]{top:-50%}.wptb-range-input-operation-button[data-wptb-button-position=down]{bottom:-18%}.wptb-range-text-input-wrapper:hover .wptb-range-input-operation-button{opacity:1}
2
+ .CodeMirror{font-family:monospace;height:300px;color:#000;direction:ltr}.CodeMirror-lines{padding:4px 0}.CodeMirror pre.CodeMirror-line,.CodeMirror pre.CodeMirror-line-like{padding:0 4px}.CodeMirror-gutter-filler,.CodeMirror-scrollbar-filler{background-color:#fff}.CodeMirror-gutters{border-right:1px solid #ddd;background-color:#f7f7f7;white-space:nowrap}.CodeMirror-linenumber{padding:0 3px 0 5px;min-width:20px;text-align:right;color:#999;white-space:nowrap}.CodeMirror-guttermarker{color:#000}.CodeMirror-guttermarker-subtle{color:#999}.CodeMirror-cursor{border-left:1px solid #000;border-right:none;width:0}.CodeMirror div.CodeMirror-secondarycursor{border-left:1px solid silver}.cm-fat-cursor .CodeMirror-cursor{width:auto;border:0!important;background:#7e7}.cm-fat-cursor div.CodeMirror-cursors{z-index:1}.cm-fat-cursor-mark{background-color:rgba(20,255,20,.5)}.cm-animate-fat-cursor,.cm-fat-cursor-mark{-webkit-animation:blink 1.06s steps(1) infinite;animation:blink 1.06s steps(1) infinite}.cm-animate-fat-cursor{width:auto;border:0;background-color:#7e7}@-webkit-keyframes blink{50%{background-color:transparent}}@keyframes blink{50%{background-color:transparent}}.cm-tab{display:inline-block;text-decoration:inherit}.CodeMirror-rulers{position:absolute;left:0;right:0;top:-50px;bottom:0;overflow:hidden}.CodeMirror-ruler{border-left:1px solid #ccc;top:0;bottom:0;position:absolute}.cm-s-default .cm-header{color:#00f}.cm-s-default .cm-quote{color:#090}.cm-negative{color:#d44}.cm-positive{color:#292}.cm-header,.cm-strong{font-weight:700}.cm-em{font-style:italic}.cm-link{text-decoration:underline}.cm-strikethrough{text-decoration:line-through}.cm-s-default .cm-keyword{color:#708}.cm-s-default .cm-atom{color:#219}.cm-s-default .cm-number{color:#164}.cm-s-default .cm-def{color:#00f}.cm-s-default .cm-variable-2{color:#05a}.cm-s-default .cm-type,.cm-s-default .cm-variable-3{color:#085}.cm-s-default .cm-comment{color:#a50}.cm-s-default .cm-string{color:#a11}.cm-s-default .cm-string-2{color:#f50}.cm-s-default .cm-meta,.cm-s-default .cm-qualifier{color:#555}.cm-s-default .cm-builtin{color:#30a}.cm-s-default .cm-bracket{color:#997}.cm-s-default .cm-tag{color:#170}.cm-s-default .cm-attribute{color:#00c}.cm-s-default .cm-hr{color:#999}.cm-s-default .cm-link{color:#00c}.cm-invalidchar,.cm-s-default .cm-error{color:red}.CodeMirror-composing{border-bottom:2px solid}div.CodeMirror span.CodeMirror-matchingbracket{color:#0b0}div.CodeMirror span.CodeMirror-nonmatchingbracket{color:#a22}.CodeMirror-matchingtag{background:rgba(255,150,0,.3)}.CodeMirror-activeline-background{background:#e8f2ff}.CodeMirror{position:relative;overflow:hidden;background:#fff}.CodeMirror-scroll{overflow:scroll!important;margin-bottom:-50px;margin-right:-50px;padding-bottom:50px;height:100%;outline:none;position:relative}.CodeMirror-sizer{position:relative;border-right:50px solid transparent}.CodeMirror-gutter-filler,.CodeMirror-hscrollbar,.CodeMirror-scrollbar-filler,.CodeMirror-vscrollbar{position:absolute;z-index:6;display:none;outline:none}.CodeMirror-vscrollbar{right:0;top:0;overflow-x:hidden;overflow-y:scroll}.CodeMirror-hscrollbar{bottom:0;left:0;overflow-y:hidden;overflow-x:scroll}.CodeMirror-scrollbar-filler{right:0;bottom:0}.CodeMirror-gutter-filler{left:0;bottom:0}.CodeMirror-gutters{position:absolute;left:0;top:0;min-height:100%;z-index:3}.CodeMirror-gutter{white-space:normal;height:100%;display:inline-block;vertical-align:top;margin-bottom:-50px}.CodeMirror-gutter-wrapper{position:absolute;z-index:4;background:none!important;border:none!important}.CodeMirror-gutter-background{position:absolute;top:0;bottom:0;z-index:4}.CodeMirror-gutter-elt{position:absolute;cursor:default;z-index:4}.CodeMirror-gutter-wrapper ::-moz-selection{background-color:transparent}.CodeMirror-gutter-wrapper ::selection{background-color:transparent}.CodeMirror-gutter-wrapper ::-moz-selection{background-color:transparent}.CodeMirror-lines{cursor:text;min-height:1px}.CodeMirror pre.CodeMirror-line,.CodeMirror pre.CodeMirror-line-like{border-radius:0;border-width:0;background:transparent;font-family:inherit;font-size:inherit;margin:0;white-space:pre;word-wrap:normal;line-height:inherit;color:inherit;z-index:2;position:relative;overflow:visible;-webkit-tap-highlight-color:transparent;font-variant-ligatures:contextual}.CodeMirror-wrap pre.CodeMirror-line,.CodeMirror-wrap pre.CodeMirror-line-like{word-wrap:break-word;white-space:pre-wrap;word-break:normal}.CodeMirror-linebackground{position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}.CodeMirror-linewidget{position:relative;z-index:2;padding:.1px}.CodeMirror-rtl pre{direction:rtl}.CodeMirror-code{outline:none}.CodeMirror-gutter,.CodeMirror-gutters,.CodeMirror-linenumber,.CodeMirror-scroll,.CodeMirror-sizer{box-sizing:content-box}.CodeMirror-measure{position:absolute;width:100%;height:0;overflow:hidden;visibility:hidden}.CodeMirror-cursor{position:absolute;pointer-events:none}.CodeMirror-measure pre{position:static}div.CodeMirror-cursors{visibility:hidden;position:relative;z-index:3}.CodeMirror-focused div.CodeMirror-cursors,div.CodeMirror-dragcursors{visibility:visible}.CodeMirror-selected{background:#d9d9d9}.CodeMirror-focused .CodeMirror-selected{background:#d7d4f0}.CodeMirror-crosshair{cursor:crosshair}.CodeMirror-line::-moz-selection, .CodeMirror-line>span::-moz-selection, .CodeMirror-line>span>span::-moz-selection{background:#d7d4f0}.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:#d7d4f0}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:#d7d4f0}.cm-searching{background-color:#ffa;background-color:rgba(255,255,0,.4)}.cm-force-border{padding-right:.1px}@media print{.CodeMirror div.CodeMirror-cursors{visibility:hidden}}.cm-tab-wrap-hack:after{content:""}span.CodeMirror-selectedtext{background:none}
inc/admin/css/src/admin.css DELETED
@@ -1,7211 +0,0 @@
1
- /**
2
- * All of the CSS for your admin-specific functionality should be included in this file.
3
- *
4
- * The file is enqueued from inc/admin/class-admin.php.
5
- */
6
-
7
- /*css constants for plugin styles*/
8
- :root {
9
- /*constants*/
10
- --wptb-plugin-sidebar-size-full: 300px;
11
- --wptb-plugin-logo-color: #3299D1;
12
- --wptb-plugin-gray-100: #F7FAFC;
13
- --wptb-plugin-gray-200: #EDF2F7;
14
- --wptb-plugin-gray-300: #E2E8F0;
15
- --wptb-plugin-gray-400: #CBD5E0;
16
- --wptb-plugin-gray-500: #A0AEC0;
17
- --wptb-plugin-gray-600: #718096;
18
- --wptb-plugin-gray-700: #4A5568;
19
- --wptb-plugin-green-500: #48BB78;
20
- --wptb-plugin-yellow-500: #ECC94B;
21
- --wptb-plugin-red-300: #FCA5A5;
22
- --wptb-plugin-red-500: #F56565;
23
- --wptb-plugin-red-600: #E53E3E;
24
- --wptb-plugin-red-800: #991B1B;
25
- --wptb-plugin-blue-300: #90CDF4;
26
- --wptb-plugin-blue-400: #60A5FA;
27
- --wptb-plugin-blue-500: #3B82F6;
28
- --wptb-plugin-blue-600: #2563EB;
29
- --wptb-plugin-white: #FFF;
30
- --wptb-plugin-black: #000;
31
- --wptb-plugin-gold: #D4AF37;
32
- --wptb-plugin-cta-button: #F7C948;
33
-
34
- /*theme*/
35
- --wptb-plugin-theme-text-color-main: var(--wptb-plugin-gray-700);
36
- --wptb-plugin-theme-color-light: var(--wptb-plugin-white);
37
- --wptb-plugin-theme-sidebar-bg: var(--wptb-plugin-gray-300);
38
- --wptb-plugin-theme-side-bar-font-size-base: 16px;
39
- --wptb-plugin-theme-header-font-size-base: 16px;
40
- --wptb-plugin-theme-side-bar-sections-font-base: 80%;
41
-
42
-
43
- --wptb-plugin-left-panel-constant: 40px;
44
-
45
- --wptb-prebuilt-card-border-size: 2px;
46
- --wptb-prebuilt-card-control-size: 30px;
47
-
48
- --wptb-busy-duration: 0.9s;
49
- --wptb-notification-manager-width: 300px;
50
- }
51
-
52
- html {
53
- overflow-y: hidden;
54
- }
55
-
56
- body > img {
57
- position: absolute;
58
- z-index: 1000001;
59
- }
60
-
61
- .wptb-admin-container {
62
- background: #fff;
63
- color: var(--wptb-plugin-theme-text-color-main);
64
- z-index: 100000;
65
- position: fixed;
66
- top: 0;
67
- bottom: 0;
68
- left: 0;
69
- right: 0;
70
- height: 100%;
71
- min-width: 0;
72
- margin: 0 !important;
73
- overflow-y: auto;
74
- }
75
-
76
- .wptb-container {
77
- position: fixed;
78
- left: 0;
79
- top: 0;
80
- right: 0;
81
- bottom: 0;
82
- overflow-y: auto;
83
- overflow-x: hidden;
84
- }
85
-
86
- .wptb-container * {
87
- box-sizing: border-box;
88
- }
89
-
90
- /**
91
- * Header Section
92
- */
93
-
94
- .wptb-builder-header {
95
- position: sticky !important;
96
- top: 0;
97
- z-index: 10;
98
- }
99
-
100
- .wptb-header {
101
- width: 100%;
102
- background-color: var(--wptb-plugin-theme-color-light);
103
- border-bottom: 1px solid var(--wptb-plugin-theme-sidebar-bg);
104
- text-align: center;
105
- display: grid;
106
- grid-auto-flow: row;
107
- grid-template-columns: 1fr 1fr;
108
- grid-template-areas: "table-name buttons close";
109
- align-items: center;
110
- justify-content: center;
111
- font-size: var(--wptb-plugin-theme-header-font-size-base);
112
- position: relative;
113
- z-index: 10;
114
- }
115
-
116
- .wptb-left-panel[data-wptb-panel-location="right"] + .wptb-builder-panel .wptb-header {
117
- grid-template-areas: "close buttons table-name" !important;
118
- grid-template-columns: auto 1fr 1fr !important;
119
- }
120
-
121
- .wptb-header-buttons-container {
122
- display: flex;
123
- flex-direction: row;
124
- align-items: center;
125
- justify-content: center;
126
- grid-area: buttons;
127
- height: 100%;
128
- }
129
-
130
- .wptb-header-close {
131
- font-size: 30px;
132
- width: 30px;
133
- height: 30px;
134
- text-decoration: none;
135
- color: var(--wptb-plugin-gray-500);
136
- }
137
-
138
- .wptb-logo {
139
- padding-left: 30px;
140
- float: left;
141
- margin-top: 17px;
142
- }
143
-
144
- .wptb-right {
145
- width: 100%;
146
- display: flex;
147
- flex-direction: row;
148
- justify-content: flex-end;
149
- align-items: center;
150
- height: 100%;
151
- }
152
-
153
- .wptb-left-panel[data-wptb-panel-location="right"] + .wptb-builder-panel .wptb-right {
154
- flex-direction: row-reverse !important;
155
- }
156
-
157
- .wptb-right .wptb-settings-section-item {
158
- margin: 0 !important;
159
- }
160
-
161
- .wptb-plugin-width-full {
162
- width: 100% !important;
163
- }
164
-
165
- .wptb-plugin-height-full {
166
- height: 100%;
167
- }
168
-
169
- #wptb-messaging-area {
170
- align-self: center;
171
- /*margin: 0 auto;*/
172
- /*display: inline-block;*/
173
- /*margin-top: 15px;*/
174
- /*margin-right: 15px;*/
175
- position: absolute;
176
- left: 0;
177
- right: 0;
178
- bottom: 100px;
179
- pointer-events: none;
180
- }
181
-
182
- #wptb-messaging-area .wptb-message {
183
- border-radius: 4px;
184
- max-width: 410px;
185
- padding: 20px;
186
- margin: auto;
187
- }
188
-
189
- #wptb-messaging-area .wptb-success {
190
- color: green;
191
- background-color: lightgreen;
192
- font-size: 15px;
193
- }
194
-
195
- #wptb-messaging-area .wptb-error {
196
- color: red;
197
- background-color: rgb(255, 213, 213);
198
- font-size: 15px;
199
- }
200
-
201
- .wptb-panel-sub-container-buttons {
202
- display: flex;
203
- justify-content: center;
204
- align-items: center;
205
- height: 100%;
206
- border-left: 1px solid var(--wptb-plugin-theme-sidebar-bg);
207
- border-right: 1px solid var(--wptb-plugin-theme-sidebar-bg);
208
- }
209
-
210
- .wptb-panel-night-mode-container {
211
- display: flex;
212
- justify-content: center;
213
- align-items: center;
214
- height: 100%;
215
- border-left: 1px solid var(--wptb-plugin-theme-sidebar-bg);
216
- padding: 10px;
217
- }
218
-
219
- .wptb-panel-night-mode-icon-container {
220
- width: 32px;
221
- height: 32px;
222
- cursor: pointer;
223
- }
224
-
225
- [data-wptb-mode='light'] .wptb-panel-night-mode-icon-container {
226
- color: var(--wptb-plugin-gold);
227
- }
228
-
229
- [data-wptb-mode='dark'] .wptb-panel-night-mode-icon-container {
230
- color: var(--wptb-plugin-blue-400);
231
- }
232
-
233
- .wptb-header .wptb-settings-section-item {
234
- padding: 15px !important;
235
- }
236
-
237
- .wptb-undo-redo-container {
238
- display: flex;
239
- justify-content: center;
240
- align-items: center;
241
- height: 100%;
242
- padding: 0 20px;
243
- border-left: 1px solid var(--wptb-plugin-theme-sidebar-bg);
244
- }
245
-
246
- .wptb-undo,
247
- .wptb-redo {
248
- display: inline-block;
249
- cursor: pointer;
250
- }
251
-
252
- .wptb-undo {
253
- margin-right: 7px;
254
- }
255
-
256
- .wptb-undo:hover,
257
- .wptb-redo:hover {
258
- }
259
-
260
- .wptb-undoredo-disabled {
261
- cursor: default;
262
- opacity: .4;
263
- }
264
-
265
- .wptb-embed-btn, .wptb-preview-btn, .wptb-save-btn {
266
- height: 100%;
267
- display: flex;
268
- justify-content: center;
269
- align-items: center;
270
- text-decoration: none;
271
- }
272
-
273
- .wptb-embed,
274
- .wptb-preview,
275
- .wptb-save {
276
- display: flex;
277
- justify-content: center;
278
- align-items: center;
279
- height: 100%;
280
- }
281
-
282
- .wptb-save {
283
- position: relative;
284
- }
285
-
286
- #wptb_builder[data-wptb-saving] .wptb-save-btn {
287
- opacity: 0 !important;
288
- }
289
-
290
- .wptb-busy {
291
- position: absolute;
292
- width: 100%;
293
- height: 100%;
294
- left: 0;
295
- right: 0;
296
- display: flex;
297
- justify-content: space-evenly;
298
- align-items: center;
299
- opacity: 0;
300
- pointer-events: none;
301
- transition: all 0.2s ease-out;
302
- }
303
-
304
- .wptb-busy .wptb-busy-circle {
305
- width: 10px;
306
- height: 10px;
307
- border-radius: 100%;
308
- background-color: var(--wptb-plugin-gray-700);
309
- animation: wptb-beat var(--wptb-busy-duration) ease-out forwards infinite;
310
- }
311
-
312
- .wptb-busy-circle:nth-of-type(2) {
313
- animation-delay: calc(var(--wptb-busy-duration) / 3);
314
- }
315
-
316
- .wptb-busy-circle:nth-of-type(3) {
317
- animation-delay: calc(var(--wptb-busy-duration) / 1.5);
318
- }
319
-
320
- @keyframes wptb-beat {
321
- 0% {
322
- transform: scale(1);
323
- }
324
- 15% {
325
- transform: scale(1.5);
326
- }
327
- 30% {
328
- transform: scale(1);
329
- }
330
- 100% {
331
- transform: scale(1);
332
- }
333
- }
334
-
335
- #wptb_builder[data-wptb-saving] .wptb-busy {
336
- opacity: 1;
337
- pointer-events: all;
338
- cursor: not-allowed;
339
- }
340
-
341
- .wptb-button-grey {
342
- background-color: var(--wptb-plugin-white);
343
- /*border: 1px solid #ccc;*/
344
- /*font-size: 16px;*/
345
- /*font-weight: 500;*/
346
- text-transform: uppercase;
347
- /*display: inline-block;*/
348
- /*padding: 16px;*/
349
- text-decoration: none;
350
- color: inherit;
351
- }
352
-
353
- .wptb-button-grey:hover {
354
- color: inherit;
355
- }
356
-
357
- .wptb-button-grey.wptb-button-disable {
358
- cursor: not-allowed;
359
- color: #CBD5E0 !important;
360
- }
361
-
362
- .wptb-save-btn {
363
- color: inherit;
364
- opacity: 1;
365
- transition: all 0.2s ease-out;
366
- }
367
-
368
- .wptb-save-btn.wptb-save-disabled {
369
- cursor: not-allowed;
370
- color: #CBD5E0 !important;
371
- }
372
-
373
- .wptb-save-btn.wptb-save-disabled:hover {
374
- text-decoration: none;
375
- }
376
-
377
- .wptb-close {
378
- background-color: var(--wptb-plugin-white);
379
- border-left: 1px solid var(--wptb-plugin-gray-300);
380
- }
381
-
382
- .wptb-close:hover {
383
- background: var(--wptb-plugin-gray-300);
384
- }
385
-
386
- .wptb-close a {
387
- text-decoration: none;
388
- }
389
-
390
- .wptb-popup-dark-area {
391
- position: fixed;
392
- width: 100%;
393
- height: 100%;
394
- visibility: hidden;
395
- top: 0;
396
- left: 0;
397
- z-index: 1000;
398
- background-color: slategray;
399
- opacity: 0;
400
- -webkit-transition: all 0.3s;
401
- -moz-transition: all 0.3s;
402
- transition: all 0.3s;
403
- }
404
-
405
- .wptb-popup-window-modal.wptb-popup-show ~ .wptb-popup-dark-area {
406
- visibility: visible;
407
- opacity: .6;
408
- }
409
-
410
- .wptb-popup-window-modal {
411
- position: fixed;
412
- top: 50%;
413
- left: 50%;
414
- width: 50%;
415
- max-width: 630px;
416
- min-width: 300px;
417
- height: auto;
418
- z-index: 2000;
419
- visibility: hidden;
420
- -webkit-backface-visibility: hidden;
421
- -moz-backface-visibility: hidden;
422
- backface-visibility: hidden;
423
- -webkit-transform: translateX(-50%) translateY(-50%);
424
- -moz-transform: translateX(-50%) translateY(-50%);
425
- -ms-transform: translateX(-50%) translateY(-50%);
426
- transform: translateX(-50%) translateY(-50%);
427
- }
428
-
429
- .wptb-popup-window-modal.wptb-popup-show {
430
- visibility: visible;
431
- }
432
-
433
- .wptb-popup-box {
434
- -webkit-transform: scale(0.7);
435
- -moz-transform: scale(0.7);
436
- -ms-transform: scale(0.7);
437
- transform: scale(0.7);
438
- opacity: 0;
439
- -webkit-transition: all 0.3s;
440
- -moz-transition: all 0.3s;
441
- transition: all 0.3s;
442
- border-radius: 0;
443
- box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
444
- padding: 30px;
445
- background-color: white;
446
- }
447
-
448
- .wptb-popup-window-modal.wptb-popup-show .wptb-popup-box {
449
- -webkit-transform: scale(1);
450
- -moz-transform: scale(1);
451
- -ms-transform: scale(1);
452
- transform: scale(1);
453
- opacity: 1;
454
- }
455
-
456
- .wptb-popup-window-close-icon {
457
- height: 20px;
458
- width: 20px;
459
- position: absolute;
460
- top: 10px;
461
- right: 10px;
462
- cursor: pointer;
463
- opacity: .6;
464
- text-align: center;
465
- font-size: 27px !important;
466
- line-height: 14px !important;
467
- display: none;
468
- z-index: 1;
469
- }
470
-
471
- .wptb-popup-content p {
472
- font-size: 15px;
473
- text-align: center;
474
- }
475
-
476
- #wptb-embed-shortcode {
477
- width: 100%;
478
- text-align: center;
479
- font-size: 24px;
480
- display: block;
481
- border: 1px solid #d6d6d6;
482
- padding: 10px;
483
- box-shadow: none;
484
- margin: 20px auto 0 auto;
485
- }
486
-
487
- .wptb-edit-bar ul {
488
- display: flex;
489
- display: -webkit-flex;
490
- list-style: none;
491
- margin: 0;
492
- padding: 0;
493
- }
494
-
495
- .wptb-edit-bar {
496
- border-radius: 2px;
497
- display: none;
498
- padding: .3em .4em 0em .4em;
499
- position: relative;
500
- width: auto;
501
- z-index: 10;
502
- background: none;
503
- max-width: 870px;
504
- margin: auto;
505
- clear: both;
506
- }
507
-
508
- .wptb-edit-bar.visible {
509
- display: block;
510
- }
511
-
512
- .wptb-edit-bar ul li {
513
- height: auto;
514
- margin: 0;
515
- padding: 0;
516
- }
517
-
518
- .wptb-table_change_button {
519
- cursor: pointer;
520
- -webkit-box-sizing: border-box;
521
- box-sizing: border-box;
522
- height: 41px;
523
- background: #fafbfc;
524
- font-size: 13px;
525
- color: #37454c;
526
- border-radius: 3px;
527
- border: 1px solid #a4a4a4;
528
- padding-left: 12px;
529
- padding-right: 12px;
530
- position: relative;
531
- display: inline-block;
532
- text-transform: uppercase;
533
- letter-spacing: .02em;
534
- font-weight: bolder;
535
- text-align: center;
536
- margin-top: 0;
537
- margin-right: 1em;
538
- line-height: 2.4em;
539
- margin-bottom: 8px;
540
- }
541
-
542
- .wptb-management.wptb-bar.wptb-edit-bar.visible button.visible:hover {
543
- color: #4fbe31;
544
- -webkit-transition: all .1s ease-out;
545
- -o-transition: all .1s ease-out;
546
- transition: all .1s ease-out;
547
- }
548
-
549
- #wptb-delete-column,
550
- #wptb-delete-row {
551
- background-color: #eb4c63;
552
- }
553
-
554
- #wptb-left-scroll-panel-curtain .wptb-table-edit-mode-close {
555
- margin: auto;
556
- display: block;
557
- }
558
-
559
- .wptb-table-edit-mode-close {
560
- background: #329d3f;
561
- color: #fff;
562
- }
563
-
564
- .wptb-edit-bar svg {
565
- cursor: pointer;
566
- }
567
-
568
- .wptb-edit-bar svg * {
569
- fill: rgba(0, 0, 0, 0) !important;
570
- stroke: #fff !important;
571
- }
572
-
573
-
574
- /**
575
- * Left Panel
576
- */
577
-
578
- .wptb-left-panel {
579
- position: fixed;
580
- height: 100%;
581
- box-sizing: border-box;
582
- background-color: var(--wptb-plugin-theme-sidebar-bg);
583
- -webkit-transition: all 0.2s ease-out, right 0.2s ease-out;
584
- -o-transition: all 0.2s ease-out, right 0.2s ease-out;
585
- transition: all 0.2s ease-out, right 0.2s ease-out;
586
- box-shadow: 0 0 5px 3px rgba(0, 0, 0, .2);
587
- z-index: 100001;
588
- font-size: var(--wptb-plugin-theme-side-bar-font-size-base);
589
- }
590
-
591
- .wptb-left-panel[data-wptb-panel-location="left"] {
592
- left: 0;
593
- }
594
-
595
- .wptb-left-panel[data-wptb-panel-location="right"] {
596
- right: 0;
597
- }
598
-
599
- .collapsed .wptb-left-panel[data-wptb-panel-location='left'] {
600
- transform: translateX(calc(-100% + var(--wptb-plugin-left-panel-constant)));
601
- }
602
-
603
- .collapsed .wptb-left-panel[data-wptb-panel-location='right'] {
604
- transform: translateX(calc(100% - var(--wptb-plugin-left-panel-constant)));
605
- }
606
-
607
- .collapsed .wptb-left-panel .wptb-left-panel-sidebar-content {
608
- opacity: 0;
609
- }
610
-
611
- .collapsed .wptb-left-panel .wptb-panel-tabs {
612
- opacity: 0;
613
- }
614
-
615
- .wptb-left-scroll-panel {
616
- height: 100%;
617
- overflow-y: auto;
618
- overflow-x: hidden;
619
- }
620
-
621
- #wptb-left-scroll-panel-curtain,
622
- #wptb-left-scroll-panel-cell-settings {
623
- position: absolute;
624
- top: 0;
625
- right: 0;
626
- left: 0;
627
- bottom: 0;
628
- background-color: var(--wptb-plugin-theme-sidebar-bg);
629
- padding: 20px;
630
- display: none;
631
- }
632
-
633
- #wptb-left-scroll-panel-cell-settings {
634
- padding: 0px;
635
- }
636
-
637
- #wptb-left-scroll-panel-curtain.visible {
638
- display: block;
639
- }
640
-
641
- #wptb-left-scroll-panel-cell-settings.visible {
642
- display: block;
643
- }
644
-
645
- .wptb-panel-left {
646
- height: 100%;
647
- width: var(--wptb-plugin-sidebar-size-full);
648
- display: grid;
649
- grid-template-rows: auto auto 1fr auto;
650
- grid-template-columns: 1fr;
651
- grid-auto-flow: row;
652
- transition: width .2s ease-out;
653
- grid-template-areas: "brand" "sidebar-tabs" "sidebar-content" "sidebar-footer";
654
- }
655
-
656
- .wptb-left-panel-sidebar-content {
657
- grid-area: sidebar-content;
658
- overflow: auto;
659
- transition: all 0.2s ease-out;
660
- }
661
-
662
- .wptb-panel-drawer-toggle {
663
- background-color: var(--wptb-plugin-theme-sidebar-bg);
664
- height: 50px;
665
- width: 25px;
666
- position: absolute;
667
- top: calc(50% - 25px);
668
- left: calc(100%);
669
- display: flex;
670
- justify-content: center;
671
- align-items: center;
672
- cursor: pointer;
673
- border-radius: 0px 5px 5px 0;
674
- box-shadow: 3px 1px 5px rgba(0, 0, 0, .2);
675
- }
676
-
677
- .wptb-panel-drawer-icon::after {
678
- content: "\f341";
679
- }
680
-
681
- .collapsed .wptb-panel-drawer-icon::after {
682
- content: "\f345";
683
- }
684
-
685
-
686
- .wptb-panel-brand {
687
- grid-area: brand;
688
- background-color: var(--wptb-plugin-logo-color);
689
- color: var(--wptb-plugin-white);
690
- padding: 25px 0;
691
- font-size: 170%;
692
- display: grid;
693
- grid-template-columns: 1fr;
694
- grid-template-rows: 1fr;
695
- grid-template-areas: "brand-position";
696
- text-align: center;
697
- height: 61px;
698
- }
699
-
700
- .wptb-brand-name {
701
- grid-area: brand-position
702
- }
703
-
704
- .wptb-brand-logo {
705
- grid-area: brand-position;
706
- display: none;
707
- }
708
-
709
- .wptb-panel-tabs {
710
- grid-area: sidebar-tabs;
711
- text-align: center;
712
- justify-content: stretch;
713
- transition: all 0.2s ease-out;
714
- }
715
-
716
- .wptb-panel-tabs div {
717
- width: 100%;
718
- margin: 0 !important;
719
- font-size: 90%;
720
- padding: 10px !important;
721
- }
722
-
723
- .wptb-left-panel-extend {
724
- position: absolute;
725
- top: 50%;
726
- left: 100%;
727
- margin-top: -55px;
728
- overflow: hidden;
729
- width: 18px;
730
- border-top-right-radius: 8px;
731
- border-bottom-right-radius: 8px;
732
- height: 40px;
733
- background-color: #f0f3f3;
734
- -webkit-box-shadow: 1px 0 5px 0 rgba(25, 31, 40, 0.2);
735
- box-shadow: 1px 0 5px 0 rgba(25, 31, 40, 0.2);
736
- display: -webkit-box;
737
- display: -webkit-flex;
738
- display: -ms-flexbox;
739
- display: flex;
740
- -webkit-box-pack: center;
741
- -webkit-justify-content: center;
742
- -ms-flex-pack: center;
743
- justify-content: center;
744
- -webkit-box-align: center;
745
- -webkit-align-items: center;
746
- -ms-flex-align: center;
747
- align-items: center;
748
- font-size: 12px;
749
- color: #353638;
750
- z-index: -1;
751
- border-right: 1px solid #ccc;
752
- border-bottom: 1px solid #ccc;
753
- border-top: 1px solid #ccc;
754
- }
755
-
756
- .wptb-left-panel-extend svg {
757
- display: inline-block;
758
- width: 1em;
759
- height: 1em;
760
- line-height: 1em;
761
- vertical-align: middle;
762
- stroke-width: 0;
763
- stroke: currentColor;
764
- fill: currentColor;
765
- }
766
-
767
- .wptb-container.collapsed .wptb-left-panel .wptb-left-panel-extend svg {
768
- -webkit-transform: rotate(180deg);
769
- -ms-transform: rotate(180deg);
770
- transform: rotate(180deg);
771
- }
772
-
773
-
774
- /**
775
- * Settings Section
776
- */
777
-
778
- .wptb-settings-section p {
779
- font-size: 16px;
780
- margin: 0 0 10px 0;
781
- }
782
-
783
- .wptb-input-px {
784
- right: 35%;
785
- top: 0px;
786
- position: absolute;
787
- margin-top: 7px;
788
- }
789
-
790
- .wptb-settings-dropdown {
791
- font-size: 16px;
792
- padding: 16px 20px 16px 20px;
793
- position: relative;
794
- background-color: #fff;
795
- color: #186cba;
796
- border-top: .5px solid #ccc;
797
- border-bottom: .5px solid #ccc;
798
- }
799
-
800
- .wptb-panel-table-empty-message {
801
- padding: 0 20px;
802
- text-align: center;
803
- font-size: 80%;
804
- font-style: italic;
805
- }
806
-
807
- .wptb-settings-items,
808
- .wptb-cell-management {
809
- /*margin: 0px 1px;*/
810
- transition: 1s 0s ease;
811
- }
812
-
813
- .wptb-cell-management {
814
- display: none;
815
- }
816
-
817
- .wptb-settings-items.visible,
818
- #wptb-inner-border-settings.visible,
819
- .wptb-cell-management.visible {
820
- display: block !important;
821
- opacity: 1;
822
- }
823
-
824
- .wptb-settings-item-title {
825
- font-size: 14px !important;
826
- margin: 0 !important;
827
- /*font-weight: 500;*/
828
- margin: 0;
829
- }
830
-
831
- .wptb-settings-item-header {
832
- font-size: 14px;
833
- /*font-weight: 500;*/
834
- line-height: 14px;
835
- padding: 14px 0 14px 15px;
836
- position: relative;
837
- /*border: 1px solid #ddd;*/
838
- background: var(--wptb-plugin-gray-100);
839
- /*margin-top: 5px;*/
840
- /*margin-bottom: -10px;*/
841
- }
842
-
843
- .wptb-settings-item-header-include-right {
844
- font-size: 14px;
845
- line-height: 14px;
846
- padding: 14px 10px 14px 10px;
847
- position: relative;
848
- background: var(--wptb-plugin-gray-100);
849
- }
850
-
851
- .wptb-settings-row {
852
- box-sizing: border-box !important;
853
- display: flex;
854
- flex: 0 1 auto;
855
- flex-direction: row;
856
- flex-wrap: wrap;
857
- align-items: center;
858
- /*padding-bottom: 25px;*/
859
- padding-right: 0 !important;
860
- }
861
-
862
- .wptb-settings-row label {
863
- display: flex;
864
- flex-direction: row;
865
- justify-content: space-between;
866
- align-items: center;
867
- }
868
-
869
- .wptb-settings-middle-xs {
870
- align-items: center;
871
- background: var(--wptb-plugin-gray-100);
872
- /*padding: 10px 10px 20px 10px;*/
873
- padding: 15px !important;
874
- /*margin: 0px 0 6px 0;*/
875
- border-bottom: 1px solid #e5dfdf;
876
- /*border-radius: 2px;*/
877
- }
878
-
879
- .wptb-settings-middle-xs * {
880
- font-size: 14px !important;
881
- }
882
-
883
- .wptb-settings-col-xs-12 {
884
- flex-basis: 100%;
885
- max-width: 100%;
886
- }
887
-
888
- .wptb-settings-col-xs-8 {
889
- flex-basis: 66.66666667%;
890
- max-width: 66.66666667%;
891
- }
892
-
893
- .wptb-settings-col-xs-4 {
894
- flex-basis: 33.33333333%;
895
- max-width: 33.33333333%;
896
- position: relative;
897
- }
898
-
899
- .wptb-number-input {
900
- max-width: 75px;
901
- width: 100%;
902
- margin: 3px 10px;
903
- }
904
-
905
- input[type="number"] {
906
- height: 28px !important;
907
- line-height: 1;
908
- padding: 3px 5px !important;
909
- }
910
-
911
- input[type=range]::-moz-focus-inner {
912
- border: 0;
913
- }
914
-
915
- input[type=range]::-moz-focus-outer {
916
- border: none;
917
- outline: none;
918
- }
919
-
920
- input[type=range]:focus {
921
- outline: 0;
922
- }
923
-
924
- input[type="range"] {
925
- -webkit-appearance: none;
926
- -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
927
- width: 100%;
928
- height: 8px;
929
- margin: 0;
930
- border: none;
931
- padding: 1px 2px;
932
- border-radius: 14px;
933
- background: #cccccc;
934
- outline: none;
935
- /* no focus outline */
936
- }
937
-
938
- input[type="range"]::-moz-range-track {
939
- border: inherit;
940
- background: #cccccc;
941
- }
942
-
943
- input[type="range"]::-ms-track {
944
- border: inherit;
945
- color: transparent;
946
- /* don't drawn vertical reference line */
947
- background: #cccccc;
948
- }
949
-
950
- input[type="range"]::-ms-fill-lower,
951
- input[type="range"]::-ms-fill-upper {
952
- background: #cccccc;
953
- }
954
-
955
- input[type="range"]::-ms-tooltip {
956
- display: none;
957
- }
958
-
959
- input[type=range]::-webkit-slider-thumb:before {
960
- content: "";
961
- position: absolute;
962
- left: -3000px;
963
- right: 100%;
964
- top: 50%;
965
- height: 6px;
966
- padding: 0;
967
- background: #1d9b2a;
968
- transform: translate(0, -50%);
969
- }
970
-
971
- input[type=range]::-moz-range-progress {
972
- background-color: #3B7EC0;
973
- height: 6px;
974
- }
975
-
976
-
977
- /* thumb */
978
-
979
- input[type="range"]::-webkit-slider-thumb {
980
- -webkit-appearance: none;
981
- width: 18px;
982
- height: 18px;
983
- border: 1px solid #3B7EC0;
984
- border-radius: 50%;
985
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #ffffff));
986
- /* android <= 2.2 */
987
- background-image: -webkit-linear-gradient(top, #ffffff 0, #ffffff 100%);
988
- /* older mobile safari and android > 2.2 */;
989
- background-image: linear-gradient(to bottom, #ffffff 0, #ffffff 100%);
990
- /* W3C */
991
- }
992
-
993
- input[type="range"]::-moz-range-thumb {
994
- width: 18px;
995
- height: 18px;
996
- border: 1px solid #3B7EC0;
997
- border-radius: 50%;
998
- background-image: linear-gradient(to bottom, #ffffff 0, #ffffff 100%);
999
- /* W3C */
1000
- }
1001
-
1002
- input[type="range"]::-ms-thumb {
1003
- width: 18px;
1004
- height: 18px;
1005
- border-radius: 50%;
1006
- border: 1px solid #3B7EC0;
1007
- background-image: linear-gradient(to bottom, #ffffff 0, #ffffff 100%);
1008
- /* W3C */
1009
- }
1010
-
1011
- .wptb-toggle {
1012
- display: inline-block;
1013
- width: 95%;
1014
- /*padding: 25px 0 10px 0;*/
1015
- }
1016
-
1017
- .wptb-toggle input {
1018
- display: none;
1019
- }
1020
-
1021
- .wptb-toggle input:checked + i::after {
1022
- -webkit-transform: translateX(20px);
1023
- transform: translateX(20px);
1024
- }
1025
-
1026
- .wptb-toggle input:checked + i {
1027
- background: #3B7EC0;
1028
- }
1029
-
1030
- .wptb-toggle i {
1031
- float: right;
1032
- padding: 2px;
1033
- width: 40px;
1034
- height: 20px;
1035
- border-radius: 13px;
1036
- vertical-align: middle;
1037
- transition: .25s .09s;
1038
- position: relative;
1039
- background: #d8d9db;
1040
- box-sizing: initial;
1041
- }
1042
-
1043
- .wptb-toggle i::after {
1044
- content: " ";
1045
- display: block;
1046
- width: 20px;
1047
- height: 20px;
1048
- border-radius: 50%;
1049
- background: #fff;
1050
- position: absolute;
1051
- left: 2px;
1052
- transition: .25s;
1053
- }
1054
-
1055
- .wptb-toggle.wptb-toggle2 input:checked + i::after,
1056
- .wptb-toggle.wptb-size-fixed-auto input:checked + i::after {
1057
- -webkit-transform: translateX(50px);
1058
- transform: translateX(50px);
1059
- }
1060
-
1061
- .wptb-toggle.wptb-toggle2 i,
1062
- .wptb-toggle.wptb-size-fixed-auto i {
1063
- float: left;
1064
- width: 100px;
1065
- border-radius: 5px;
1066
- height: 25px;
1067
- }
1068
-
1069
- .wptb-toggle.wptb-toggle2 i:after,
1070
- .wptb-toggle.wptb-size-fixed-auto i:after {
1071
- width: 50px;
1072
- height: 25px;
1073
- border-radius: 5px;
1074
- -webkit-transform: translateX(0px);
1075
- transform: translateX(0px);
1076
- }
1077
-
1078
- .wptb-checkbox {
1079
- display: block;
1080
- user-select: none;
1081
- padding-top: 3px;
1082
- padding-bottom: 3px;
1083
- }
1084
-
1085
- .wptb-checkbox span {
1086
- vertical-align: middle;
1087
- }
1088
-
1089
- .wptb-checkbox input[type="checkbox"] {
1090
- opacity: 0;
1091
- height: 0;
1092
- width: 0;
1093
- display: none;
1094
- }
1095
-
1096
- .wptb-checkbox-checkmark {
1097
- height: 25px;
1098
- width: 25px;
1099
- background-color: #d8d9db;
1100
- display: inline-block;
1101
- position: relative;
1102
- border-radius: 3px;
1103
- margin-left: 5px;
1104
- }
1105
-
1106
- .wptb-checkbox:hover input[type="checkbox"] ~ .wptb-checkbox-checkmark {
1107
- background-color: #6EA4D8;
1108
- }
1109
-
1110
- .wptb-checkbox input[type="checkbox"]:checked ~ .wptb-checkbox-checkmark {
1111
- background-color: #3B7EC0;
1112
- }
1113
-
1114
- .wptb-checkbox-checkmark:after {
1115
- content: "";
1116
- position: absolute;
1117
- display: none;
1118
- }
1119
-
1120
- .wptb-checkbox input[type="checkbox"]:checked ~ .wptb-checkbox-checkmark:after {
1121
- display: block;
1122
- }
1123
-
1124
- .wptb-checkbox .wptb-checkbox-checkmark:after {
1125
- left: 10px;
1126
- top: 7px;
1127
- width: 6px;
1128
- height: 11px;
1129
- border: solid #fff;
1130
- border-width: 0 2px 2px 0;
1131
- transform: rotate(45deg);
1132
- }
1133
-
1134
- .wptb-column-fixed,
1135
- .wptb-column-auto {
1136
- position: absolute;
1137
- font-size: 15px;
1138
- width: 50%;
1139
- height: 100%;
1140
- text-align: center;
1141
- line-height: 25px;
1142
- }
1143
-
1144
- .wptb-column-fixed {
1145
- color: #d8d9db;
1146
- }
1147
-
1148
- .wptb-column-auto {
1149
- color: #3B7EC0;
1150
- right: 0;
1151
- }
1152
-
1153
-
1154
- /**
1155
- * Element Section
1156
- */
1157
-
1158
- .wptb-elements-section {
1159
- /*height: auto;*/
1160
- grid-area: sidebar-content;
1161
- }
1162
-
1163
- #element-options-group {
1164
- grid-area: sidebar-content;
1165
- padding-top: 20px;
1166
- }
1167
-
1168
- .wptb-settings-section {
1169
- grid-area: sidebar-content;
1170
- }
1171
-
1172
- .wptb-responsive-section {
1173
- grid-area: sidebar-content;
1174
- }
1175
-
1176
- [data-wptb-section] {
1177
- padding-top: 20px;
1178
- animation: wptb-basic-appear 0.2s ease-out;
1179
- }
1180
-
1181
- .wptb-tabs {
1182
- width: 100%;
1183
- margin: 0;
1184
- padding: 0;
1185
- background: #ffffff;
1186
- border-bottom: .5px solid #ccc;
1187
- max-width: 349px;
1188
- z-index: 10;
1189
- }
1190
-
1191
- ul.wptb-tabs {
1192
- list-style: none;
1193
- }
1194
-
1195
- .wptb-tabs li {
1196
- float: left;
1197
- width: 49.3%;
1198
- margin: 0;
1199
- }
1200
-
1201
- .wptb-tabs li:last-of-type {
1202
- float: right;
1203
- }
1204
-
1205
- .wptb-tabs li a {
1206
- display: block;
1207
- text-align: center;
1208
- padding: 18px 10px;
1209
- font-size: 16px;
1210
- color: #186cba;
1211
- text-decoration: none;
1212
- }
1213
-
1214
- .wptb-tabs li a:hover {
1215
- color: #186cba;
1216
- text-decoration: none;
1217
- }
1218
-
1219
- .wptb-tabs li a:focus {
1220
- -webkit-box-shadow: none;
1221
- box-shadow: none;
1222
- }
1223
-
1224
- .wptb-tabs li .active,
1225
- .wptb-tabs li .active:hover {
1226
- color: #186cba;
1227
- }
1228
-
1229
-
1230
- .wptb-tabs #wptb-add-elements .active {
1231
- background: #fff;
1232
- }
1233
-
1234
- .wptb-tabs #element-options .active {
1235
- background: #fff;
1236
- }
1237
-
1238
-
1239
- /**
1240
- * Tabs Content
1241
- */
1242
-
1243
- .wptb-tab-content {
1244
- padding: 0;
1245
- }
1246
-
1247
- .wptb-panel-toggle-group {
1248
- background-color: var(--wptb-plugin-theme-color-light);
1249
- box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
1250
- margin: 20px 0;
1251
- }
1252
-
1253
- .wptb-panel-toggle {
1254
- background-color: var(--wptb-plugin-theme-color-light);
1255
- padding: 10px;
1256
- display: flex;
1257
- flex-direction: row;
1258
- justify-content: space-between;
1259
- align-items: center;
1260
- border-bottom: 3px solid var(--wptb-plugin-theme-sidebar-bg);
1261
- cursor: pointer;
1262
- }
1263
-
1264
- .wptb-element-options .wptb-panel-toggle {
1265
- cursor: pointer;
1266
- }
1267
-
1268
- .wptb-panel-toggle .header {
1269
- text-transform: uppercase;
1270
- font-size: 90%;
1271
- display: flex;
1272
- flex-direction: row;
1273
- justify-content: center;
1274
- align-items: center;
1275
- }
1276
-
1277
- .wptb-panel-toggle .header .wptb-panel-toggle-group-header-icon {
1278
- width: 17px;
1279
- margin-right: 7px;
1280
- color: var(--wptb-plugin-logo-color);
1281
- }
1282
-
1283
- .wptb-panel-toggle .header .wptb-panel-toggle-group-header-icon:empty {
1284
- display: none;
1285
- }
1286
-
1287
- .wptb-panel-toggle .header .wptb-panel-toggle-group-header-icon svg {
1288
- fill: currentColor;
1289
- }
1290
-
1291
- .header .wptb-back-button {
1292
- margin-right: 10px;
1293
- }
1294
-
1295
- .wptb-panel-toggle .toggle-icon {
1296
- cursor: pointer;
1297
- }
1298
-
1299
- .wptb-panel-toggle .toggle-icon::after {
1300
- content: "\f343";
1301
- }
1302
-
1303
- .wptb-panel-toggle-content .wptb-panel-toggle .toggle-icon::after {
1304
- content: "\f347";
1305
- }
1306
-
1307
- .wptb-panel-toggle-target {
1308
- background-color: var(--wptb-plugin-gray-100);
1309
- padding: 20px 10px;
1310
- }
1311
-
1312
- .wptb-panel-section-toggle-target {
1313
- background-color: var(--wptb-plugin-gray-100);
1314
- }
1315
-
1316
- .wptb-panel-elements-inner-wrapper {
1317
- display: grid;
1318
- grid-auto-flow: row;
1319
- grid-template-columns: 1fr 1fr;
1320
- grid-gap: 10px;
1321
- color: var(--wptb-plugin-theme-text-color-main);
1322
- font-size: 80%;
1323
- }
1324
-
1325
- .wptb-section-group-tabbed {
1326
- display: grid;
1327
- grid-template-columns: 1fr;
1328
- grid-template-areas: "header" "tabButtons" "controls";
1329
- grid-auto-flow: row;
1330
- grid-template-rows: auto;
1331
- }
1332
-
1333
- .wptb-section-group-tabbed-header {
1334
- grid-area: header;
1335
- justify-content: center !important;
1336
- }
1337
-
1338
- .wptb-section-group-tabbed-tabs-buttons {
1339
- grid-area: tabButtons;
1340
- display: flex;
1341
- flex-direction: row;
1342
- background-color: var(--wptb-plugin-theme-color-light);
1343
- text-align: center;
1344
- justify-content: stretch;
1345
- border-bottom: 1px solid #E5DFDF;
1346
- }
1347
-
1348
- .wptb-section-group-tabbed-tabs-buttons div {
1349
- width: 100%;
1350
- margin: 0 !important;
1351
- font-size: 90%;
1352
- padding: 7px !important;
1353
- }
1354
-
1355
- .wptb-section-group-tab-content {
1356
- grid-area: controls;
1357
- /*animation: wptb-basic-appear 0.2s ease-out;*/
1358
- transition: opacity 0.2s ease-out;
1359
- }
1360
-
1361
- .wptb-plugin-non-visible {
1362
- /*display: none !important;*/
1363
- height: 0;
1364
- opacity: 0;
1365
- pointer-events: none;
1366
- transition: none !important;
1367
- }
1368
-
1369
- .wptb-plugin-non-visible div {
1370
- height: 0;
1371
- }
1372
-
1373
- /**
1374
- * Elements
1375
- */
1376
-
1377
-
1378
- .wptb-elements-container {
1379
- width: 100%;
1380
- max-height: inherit;
1381
- /*display: table;*/
1382
- padding: 0 0 60px 0;
1383
- background-color: inherit;
1384
- }
1385
-
1386
- .wptb-element {
1387
- position: relative;
1388
- background: var(--wptb-plugin-theme-color-light);
1389
- /*font-size: 15px;*/
1390
- display: flex;
1391
- align-items: center;
1392
- justify-content: center;
1393
- flex-direction: column;
1394
- height: 100px;
1395
- text-align: center;
1396
- border-radius: 5px;
1397
- border: 2px solid var(--wptb-plugin-gray-400);
1398
- transition: all .25s;
1399
- cursor: move;
1400
- }
1401
-
1402
- .wptb-element:nth-child(odd) {
1403
- /*width: 47.5%;*/
1404
- /*float: left;*/
1405
- /*margin: 6px 0 -4px 6px;*/
1406
- }
1407
-
1408
- .wptb-element:nth-child(even) {
1409
- /*width: 47.5%;*/
1410
- /*float: right;*/
1411
- /*margin: 6px 5px -4px 0;*/
1412
- }
1413
-
1414
- .wptb-element p {
1415
- margin: 0;
1416
- }
1417
-
1418
- .wptb-element:hover {
1419
- box-shadow: 3px 3px 2px 0.5px rgba(0, 0, 0, 0.2);
1420
- }
1421
-
1422
- .wptb-element svg {
1423
- fill: var(--wptb-plugin-theme-text-color-main) !important;
1424
- }
1425
-
1426
- .wptb-element-draggable-icon {
1427
- position: absolute;
1428
- top: 0;
1429
- right: 0;
1430
- color: var(--wptb-plugin-gray-500) !important;
1431
- }
1432
-
1433
- .left {
1434
- width: 47.5%;
1435
- float: left;
1436
- margin: 6px 0 -4px 6px;
1437
- }
1438
-
1439
- .right {
1440
- width: 47.5%;
1441
- float: right;
1442
- margin: 6px 5px -4px 0;
1443
- }
1444
-
1445
-
1446
- /**
1447
- * Builder Panel
1448
- */
1449
-
1450
- .wptb-builder-panel {
1451
- display: flex;
1452
- flex-direction: column;
1453
- position: relative;
1454
- /*left: var(--wptb-plugin-sidebar-size-full);*/
1455
- min-height: 100%;
1456
- height: 100%;
1457
- -webkit-transition: all 0.2s ease-out, right 0.2s ease-out;
1458
- -o-transition: all 0.2s ease-out, right 0.2s ease-out;
1459
- transition: all 0.2s ease-out, right 0.2s ease-out;
1460
- width: calc(100% - var(--wptb-plugin-sidebar-size-full));
1461
- text-align: center;
1462
- z-index: 100000;
1463
- }
1464
-
1465
- [data-wptb-night-mode="true"] .wptb-builder-panel {
1466
- background-color: var(--wptb-plugin-gray-500);
1467
- }
1468
-
1469
- .wptb-left-panel[data-wptb-panel-location="left"] + .wptb-builder-panel {
1470
- left: var(--wptb-plugin-sidebar-size-full);
1471
- }
1472
-
1473
- .wptb-left-panel[data-wptb-panel-location="right"] + .wptb-builder-panel {
1474
- left: 0;
1475
- }
1476
-
1477
-
1478
- .collapsed .wptb-left-panel[data-wptb-panel-location="left"] + .wptb-builder-panel {
1479
- left: calc(0px + var(--wptb-plugin-left-panel-constant)) !important;
1480
- width: calc(100% - var(--wptb-plugin-left-panel-constant)) !important;
1481
- }
1482
-
1483
-
1484
- .collapsed .wptb-left-panel[data-wptb-panel-location="right"] + .wptb-builder-panel {
1485
- right: calc(0px - var(--wptb-plugin-left-panel-constant)) !important;
1486
- width: calc(100% - var(--wptb-plugin-left-panel-constant)) !important;
1487
- }
1488
-
1489
- /*.collapsed .wptb-builder-panel {*/
1490
- /* left: calc(0px + var(--wptb-plugin-left-panel-constant)) !important;*/
1491
- /* width: calc(100% - var(--wptb-plugin-left-panel-constant)) !important;*/
1492
- /*}*/
1493
-
1494
- /**
1495
- * Table name Setup
1496
- */
1497
-
1498
- .wptb-name-setup {
1499
- /*justify-content: center;*/
1500
- text-align: start;
1501
- margin: 0 20px;
1502
- grid-area: table-name;
1503
- }
1504
-
1505
- .wptb-left-panel[data-wptb-panel-location="right"] + .wptb-builder-panel .wptb-name-setup {
1506
- text-align: end !important;
1507
- }
1508
-
1509
- .wptb-left-panel[data-wptb-panel-location="right"] + .wptb-builder-panel .wptb-name-setup input {
1510
- text-align: end !important;
1511
- }
1512
-
1513
- .wptb-plugin-header-close {
1514
- grid-area: close;
1515
- }
1516
-
1517
- #wptb-setup-name {
1518
- height: 50px;
1519
- box-shadow: none;
1520
- border: 1px solid var(--wptb-plugin-gray-300);
1521
- font-size: 100%;
1522
- width: 420px;
1523
- padding: 0 20px;
1524
- }
1525
-
1526
- .wptb-messaging {
1527
- color: white;
1528
- height: 0;
1529
- margin: 0 auto;
1530
- padding: 5px;
1531
- transition: all 1s 0s;
1532
- width: 90%;
1533
- text-align: initial;
1534
- }
1535
-
1536
- .wptb-messaging.wptb-success {
1537
- background: #4caf50;
1538
- background: -moz-linear-gradient(45deg, #4caf50 0%, #8bc34a 100%);
1539
- background: -webkit-linear-gradient(45deg, #4caf50 0%, #8bc34a 100%);
1540
- background: linear-gradient(45deg, #4caf50 0%, #8bc34a 100%);
1541
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4caf50', endColorstr='#8bc34a', GradientType=1);
1542
- height: auto;
1543
- }
1544
-
1545
- .wptb-messaging.wptb-warning {
1546
- background: #f44336;
1547
- background: -moz-linear-gradient(45deg, #f44336 0%, #ff5722 100%);
1548
- background: -webkit-linear-gradient(45deg, #f44336 0%, #ff5722 100%);
1549
- background: linear-gradient(45deg, #f44336 0%, #ff5722 100%);
1550
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f44336', endColorstr='#ff5722', GradientType=1);
1551
- height: auto;
1552
- }
1553
-
1554
- .wptb-management_table_container {
1555
- margin: auto;
1556
- text-align: initial;
1557
- }
1558
-
1559
- .wptb-table-setup {
1560
- justify-content: center;
1561
- position: relative;
1562
- z-index: 1;
1563
- margin: 30px auto;
1564
- background: #fff;
1565
- max-width: 700px;
1566
- overflow-x: auto;
1567
- overflow-y: hidden;
1568
- }
1569
-
1570
- [data-wptb-active-section="manage_cells"] .wptb-table-setup {
1571
-
1572
- }
1573
-
1574
- #wptb-cell_mode_background {
1575
- position: absolute;
1576
- top: 0;
1577
- left: 0;
1578
- right: 0;
1579
- bottom: 0;
1580
- background: rgba(49, 59, 71, 0.49);
1581
- display: none;
1582
- text-align: initial;
1583
- }
1584
-
1585
- #wptb-cell_mode_background.visible {
1586
- display: block;
1587
- }
1588
-
1589
-
1590
- /**
1591
- * Table
1592
- */
1593
-
1594
- table.wptb-table {
1595
- border-collapse: collapse
1596
- }
1597
-
1598
- .wptb-wrapper {
1599
- margin: 0 auto;
1600
- padding: 40px;
1601
- max-width: 960px;
1602
- text-align: initial;
1603
- }
1604
-
1605
- .wptb-table {
1606
- margin: 20px 0 60px 0;
1607
- width: 100%;
1608
- border: 1px solid #ccc;
1609
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
1610
- display: table;
1611
- }
1612
-
1613
- @media screen and (max-width: 580px) {
1614
- .wptb-table {
1615
- display: block;
1616
- }
1617
- }
1618
-
1619
- .wptb-row {
1620
- display: table-row;
1621
- background: #bebebe;
1622
- }
1623
-
1624
- .wptb-row:nth-of-type(odd) {
1625
- background: #bebebe;
1626
- }
1627
-
1628
- .wptb-row.wptb-table-header {
1629
- font-weight: 900;
1630
- color: #ffffff;
1631
- background: #ea6153;
1632
- }
1633
-
1634
- .wptb-row.wptb-green {
1635
- background: #27ae60;
1636
- }
1637
-
1638
- .wptb-row.wptb-blue {
1639
- background: #2980b9;
1640
- }
1641
-
1642
- @media screen and (max-width: 580px) {
1643
- .wptb-row {
1644
- padding: 14px 0 7px;
1645
- display: block;
1646
- }
1647
-
1648
- .wptb-row.wptb-table-header {
1649
- padding: 0;
1650
- height: 6px;
1651
- }
1652
-
1653
- .wptb-row.wptb-table-header .wptb-cell {
1654
- display: none;
1655
- }
1656
-
1657
- .wptb-row .wptb-cell {
1658
- margin-bottom: 10px;
1659
- }
1660
-
1661
- .wptb-row .wptb-cell:before {
1662
- margin-bottom: 3px;
1663
- content: attr(data-title);
1664
- min-width: 98px;
1665
- font-size: 10px;
1666
- line-height: 10px;
1667
- font-weight: bold;
1668
- text-transform: uppercase;
1669
- color: #969696;
1670
- display: block;
1671
- }
1672
- }
1673
-
1674
- .wptb-cell {
1675
- padding: 12px 12px;
1676
- display: table-wptb-cell;
1677
- }
1678
-
1679
- @media screen and (max-width: 580px) {
1680
- /* .wptb-cell {
1681
- padding: 2px 16px;
1682
- display: block;
1683
- }*/
1684
- }
1685
-
1686
- .wptb-preview-table {
1687
- table-layout: fixed;
1688
- font-size: 15px;
1689
- display: table;
1690
- border-collapse: collapse !important;
1691
- margin: auto;
1692
- width: auto;
1693
- }
1694
-
1695
- .wptb-preview-table.wptb-preview-table-auto-width {
1696
- width: auto;
1697
- }
1698
-
1699
- .wptb-preview-table-manage-cells tbody > tr > td::after {
1700
- content: '';
1701
- display: block;
1702
- position: absolute;
1703
- top: 0;
1704
- right: 0;
1705
- left: 0;
1706
- bottom: 0;
1707
- z-index: 100;
1708
- }
1709
-
1710
- .wptb-preview-table-manage-cells td:hover::after {
1711
- background: rgba(207, 218, 239, 0.2);
1712
- border-color: inherit;
1713
- }
1714
-
1715
- .wptb-preview-table p {
1716
- margin: 0;
1717
- font-size: 15px;
1718
- word-wrap: break-word;
1719
- overflow-wrap: break-word;
1720
- word-break: break-word;
1721
- }
1722
-
1723
- .wptb-preview-table ul {
1724
- list-style-type: disc;
1725
- margin-left: 15px;
1726
- }
1727
-
1728
- .wptb-preview-table tr {
1729
- display: table-row;
1730
- background: #fcfcfc;
1731
- }
1732
-
1733
- .wptb-preview-table tr:nth-of-type(odd) {
1734
- background: #eeeeee;
1735
- }
1736
-
1737
- .wptb-state-dragging td {
1738
- cursor: all-scroll;
1739
- }
1740
-
1741
- .wptb-preview-table td {
1742
- padding: 15px;
1743
- position: relative;
1744
- box-sizing: content-box;
1745
- }
1746
-
1747
- .wptb-preview-table td.wptb-td-default-width {
1748
- width: 100px;
1749
- }
1750
-
1751
- .wptb-preview-table .wptb-row td.wptb-highlighted,
1752
- .wptb-state-dragging td:hover {
1753
- outline: 1px solid #acc1e2;
1754
- }
1755
-
1756
- .wptb-preview-table .wptb-row.wptb-highlighted-row {
1757
- background-color: hsla(210, 53%, 49%, 0.34);
1758
- border: 1px solid pink;
1759
- }
1760
-
1761
- .wptb-preview-table .wptb-row td.wptb-highlighted-row-first {
1762
- background-color: hsla(210, 53%, 49%, 0.34);
1763
- border-bottom: 1px solid pink;
1764
- border-left: 1px solid pink;
1765
- border-right: inherit;
1766
- border-top: 1px solid pink;
1767
- }
1768
-
1769
- .wptb-preview-table .wptb-row td.wptb-highlighted-row-inner {
1770
- background-color: hsla(210, 53%, 49%, 0.34);
1771
- border-bottom: 1px solid pink;
1772
- border-left: inherit;
1773
- border-right: inherit;
1774
- border-top: 1px solid pink;
1775
- }
1776
-
1777
- .wptb-preview-table .wptb-row td.wptb-highlighted-row-last {
1778
- background-color: hsla(210, 53%, 49%, 0.34);
1779
- border-bottom: 1px solid pink;
1780
- border-left: inherit;
1781
- border-right: 1px solid pink;
1782
- border-top: 1px solid pink;
1783
- }
1784
-
1785
- .wptb-preview-table .wptb-row td.wptb-highlighted-column-first {
1786
- background-color: hsla(210, 53%, 49%, 0.34);
1787
- border-bottom: inherit;
1788
- border-left: 1px solid pink;
1789
- border-right: 1px solid pink;
1790
- border-top: 1px solid pink;
1791
- }
1792
-
1793
- .wptb-preview-table .wptb-row td.wptb-highlighted-column-inner {
1794
- background-color: hsla(210, 53%, 49%, 0.34);
1795
- border-bottom: inherit;
1796
- border-left: 1px solid pink;
1797
- border-right: 1px solid pink;
1798
- border-top: inherit;
1799
- }
1800
-
1801
- .wptb-preview-table .wptb-row td.wptb-highlighted-column-last {
1802
- background-color: hsla(210, 53%, 49%, 0.34);
1803
- border-bottom: 1px solid pink;
1804
- border-left: 1px solid pink;
1805
- border-right: 1px solid pink;
1806
- border-top: inherit;
1807
- }
1808
-
1809
- .wptb-row td:empty::before {
1810
- content: 'Cell';
1811
- display: block;
1812
- font-weight: normal;
1813
- font-size: 80%;
1814
- text-align: center;
1815
- color: #969fa6;
1816
- }
1817
-
1818
- .wptb-row td:empty::after {
1819
- content: '';
1820
- display: block;
1821
- border: 1px dashed #969fa6;
1822
- position: absolute;
1823
- top: 2px;
1824
- right: 2px;
1825
- bottom: 2px;
1826
- left: 2px;
1827
- }
1828
-
1829
- .wptb-preview-table.wptb-table-preview-head .wptb-row:first-child td:empty::before {
1830
- content: 'Header';
1831
- }
1832
-
1833
- .wptb-ph-element {
1834
- position: relative;
1835
- border: 1px solid #fff0;
1836
- min-height: 15px;
1837
- }
1838
-
1839
-
1840
- /*
1841
- ** Image Style
1842
- */
1843
-
1844
- .wptb-image-wrapper img {
1845
- width: 100%;
1846
- display: block;
1847
- padding: 0;
1848
- max-width: 100%;
1849
- height: auto;
1850
- transition: all 0.2s ease-out;
1851
- }
1852
-
1853
- .wptb-image-wrapper a {
1854
- display: block;
1855
- max-width: 100%;
1856
- position: relative;
1857
- margin: auto;
1858
- text-decoration: none;
1859
- }
1860
-
1861
- .wptb-icon-image-button {
1862
- display: block;
1863
- padding: 5px;
1864
- background: #747d84;
1865
- border-radius: 5px;
1866
- color: black;
1867
- cursor: pointer;
1868
- }
1869
-
1870
- .wptb-image-wrapper::after {
1871
- content: "";
1872
- display: block;
1873
- height: 0;
1874
- width: 100%;
1875
- clear: both;
1876
- }
1877
-
1878
-
1879
- /*
1880
- ** Button Style
1881
- */
1882
-
1883
- .wptb-button-wrapper {
1884
- display: flex;
1885
- align-items: center;
1886
- justify-content: center;
1887
- }
1888
-
1889
- .wptb-button-wrapper > a {
1890
- text-decoration: none;
1891
- max-width: 100%;
1892
- }
1893
-
1894
- .wptb-button {
1895
- padding: 16px;
1896
- background: #329d3f;
1897
- color: #ffffff;
1898
- cursor: pointer;
1899
- border-radius: 5px;
1900
- border: 0;
1901
- box-shadow: none;
1902
- transition: all 0.2s ease-out;
1903
- display: flex;
1904
- justify-content: center;
1905
- align-items: center;
1906
- }
1907
-
1908
- .wptb-button-icon {
1909
- margin: 0 5px;
1910
- order: -1;
1911
- width: 25px;
1912
- height: 25px;
1913
- display: flex;
1914
- justify-content: center;
1915
- align-items: center;
1916
- }
1917
-
1918
- .wptb-button-icon svg {
1919
- width: 100%;
1920
- height: 100%;
1921
- fill: currentColor;
1922
- }
1923
-
1924
- .wptb-button-icon[data-wptb-button-icon-src=""] {
1925
- display: none;
1926
- }
1927
-
1928
- [data-wptb-button-icon-position='right'] .wptb-button-icon {
1929
- order: 2
1930
- }
1931
-
1932
- .wptb-plugin-button-order-right .wptb-button-icon {
1933
- order: 2;
1934
- }
1935
-
1936
- .wptb-button:hover {
1937
- color: #ffffff;
1938
- }
1939
-
1940
-
1941
- /**
1942
- * Table Generator
1943
- */
1944
-
1945
- .wptb-table-generator {
1946
- text-align: center;
1947
- margin: 60px auto 20px auto;
1948
- }
1949
-
1950
- .wptb-table-generator input {
1951
- margin: 0;
1952
- }
1953
-
1954
- .wptb-generator-btn {
1955
- width: 92%;
1956
- padding: 15px;
1957
- background: var(--wptb-plugin-logo-color);
1958
- color: white;
1959
- cursor: pointer;
1960
- border: none;
1961
- box-shadow: none;
1962
- border-radius: 5px;
1963
- }
1964
-
1965
- .wptb-input-number {
1966
- width: 80px;
1967
- padding: 0 12px;
1968
- vertical-align: top;
1969
- text-align: center;
1970
- outline: none;
1971
- }
1972
-
1973
- .wptb-input-number,
1974
- .wptb-input-number-decrement,
1975
- .wptb-input-number-increment {
1976
- border: 1px solid #ccc;
1977
- height: 40px;
1978
- }
1979
-
1980
- .wptb-input-number-decrement,
1981
- .wptb-input-number-increment {
1982
- display: inline-block;
1983
- width: 30px;
1984
- line-height: 38px;
1985
- background: #f1f1f1;
1986
- color: #444;
1987
- text-align: center;
1988
- font-weight: bold;
1989
- cursor: pointer;
1990
- user-select: none;
1991
- }
1992
-
1993
- .wptb-input-number-decrement:active,
1994
- .wptb-input-number-increment:active {
1995
- background: #ddd;
1996
- }
1997
-
1998
- .wptb-input-number-decrement {
1999
- border-right: none;
2000
- border-radius: 4px 0 0 4px;
2001
- }
2002
-
2003
- .wptb-input-number-increment {
2004
- border-left: none;
2005
- border-radius: 0 4px 4px 0;
2006
- }
2007
-
2008
- .wptb-allow-drop {
2009
- background: #b5e0d7;
2010
- }
2011
-
2012
- #wpcd_fixed_toolbar {
2013
- min-height: 55px;
2014
- text-align: center;
2015
- position: sticky !important;
2016
- top: 39px;
2017
- z-index: 100;
2018
- display: inline-block;
2019
- }
2020
-
2021
- #wpcd_fixed_toolbar > div.toolbar-active {
2022
- display: block !important;
2023
- }
2024
-
2025
-
2026
- /*
2027
- ** Button Size Selector Style
2028
- */
2029
-
2030
- .wptb-btn-size-btn {
2031
- padding: 8px 15px;
2032
- margin: 0;
2033
- vertical-align: middle;
2034
- border: solid 1px #ccc;
2035
- font-size: 12px;
2036
- border-radius: 4px;
2037
- cursor: pointer;
2038
- }
2039
-
2040
- .wptb-btn-size-switcher {
2041
- background: linear-gradient(to bottom, white, #eeeeee);
2042
- display: table-cell;
2043
- border-right: none;
2044
- border-radius: 0;
2045
- color: #433f33;
2046
- }
2047
-
2048
- .wptb-btn-size-switcher:first-child {
2049
- border-radius: 4px 0 0 4px;
2050
- }
2051
-
2052
- .wptb-btn-size-switcher:last-child {
2053
- border-radius: 0 4px 4px 0;
2054
- border-right: solid 1px #ccc;
2055
- }
2056
-
2057
- .wptb-btn-size-switcher:hover {
2058
- background: #fff;
2059
- }
2060
-
2061
- .wptb-btn-size-switcher:active {
2062
- box-shadow: inset 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
2063
- }
2064
-
2065
- .wptb-btn-size-switcher.bnt-selected {
2066
- background: #fff;
2067
- box-shadow: inset 0px 0px 20px 4px rgba(0, 0, 0, 0.15);
2068
- cursor: default;
2069
- }
2070
-
2071
-
2072
- /* customize tinymce Editor */
2073
-
2074
- .mce-content-body {
2075
- min-height: 19px;
2076
- word-break: break-word;
2077
- }
2078
-
2079
- .mce-tinymce.mce-tinymce-inline.mce-container.mce-panel {
2080
- left: 50% !important;
2081
- transform: translate(-50%, 0) !important;
2082
- border: 1px solid var(--wptb-plugin-gray-300) !important;
2083
- }
2084
-
2085
- .mce-container.mce-panel.mce-floatpanel.mce-window.mce-in {
2086
- z-index: 100100 !important;
2087
- }
2088
-
2089
- .mce-container.mce-panel.mce-floatpanel.mce-menu.mce-animate.mce-fixed.mce-menu-align.mce-in {
2090
- z-index: 100101 !important;
2091
- }
2092
-
2093
- .mce-edit-focus {
2094
- outline: none !important;
2095
- }
2096
-
2097
- .mce-btn button {
2098
- padding: 14px 18px !important;
2099
- }
2100
-
2101
- .mce-ico {
2102
- font-size: 20px !important;
2103
- }
2104
-
2105
- .mce-content-body [data-mce-selected="inline-boundary"] {
2106
- background: transparent !important;
2107
- }
2108
-
2109
- br[data-mce-bogus="1"] {
2110
- display: none;
2111
- }
2112
-
2113
- .wptb-text-container .mce-content-body a {
2114
- color: rgb(30, 115, 190);
2115
- }
2116
-
2117
- .wptb-text-container p:empty:not(:focus)::before {
2118
- content: attr(data-placeholder);
2119
- opacity: 0.4;
2120
- }
2121
-
2122
- .wptb-droppable.wptb-cell ul,
2123
- .wptb-droppable.wptb-cell ol {
2124
- border: 1px solid transparent;
2125
- margin: 0;
2126
- padding: 1em 0.2em 0.4em;
2127
- width: 100%;
2128
- }
2129
-
2130
- .wptb-droppable.wptb-cell ul article,
2131
- .wptb-droppable.wptb-cell ol article {
2132
- align-items: flex-start;
2133
- border: 1px solid transparent;
2134
- display: flex;
2135
- flex-direction: row;
2136
- justify-content: flex-start;
2137
- list-style-type: none;
2138
- margin-bottom: 0;
2139
- padding: 0;
2140
- position: relative;
2141
- width: 100%;
2142
- }
2143
-
2144
- .wptb-list-container ul li {
2145
- list-style: none;
2146
- margin: 0px;
2147
- }
2148
-
2149
- .wptb-droppable.wptb-cell li .wptb-list-item-content {
2150
- min-height: 30px;
2151
- }
2152
-
2153
- .wptb-droppable.wptb-cell li .wptb-list-item-content p {
2154
- word-wrap: break-word;
2155
- line-height: 30px;
2156
- font-size: 15px;
2157
- padding-left: 20px;
2158
- }
2159
-
2160
- .wptb-list-container ul li > div > p::before {
2161
- content: attr(data-list-style-type-index);
2162
- display: inline-block;
2163
- line-height: 30px;
2164
- padding: 0 5px 0 0;
2165
- /* font-size: 15px; */
2166
- font-family: verdana, sans-serif;
2167
- cursor: text;
2168
- min-width: fit-content;
2169
- }
2170
-
2171
- .wptb-droppable.wptb-cell li .wptb-list-item-content p span.content {
2172
- display: block;
2173
- }
2174
-
2175
- .wptb-list-container ul li > div > p::before {
2176
- margin-left: -20px;
2177
- }
2178
-
2179
- .wptb-list-container ul li > div > p.wptb-list-style-type-disc::before {
2180
- content: '\25CF';
2181
- }
2182
-
2183
- .wptb-list-container ul li > div > p.wptb-list-style-type-circle::before {
2184
- content: '\25CB';
2185
- }
2186
-
2187
- .wptb-list-container ul li > div > p.wptb-list-style-type-square::before {
2188
- content: '\25A0';
2189
- }
2190
-
2191
- .wptb-list-container ul li > div > p.wptb-list-style-type-none::before {
2192
- content: '';
2193
- padding-right: 0px;
2194
- }
2195
-
2196
- .wptb-droppable.wptb-cell .wptb-directlyhovered {
2197
- outline: 1px solid #1ea5e5 !important;
2198
- position: relative;
2199
- /*width: 100%;*/
2200
- }
2201
-
2202
- .wptb-cell .wptb-ph-element.edit-active {
2203
- outline: 2px solid #1ea5e5 !important;
2204
- position: relative;
2205
- }
2206
-
2207
- .wptb-droppable.wptb-cell .wptb-list-container.wptb-directlyhovered {
2208
- display: block;
2209
- }
2210
-
2211
- .wptb-droppable.wptb-cell .wptb-directlyhovered .wptb-directlyhovered {
2212
- display: flex;
2213
- width: 100%;
2214
- }
2215
-
2216
- .wptb-droppable.wptb-cell .wptb-list-container.wptb-directlyhovered .wptb-directlyhovered {
2217
- display: list-item;
2218
- border: none !important;
2219
- }
2220
-
2221
- .wptb-droppable.wptb-cell .wptb-list-container.wptb-directlyhovered .wptb-directlyhovered:before {
2222
- content: "";
2223
- display: inline-block;
2224
- position: absolute;
2225
- top: 0;
2226
- right: 0;
2227
- bottom: 0;
2228
- left: 0;
2229
- border: 1px solid #1ea5e5 !important;
2230
- }
2231
-
2232
- .wptb-list-container {
2233
- /*padding-left: 20px;*/
2234
- }
2235
-
2236
- .wptb-actions {
2237
- align-items: center;
2238
- background-color: #1ea5e5;
2239
- border-top-left-radius: 4px;
2240
- border-top-right-radius: 4px;
2241
- /*border-bottom: 3px solid #fff0;*/
2242
- box-sizing: content-box;
2243
- color: white;
2244
- justify-content: space-between;
2245
- line-height: 1em;
2246
- padding: 0px 5px;
2247
- position: absolute;
2248
- height: 15px;
2249
- font-size: 9pt;
2250
- display: none;
2251
- max-width: 70px;
2252
- z-index: 100001;
2253
- box-sizing: border-box;
2254
- }
2255
-
2256
- .wptb-ph-element:hover .wptb-actions {
2257
- display: inline;
2258
- }
2259
-
2260
- .wptb-actions .dashicons.dashicons-admin-page.wptb-duplicate-action {
2261
- font-size: 10pt;
2262
- margin: 0em 0.05em 0 0.1em;
2263
- width: 16px;
2264
- height: 16px;
2265
- cursor: pointer;
2266
- }
2267
-
2268
- .wptb-actions .dashicons.wptb-prebuilt-mark-action {
2269
- font-size: 10pt;
2270
- margin: 0em 0.05em 0 0.1em;
2271
- width: 16px;
2272
- height: 16px;
2273
- cursor: pointer;
2274
- }
2275
-
2276
- .wptb-actions .dashicons.dashicons-trash.wptb-delete-action {
2277
- font-size: 10pt;
2278
- margin: 0em 0.1em 0 0.05em;
2279
- width: 16px;
2280
- height: 16px;
2281
- order: 2;
2282
- cursor: pointer;
2283
- }
2284
-
2285
- .wptb-cell-management .wptb-button {
2286
- background: #3e99ca;
2287
- color: #ffffff;
2288
- border: none;
2289
- border-radius: 2px;
2290
- padding: .4em 0;
2291
- width: 100%;
2292
- box-shadow: 2px 1px 0px 0px rgba(13, 85, 126, 0.71);
2293
- }
2294
-
2295
- .wptb-cell-management .wptb-button[disabled] {
2296
- display: none;
2297
- }
2298
-
2299
- .wptb-space-between {
2300
- min-height: 10px;
2301
- width: 100%;
2302
- }
2303
-
2304
- .wptb-ph-element.wptb-directlyhovered.wptb-moving-mode {
2305
- outline: 0px !important;
2306
- }
2307
-
2308
- .wptb-ph-element.wptb-ondragenter::before {
2309
- content: "";
2310
- display: block;
2311
- position: absolute;
2312
- top: 0;
2313
- bottom: 0;
2314
- left: 0;
2315
- right: 0;
2316
- z-index: 101000;
2317
- }
2318
-
2319
- .wptb-ph-element.wptb-moving-mode {
2320
- opacity: .4;
2321
- -webkit-transform: scale(0.9) translate(-5%, -5%);
2322
- -ms-transform: scale(0.9) translate(-5%, -5%);
2323
- transform: scale(0.9) translate(-5%, -5%);
2324
- -webkit-transition: all .2s ease-in-out;
2325
- -o-transition: all .2s ease-in-out;
2326
- transition: all .2s ease-in-out;
2327
- }
2328
-
2329
- .wptb-drop-handle {
2330
- height: 11px;
2331
- position: absolute;
2332
- z-index: 101000;
2333
- display: none;
2334
- }
2335
-
2336
- .wptb-drop-handle::after {
2337
- content: attr(data-text);
2338
- background-color: dodgerblue;
2339
- color: white;
2340
- display: block;
2341
- font-variant: small-caps;
2342
- position: relative;
2343
- text-align: center;
2344
- width: 100%;
2345
- height: 100%;
2346
- font-size: 11px;
2347
- line-height: 1;
2348
- text-transform: uppercase;
2349
- box-sizing: border-box;
2350
- }
2351
-
2352
- .wptb-drop-border-marker {
2353
- position: absolute;
2354
- width: 1px;
2355
- height: 1px;
2356
- z-index: 101000;
2357
- }
2358
-
2359
- .wptb-drop-handle.wptb-moving-into-same-elem,
2360
- .wptb-drop-border-marker.wptb-moving-into-same-elem {
2361
- opacity: 0;
2362
- visibility: hidden;
2363
- }
2364
-
2365
- .wptb-drop-border-marker > div {
2366
- position: absolute;
2367
- background: #1ea9eb;
2368
- }
2369
-
2370
- .wptb-drop-border-marker-top {
2371
- top: 0;
2372
- left: 0;
2373
- height: 1px;
2374
- }
2375
-
2376
- .wptb-drop-border-marker-right {
2377
- top: 0;
2378
- width: 1px;
2379
- }
2380
-
2381
- .wptb-drop-border-marker-bottom {
2382
- left: 0;
2383
- height: 1px;
2384
- }
2385
-
2386
- .wptb-drop-border-marker-left {
2387
- top: 0;
2388
- left: 0;
2389
- width: 1px;
2390
- }
2391
-
2392
- .wptb-space-between.visible:empty::before {
2393
- background-color: dodgerblue;
2394
- border: 1px solid dodgerblue;
2395
- color: white;
2396
- content: 'drop here';
2397
- display: block;
2398
- font-variant: small-caps;
2399
- margin: 2px 5%;
2400
- padding: 0.5em 0;
2401
- position: relative;
2402
- text-align: center;
2403
- width: 90%;
2404
- }
2405
-
2406
- .wptb-draggable {
2407
- border: none;
2408
- }
2409
-
2410
- .wptb-actions .dashicons.dashicons-move.wptb-move-action {
2411
- font-size: 14px !important;
2412
- cursor: move;
2413
- width: 16px;
2414
- height: 16px;
2415
- order: -1;
2416
- }
2417
-
2418
- .wptb-no-cell-action:not(.visible),
2419
- .wptb-single-action:not(.visible),
2420
- .wptb-multiple-select-action:not(.visible) {
2421
- cursor: not-allowed;
2422
- opacity: 0.3;
2423
- }
2424
-
2425
- .wptb-item-dragging {
2426
- background-color: purple;
2427
- min-height: 30px;
2428
- min-width: 30px;
2429
- position: absolute;
2430
- transition: all 0.2s ease;
2431
- transition-property: left, top;
2432
- width: auto;
2433
- z-index: 11000;
2434
- }
2435
-
2436
- .wptb-range-input {
2437
- height: 20px;
2438
- position: relative;
2439
- }
2440
-
2441
- .wptb-range-input .slider {
2442
- background-color: white;
2443
- border: 1px solid #4b88c4;
2444
- border-radius: 200px;
2445
- box-sizing: border-box;
2446
- height: 20px;
2447
- left: 2px;
2448
- position: absolute;
2449
- top: 0;
2450
- width: 20px;
2451
- z-index: 10;
2452
- }
2453
-
2454
- .wptb-range-input .rail {
2455
- background: #cccccc;
2456
- border-radius: 14px;
2457
- bottom: 6px;
2458
- height: 8px;
2459
- position: absolute;
2460
- width: 100%;
2461
- z-index: 1;
2462
- }
2463
-
2464
- .wptb-preview-table.wptb-table-preview-head .wptb-row:first-child td.wptb-drop-here-empty:empty::before,
2465
- .wptb-row td.wptb-drop-here-empty:empty::before {
2466
- background-color: dodgerblue;
2467
- border: 1px solid dodgerblue;
2468
- box-sizing: border-box;
2469
- color: white;
2470
- content: 'drop here';
2471
- display: block;
2472
- font-size: 1em;
2473
- font-variant: small-caps;
2474
- padding: 0.2em 0.4em;
2475
- text-align: center;
2476
- width: 100%;
2477
- }
2478
-
2479
- td[class*="wptb-fused-cell"] {
2480
- display: none !important;
2481
- }
2482
-
2483
- .wptb-size-s .wptb-button {
2484
- border-radius: .2rem;
2485
- padding: .35rem .6rem;
2486
- max-width: 100%;
2487
- }
2488
-
2489
- .wptb-size-s .wptb-button p {
2490
- font-size: .875rem;
2491
- line-height: 1.5;
2492
- }
2493
-
2494
- .wptb-size-m .wptb-button {
2495
- border-radius: .3rem;
2496
- padding: .475rem .85rem;
2497
- max-width: 100%;
2498
- }
2499
-
2500
- .wptb-size-m .wptb-button p {
2501
- font-size: 1.125rem;
2502
- line-height: 1.5;
2503
- }
2504
-
2505
- .wptb-size-l .wptb-button {
2506
- border-radius: .3rem;
2507
- padding: .6rem 1.2rem;
2508
- max-width: 100%;
2509
- }
2510
-
2511
- .wptb-size-l .wptb-button p {
2512
- font-size: 1.25rem;
2513
- line-height: 1.5;
2514
- }
2515
-
2516
- .wptb-size-xl .wptb-button {
2517
- border-radius: .4rem;
2518
- padding: .8rem 1.35rem;
2519
- max-width: 100%;
2520
- }
2521
-
2522
- .wptb-size-xl .wptb-button p {
2523
- font-size: 1.35rem;
2524
- line-height: 1.5;
2525
- }
2526
-
2527
- [class*=wptb-element-text-] p {
2528
- color: inherit !important;
2529
- font-size: inherit !important;
2530
- }
2531
-
2532
- .wptb-split-page-title-action a,
2533
- .wptb-split-page-title-action a:active,
2534
- .wptb-split-page-title-action .wptb-expander::after {
2535
- padding: 6px 10px;
2536
- position: relative;
2537
- top: -3px;
2538
- text-decoration: none;
2539
- border: 1px solid #ccc;
2540
- border-radius: 2px;
2541
- background: #f7f7f7;
2542
- text-shadow: none;
2543
- font-weight: 600;
2544
- font-size: 13px;
2545
- line-height: normal;
2546
- color: #0073aa;
2547
- cursor: pointer;
2548
- outline: 0;
2549
- }
2550
-
2551
- .wptb-split-page-title-action a:hover {
2552
- color: #fff;
2553
- background-color: #1f8abb;
2554
- }
2555
-
2556
- .wptb-column-title-mobile {
2557
- display: none;
2558
- }
2559
-
2560
-
2561
- /* Star Rating */
2562
-
2563
- .wptb-star_rating-container {
2564
- text-align: center;
2565
- }
2566
-
2567
- .wptb-rating-stars-box {
2568
- text-align: center;
2569
- display: inline-block;
2570
- padding: 7px;
2571
- }
2572
-
2573
- .wptb-rating-stars-box ul {
2574
- list-style-type: none;
2575
- padding: 0;
2576
- -moz-user-select: none;
2577
- -webkit-user-select: none;
2578
- padding: 0.5em 0.2em 0.2em;
2579
- }
2580
-
2581
- .wptb-rating-stars-box ul li {
2582
- display: inline-block;
2583
- }
2584
-
2585
- .wptb-rating-stars-box ul > li.wptb-rating-star {
2586
- color: #ccc;
2587
- cursor: pointer;
2588
- margin: 0px;
2589
- position: relative;
2590
- width: 20px;
2591
- height: 20px;
2592
- }
2593
-
2594
- .wptb-rating-stars-box ul > li.wptb-rating-star span {
2595
- position: absolute;
2596
- height: 100%;
2597
- width: 100%;
2598
- top: 0px;
2599
- left: 0px;
2600
- z-index: 10;
2601
- }
2602
-
2603
- .wptb-rating-stars-box ul > li.wptb-rating-star span.wptb-rating-star-left-signal-part,
2604
- .wptb-rating-stars-box ul > li.wptb-rating-star span.wptb-rating-star-right-signal-part {
2605
- height: 100%;
2606
- width: 50%;
2607
- z-index: 20;
2608
- }
2609
-
2610
- .wptb-rating-stars-box ul > li.wptb-rating-star span.wptb-rating-star-left-signal-part {
2611
- left: 0px;
2612
- }
2613
-
2614
- .wptb-rating-stars-box ul > li.wptb-rating-star span.wptb-rating-star-left-signal-part span.wptb-rating-star-zero-set {
2615
- left: 0px;
2616
- width: 40%;
2617
- height: 100%;
2618
- top: 0px;
2619
- z-index: 30px;
2620
- }
2621
-
2622
- .wptb-rating-stars-box ul > li.wptb-rating-star span.wptb-rating-star-right-signal-part {
2623
- right: 0px;
2624
- left: auto;
2625
- }
2626
-
2627
- .wptb-rating-stars-box ul > li.wptb-rating-star span {
2628
- display: block;
2629
- }
2630
-
2631
- .wptb-rating-stars-box ul > li.wptb-rating-star span.wptb-filled-rating-star {
2632
- display: none;
2633
- }
2634
-
2635
- .wptb-rating-stars-box ul > li.wptb-rating-star span.wptb-half-filled-rating-star {
2636
- display: none;
2637
- }
2638
-
2639
- .wptb-rating-stars-box ul > li.wptb-rating-star span.wptb-not-filled-rating-star {
2640
- fill: #ccc;
2641
- }
2642
-
2643
- .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-hover-half span.wptb-not-filled-rating-star {
2644
- display: none;
2645
- }
2646
-
2647
- .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-hover-half span.wptb-half-filled-rating-star {
2648
- display: block;
2649
- fill: #FF912C;
2650
- opacity: 0.5;
2651
- }
2652
-
2653
- .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-hover-half span.wptb-filled-rating-star {
2654
- display: none;
2655
- }
2656
-
2657
- .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-hover-full span.wptb-not-filled-rating-star {
2658
- display: none;
2659
- }
2660
-
2661
- .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-hover-full span.wptb-half-filled-rating-star {
2662
- display: none;
2663
- }
2664
-
2665
- .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-hover-full span.wptb-filled-rating-star {
2666
- display: block;
2667
- fill: #FF912C;
2668
- opacity: 0.5;
2669
- }
2670
-
2671
- .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-selected-half.wptb-rating-star-hover-half span,
2672
- .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-selected-half.wptb-rating-star-hover-full span,
2673
- .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-selected-full.wptb-rating-star-hover-half span,
2674
- .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-selected-full.wptb-rating-star-hover-full span {
2675
- opacity: 1;
2676
- }
2677
-
2678
- .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-selected-half span.wptb-filled-rating-star {
2679
- display: none;
2680
- }
2681
-
2682
- .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-selected-half.wptb-rating-star-hover-full span.wptb-filled-rating-star {
2683
- display: block;
2684
- fill: #FF912C;
2685
- opacity: 0.5;
2686
- }
2687
-
2688
- .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-selected-half span.wptb-not-filled-rating-star {
2689
- display: none;
2690
- }
2691
-
2692
- .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-selected-half span.wptb-half-filled-rating-star {
2693
- display: block;
2694
- fill: #FF912C;
2695
- }
2696
-
2697
- .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-selected-full span.wptb-filled-rating-star {
2698
- display: block;
2699
- fill: #FF912C;
2700
- }
2701
-
2702
- .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-selected-full span.wptb-not-filled-rating-star {
2703
- display: none;
2704
- }
2705
-
2706
- .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-selected-full span.wptb-half-filled-rating-star {
2707
- display: none;
2708
- }
2709
-
2710
- .wptb-rating-stars-box ul > li.wptb-rating-star span svg {
2711
- display: block;
2712
- }
2713
-
2714
-
2715
- /*.wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-hover {
2716
- color:#FF912C;
2717
- opacity: 0.4;
2718
- }
2719
-
2720
- .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-selected {
2721
- color:#FF912C;
2722
- }
2723
-
2724
-
2725
- .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-selected.wptb-rating-star-hover {
2726
- opacity: 1;
2727
- }
2728
-
2729
- .wptb-rating-stars-box ul > li.wptb-rating-star:before {
2730
- content: "☆";
2731
- font-size: inherit;
2732
- height: inherit;
2733
- line-height: inherit;
2734
- color: #ccc;
2735
- font-style: normal;
2736
- display: block;
2737
- }
2738
-
2739
- .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-hover:before {
2740
- content: "★";
2741
- color: inherit;
2742
- }
2743
-
2744
- .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-selected:before {
2745
- content: "★";
2746
- color: inherit;
2747
- }*/
2748
-
2749
- .wptb-number-rating-box {
2750
- text-align: center;
2751
- font-size: 20px;
2752
- }
2753
-
2754
- .wptb-number-rating-box > div {
2755
- vertical-align: top;
2756
- display: inline-block;
2757
- color: #888;
2758
- text-align: center;
2759
- height: 25px;
2760
- font-size: 25px;
2761
- line-height: 25px;
2762
- }
2763
-
2764
- /* Shortcode */
2765
-
2766
- wptb_shortcode_container_element {
2767
- display: block;
2768
- }
2769
-
2770
- @media screen and (max-width: 1375px) {
2771
- #wptb-messaging-area {
2772
- position: relative;
2773
- }
2774
-
2775
- #wptb-messaging-area .wptb-message {
2776
- max-width: 400px;
2777
- padding: 20px 5px;
2778
- box-sizing: border-box;
2779
- }
2780
- }
2781
-
2782
- @media screen and (max-width: 1070px) {
2783
- #wptb-messaging-area {
2784
- position: absolute;
2785
- top: 190px;
2786
- left: 30px;
2787
- right: 30px;
2788
- margin: auto;
2789
- }
2790
-
2791
- #wptb-messaging-area .wptb-message {
2792
- padding: 50px 20px;
2793
- }
2794
- }
2795
-
2796
- @media screen and (max-width: 970px) {
2797
- #wptb-setup-name {
2798
- width: 100%;
2799
- max-width: 420px;
2800
- margin-left: 0px;
2801
- }
2802
- }
2803
-
2804
- @media screen and (max-width: 600px) {
2805
- /*.wptb-right {*/
2806
- /* width: 100%;*/
2807
- /* text-align: justify;*/
2808
- /*}*/
2809
- /*.wptb-embed,*/
2810
- /*.wptb-preview,*/
2811
- /*.wptb-save {*/
2812
- /* display: inline-block;*/
2813
- /* float: none;*/
2814
- /* margin: 20px 20px auto;*/
2815
- /*}*/
2816
- /*.wptb-close {*/
2817
- /* padding: 20px;*/
2818
- /*}*/
2819
- /*.wptb-right::after {*/
2820
- /* !*content: "";*!*/
2821
- /* !*width: 100%;*!*/
2822
- /* !*display: inline-block;*!*/
2823
- /*}*/
2824
- /*.wptb-container {*/
2825
- /* top: 172px;*/
2826
- /*}*/
2827
- }
2828
-
2829
- @media screen and (max-width: 450px) {
2830
- /*.wptb-embed,*/
2831
- /*.wptb-preview,*/
2832
- /*.wptb-save {*/
2833
- /* width: 100%;*/
2834
- /* margin: 15px 0px 0px;*/
2835
- /* padding: 0px 15px;*/
2836
- /* box-sizing: border-box;*/
2837
- /*}*/
2838
- /*.wptb-embed a,*/
2839
- /*.wptb-preview a,*/
2840
- /*.wptb-save a {*/
2841
- /* width: 100%;*/
2842
- /* text-align: center;*/
2843
- /* box-sizing: border-box;*/
2844
- /*}*/
2845
- /*#wptb-messaging-area {*/
2846
- /* top: 310px;*/
2847
- /*}*/
2848
- /*.wptb-container {*/
2849
- /* top: 300px;*/
2850
- /*}*/
2851
- }
2852
-
2853
- .wptb-cell img {
2854
- max-width: 100%;
2855
- }
2856
-
2857
- .wptb-exit-options {
2858
- text-decoration: none;
2859
- }
2860
-
2861
- .wptb-back-button {
2862
- /*float: left;*/
2863
- }
2864
-
2865
- .wptb-option-text {
2866
- text-align: center;
2867
- }
2868
-
2869
-
2870
- /*
2871
- ** Star rating alignment Selector Style
2872
- */
2873
-
2874
- .wptb-rating-alignment-btn {
2875
- padding: 8px 15px 3px 15px;
2876
- margin: 0;
2877
- vertical-align: middle;
2878
- border: solid 1px #ccc;
2879
- font-size: 12px;
2880
- border-radius: 4px;
2881
- cursor: pointer;
2882
- }
2883
-
2884
- .wptb-rating-alignment-switcher {
2885
- background: linear-gradient(to bottom, white, #eeeeee);
2886
- display: table-cell;
2887
- border-right: none;
2888
- border-radius: 0;
2889
- color: #433f33;
2890
- }
2891
-
2892
- .wptb-rating-alignment-switcher:first-child {
2893
- border-radius: 4px 0 0 4px;
2894
- }
2895
-
2896
- .wptb-rating-alignment-switcher:last-child {
2897
- border-radius: 0 4px 4px 0;
2898
- border-right: solid 1px #ccc;
2899
- }
2900
-
2901
- .wptb-rating-alignment-switcher:hover {
2902
- background: #fff;
2903
- }
2904
-
2905
- .wptb-rating-alignment-switcher:active {
2906
- box-shadow: inset 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
2907
- }
2908
-
2909
- .wptb-rating-alignment-switcher.selected {
2910
- background: #fff;
2911
- box-shadow: inset 0px 0px 20px 4px rgba(0, 0, 0, 0.15);
2912
- cursor: default;
2913
- }
2914
-
2915
-
2916
- /*
2917
- ** list rating alignment Selector Style
2918
- */
2919
-
2920
- .wptb-list-alignment-btn {
2921
- padding: 8px 15px 3px 15px;
2922
- margin: 0;
2923
- vertical-align: middle;
2924
- border: solid 1px #ccc;
2925
- font-size: 12px;
2926
- border-radius: 4px;
2927
- cursor: pointer;
2928
- }
2929
-
2930
- .wptb-list-alignment-switcher {
2931
- background: linear-gradient(to bottom, white, #eeeeee);
2932
- display: table-cell;
2933
- border-right: none;
2934
- border-radius: 0;
2935
- color: #433f33;
2936
- }
2937
-
2938
- .wptb-list-alignment-switcher:first-child {
2939
- border-radius: 4px 0 0 4px;
2940
- }
2941
-
2942
- .wptb-list-alignment-switcher:last-child {
2943
- border-radius: 0 4px 4px 0;
2944
- border-right: solid 1px #ccc;
2945
- }
2946
-
2947
- .wptb-list-alignment-switcher:hover {
2948
- background: #fff;
2949
- }
2950
-
2951
- .wptb-list-alignment-switcher:active {
2952
- box-shadow: inset 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
2953
- }
2954
-
2955
- .wptb-list-alignment-switcher.selected {
2956
- background: #fff;
2957
- box-shadow: inset 0px 0px 20px 4px rgba(0, 0, 0, 0.15);
2958
- cursor: default;
2959
- }
2960
-
2961
-
2962
- /*
2963
- ** button rating alignment Selector Style
2964
- */
2965
-
2966
- .wptb-button-alignment-btn {
2967
- padding: 8px 15px 3px 15px;
2968
- margin: 0;
2969
- vertical-align: middle;
2970
- border: solid 1px #ccc;
2971
- font-size: 12px;
2972
- border-radius: 4px;
2973
- cursor: pointer;
2974
- }
2975
-
2976
- .wptb-button-alignment-switcher {
2977
- background: linear-gradient(to bottom, white, #eeeeee);
2978
- display: table-cell;
2979
- border-right: none;
2980
- border-radius: 0;
2981
- color: #433f33;
2982
- }
2983
-
2984
- .wptb-button-alignment-switcher:first-child {
2985
- border-radius: 4px 0 0 4px;
2986
- }
2987
-
2988
- .wptb-button-alignment-switcher:last-child {
2989
- border-radius: 0 4px 4px 0;
2990
- border-right: solid 1px #ccc;
2991
- }
2992
-
2993
- .wptb-button-alignment-switcher:hover {
2994
- background: #fff;
2995
- }
2996
-
2997
- .wptb-button-alignment-switcher:active {
2998
- box-shadow: inset 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
2999
- }
3000
-
3001
- .wptb-button-alignment-switcher.selected {
3002
- background: #fff;
3003
- box-shadow: inset 0px 0px 20px 4px rgba(0, 0, 0, 0.15);
3004
- cursor: default;
3005
- }
3006
-
3007
-
3008
- /*
3009
- ** image rating alignment Selector Style
3010
- */
3011
-
3012
- .wptb-image-alignment-btn {
3013
- padding: 8px 15px 3px 15px;
3014
- margin: 0;
3015
- vertical-align: middle;
3016
- border: solid 1px #ccc;
3017
- font-size: 12px;
3018
- border-radius: 4px;
3019
- cursor: pointer;
3020
- }
3021
-
3022
- .wptb-image-alignment-switcher {
3023
- background: linear-gradient(to bottom, white, #eeeeee);
3024
- display: table-cell;
3025
- border-right: none;
3026
- border-radius: 0;
3027
- color: #433f33;
3028
- }
3029
-
3030
- .wptb-image-alignment-switcher:first-child {
3031
- border-radius: 4px 0 0 4px;
3032
- }
3033
-
3034
- .wptb-image-alignment-switcher:last-child {
3035
- border-radius: 0 4px 4px 0;
3036
- border-right: solid 1px #ccc;
3037
- }
3038
-
3039
- .wptb-image-alignment-switcher:hover {
3040
- background: #fff;
3041
- }
3042
-
3043
- .wptb-image-alignment-switcher:active {
3044
- box-shadow: inset 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
3045
- }
3046
-
3047
- .wptb-image-alignment-switcher.selected {
3048
- background: #fff;
3049
- box-shadow: inset 0px 0px 20px 4px rgba(0, 0, 0, 0.15);
3050
- cursor: default;
3051
- }
3052
-
3053
-
3054
- /*
3055
- ** classes with justify-content styles
3056
- */
3057
-
3058
- .wptb-justify-content-left {
3059
- justify-content: left;
3060
- }
3061
-
3062
- .wptb-justify-content-center {
3063
- justify-content: center;
3064
- }
3065
-
3066
- .wptb-justify-content-right {
3067
- justify-content: right;
3068
- }
3069
-
3070
-
3071
- /*
3072
- ** classes with float styles
3073
- */
3074
-
3075
- .wptb-float-left {
3076
- float: left;
3077
- }
3078
-
3079
- .wptb-float-center {
3080
- float: none;
3081
- }
3082
-
3083
- .wptb-float-right {
3084
- float: right;
3085
- }
3086
-
3087
- /*
3088
- ** classes with text-align styles
3089
- */
3090
-
3091
- .wptb-text-align-left {
3092
- text-align: left;
3093
- }
3094
-
3095
- .wptb-text-align-center {
3096
- text-align: center;
3097
- }
3098
-
3099
- .wptb-text-align-right {
3100
- text-align: right;
3101
- }
3102
-
3103
- /*settings page related styles*/
3104
- .wptb-menu-page-wrapper {
3105
- display: flex;
3106
- justify-content: center;
3107
- align-items: center;
3108
- width: 100%;
3109
- height: 90vh;
3110
- color: #4A5568;
3111
- line-height: normal;
3112
- }
3113
-
3114
- .wptb-settings-wrapper {
3115
- background-color: white;
3116
- min-width: 90%;
3117
- max-width: 90%;
3118
- height: 90%;
3119
- display: grid;
3120
- grid-template-columns: 1fr;
3121
- grid-template-rows: minmax(min-content, max-content) minmax(min-content, max-content) 1fr minmax(min-content, max-content);
3122
- border-radius: 5px;
3123
- overflow: hidden;
3124
- box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
3125
- }
3126
-
3127
- .wptb-settings-wrapper .import-export {
3128
- grid-template-rows: minmax(min-content, max-content) minmax(min-content, max-content) minmax(min-content, max-content) 1fr minmax(min-content, max-content);
3129
- }
3130
-
3131
-
3132
- .wptb-settings-header {
3133
- display: flex;
3134
- justify-content: space-between;
3135
- align-items: center;
3136
- background-color: #3299D1;
3137
- padding: 10px;
3138
- }
3139
-
3140
- .wptb-settings-header * {
3141
- color: #ffffff;
3142
- }
3143
-
3144
- .wptb-settings-header a {
3145
- text-decoration: none;
3146
- font-size: 1rem;
3147
- margin: 0 10px;
3148
- text-transform: capitalize;
3149
- }
3150
-
3151
- .wptb-settings-header a:hover {
3152
- color: #CBD5E0;
3153
- }
3154
-
3155
- .wptb-settings-brand {
3156
- font-size: 2.5rem;
3157
- display: flex;
3158
- align-items: center;
3159
- cursor: default;
3160
- }
3161
-
3162
- .wptb-settings-header-name {
3163
- margin-left: 1rem;
3164
- }
3165
-
3166
- .wptb-settings-sections-wrapper {
3167
- position: relative;
3168
- display: flex;
3169
- flex-direction: row;
3170
- background-color: #ffffff;
3171
- border-bottom: 1px solid #cbd5e0;
3172
- }
3173
-
3174
- .wptb-plugins-m-b-40 {
3175
- margin-bottom: 40px;
3176
- }
3177
-
3178
- .wptb-settings-checkbox-row {
3179
- display: flex;
3180
- flex-direction: row;
3181
- justify-content: flex-start;
3182
- align-items: center;
3183
- margin: 5px 0;
3184
- width: 100%;
3185
- }
3186
-
3187
- .wptb-settings-dropdown-row {
3188
- margin: 10px 0;
3189
- }
3190
-
3191
- .wptb-settings-sections-wrapper.child {
3192
- display: flex;
3193
- flex-direction: row;
3194
- justify-content: center;
3195
- }
3196
-
3197
- .wptb-settings-section-item {
3198
- text-transform: uppercase;
3199
- font-size: 1rem;
3200
- padding: 20px;
3201
- margin: 0 10px;
3202
- cursor: pointer;
3203
- transition: background-color 0.5s ease-out;
3204
- }
3205
-
3206
- .wptb-settings-section-item.static-active {
3207
- border-bottom: 3px solid transparent;
3208
- }
3209
-
3210
- .wptb-settings-section-item.static-active.active {
3211
- border-bottom: 3px solid var(--wptb-plugin-logo-color) !important;
3212
- background-color: var(--wptb-plugin-gray-100);
3213
- }
3214
-
3215
- .child .wptb-settings-section-item {
3216
- font-size: 0.8rem;
3217
- padding: 10px;
3218
- }
3219
-
3220
- .wptb-settings-section-item:hover {
3221
- background-color: #EDF2F7;
3222
- }
3223
-
3224
- .wptb-settings-section-item.disabled {
3225
- color: #CBD5E0 !important;
3226
- }
3227
-
3228
- .wptb-panel-tabs .wptb-settings-section-item.disabled {
3229
- color: inherit !important;
3230
- }
3231
-
3232
- .wptb-menu-active-section-indicator {
3233
- position: absolute;
3234
- /*border-bottom: 2px solid #1A202C;*/
3235
- border-bottom: 2px solid var(--wptb-plugin-logo-color);
3236
- transition: all 0.3s ease-out;
3237
- }
3238
-
3239
- .wptb-settings-controls-wrapper {
3240
- padding: 20px 40px;
3241
- overflow: auto;
3242
- }
3243
-
3244
- .wptb-settings-controls-wrapper.grid {
3245
- display: grid;
3246
- grid-gap: 10px;
3247
- grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
3248
- grid-auto-rows: minmax(min-content, max-content);
3249
- grid-auto-flow: row;
3250
- }
3251
-
3252
- .wptb-settings-controls-wrapper.center {
3253
- display: flex;
3254
- justify-content: center;
3255
- align-items: flex-start;
3256
- }
3257
-
3258
- .wptb-setting-control {
3259
- padding: 20px;
3260
- transition: all 0.2s ease-out;
3261
- border: 1px solid transparent;
3262
- }
3263
-
3264
- .wptb-setting-control:hover {
3265
- border: 1px solid #cbd5e0;
3266
- box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
3267
- transform: translateY(-5px);
3268
- }
3269
-
3270
- .wptb-setting-control .title {
3271
- font-weight: bold;
3272
- font-size: 1rem;
3273
- text-transform: capitalize;
3274
- margin-bottom: 30px;
3275
- border-bottom: 1px solid #cbd5e0;
3276
- padding: 10px 0;
3277
- }
3278
-
3279
- .wptb-menu-export-control-title {
3280
- font-weight: bold;
3281
- font-size: 1rem;
3282
- text-transform: capitalize;
3283
- padding: 10px 0;
3284
- width: 100%;
3285
- border-bottom: 1px solid #cbd5e0;
3286
- }
3287
-
3288
- .wptb-export-list-table-search {
3289
- padding: 10px 0;
3290
- border-bottom: 1px solid #cbd5e0;
3291
- }
3292
-
3293
- .wptb-setting-control-row {
3294
- display: flex;
3295
- align-items: center;
3296
- margin: 20px 0;
3297
- }
3298
-
3299
- .wptb-setting-control-row label {
3300
- text-transform: capitalize;
3301
- }
3302
-
3303
- .wptb-setting-control-row input {
3304
- margin-right: 20px;
3305
- }
3306
-
3307
- .wptb-setting-control-row select {
3308
- margin-right: 20px;
3309
- }
3310
-
3311
- .wptb-settings-footer {
3312
- background-color: #ffffff;
3313
- display: flex;
3314
- justify-content: space-between;
3315
- width: 100%;
3316
- border-top: 1px solid #cbd5e0;
3317
- padding: 20px 0;
3318
- }
3319
-
3320
- .wptb-settings-messages {
3321
- margin: 0 20px;
3322
- display: flex;
3323
- align-items: center;
3324
- }
3325
-
3326
- .wptb-settings-message {
3327
- font-style: italic;
3328
- font-weight: bold;
3329
- text-transform: uppercase;
3330
- }
3331
-
3332
- .wptb-settings-message.ok {
3333
- color: #3299D1;
3334
- }
3335
-
3336
- .wptb-settings-message.error {
3337
- color: #E53E3E;
3338
- }
3339
-
3340
- .wptb-settings-fetching {
3341
- animation: wptb-settings-rotate 1s linear infinite reverse;
3342
-
3343
- }
3344
-
3345
- .wptb-settings-button-container {
3346
- display: flex;
3347
- justify-content: center;
3348
- align-items: center;
3349
- }
3350
-
3351
- .wptb-settings-button {
3352
- width: fit-content;
3353
- margin: 0 20px;
3354
- color: #ffffff;
3355
- font-size: 1.0rem;
3356
- padding: 10px 20px;
3357
- border-radius: 5px;
3358
- text-transform: uppercase;
3359
- cursor: pointer;
3360
- transition: all .2s ease-out;
3361
- }
3362
-
3363
- .wptb-settings-button:hover {
3364
- color: #CBD5E0;
3365
- }
3366
-
3367
- .wptb-settings-button.primary {
3368
- background-color: #3299D1;
3369
- }
3370
-
3371
- .wptb-settings-button.danger {
3372
- background-color: #E53E3E;
3373
- }
3374
-
3375
- .wptb-settings-button.disabled {
3376
- background-color: #CBD5E0 !important;
3377
- }
3378
-
3379
- .wptb-settings-button.small {
3380
- font-size: inherit;
3381
- }
3382
-
3383
- .wptb-settings-button.disabled:hover {
3384
- color: #ffffff !important;
3385
- cursor: not-allowed;
3386
- }
3387
-
3388
- .wptb-fade-enter-active, .wptb-fade-leave-active {
3389
- transition: opacity 0.2s ease-out;
3390
- }
3391
-
3392
- .wptb-fade-enter, .wptb-fade-leave-to {
3393
- opacity: 0;
3394
- }
3395
-
3396
- .wptb-menu-file-drop {
3397
- border: 2px dashed #cbd5e0;
3398
- width: 500px;
3399
- height: 200px;
3400
- margin: 20px 0;
3401
- display: flex;
3402
- flex-direction: column;
3403
- justify-content: center;
3404
- align-items: center;
3405
- text-transform: capitalize;
3406
- transition: all 0.2s ease-out;
3407
- border-radius: 5px;
3408
- }
3409
-
3410
- .wptb-menu-file-drop.dragenter {
3411
- background-color: #EDF2F7;
3412
- }
3413
-
3414
- .wptb-menu-file-drop div {
3415
- margin: 10px 0;
3416
- }
3417
-
3418
- .wptb-menu-file-drop .hint {
3419
- font-style: italic;
3420
- color: #cbd5e0;
3421
- font-size: 1.3rem;
3422
- }
3423
-
3424
- .wptb-menu-file-drop .supported {
3425
- font-style: italic;
3426
- color: #cbd5e0;
3427
- font-size: 1rem;
3428
- }
3429
-
3430
- .wptb-menu-file-drop .file {
3431
- text-transform: none;
3432
- font-size: 1.3rem;
3433
- color: inherit;
3434
- }
3435
-
3436
- .wptb-menu-file-drop a {
3437
- text-decoration: underline;
3438
- cursor: pointer;
3439
- }
3440
-
3441
- .wptb-menu-file-drop .file-icon {
3442
- color: #cbd5e0;
3443
- transform: scale(4);
3444
- }
3445
-
3446
- .wptb-flex {
3447
- display: flex;
3448
- }
3449
-
3450
- .wptb-flex-col {
3451
- flex-direction: column;
3452
- }
3453
-
3454
- .wptb-flex-row {
3455
- flex-direction: row;
3456
- }
3457
-
3458
- .wptb-flex-align-center {
3459
- align-items: center;
3460
- }
3461
-
3462
- .wptb-flex-justify-center {
3463
- justify-content: center;
3464
- }
3465
-
3466
- .wptb-flex-justify-space-between {
3467
- justify-content: space-between;
3468
- }
3469
-
3470
- .wptb-import-tables-wrapper {
3471
- margin-top: 50px;
3472
- margin-bottom: 30px;
3473
- display: flex;
3474
- justify-content: center;
3475
- }
3476
-
3477
- .wptb-import-table {
3478
- text-align: center;
3479
- border-collapse: collapse;
3480
- }
3481
-
3482
- .wptb-import-table th, td {
3483
- padding: 15px 10px;
3484
- }
3485
-
3486
- .wptb-import-table th {
3487
- border-bottom: 1px solid #cbd5e0;
3488
- }
3489
-
3490
- .wptb-import-table tbody tr:hover {
3491
- background-color: #edf2f7;
3492
- }
3493
-
3494
- .wptb-menu-overflow-auto {
3495
- overflow: auto;
3496
- }
3497
-
3498
- .wptb-text-transform-cap {
3499
- text-transform: capitalize !important;
3500
- }
3501
-
3502
- .wptb-text-transform-none {
3503
- text-transform: none !important;
3504
- }
3505
-
3506
- .wptb-import-table-count-info {
3507
- margin-bottom: 20px;
3508
- font-weight: bold;
3509
- font-style: italic;
3510
- }
3511
-
3512
- .wptb-menu-export-wrapper {
3513
- display: grid;
3514
- grid-auto-flow: column;
3515
- grid-template-columns: 1fr auto 1fr;
3516
- grid-template-rows: 0.9fr;
3517
- justify-content: center;
3518
- align-content: center;
3519
- grid-gap: 30px;
3520
- width: 90%;
3521
- height: 100%;
3522
- }
3523
-
3524
- .wptb-menu-export-card {
3525
- display: grid;
3526
- grid-auto-flow: row;
3527
- grid-template-rows: auto auto 1fr;
3528
- grid-template-columns: 1fr;
3529
- position: relative;
3530
- border: 1px solid #cbd5e0;
3531
- padding: 10px;
3532
- overflow: auto;
3533
- }
3534
-
3535
- .wptb-menu-export-controls-wrapper {
3536
- padding: 10px 0;
3537
- overflow-y: auto;
3538
- display: grid;
3539
- grid-auto-flow: row;
3540
- }
3541
-
3542
- .wptb-menu-empty-cover {
3543
- position: absolute;
3544
- top: 0;
3545
- left: 0;
3546
- right: 0;
3547
- bottom: 0;
3548
- display: flex;
3549
- justify-content: center;
3550
- align-items: center;
3551
- font-style: italic;
3552
- font-size: 1.2rem;
3553
- color: #CBD5E0;
3554
- }
3555
-
3556
- .wptb-menu-export-middle-section {
3557
- display: flex;
3558
- flex-direction: column;
3559
- justify-content: space-around;
3560
- align-items: center;
3561
- }
3562
-
3563
- .wptb-menu-export-middle-section .arrow-holder {
3564
- max-width: 100px;
3565
- width: 50%;
3566
- cursor: pointer;
3567
- }
3568
-
3569
- .wptb-menu-export-middle-section img {
3570
- max-width: 100px;
3571
- cursor: pointer;
3572
- transition: transform 0.1s ease-out;
3573
- }
3574
-
3575
- .wptb-menu-export-middle-section img:hover {
3576
- transform: scale(1.2);
3577
- }
3578
-
3579
- .wptb-menu-export-middle-section img:active {
3580
- transform: scale(1);
3581
- }
3582
-
3583
- .wptb-menu-export-middle-section .flip {
3584
- transform: rotateZ(180deg);
3585
- }
3586
-
3587
- .wptb-menu-popup-wrapper {
3588
- display: flex;
3589
- position: relative;
3590
- justify-content: center;
3591
- align-items: center;
3592
- margin: 0 10px;
3593
- border: 1px solid #cbd5e0;
3594
- width: 20px;
3595
- height: 20px;
3596
- border-radius: 50%;
3597
- cursor: pointer;
3598
- transition: all 0.2s ease-out;
3599
- }
3600
-
3601
- .wptb-menu-popup-wrapper:hover {
3602
- background-color: #cbd5e0;
3603
- }
3604
-
3605
- .wptb-menu-popup-message {
3606
- display: block;
3607
- position: fixed;
3608
- color: white;
3609
- min-width: 100px;
3610
- max-width: 200px;
3611
- transition: opacity 0.2s ease-out;
3612
- opacity: 0;
3613
- text-align: start;
3614
- z-index: 999;
3615
- pointer-events: none;
3616
- }
3617
-
3618
- .wptb-menu-popup-wrapper:hover + .wptb-menu-popup-message {
3619
- opacity: 1
3620
- }
3621
-
3622
- .wptb-menu-popup-inner-holder {
3623
- position: relative;
3624
- background-color: #4A5568;
3625
- padding: 10px;
3626
- }
3627
-
3628
- .wptb-menu-popup-arrow {
3629
- position: absolute;
3630
- background-color: inherit;
3631
- width: 10px;
3632
- height: 10px;
3633
- bottom: -5px;
3634
- left: calc(50% - 5px);
3635
- transform: rotateZ(45deg);
3636
- }
3637
-
3638
- .wptb-menu-list-table {
3639
- border-collapse: collapse;
3640
- width: 100%;
3641
- }
3642
-
3643
- .wptb-menu-list-table thead {
3644
- border-bottom: 1px solid #cbd5e0;
3645
- text-align: start;
3646
- }
3647
-
3648
- .wptb-menu-list-table thead td {
3649
- font-weight: bold;
3650
- transition: all 0.2s ease-out;
3651
- cursor: pointer;
3652
- }
3653
-
3654
- .wptb-menu-list-table tbody td .title-label {
3655
- word-break: break-all;
3656
- }
3657
-
3658
- .wptb-menu-list-table tbody tr:nth-child(even) {
3659
- background-color: #edf2f7;
3660
- }
3661
-
3662
- .wptb-menu-list-table thead td:hover {
3663
- background-color: #EDF2F7;
3664
- }
3665
-
3666
- .wptb-plugin-box-shadow-md {
3667
- box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
3668
- }
3669
-
3670
- .wptb-plugin-filter-box-shadow-md {
3671
- filter: drop-shadow(4px 6px 2px rgba(0, 0, 0, 0.1))
3672
- }
3673
-
3674
- .wptb-plugin-filter-box-shadow-md-close {
3675
- filter: drop-shadow(4px 1px 2px rgba(0, 0, 0, 0.1))
3676
- }
3677
-
3678
- .wptb-plugin-filter-box-shadow-md-around {
3679
- filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.3))
3680
- }
3681
-
3682
- .wptb-plugin-box-shadow-up-md {
3683
- box-shadow: 0 -5px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
3684
- }
3685
-
3686
- .wptb-plugin-box-shadow-xl {
3687
- box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.3) !important;
3688
- }
3689
-
3690
- .wptb-plugin-inset-shadow-md {
3691
- box-shadow: inset 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
3692
- }
3693
-
3694
- .wptb-plugin-margin-no {
3695
- margin: 0 !important;
3696
- }
3697
-
3698
- @keyframes wptb-settings-rotate {
3699
- 0% {
3700
- transform: rotateZ(0deg);
3701
- }
3702
- 100% {
3703
- transform: rotateZ(360deg);
3704
- }
3705
- }
3706
-
3707
- @keyframes wptb-basic-appear {
3708
- 0% {
3709
- opacity: 0
3710
- }
3711
- 100% {
3712
- opacity: 1
3713
- }
3714
- }
3715
-
3716
- .wptb-settings-space-between {
3717
- display: flex;
3718
- flex-direction: row;
3719
- width: 100%;
3720
- justify-content: space-between;
3721
- align-items: center;
3722
- }
3723
-
3724
-
3725
- .wptb-icon-select-wrapper {
3726
- align-items: center;
3727
- height: 100%;
3728
- }
3729
-
3730
- .wptb-icon-select-wrapper[disabled] .wptb-icon-select-preview {
3731
- opacity: 0.2;
3732
- cursor: default;
3733
- }
3734
-
3735
- .wptb-icon-select-display {
3736
- width: 50px;
3737
- height: 50px;
3738
- background-color: var(--wptb-plugin-theme-color-light);
3739
- border: 1px solid var(--wptb-plugin-gray-400);
3740
- border-radius: 5px;
3741
- position: relative;
3742
- }
3743
-
3744
- .wptb-icon-select-preview {
3745
- width: 100%;
3746
- height: 100%;
3747
- justify-content: center;
3748
- align-items: center;
3749
- padding: 5px;
3750
- cursor: pointer;
3751
- position: relative;
3752
- }
3753
-
3754
- .wptb-icon-select-preview img[src=''] {
3755
- display: none;
3756
- }
3757
-
3758
- .wptb-icon-select-preview img {
3759
- width: 100%;
3760
- height: 100%;
3761
- }
3762
-
3763
- .wptb-icon-select-drawer {
3764
- position: fixed;
3765
- display: grid;
3766
- grid-template-columns: 1fr;
3767
- grid-template-rows: auto 1fr;
3768
- grid-auto-flow: row;
3769
- grid-gap: 15px;
3770
- background-color: var(--wptb-plugin-theme-color-light);
3771
- border: 1px solid var(--wptb-plugin-gray-400);
3772
- border-radius: 5px;
3773
- padding: 10px;
3774
- width: 200px;
3775
- max-height: 200px;
3776
- overflow-y: hidden;
3777
- z-index: 110000;
3778
- }
3779
-
3780
- .wptb-icon-search-wrapper {
3781
- width: 100%;
3782
- }
3783
-
3784
- .wptb-icon-search-wrapper input {
3785
- width: 100%;
3786
- }
3787
-
3788
- .wptb-icon-previews {
3789
- position: relative;
3790
- width: 100%;
3791
- display: grid;
3792
- grid-template-columns: repeat(4, 1fr);
3793
- grid-auto-flow: row;
3794
- grid-gap: 10px;
3795
- justify-content: center;
3796
- align-items: center;
3797
- overflow-y: scroll;
3798
- }
3799
-
3800
- .wptb-icon-select-drawer-preview {
3801
- display: flex;
3802
- justify-content: center;
3803
- align-items: center;
3804
- }
3805
-
3806
- .wptb-icon-select-drawer-preview img {
3807
- width: 25px;
3808
- height: 25px;
3809
- transition: transform .2s ease-out;
3810
- cursor: pointer;
3811
- }
3812
-
3813
- .wptb-icon-select-drawer-preview img:hover {
3814
- transform: scale(1.2);
3815
- }
3816
-
3817
- .wptb-icon-select-drawer-end {
3818
- /*border: 1px solid red;*/
3819
- }
3820
-
3821
- .wptb-icon-preview-active {
3822
- border: 2px solid var(--wptb-plugin-logo-color);
3823
- }
3824
-
3825
- .wptb-icon-reset {
3826
- border: 1px solid var(--wptb-plugin-theme-sidebar-bg);
3827
- width: 100%;
3828
- height: 100%;
3829
- border-radius: 5px;
3830
- cursor: pointer;
3831
- }
3832
-
3833
- .wptb-html-control-wrapper {
3834
- display: flex;
3835
- flex-direction: column;
3836
- justify-content: center;
3837
- align-items: center;
3838
- }
3839
-
3840
- .wptb-html-control-wrapper > div {
3841
- /*margin: 10px 0;*/
3842
- }
3843
-
3844
- .wptb-html-control-wrapper div:last-child {
3845
- /*margin-bottom: 40px;*/
3846
- }
3847
-
3848
- .wptb-help-support-section-wrapper {
3849
- display: flex;
3850
- flex-direction: column;
3851
- justify-content: center;
3852
- align-items: center;
3853
- padding: 20px 0;
3854
- }
3855
-
3856
- .wptb-help-support-section-wrapper div {
3857
- margin: 5px 0;
3858
- }
3859
-
3860
- .wptb-builder-responsive {
3861
- position: absolute;
3862
- top: 0;
3863
- left: 0;
3864
- width: 100%;
3865
- height: 100%;
3866
- background-color: #fff;
3867
- z-index: 400000;
3868
- margin: auto;
3869
- padding: 40px 10px;
3870
- }
3871
-
3872
- .wptb-builder-responsive[data-wptb-responsive-status="true"] .wptb-responsive-builder-main {
3873
- overflow-x: hidden !important;
3874
- }
3875
-
3876
- .wptb-responsive-menu-tools {
3877
- margin: auto auto 60px auto;
3878
- max-width: 700px;
3879
- }
3880
-
3881
- .wptb-screen-size-slider-wrapper {
3882
- display: grid;
3883
- grid-template-columns: 1fr;
3884
- grid-template-areas: 'content';
3885
- justify-content: center;
3886
- align-items: center;
3887
- margin-bottom: 80px;
3888
- }
3889
-
3890
- .wptb-screen-size-slider-empty {
3891
- width: 100%;
3892
- position: relative;
3893
- height: 5px;
3894
- border-radius: 3px;
3895
- background-color: #fff;
3896
- border: 1px solid var(--wptb-plugin-gray-400);
3897
- grid-area: content;
3898
- }
3899
-
3900
- .wptb-screen-size-slider-fill {
3901
- height: 100%;
3902
- position: absolute;
3903
- left: 0;
3904
- border-radius: 3px;
3905
- background-color: var(--wptb-plugin-logo-color);
3906
- border: 1px solid transparent;
3907
- transition: all 0.1s linear;
3908
- }
3909
-
3910
- .wptb-drag-active .wptb-screen-size-slider-fill {
3911
- transition: none !important;
3912
- }
3913
-
3914
- .wptb-screen-size-slider-arrow {
3915
- position: absolute;
3916
- top: -30px;
3917
- cursor: grab;
3918
- transition: all 0.1s linear;
3919
- }
3920
-
3921
- .wptb-drag-active .wptb-screen-size-slider-arrow {
3922
- transition: none !important;
3923
- }
3924
-
3925
- .wptb-screen-size-slider-arrow:active {
3926
- cursor: grabbing;
3927
- }
3928
-
3929
- .wptb-size-slider-stops-wrapper {
3930
- z-index: 900000;
3931
- position: absolute;
3932
- top: -10px;
3933
- }
3934
-
3935
- .wptb-slider-stop {
3936
- position: absolute;
3937
- display: flex;
3938
- width: fit-content;
3939
- flex-direction: column;
3940
- justify-content: center;
3941
- align-items: center;
3942
- cursor: pointer;
3943
- }
3944
-
3945
- .wptb-slider-stop-knob {
3946
- width: 20px;
3947
- height: 20px;
3948
- background-color: #fff;
3949
- border: 2px solid var(--wptb-plugin-logo-color);
3950
- border-radius: 50%;
3951
- margin-bottom: 5px;
3952
- transition: all 0.2s ease-out;
3953
- display: flex;
3954
- justify-content: center;
3955
- align-items: center;
3956
- }
3957
-
3958
- .wptb-slider-stop-label {
3959
- text-transform: capitalize;
3960
- font-size: 90%;
3961
- color: var(--wptb-plugin-gray-400);
3962
- }
3963
-
3964
- .wptb-slider-stop-knob[data-wptb-knob-disabled="true"] {
3965
- background-color: var(--wptb-plugin-theme-color-light) !important;
3966
- border: 2px solid var(--wptb-plugin-red-300) !important;
3967
- }
3968
-
3969
- .wptb-slider-stop-knob[data-wptb-knob-disabled="true"] svg {
3970
- fill: var(--wptb-plugin-red-600);
3971
- }
3972
-
3973
- .wptb-slider-stop-active .wptb-slider-stop-knob {
3974
- background-color: var(--wptb-plugin-logo-color);
3975
- color: inherit !important;
3976
- }
3977
-
3978
- .wptb-slider-stop-active .wptb-slider-stop-label {
3979
- color: inherit !important;
3980
- }
3981
-
3982
- .wptb-size-input-wrapper {
3983
- display: flex;
3984
- justify-content: center;
3985
- align-items: center;
3986
- font-size: 90%;
3987
- }
3988
-
3989
- .wptb-size-input-wrapper * {
3990
- margin: 0 10px;
3991
- font-size: inherit !important;
3992
- font-variant-numeric: tabular-nums;
3993
- }
3994
-
3995
- .wptb-size-input {
3996
- width: calc(9ch);
3997
- border: 1px solid var(--wptb-plugin-gray-400) !important;
3998
- background-color: var(--wptb-plugin-gray-100) !important;
3999
- text-align: center;
4000
- color: var(--wptb-plugin-theme-text-color-main) !important;
4001
- }
4002
-
4003
- .wptb-responsive-builder-main {
4004
- /*display: grid;*/
4005
- /*grid-auto-flow: row;*/
4006
- /*grid-template-areas: "toolbox" "main";*/
4007
- margin-bottom: 20px;
4008
- padding: 0 20px;
4009
- position: relative;
4010
- overflow: auto;
4011
- }
4012
-
4013
- .wptb-responsive-toolbox-wrapper {
4014
- display: grid;
4015
- align-items: center;
4016
- border: 1px solid var(--wptb-plugin-gray-300);
4017
- border-radius: 3px;
4018
- grid-area: toolbox;
4019
- }
4020
-
4021
- .wptb-responsive-toolbox-top-static {
4022
- display: grid;
4023
- grid-template-columns: repeat(2, 1fr);
4024
- grid-auto-rows: 1fr;
4025
- align-items: center;
4026
- grid-gap: 10px;
4027
- }
4028
-
4029
- .wptb-responsive-identify-cells-wrapper {
4030
- /*grid-column: 2;*/
4031
- }
4032
-
4033
- .wptb-responsive-toolbox-dynamic-wrapper {
4034
- display: grid;
4035
- grid-template-columns: 1fr;
4036
- grid-gap: 10px;
4037
- grid-auto-rows: auto;
4038
- }
4039
-
4040
- .wptb-responsive-toolbox-wrapper > div {
4041
- padding: 10px;
4042
- border-bottom: 1px solid var(--wptb-plugin-gray-300);
4043
- }
4044
-
4045
- .wptb-responsive-toolbox-row div:nth-child(even) {
4046
- justify-self: end;
4047
- }
4048
-
4049
- .wptb-responsive-toolbox-wrapper > div:last-child {
4050
- border-bottom: none !important;
4051
- }
4052
-
4053
- .wptb-responsive-toolbox-dynamic-controls-holder {
4054
- display: grid;
4055
- grid-template-columns: repeat(2, 1fr);
4056
- grid-gap: 5px;
4057
- }
4058
-
4059
- .wptb-responsive-toolbox-dynamic-controls-holder > div:nth-child(even) {
4060
- justify-self: end;
4061
- }
4062
-
4063
- .wptb-responsive-size-range-name {
4064
- justify-self: center;
4065
- font-weight: bold;
4066
- }
4067
-
4068
- .wptb-responsive-clone-wrapper {
4069
- width: 100%;
4070
- height: 100%;
4071
- grid-area: main;
4072
- padding: 20px 0;
4073
- justify-self: center;
4074
- border: 1px solid var(--wptb-plugin-gray-300);
4075
- border-top: none !important;
4076
- display: flex;
4077
- justify-content: center;
4078
- align-items: center;
4079
- }
4080
-
4081
- .wptb-responsive-clone-inner-wrapper {
4082
- display: flex;
4083
- justify-content: center;
4084
- width: 100%;
4085
- }
4086
-
4087
-
4088
- .wptb-checkerboard-pattern {
4089
- background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyIDIiPgogICAgPHJlY3Qgd2lkdGg9IjEiIGhlaWdodD0iMSIgeD0iMCIgeT0iMCIgZmlsbD0icmdiKDIwMywyMTMsMjI0KSIvPgogICAgPHJlY3Qgd2lkdGg9IjEiIGhlaWdodD0iMSIgeD0iMSIgeT0iMCIgZmlsbD0icmdiKDIzNywyNDIsMjQ3KSIvPgogICAgPHJlY3Qgd2lkdGg9IjEiIGhlaWdodD0iMSIgeD0iMSIgeT0iMSIgZmlsbD0icmdiKDIwMywyMTMsMjI0KSIvPgogICAgPHJlY3Qgd2lkdGg9IjEiIGhlaWdodD0iMSIgeD0iMCIgeT0iMSIgZmlsbD0icmdiKDIzNywyNDIsMjQ3KSIvPgo8L3N2Zz4=");
4090
- background-repeat: repeat;
4091
- background-size: 20px;
4092
- }
4093
-
4094
- .wptb-responsive-disabled-table-overlay {
4095
- /*grid-area: main;*/
4096
- position: absolute;
4097
- left: 0;
4098
- top: 0;
4099
- width: 100%;
4100
- height: 100%;
4101
- background-image: repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(1, 1, 1, 0.2) 15px, rgba(1, 1, 1, 0.2) 30px);
4102
- z-index: 10;
4103
- }
4104
-
4105
- .wptb-responsive-wait-overlay {
4106
- /*grid-area: main;*/
4107
- position: absolute;
4108
- top: 0;
4109
- left: 0;
4110
- width: 100%;
4111
- height: 100%;
4112
- z-index: 10;
4113
- display: flex;
4114
- justify-content: center;
4115
- align-items: center;
4116
- background-color: rgba(0, 0, 0, 0.4);
4117
- color: #fff;
4118
- text-transform: uppercase;
4119
- font-weight: bold;
4120
- }
4121
-
4122
- .wptb-responsive-wait-overlay:after {
4123
- content: '';
4124
- animation: wptb-text-dots 2s infinite;
4125
- }
4126
-
4127
- @keyframes wptb-text-dots {
4128
- 0% {
4129
- content: ''
4130
- }
4131
- 33% {
4132
- content: '.'
4133
- }
4134
- 66% {
4135
- content: '..'
4136
- }
4137
- 100% {
4138
- content: '...'
4139
- }
4140
- }
4141
-
4142
- .wptb-controls-flex-row {
4143
- display: flex;
4144
- align-items: center;
4145
- flex-direction: row;
4146
- }
4147
-
4148
- .wptb-controls-flex-row label {
4149
- margin: 0 5px;
4150
- }
4151
-
4152
- /*checkbox fix for WordPress default style adding margin-top*/
4153
- .wptb-responsive-builder-main input[type="checkbox"] {
4154
- margin-top: 0 !important;
4155
- }
4156
-
4157
- .wptb-responsive-cell-identifier {
4158
- position: absolute;
4159
- top: 0;
4160
- left: 0;
4161
- width: 100%;
4162
- height: 100%;
4163
- display: flex;
4164
- justify-content: center;
4165
- align-items: center;
4166
- font-size: 4rem;
4167
- text-shadow: 3px 3px 1px var(--wptb-plugin-gray-300);
4168
- opacity: 0;
4169
- transition: opacity 0.5s ease-out;
4170
- z-index: 100;
4171
- }
4172
-
4173
- .wptb-responsive-show-cell-identifier .wptb-responsive-cell-identifier {
4174
- opacity: 1 !important;
4175
- }
4176
-
4177
- .wptb-plugin-modal-window {
4178
- position: absolute;
4179
- top: 0;
4180
- left: 0;
4181
- width: 100%;
4182
- height: 100%;
4183
- background-color: rgba(0, 0, 0, 0.5);
4184
- z-index: 600000;
4185
- display: flex;
4186
- justify-content: center;
4187
- align-items: center;
4188
- }
4189
-
4190
- .wptb-plugin-modal-inner-window {
4191
- max-width: 400px;
4192
- background-color: #fff;
4193
- padding: 20px;
4194
- border-radius: 3px;
4195
- display: grid;
4196
- grid-template-areas:
4197
- "modalIcon message"
4198
- "buttonContainer buttonContainer";
4199
- grid-gap: 10px;
4200
- }
4201
-
4202
- .wptb-plugin-modal-icon {
4203
- grid-area: modalIcon;
4204
- width: 50px;
4205
- height: 100%;
4206
- display: flex;
4207
- justify-content: center;
4208
- align-items: center;
4209
- transform: scale(2);
4210
- pointer-events: none;
4211
- }
4212
-
4213
- .wptb-plugin-modal-message {
4214
- grid-area: message;
4215
- }
4216
-
4217
- .wptb-plugin-modal-button-container {
4218
- margin: 5px 0 0 0;
4219
- justify-self: center;
4220
- grid-area: buttonContainer;
4221
- width: 100%;
4222
- }
4223
-
4224
- .wptb-plugin-button-material {
4225
- width: fit-content;
4226
- padding: 5px;
4227
- border-radius: 3px;
4228
- background-color: var(--wptb-plugin-logo-color);
4229
- color: #fff;
4230
- cursor: pointer;
4231
- transition: all 0.05s ease-out;
4232
- }
4233
-
4234
- .wptb-plugin-button-material:active {
4235
- transform: scale(0.95);
4236
- }
4237
-
4238
- .wptb-plugin-button-material[disabled] {
4239
- background-color: var(--wptb-plugin-gray-400) !important;
4240
- cursor: not-allowed;
4241
- }
4242
-
4243
- .wptb-plugin-button-material[disabled]:active {
4244
- transform: none;
4245
- }
4246
-
4247
- .wptb-plugin-button-material-fit-content {
4248
- width: fit-content !important;
4249
- }
4250
-
4251
- .wptb-plugin-button-material-full-size {
4252
- width: 100%;
4253
- }
4254
-
4255
- .wptb-plugin-responsive-base {
4256
- min-width: auto !important;
4257
- width: 100% !important;
4258
- }
4259
-
4260
- /*visual update for popup components inside responsive menu*/
4261
- .wptb-responsive-toolbox-wrapper .wptb-menu-popup-wrapper {
4262
- margin-right: 0 !important;
4263
- }
4264
-
4265
- .wptb-responsive-breakpoint-edit-wrapper {
4266
- display: grid;
4267
- grid-template-columns: repeat(2, 1fr);
4268
- grid-auto-flow: row;
4269
- align-items: center;
4270
- }
4271
-
4272
- .wptb-toggle input:disabled + i {
4273
- background: var(--wptb-plugin-gray-400);
4274
- }
4275
-
4276
- .wptb-control-row {
4277
- width: 95%;
4278
- }
4279
-
4280
- label.wptb-control-row {
4281
- text-transform: capitalize;
4282
- }
4283
-
4284
- .wptb-builder-content {
4285
- position: relative;
4286
- height: 100%;
4287
- overflow: auto;
4288
- }
4289
-
4290
- #wptb_builder[data-wptb-active-section="table_responsive_menu"] .wptb-builder-content {
4291
- overflow-x: hidden !important;
4292
- }
4293
-
4294
- .wptb-responsive-builder-toolbox-float {
4295
- grid-area: toolbox;
4296
- padding: 10px 0;
4297
- display: flex;
4298
- justify-content: space-between;
4299
- }
4300
-
4301
- .wptb-responsive-builder-toolbox-left-float {
4302
- /*display: inline;*/
4303
- display: flex;
4304
- justify-content: flex-start;
4305
- align-items: center;
4306
- }
4307
-
4308
- .wptb-number-postfix-buttons-wrapper {
4309
- margin-left: 10px;
4310
- display: flex !important;
4311
- height: 100%;
4312
- }
4313
-
4314
- .wptb-number-postfix-button {
4315
- display: flex;
4316
- justify-content: center;
4317
- align-items: center;
4318
- width: 30px;
4319
- border: 1px solid var(--wptb-plugin-gray-400) !important;
4320
- background-color: var(--wptb-plugin-gray-100) !important;
4321
- border-radius: 5px;
4322
- cursor: pointer;
4323
- font-weight: bold;
4324
- color: var(--wptb-plugin-theme-text-color-main) !important;
4325
- font-size: 110%;
4326
- }
4327
-
4328
- .wptb-number-postfix-button:active {
4329
- animation: wptb-push 0.2s ease-out;
4330
- }
4331
-
4332
- .wptb-panel-toggle-section {
4333
- grid-area: sidebar-footer;
4334
- display: flex;
4335
- flex-direction: row;
4336
- justify-content: flex-end;
4337
- align-items: center;
4338
- padding: 20px 10px;
4339
- background-color: var(--wptb-plugin-logo-color);
4340
- color: #fff;
4341
- }
4342
-
4343
-
4344
- .wptb-left-panel[data-wptb-panel-location="right"] .wptb-panel-toggle-section {
4345
- justify-content: flex-start !important;
4346
- }
4347
-
4348
-
4349
- .wptb-panel-toggle-section .wptb-panel-drawer-icon {
4350
- cursor: pointer;
4351
- transform: scale(2);
4352
- }
4353
-
4354
- .wptb-left-panel[data-wptb-panel-location="right"] .wptb-panel-toggle-section .wptb-panel-drawer-icon {
4355
- transform: scale(2) rotateZ(180deg);
4356
- }
4357
-
4358
- .collapsed .wptb-panel-toggle-section {
4359
- opacity: 1 !important;
4360
- }
4361
-
4362
- .wptb-cell-related-drop-handle {
4363
- position: fixed;
4364
- display: none;
4365
- background-color: #e2e8f0c7;
4366
- z-index: 300000;
4367
- pointer-events: none;
4368
- transition: all 0.2s ease-out;
4369
- animation: wptb-basic-appear 0.2s ease-out;
4370
- align-items: center;
4371
- justify-content: center;
4372
- font-size: 1.5rem;
4373
- font-weight: bold;
4374
- text-transform: uppercase;
4375
- color: #4a5568;
4376
- }
4377
-
4378
- .wptb-control-media-select-button {
4379
- width: 100px;
4380
- height: 50px;
4381
- border: 1px solid var(--wptb-plugin-gray-400);
4382
- background-position: center center;
4383
- background-size: contain;
4384
- background-repeat: no-repeat;
4385
- cursor: pointer;
4386
- }
4387
-
4388
- .wptb-control-media-button-wrapper {
4389
- position: relative;
4390
- }
4391
-
4392
- .wptb-control-media-clear-button {
4393
- position: absolute;
4394
- width: 20px;
4395
- height: 20px;
4396
- top: -5px;
4397
- right: -10px;
4398
- color: red;
4399
- cursor: pointer;
4400
- }
4401
-
4402
- .wptb-control-media-clear-button span {
4403
- transform: scale(1.8);
4404
- }
4405
-
4406
- .wptb-controls-ul-row {
4407
- display: flex;
4408
- }
4409
-
4410
- .wptb-button-svg-center {
4411
- display: flex !important;
4412
- justify-content: center;
4413
- align-items: center;
4414
- }
4415
-
4416
- /*region sides control*/
4417
- .wptb-sides-link-icon-wrapper {
4418
- width: 16px;
4419
- height: 16px;
4420
- cursor: pointer;
4421
- transition: transform 0.1s ease-out;
4422
- filter: opacity(0.7);
4423
- }
4424
-
4425
- .wptb-sides-link-icon-wrapper:active {
4426
- transform: scale(0.9);
4427
- }
4428
-
4429
- .wptb-sides-controls-wrapper {
4430
- display: grid;
4431
- grid-template-columns: repeat(5, 1fr);
4432
- }
4433
-
4434
- .wptb-side-control-header {
4435
- color: var(--wptb-plugin-gray-500);
4436
- text-align: center;
4437
- margin: 5px 0;
4438
- }
4439
-
4440
- .wptb-side-control-main-input {
4441
- width: 100%;
4442
- height: 30px !important;
4443
- border: 1.5px solid var(--wptb-plugin-gray-400) !important;
4444
- border-radius: 0 !important;
4445
- text-align: center;
4446
- }
4447
-
4448
- .wptb-side-control-number-input {
4449
- transition: all 0.3s ease-out;
4450
- margin-left: 5px;
4451
- }
4452
-
4453
- .wptb-side-values-linked .wptb-side-control-number-input {
4454
- margin-left: 0;
4455
- }
4456
-
4457
- .wptb-side-control-main-input:active, .wptb-side-control-main-input:focus {
4458
- outline: none !important;
4459
- box-shadow: none !important;
4460
- }
4461
-
4462
- .wptb-side-control-input-wrapper:first-of-type .wptb-side-control-main-input {
4463
- border-left-width: 3px !important;
4464
- border-radius: 5px 0 0 5px !important;
4465
- }
4466
-
4467
- .wptb-side-control-input-wrapper:last-of-type .wptb-side-control-main-input {
4468
- border-right-width: 3px !important;
4469
- border-radius: 0 5px 5px 0 !important;
4470
- }
4471
-
4472
- .wptb-side-control-dropdown-wrapper {
4473
- align-self: end;
4474
- }
4475
-
4476
- .wptb-side-control-dropdown {
4477
- background-color: var(--wptb-plugin-gray-400) !important;
4478
- }
4479
-
4480
- /*endregion*/
4481
-
4482
- /*region named toggle control*/
4483
- .wptb-named-toggle-control-wrapper {
4484
- position: relative;
4485
- min-height: 30px;
4486
- display: grid;
4487
- grid-template-columns: 1fr;
4488
- grid-auto-columns: 1fr;
4489
- grid-auto-flow: column;
4490
- justify-content: center;
4491
- align-items: center;
4492
- border: 1px solid var(--wptb-plugin-gray-400);
4493
- border-radius: 5px;
4494
- background-color: var(--wptb-plugin-white);
4495
- overflow: hidden;
4496
- }
4497
-
4498
- .wptb-named-toggle-item {
4499
- display: flex;
4500
- justify-content: center;
4501
- align-items: center;
4502
- text-wrap: avoid;
4503
- padding: 10px;
4504
- z-index: 10;
4505
- cursor: pointer;
4506
- color: var(--wptb-plugin-gray-400);
4507
- font-weight: bold;
4508
- font-size: 90% !important;
4509
- }
4510
-
4511
- .wptb-named-toggle-item[data-wptb-named-toggle-active='true'] {
4512
- color: var(--wptb-plugin-white);
4513
- }
4514
-
4515
- .wptb-named-toggle-active-indicator {
4516
- position: absolute;
4517
- height: 100%;
4518
- background-color: var(--wptb-plugin-logo-color);
4519
- z-index: 9;
4520
- transition: left 0.2s ease-out;
4521
- }
4522
-
4523
- /*endregion*/
4524
-
4525
- /*region cell vertical alignment*/
4526
- .wptb-cell[data-wptb-cell-vertical-alignment="top"] {
4527
- vertical-align: baseline;
4528
- }
4529
-
4530
- .wptb-cell[data-wptb-cell-vertical-alignment="center"] {
4531
- vertical-align: middle;
4532
- }
4533
-
4534
- .wptb-cell[data-wptb-cell-vertical-alignment="bottom"] {
4535
- vertical-align: bottom;
4536
- }
4537
-
4538
- /*endregion*/
4539
-
4540
- /*sortable mode*/
4541
- .wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical]::after,
4542
- .wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal]::after,
4543
- .wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical]::after,
4544
- .wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal]::after {
4545
- position: absolute;
4546
- top: 0;
4547
- bottom: 0;
4548
- z-index: 101;
4549
- display: grid;
4550
- font-family: dashicons;
4551
- font-size: 35px;
4552
- align-content: center;
4553
- text-align: center;
4554
- }
4555
-
4556
- .wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical="ask"]::after,
4557
- .wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical="ask"]::after {
4558
- content: "\f142";
4559
- right: 0;
4560
- }
4561
-
4562
- .wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical="desk"].sortable-hover::after,
4563
- .wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical="desk"].sortable-hover::after {
4564
- content: "\f142";
4565
- cursor: pointer;
4566
- opacity: 0.7;
4567
- }
4568
-
4569
- .wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical="desk"]::after,
4570
- .wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical="desk"]::after {
4571
- content: "\f140";
4572
- right: 0;
4573
- }
4574
-
4575
- .wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical="ask"].sortable-hover::after,
4576
- .wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical="ask"].sortable-hover::after {
4577
- content: "\f140";
4578
- cursor: pointer;
4579
- opacity: 0.7;
4580
- }
4581
-
4582
- .wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal="ask"]::after,
4583
- .wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal="ask"]::after {
4584
- content: "\f141";
4585
- left: 0;
4586
- }
4587
-
4588
- .wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal="desk"].sortable-hover::after,
4589
- .wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal="desk"].sortable-hover::after {
4590
- content: "\f141";
4591
- cursor: pointer;
4592
- opacity: 0.7;
4593
- }
4594
-
4595
- .wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal="desk"]::after,
4596
- .wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal="desk"]::after {
4597
- content: "\f139";
4598
- left: 0;
4599
- }
4600
-
4601
- .wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal="ask"].sortable-hover::after,
4602
- .wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal="ask"].sortable-hover::after {
4603
- content: "\f139";
4604
- cursor: pointer;
4605
- opacity: 0.7;
4606
- }
4607
-
4608
- /*sortable mode end*/
4609
-
4610
- /*endregion*/
4611
-
4612
- /*region generate menu*/
4613
- .wptb-generate-wrapper {
4614
- margin: 0 50px 0 50px;
4615
- display: flex;
4616
- flex-direction: column;
4617
- justify-content: center;
4618
- align-items: center;
4619
- color: inherit;
4620
- }
4621
-
4622
- .wptb-generate-menu {
4623
- display: grid;
4624
- grid-template-columns: 1fr;
4625
- grid-template-areas: 'header' 'listing';
4626
- }
4627
-
4628
- .wptb-generate-menu-header {
4629
- grid-area: header;
4630
- padding: 30px;
4631
- border-bottom: 1px solid var(--wptb-plugin-gray-300);
4632
- }
4633
-
4634
- .wptb-generate-menu-listing {
4635
- grid-area: listing;
4636
- padding: 30px;
4637
- display: flex;
4638
- justify-content: center;
4639
- align-items: center;
4640
- flex-wrap: wrap;
4641
- }
4642
-
4643
- .wptb-generate-search {
4644
- border: 1px solid var(--wptb-plugin-gray-300) !important;
4645
- text-align: center;
4646
- font-size: 90%;
4647
- color: inherit;
4648
- }
4649
-
4650
- .wptb-generate-search:active, .wptb-generate-search:focus {
4651
- border: 1px solid var(--wptb-plugin-gray-400) !important;
4652
- inset: 0 !important;
4653
- box-shadow: none !important;
4654
- }
4655
-
4656
- .wptb-prebuilt-card {
4657
- width: 200px;
4658
- max-width: 200px;
4659
- display: grid;
4660
- grid-template-columns: 1fr;
4661
- grid-template-rows: 125px auto;
4662
- grid-template-areas: 'main' 'footer';
4663
- border-radius: 5px;
4664
- transition: all 0.4s ease-out;
4665
- background-color: var(--wptb-plugin-theme-color-light);
4666
- cursor: pointer;
4667
- margin: calc(var(--wptb-prebuilt-card-control-size) + 10px);
4668
- }
4669
-
4670
- .wptb-prebuilt-card-active {
4671
- cursor: default;
4672
- animation: wptb-pop 0.2s ease-out;
4673
- }
4674
-
4675
- @keyframes wptb-pop {
4676
- 0% {
4677
- transform: scale(1);
4678
- }
4679
- 50% {
4680
- transform: scale(1.05);
4681
- }
4682
- 0% {
4683
- transform: scale(1);
4684
- }
4685
- }
4686
-
4687
- @keyframes wptb-more-pop {
4688
- 0% {
4689
- transform: scale(1);
4690
- }
4691
- 50% {
4692
- transform: scale(1.5);
4693
- }
4694
- 0% {
4695
- transform: scale(1);
4696
- }
4697
- }
4698
-
4699
- .wptb-prebuilt-card:hover {
4700
- box-shadow: 3px 3px 2px 0.5px rgba(0, 0, 0, 0.2);
4701
- }
4702
-
4703
- .wptb-prebuilt-card-preview {
4704
- position: relative;
4705
- grid-area: main;
4706
- border: var(--wptb-prebuilt-card-border-size) solid var(--wptb-plugin-gray-400);
4707
- border-bottom: 1px solid var(--wptb-plugin-gray-400) !important;
4708
- background-color: var(--wptb-plugin-gray-300);
4709
- display: grid;
4710
- grid-template-columns: 1fr;
4711
- grid-template-rows: 1fr;
4712
- grid-template-areas: 'preview';
4713
- justify-content: center;
4714
- align-items: center;
4715
- border-radius: 5px 5px 0 0;
4716
- }
4717
-
4718
- .wptb-prebuilt-card .wptb-settings-fetching {
4719
- grid-area: main;
4720
- width: 100%;
4721
- height: 100%;
4722
- z-index: 100;
4723
- display: flex;
4724
- justify-content: center;
4725
- align-items: center;
4726
- color: var(--wptb-plugin-gray-500);
4727
- }
4728
-
4729
- .wptb-prebuilt-card-preview table {
4730
- transition: opacity 0.2s ease-out;
4731
- }
4732
-
4733
- .wptb-team-prebuilt {
4734
- border: var(--wptb-prebuilt-card-border-size) solid var(--wptb-plugin-logo-color) !important;
4735
- }
4736
-
4737
- .wptb-prebuilt-card-controls {
4738
- grid-area: preview;
4739
- position: relative;
4740
- width: 100%;
4741
- height: 100%;
4742
- display: flex;
4743
- justify-content: center;
4744
- align-items: center;
4745
- pointer-events: none;
4746
- }
4747
-
4748
- .wptb-prebuilt-live-display {
4749
- width: 100%;
4750
- height: 100%;
4751
- grid-area: preview;
4752
- padding: 15px
4753
- }
4754
-
4755
- .wptb-prebuilt-live-table {
4756
- width: 100%;
4757
- height: 100%;
4758
- background-color: var(--wptb-plugin-theme-color-light);
4759
- border-radius: 5px;
4760
- /*overflow: hidden;*/
4761
- border: 1px solid var(--wptb-plugin-gray-400);
4762
- display: grid;
4763
- }
4764
-
4765
- .wptb-prebuilt-live-cell {
4766
- width: 100%;
4767
- height: 100%;
4768
- border: 0.5px solid var(--wptb-plugin-gray-400);
4769
- cursor: pointer;
4770
- display: flex;
4771
- justify-content: center;
4772
- align-items: center;
4773
- position: relative;
4774
- overflow: visible;
4775
- z-index: 10;
4776
- }
4777
-
4778
- .wptb-prebuilt-live-cell-hover {
4779
- opacity: 0.7;
4780
- background-color: var(--wptb-plugin-logo-color);
4781
- }
4782
-
4783
-
4784
- .wptb-prebuilt-live-cell:hover .wptb-prebuilt-live-control {
4785
- opacity: unset;
4786
- pointer-events: all;
4787
- }
4788
-
4789
- .wptb-prebuilt-live-control-hide .wptb-prebuilt-live-control {
4790
- display: none;
4791
- }
4792
-
4793
- .wptb-prebuilt-live-control-active {
4794
- background-color: var(--wptb-plugin-logo-color);
4795
- }
4796
-
4797
- .wptb-prebuilt-live-control {
4798
- position: absolute;
4799
- opacity: 0;
4800
- pointer-events: none;
4801
- transition: all 0.1s ease-out;
4802
- font-size: 120%;
4803
- }
4804
-
4805
- .wptb-prebuilt-live-control:active {
4806
- animation: wptb-push 0.2s ease-out;
4807
- }
4808
-
4809
- .wptb-prebuilt-added-cell {
4810
- background-color: turquoise;
4811
- cursor: default;
4812
- z-index: 1 !important;
4813
- }
4814
-
4815
- .wptb-prebuilt-control {
4816
- position: absolute;
4817
- display: flex;
4818
- justify-content: center;
4819
- align-items: center;
4820
- pointer-events: all;
4821
- }
4822
-
4823
- .wptb-prebuilt-control[data-orientation="row"] {
4824
- top: 0;
4825
- transform: translateY(calc(-100% - var(--wptb-prebuilt-card-border-size)));
4826
- display: flex;
4827
- justify-content: center;
4828
- align-items: center;
4829
- }
4830
-
4831
- .wptb-prebuilt-control[data-orientation="col"] {
4832
- left: 0;
4833
- transform: translateX(calc(-100% - var(--wptb-prebuilt-card-border-size)));
4834
- display: flex;
4835
- flex-wrap: wrap;
4836
- flex-direction: column-reverse;
4837
- width: var(--wptb-prebuilt-card-control-size);
4838
- justify-content: center;
4839
- align-items: center;
4840
- }
4841
-
4842
- .wptb-prebuilt-control-input {
4843
- text-align: center;
4844
- width: var(--wptb-prebuilt-card-control-size);
4845
- height: var(--wptb-prebuilt-card-control-size);
4846
- border: 1px solid var(--wptb-plugin-gray-300) !important;
4847
- color: inherit !important;
4848
- border-radius: 0 !important;
4849
- margin: 0 !important;
4850
- }
4851
-
4852
- .wptb-prebuilt-control-input:active, .wptb-prebuilt-control-input:focus {
4853
- border: 1px solid var(--wptb-plugin-gray-400) !important;
4854
- inset: 0 !important;
4855
- box-shadow: none !important;
4856
- }
4857
-
4858
- .wptb-prebuilt-control-input:disabled {
4859
- color: var(--wptb-plugin-gray-300) !important;
4860
- }
4861
-
4862
- .wptb-prebuilt-control-increment-box {
4863
- width: var(--wptb-prebuilt-card-control-size);
4864
- height: var(--wptb-prebuilt-card-control-size);
4865
- background-color: var(--wptb-plugin-gray-300);
4866
- display: flex;
4867
- justify-content: center;
4868
- align-items: center;
4869
- font-size: 150%;
4870
- cursor: pointer;
4871
- }
4872
-
4873
- .wptb-prebuilt-control-increment-box:hover {
4874
- background-color: var(--wptb-plugin-gray-400);
4875
- }
4876
-
4877
- .wptb-prebuilt-control-increment-box[disabled] {
4878
- background-color: var(--wptb-plugin-gray-200) !important;
4879
- color: var(--wptb-plugin-gray-400) !important;
4880
- cursor: default;
4881
- }
4882
-
4883
- .wptb-prebuilt-card-footer {
4884
- grid-area: footer;
4885
- display: flex;
4886
- justify-content: center;
4887
- align-items: center;
4888
- }
4889
-
4890
- .wptb-prebuilt-card-footer-element {
4891
- padding: 15px;
4892
- border: var(--wptb-prebuilt-card-border-size) solid var(--wptb-plugin-gray-400);
4893
- border-top: 0 !important;
4894
- width: 100%;
4895
- height: 100%;
4896
- border-radius: 0 0 5px 5px;
4897
- }
4898
-
4899
- .wptb-prebuilt-card-footer-button-holder {
4900
- padding: 0 !important;
4901
- display: grid;
4902
- grid-template-columns: repeat(2, 1fr);
4903
- grid-gap: 1px;
4904
- background-color: var(--wptb-plugin-gray-500);
4905
- }
4906
-
4907
- .wptb-prebuilt-card-footer-button-holder-single {
4908
- grid-template-columns: 1fr !important;
4909
- }
4910
-
4911
- .wptb-prebuilt-blank {
4912
- font-size: 400%;
4913
- color: var(--wptb-plugin-gray-500);
4914
- margin: 0 !important;
4915
- }
4916
-
4917
- .wptb-prebuilt-footer-button {
4918
- width: 100%;
4919
- height: 100%;
4920
- cursor: pointer;
4921
- transition: color 0.2s ease-out;
4922
- font-weight: bold;
4923
- padding: 15px;
4924
- color: var(--wptb-plugin-gray-400);
4925
- }
4926
-
4927
- .wptb-prebuilt-footer-generate {
4928
- background-color: var(--wptb-plugin-logo-color);
4929
- }
4930
-
4931
- .wptb-prebuilt-footer-edit {
4932
- background-color: var(--wptb-plugin-green-500);
4933
- }
4934
-
4935
- .wptb-prebuilt-footer-button:first-of-type {
4936
- border-radius: 0 0 0 5px;
4937
- }
4938
-
4939
- .wptb-prebuilt-footer-button:last-of-type {
4940
- border-radius: 0 0 5px 0;
4941
- }
4942
-
4943
- .wptb-prebuilt-footer-button:only-of-type {
4944
- border-radius: 0 0 5px 5px;
4945
- }
4946
-
4947
- .wptb-prebuilt-footer-button:hover {
4948
- color: var(--wptb-plugin-theme-color-light);
4949
- }
4950
-
4951
- .wptb-unselectable {
4952
- -moz-user-select: none;
4953
- -webkit-user-select: none;
4954
- -ms-user-select: none;
4955
- user-select: none;
4956
- }
4957
-
4958
- .wptb-no-pointer-events {
4959
- pointer-events: none;
4960
- }
4961
-
4962
- .wptb-plugin-basic-disappear {
4963
- animation: wptb-basic-disappear 0.1s ease-out;
4964
- }
4965
-
4966
- @keyframes wptb-basic-disappear {
4967
- 0% {
4968
- opacity: 1;
4969
- }
4970
- 100% {
4971
- opacity: 0;
4972
- }
4973
- }
4974
-
4975
- .wptb-prebuilt-ad {
4976
- margin: 50px;
4977
- color: var(--wptb-plugin-gray-500);
4978
- }
4979
-
4980
- .wptb-prebuilt-ad-link {
4981
- font-size: 120%;
4982
- color: var(--wptb-plugin-logo-color) !important;
4983
- font-weight: bold;
4984
- }
4985
-
4986
- .wptb-prebuilt-table-wrapper {
4987
- width: 100%;
4988
- overflow: hidden !important;
4989
- display: flex;
4990
- justify-content: center;
4991
- align-items: center;
4992
- padding: 20px;
4993
- animation: wptb-basic-disappear 0.2s ease-out alternate-reverse;
4994
- pointer-events: none;
4995
- }
4996
-
4997
- .wptb-prebuilt-table-wrapper table {
4998
- /*width: 700px;*/
4999
- }
5000
-
5001
- .wptb-prebuilt-card-search-indicator-main {
5002
- color: var(--wptb-plugin-gray-500);
5003
- }
5004
-
5005
- .wptb-prebuilt-card-search-indicator {
5006
- color: var(--wptb-plugin-logo-color) !important;
5007
- font-weight: bold;
5008
- }
5009
-
5010
- .wptb-prebuilt-card-icon {
5011
- width: 25px;
5012
- height: 25px;
5013
- position: absolute;
5014
- cursor: pointer;
5015
- display: flex;
5016
- justify-content: center;
5017
- align-items: center;
5018
- }
5019
-
5020
- .wptb-prebuilt-card-icon svg {
5021
- width: 100%;
5022
- height: 100%;
5023
-
5024
- }
5025
-
5026
- .wptb-prebuilt-card-fav-icon {
5027
- left: 8px;
5028
- top: 8px;
5029
- }
5030
-
5031
- .wptb-prebuilt-card-delete-icon {
5032
- background-color: var(--wptb-plugin-gray-200);
5033
- padding: 6px;
5034
- border-radius: 50%;
5035
- width: 35px;
5036
- height: 35px;
5037
- right: -15px;
5038
- top: -15px;
5039
- display: flex;
5040
- justify-content: center;
5041
- align-items: center;
5042
- border: 2px solid var(--wptb-plugin-gray-400);
5043
- transition: all 0.2s ease-out;
5044
- z-index: 120;
5045
- }
5046
-
5047
- .wptb-prebuilt-card-delete-icon:hover {
5048
- transform: scale(1.1);
5049
- }
5050
-
5051
- .wptb-prebuilt-card-delete-icon {
5052
- fill: red;
5053
- }
5054
-
5055
- .wptb-prebuilt-card-fav-icon svg {
5056
- transition: fill 0.2s ease-out;
5057
- fill: transparent;
5058
- stroke-width: 40;
5059
- stroke: var(--wptb-plugin-theme-color-light);
5060
- }
5061
-
5062
- .wptb-prebuilt-card-fav-icon:active {
5063
- animation: wptb-push 0.2s ease-out;
5064
- }
5065
-
5066
- .wptb-prebuilt-card-fav-icon.is-fav svg {
5067
- fill: var(--wptb-plugin-logo-color) !important;
5068
- stroke-width: 0 !important;
5069
- }
5070
-
5071
- .wptb-prebuilt-card-fav-icon:hover svg {
5072
- fill: var(--wptb-plugin-theme-color-light);
5073
- }
5074
-
5075
- @keyframes wptb-push {
5076
- 0% {
5077
- transform: scale(1);
5078
- }
5079
- 50% {
5080
- transform: scale(0.9);
5081
- }
5082
- 100% {
5083
- transform: scale(1);
5084
- }
5085
- }
5086
-
5087
- .wptb-prebuilt-delete-module-confirmation-overlay {
5088
- position: absolute;
5089
- width: 100%;
5090
- height: 100%;
5091
- top: 0;
5092
- left: 0;
5093
- display: flex;
5094
- flex-direction: column;
5095
- justify-content: center;
5096
- align-items: center;
5097
- background-color: rgba(0, 0, 0, 0.5);
5098
- color: var(--wptb-plugin-theme-color-light);
5099
- z-index: 100;
5100
- border-radius: 5px 5px 0 0;
5101
- }
5102
-
5103
- .wptb-prebuilt-delete-module-confirmation-overlay div {
5104
- margin: 5px;
5105
- }
5106
-
5107
- .wptb-prebuilt-delete-button-container {
5108
- width: 100%;
5109
- display: flex;
5110
- justify-content: space-evenly;
5111
- align-items: center;
5112
- }
5113
-
5114
- .wptb-prebuilt-card-circle-icon-button {
5115
- width: 30px;
5116
- height: 30px;
5117
- border-radius: 50%;
5118
- display: flex;
5119
- justify-content: center;
5120
- align-items: center;
5121
- cursor: pointer;
5122
- color: var(--wptb-plugin-theme-color-light)
5123
- }
5124
-
5125
- .wptb-prebuilt-card-circle-icon-button svg {
5126
- width: 100%;
5127
- height: 100%;
5128
- fill: currentColor;
5129
- }
5130
-
5131
- .wptb-prebuilt-card-circle-icon-button:active {
5132
- animation: wptb-push 0.2s ease-out;
5133
- }
5134
-
5135
- .wptb-prebuilt-card-circle-icon-button[data-wptb-button-type='positive'] {
5136
- background-color: var(--wptb-plugin-green-500);
5137
- }
5138
-
5139
- .wptb-prebuilt-card-circle-icon-button[data-wptb-button-type='negative'] {
5140
- background-color: red;
5141
- }
5142
-
5143
- .wptb-prebuilt-mark-indicator {
5144
- position: absolute;
5145
- pointer-events: none;
5146
- width: calc(100% + 10px);
5147
- height: calc(100% + 10px);
5148
- top: -5px;
5149
- left: -5px;
5150
- background: repeating-linear-gradient(45deg, white, white 5px, var(--wptb-plugin-logo-color) 5px, var(--wptb-plugin-logo-color) 10px);
5151
- background-size: 400% 400%;
5152
- animation: linear-gradient-move 20s linear infinite reverse;
5153
- opacity: 0.2;
5154
- }
5155
-
5156
- .wptb-repeating-linear-gradient {
5157
- background: repeating-linear-gradient(45deg, white, white 5px, var(--wptb-plugin-logo-color) 5px, var(--wptb-plugin-logo-color) 10px);
5158
- background-size: 400% 400%;
5159
- animation: linear-gradient-move 20s linear infinite reverse;
5160
- }
5161
-
5162
- @keyframes linear-gradient-move {
5163
- 0% {
5164
- background-position: 0% 50%;
5165
- }
5166
- 100% {
5167
- background-position: 100% 50%;
5168
- }
5169
- }
5170
-
5171
- .wptb-prebuilt-card .wptb-prebuilt-mark-indicator {
5172
- display: none;
5173
- }
5174
-
5175
- .wptb-prebuilt-tab-control {
5176
- position: absolute;
5177
- top: 20px;
5178
- left: 20px;
5179
- border: 1px solid var(--wptb-plugin-gray-400);
5180
- display: flex;
5181
- justify-content: center;
5182
- align-items: center;
5183
- border-radius: 5px;
5184
- }
5185
-
5186
- .wptb-prebuilt-tab-control div {
5187
- padding: 5px;
5188
- }
5189
-
5190
- .wptb-prebuilt-tab-control-label {
5191
- text-transform: capitalize;
5192
- border-right: 1px solid var(--wptb-plugin-gray-400);
5193
- white-space: nowrap;
5194
- }
5195
-
5196
- .wptb-prebuilt-tab-control-buttons-wrapper {
5197
- display: flex;
5198
- justify-content: center;
5199
- align-items: center;
5200
- flex-direction: row;
5201
- flex-wrap: nowrap;
5202
- }
5203
-
5204
- .wptb-prebuilt-tab-control-icon {
5205
- width: 35px;
5206
- height: 35px;
5207
- display: flex;
5208
- justify-content: center;
5209
- align-items: center;
5210
- }
5211
-
5212
- .wptb-prebuilt-tab-control-icon[data-wptb-prebuilt-tab-control-type="stop"] {
5213
- fill: red;
5214
- }
5215
-
5216
- .wptb-prebuilt-tab-control-icon[data-wptb-prebuilt-tab-control-type="restart"] {
5217
- fill: var(--wptb-plugin-green-500);
5218
- }
5219
-
5220
- .wptb-prebuilt-tab-control-icon svg {
5221
- width: 100%;
5222
- height: 100%;
5223
- cursor: pointer;
5224
- }
5225
-
5226
- .wptb-prebuilt-tab-control-icon svg:active {
5227
- animation: wptb-push 0.2s ease-out;
5228
- }
5229
-
5230
- .wptb-prebuilt-dev-tool {
5231
- position: absolute;
5232
- top: 20px;
5233
- right: 20px;
5234
- border: 1px solid var(--wptb-plugin-gray-400);
5235
- display: flex;
5236
- flex-direction: column;
5237
- flex-wrap: nowrap;
5238
- justify-content: center;
5239
- align-items: center;
5240
- border-radius: 5px;
5241
- }
5242
-
5243
- .wptb-prebuilt-dev-tool div {
5244
- padding: 5px;
5245
- }
5246
-
5247
- .wptb-prebuilt-dev-tool .label {
5248
- font-weight: bold;
5249
- border-bottom: 1px solid var(--wptb-plugin-gray-400);
5250
- }
5251
-
5252
- .wptb-prebuilt-dev-tool .prebuilt-button {
5253
- width: fit-content;
5254
- padding: 10px;
5255
- margin: 5px;
5256
- color: var(--wptb-plugin-theme-color-light);
5257
- background-color: var(--wptb-plugin-logo-color);
5258
- border-radius: 5px;
5259
- cursor: pointer;
5260
- }
5261
-
5262
- .wptb-prebuilt-dev-tool .prebuilt-button:active {
5263
- animation: wptb-push 0.2s ease-out;
5264
- }
5265
-
5266
- .wptb-prebuilt-display-calculate {
5267
- width: 700px;
5268
- }
5269
-
5270
- /*endregion*/
5271
-
5272
- /*region tinyMCE blocker*/
5273
- .wptb-preview-table-manage-cells table tr td div {
5274
- pointer-events: none;
5275
- -moz-user-select: none;
5276
- -webkit-user-select: none;
5277
- -ms-user-select: none;
5278
- user-select: none;
5279
- }
5280
-
5281
- .wptb-plugin-blocker-element {
5282
- position: absolute;
5283
- top: 0;
5284
- left: 0;
5285
- width: 100%;
5286
- height: 100%;
5287
- display: flex;
5288
- justify-content: center;
5289
- align-items: center;
5290
- cursor: pointer;
5291
- }
5292
-
5293
- .wptb-highlighted .wptb-plugin-blocker-element {
5294
- background: repeating-linear-gradient(45deg, white, white 5px, var(--wptb-plugin-logo-color) 5px, var(--wptb-plugin-logo-color) 10px);
5295
- background-size: 400% 400%;
5296
- animation: linear-gradient-move 40s linear infinite reverse;
5297
- opacity: 0.2;
5298
- }
5299
-
5300
- .wptb-plugin-blocker-element-empty::before {
5301
- content: 'Cell';
5302
- display: block;
5303
- font-weight: normal;
5304
- font-size: 80%;
5305
- text-align: center;
5306
- color: #969fa6;
5307
- }
5308
-
5309
- .wptb-plugin-blocker-element-empty::after {
5310
- content: '';
5311
- display: block;
5312
- border: 1px dashed #969fa6;
5313
- position: absolute;
5314
- top: 2px;
5315
- right: 2px;
5316
- bottom: 2px;
5317
- left: 2px;
5318
- }
5319
-
5320
- /*endregion*/
5321
-
5322
- /*region header-toolbar*/
5323
- .wptb-plugin-header-toolbar {
5324
- top: 0;
5325
- position: absolute;
5326
- left: 50%;
5327
- padding: 0 10px;
5328
- border: 1px solid var(--wptb-plugin-gray-300);
5329
- z-index: 1;
5330
- background-color: var(--wptb-plugin-gray-100);
5331
- transition: top 0.2s ease-out;
5332
- display: flex;
5333
- flex-direction: row;
5334
- align-items: center;
5335
- }
5336
-
5337
- .wptb-plugin-header-toolbar div {
5338
- font-size: 110%;
5339
- width: fit-content;
5340
- padding: 5px;
5341
- margin: 0 5px;
5342
- }
5343
-
5344
- .wptb-plugin-header-toolbar .dashicons {
5345
- color: var(--wptb-plugin-logo-color) !important;
5346
- font-weight: bold !important;
5347
- }
5348
-
5349
- /*endregion*/
5350
-
5351
- /*region versionControl*/
5352
- .wptb-settings-version-control {
5353
- max-width: 800px;
5354
- width: 100%;
5355
- display: grid;
5356
- grid-template-columns: 1fr 300px;
5357
- grid-template-areas: 'main changelog';
5358
- grid-template-rows: 500px;
5359
- grid-gap: 50px;
5360
- }
5361
-
5362
- .wptb-version-control-main {
5363
- grid-area: main;
5364
- padding: 20px;
5365
- display: flex;
5366
- flex-direction: column;
5367
- justify-content: space-between;
5368
- align-items: center;
5369
- }
5370
-
5371
- .wptb-version-control-main-row {
5372
- width: 100%;
5373
- display: flex;
5374
- justify-content: center;
5375
- padding: 10px 0;
5376
- flex-direction: column;
5377
- }
5378
-
5379
- .wptb-version-control-warning-span {
5380
- color: var(--wptb-plugin-red-600) !important;
5381
- text-transform: uppercase;
5382
- font-weight: bold;
5383
- font-size: 120%;
5384
- }
5385
-
5386
- .wptb-version-control-warning-info {
5387
- font-size: 90%;
5388
- }
5389
-
5390
- .wptb-version-control-changelog {
5391
- grid-area: changelog;
5392
- background-color: var(--wptb-plugin-gray-200);
5393
- border: 1px solid var(--wptb-plugin-gray-300);
5394
- font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
5395
- padding: 10px;
5396
- overflow-y: scroll;
5397
- height: 100%;
5398
- }
5399
-
5400
- .wptb-version-control-controls {
5401
- width: 100%;
5402
- height: 100%;
5403
- margin: 20px 0;
5404
- display: grid;
5405
- grid-template-columns: auto 1fr;
5406
- grid-template-rows: repeat(3, auto);
5407
- align-items: center;
5408
- grid-gap: 20px
5409
- }
5410
-
5411
- .wptb-version-control-row-element {
5412
- padding: 10px 0;
5413
-
5414
- }
5415
-
5416
- .wptb-version-control-row-label {
5417
- text-transform: capitalize;
5418
- font-weight: bold;
5419
- }
5420
-
5421
- .wptb-version-control-row-label:after {
5422
- content: ':';
5423
- }
5424
-
5425
- .wptb-version-indicator {
5426
- height: 100%;
5427
- /*width: 100%;*/
5428
- display: flex;
5429
- align-items: center;
5430
- margin-right: 10px;
5431
- }
5432
-
5433
- .wptb-version-indicator-circle {
5434
- width: 15px;
5435
- height: 15px;
5436
- border-radius: 50%;
5437
- margin-right: 10px;
5438
- }
5439
-
5440
- .wptb-version-indicator-match {
5441
- background-color: var(--wptb-plugin-green-500);
5442
- }
5443
-
5444
- .wptb-version-indicator-low {
5445
- background-color: var(--wptb-plugin-yellow-500);
5446
- }
5447
-
5448
- .wptb-version-control-anchor {
5449
- text-transform: capitalize;
5450
- }
5451
-
5452
- .wptb-version-control-row-slot {
5453
- width: 100%;
5454
- height: 100%;
5455
- display: flex;
5456
- justify-content: flex-start;
5457
- align-items: center;
5458
- flex-direction: row;
5459
- }
5460
-
5461
- /*endregion*/
5462
-
5463
- .wptb-table-tags-menu-wrapper {
5464
- position: fixed;
5465
- width: 100%;
5466
- height: 100%;
5467
- top: 0;
5468
- left: 0;
5469
- }
5470
-
5471
- /*region tagControl*/
5472
- .wptb-tag-control-cloud-wrapper {
5473
- width: 100%;
5474
- }
5475
-
5476
- .wptb-tag-control-create-wrapper {
5477
- margin-top: 20px !important;
5478
- border-top: 1px solid var(--wptb-plugin-gray-400);
5479
- padding-top: 10px;
5480
- }
5481
-
5482
- .wptb-tag-control-cloud-wrapper:nth-of-type(n+1) {
5483
- margin-top: 10px;
5484
- }
5485
-
5486
- .wptb-tag-control-cloud-wrapper .wptb-settings-item-title {
5487
- text-transform: capitalize;
5488
- font-size: 90% !important;
5489
- font-weight: bold;
5490
- }
5491
-
5492
- .wptb-tag-control-cloud {
5493
- width: 100%;
5494
- min-height: 90px;
5495
- max-height: 90px;
5496
- overflow-y: auto;
5497
- background-color: var(--wptb-plugin-gray-200);
5498
- padding: 3px;
5499
- display: flex;
5500
- flex-direction: row;
5501
- flex-wrap: wrap;
5502
- justify-content: center;
5503
- align-items: center;
5504
- position: relative;
5505
- border: 1px solid var(--wptb-plugin-gray-400);
5506
- border-radius: 5px;
5507
- }
5508
-
5509
- .wptb-tag-ribbon-wrapper {
5510
- color: var(--wptb-plugin-theme-color-light);
5511
- font-size: 90% !important;
5512
- padding: 3px 5px 3px 10px;
5513
- background-color: var(--wptb-plugin-logo-color);
5514
- border-radius: 999px !important;
5515
- display: flex;
5516
- align-items: center;
5517
- justify-content: space-between;
5518
- margin: 5px;
5519
- cursor: default;
5520
- animation: wptb-basic-appear 0.2s ease-out;
5521
- }
5522
-
5523
- .wptb-tag-ribbon-name {
5524
- font-size: inherit !important;
5525
- }
5526
-
5527
- .wptb-tag-ribbon-wrapper:hover .wptb-tag-operation-button {
5528
- opacity: 1;
5529
- }
5530
-
5531
- .wptb-tag-operation-button {
5532
- width: 20px;
5533
- height: 20px;
5534
- border-radius: 100%;
5535
- margin-left: 10px;
5536
- opacity: 0;
5537
- transition: all 0.3s ease-out;
5538
- display: flex;
5539
- justify-content: center;
5540
- align-items: center;
5541
- cursor: pointer;
5542
- }
5543
-
5544
- .wptb-tag-operation-add-button {
5545
- background-color: var(--wptb-plugin-green-500);
5546
- }
5547
-
5548
- .wptb-tag-operation-remove-button {
5549
- background-color: var(--wptb-plugin-red-600);
5550
- }
5551
-
5552
- .wptb-tag-control-cloud-empty {
5553
- position: absolute;
5554
- top: 0;
5555
- left: 0;
5556
- width: 100%;
5557
- height: 100%;
5558
- color: var(--wptb-plugin-gray-500);
5559
- display: flex;
5560
- justify-content: center;
5561
- align-items: center;
5562
- font-style: italic;
5563
- font-size: 90% !important;
5564
- }
5565
-
5566
- .wptb-tag-control-cloud-empty:before, .wptb-tag-control-cloud-empty:after {
5567
- content: '==';
5568
- margin: 0 5px;
5569
- }
5570
-
5571
- .wptb-tag-control-search-wrapper {
5572
- margin-top: 5px;
5573
- width: 100%;
5574
- display: flex;
5575
- justify-content: center;
5576
- align-items: center;
5577
- }
5578
-
5579
- .wptb-tag-control-search {
5580
- border: 1px solid var(--wptb-plugin-gray-400) !important;
5581
- text-align: center;
5582
- font-size: 90% !important;
5583
- color: inherit;
5584
- border-radius: 999px !important;
5585
- padding: 0 !important;
5586
- }
5587
-
5588
- .wptb-tag-control-search:active, .wptb-tag-control-search:focus {
5589
- border: 1px solid var(--wptb-plugin-gray-500) !important;
5590
- inset: 0 !important;
5591
- box-shadow: none !important;
5592
- }
5593
-
5594
- .wptb-tag-control-search-input {
5595
- position: relative;
5596
- width: fit-content;
5597
- font-size: 90% !important;
5598
- }
5599
-
5600
- .wptb-tag-control-search-clear {
5601
- position: absolute;
5602
- top: 0;
5603
- right: 10px;
5604
- height: 100%;
5605
- display: flex;
5606
- justify-content: center;
5607
- align-items: center;
5608
- color: var(--wptb-plugin-gray-500);
5609
- cursor: pointer;
5610
- padding: 5px;
5611
- }
5612
-
5613
- .wptb-tag-control-search-indicator {
5614
- font-weight: bold;
5615
- color: var(--wptb-plugin-green-500) !important;
5616
- font-size: inherit !important;
5617
- }
5618
-
5619
- .wptb-tag-control-create-controls-wrapper {
5620
- width: 100%;
5621
- display: grid;
5622
- grid-template-columns: 1fr auto;
5623
- align-items: center;
5624
- grid-gap: 10px;
5625
- margin-top: 10px;
5626
- }
5627
-
5628
- .wptb-tag-control-create-controls-wrapper input {
5629
- width: 100% !important;
5630
- }
5631
-
5632
- .wptb-tag-control-create-control-label {
5633
- font-size: 90% !important;
5634
- text-transform: capitalize;
5635
- }
5636
-
5637
- .wptb-tag-control-create-button {
5638
- background-color: var(--wptb-plugin-logo-color);
5639
- color: var(--wptb-plugin-theme-color-light);
5640
- display: flex;
5641
- justify-self: end;
5642
- justify-content: center;
5643
- align-items: center;
5644
- font-size: 90% !important;
5645
- text-transform: uppercase;
5646
- padding: 5px;
5647
- border-radius: 5px;
5648
- grid-column: 2;
5649
- width: fit-content;
5650
- cursor: pointer;
5651
- transition: all 0.2s ease-out;
5652
- }
5653
-
5654
- .wptb-tag-control-create-button[data-disabled] {
5655
- background-color: var(--wptb-plugin-gray-400);
5656
- pointer-events: none;
5657
- }
5658
-
5659
- .wptb-tag-control-status {
5660
- grid-column: 1;
5661
- width: 100%;
5662
- height: 100%;
5663
- display: flex;
5664
- align-items: center;
5665
- }
5666
-
5667
- .wptb-tag-control-status[data-status='positive'] {
5668
- color: var(--wptb-plugin-green-500) !important;
5669
- }
5670
-
5671
- .wptb-tag-control-status[data-status='negative'] {
5672
- color: var(--wptb-plugin-red-600) !important;
5673
- }
5674
-
5675
- .wptb-tag-control-busy {
5676
- width: 100%;
5677
- height: 100%;
5678
- display: flex;
5679
- align-items: center;
5680
- color: var(--wptb-plugin-logo-color);
5681
- grid-column: 1;
5682
- }
5683
-
5684
- /*endregion*/
5685
-
5686
- .wptb-table-cell-select-wrapper {
5687
- display: grid;
5688
- grid-gap: 5px;
5689
- width: 100%;
5690
- height: 150px;
5691
- border: 1px solid var(--wptb-plugin-gray-400);
5692
- padding: 10px;
5693
- border-radius: 3px;
5694
- background-color: var(--wptb-plugin-gray-300);
5695
- }
5696
-
5697
- .wptb-table-cell-select-cell {
5698
- width: 100%;
5699
- height: 100%;
5700
- cursor: pointer;
5701
- transition: all 0.2s ease-out;
5702
- border-radius: 3px;
5703
- background-color: var(--wptb-plugin-gray-400);
5704
- }
5705
-
5706
- .wptb-table-cell-select-cell:hover {
5707
- background-color: var(--wptb-plugin-gray-500);
5708
- }
5709
-
5710
- .wptb-table-cell-select-cell[data-cell-selected=true] {
5711
- /*background-color: var(--wptb-plugin-gray-300);*/
5712
- /*background-color: #93B9CD !important;*/
5713
- background-color: var(--wptb-plugin-logo-color) !important;
5714
- }
5715
-
5716
- .wptb-table-cell-indicator {
5717
- position: fixed;
5718
- opacity: 0.2;
5719
- pointer-events: none;
5720
- }
5721
-
5722
- .wptb-different-border-control-wrapper .wptb-settings-middle-xs {
5723
- padding-top: 5px !important;
5724
- /*padding-left: 0 !important;*/
5725
- /*padding-right: 0 !important;*/
5726
- border-bottom: 0 !important;
5727
- }
5728
-
5729
- .wptb-different-border-range-input .wptb-settings-item-header {
5730
- padding-bottom: 0 !important;
5731
- }
5732
-
5733
- /*region color picker*/
5734
- .wptb-color-picker-wrapper {
5735
- width: 100%;
5736
- }
5737
-
5738
- .wptb-color-picker-input-wrapper {
5739
- width: 100px;
5740
- height: 30px;
5741
- border: 1px solid var(--wptb-plugin-gray-400);
5742
- border-radius: 3px;
5743
- cursor: pointer;
5744
- background-color: var(--wptb-plugin-gray-200);
5745
- display: grid;
5746
- grid-template-columns: 0.7fr 0.3fr;
5747
- justify-content: center;
5748
- align-items: center;
5749
- }
5750
-
5751
- .wptb-color-picker-input-wrapper[disabled] {
5752
- pointer-events: none;
5753
- }
5754
-
5755
- .wptb-color-picker-inner-indicator {
5756
- height: 100%;
5757
- padding: 3px;
5758
- display: grid;
5759
- grid-template-columns: 1fr;
5760
- grid-template-rows: 1fr;
5761
- }
5762
-
5763
- .wptb-color-picker-clear-color-indicator {
5764
- width: 100%;
5765
- height: 100%;
5766
- grid-column: 1;
5767
- grid-row: 1;
5768
- z-index: 2;
5769
- display: flex;
5770
- justify-content: center;
5771
- align-items: center;
5772
- }
5773
-
5774
- .wptb-color-picker-clear-color-indicator svg {
5775
- fill: var(--wptb-plugin-red-600)
5776
- }
5777
-
5778
- .wptb-color-picker-icon-standards svg {
5779
- width: 15px;
5780
- height: auto;
5781
-
5782
- }
5783
-
5784
- .wptb-color-picker-selected-color {
5785
- border-radius: 3px 0 0 3px;
5786
- border: 1px solid var(--wptb-plugin-gray-400);
5787
- transition: background-color 0.2s ease-out;
5788
- cursor: pointer;
5789
- grid-column: 1;
5790
- grid-row: 1;
5791
- z-index: 2;
5792
- }
5793
-
5794
- .wptb-color-picker-alpha-checkerboard {
5795
- z-index: 1;
5796
- grid-column: 1;
5797
- grid-row: 1;
5798
- background-size: 15px !important;
5799
- }
5800
-
5801
- .wptb-color-picker-logo {
5802
- display: flex;
5803
- justify-content: center;
5804
- align-items: center;
5805
- width: 100%;
5806
- height: 100%;
5807
- font-size: 120% !important;
5808
- color: var(--wptb-plugin-logo-color)
5809
- }
5810
-
5811
- .wptb-color-picker-logo div {
5812
- display: flex;
5813
- justify-content: center;
5814
- align-items: center;
5815
- }
5816
-
5817
- .wptb-color-picker-logo svg {
5818
- fill: currentColor;
5819
- }
5820
-
5821
-
5822
- .wptb-color-picker-tool-wrapper {
5823
- position: fixed;
5824
- z-index: 100;
5825
- }
5826
-
5827
- .wptb-color-picker-tool-inner-wrapper {
5828
- position: relative;
5829
- }
5830
-
5831
- .wptb-color-picker-input {
5832
- cursor: pointer;
5833
- }
5834
-
5835
- .wptb-color-picker-input:disabled {
5836
- cursor: default;
5837
- }
5838
-
5839
- [data-wptb-text-disabled=true] {
5840
- color: var(--wptb-plugin-gray-400) !important;
5841
- }
5842
-
5843
- .wptb-color-picker-clear-color-wrapper {
5844
- position: absolute;
5845
- display: flex;
5846
- justify-content: center;
5847
- align-items: center;
5848
- left: 0;
5849
- width: 100%;
5850
- height: 30px;
5851
- }
5852
-
5853
- .wptb-color-picker-clear-color {
5854
- background-color: #ffffff;
5855
- height: 100%;
5856
- padding: 0 10px;
5857
- display: flex;
5858
- justify-content: center;
5859
- align-items: center;
5860
- border: 1px solid var(--wptb-plugin-gray-400);
5861
- border-radius: 0 0 3px 3px;
5862
- font-size: 90% !important;
5863
- color: var(--wptb-plugin-red-600);
5864
- cursor: pointer;
5865
- }
5866
-
5867
- .wptb-color-picker-clear-color svg {
5868
- fill: currentColor;
5869
- }
5870
-
5871
- .wptb-color-picker-input-wrapper[disabled] .wptb-color-picker-logo svg {
5872
- fill: var(--wptb-plugin-gray-400);
5873
- }
5874
-
5875
- .wptb-color-picker-input-wrapper[disabled] .wptb-color-picker-selected-color {
5876
- background-color: var(--wptb-plugin-gray-300) !important;
5877
- }
5878
-
5879
- /*endregion*/
5880
-
5881
- /*region local dev file control*/
5882
- .wptb-local-dev-file-chooser {
5883
- position: fixed;
5884
- width: 100%;
5885
- height: 100%;
5886
- left: 0;
5887
- top: 0;
5888
- display: flex;
5889
- justify-content: center;
5890
- align-items: center;
5891
- background-color: rgba(0, 0, 0, 0.6);
5892
- }
5893
-
5894
- .wptb-local-dev-modal {
5895
- background-color: var(--wptb-plugin-theme-color-light);
5896
- width: 500px;
5897
- height: 300px;
5898
- border-radius: 3px;
5899
- display: grid;
5900
- grid-template-columns: 1fr;
5901
- grid-template-rows: minmax(min-content, max-content) 1fr minmax(min-content, max-content);
5902
- grid-template-areas: "header" "files" "footer";
5903
- }
5904
-
5905
- .wptb-local-dev-modal > div {
5906
- padding: 5px;
5907
- border-bottom: 1px solid var(--wptb-plugin-gray-400);
5908
- display: flex;
5909
- align-items: center;
5910
- }
5911
-
5912
- .wptb-local-dev-modal > div:last-of-type {
5913
- border-bottom: 0;
5914
- }
5915
-
5916
- .wptb-local-dev-modal-header {
5917
- font-weight: bold;
5918
- text-transform: uppercase;
5919
- justify-content: space-between;
5920
- padding: 0 !important;
5921
- }
5922
-
5923
- .wptb-local-dev-modal-title {
5924
- padding: 5px !important;
5925
- }
5926
-
5927
- .wptb-local-dev-modal-files {
5928
- position: relative;
5929
- overflow-y: auto;
5930
- display: flex;
5931
- flex-direction: row;
5932
- flex-wrap: wrap;
5933
- justify-content: center;
5934
- align-items: center;
5935
- background-color: var(--wptb-plugin-gray-200);
5936
- }
5937
-
5938
- .wptb-local-dev-modal-footer {
5939
- justify-content: flex-end;
5940
- }
5941
-
5942
- .wptb-local-dev-modal-footer .wptb-settings-button {
5943
- margin: 0 5px !important;
5944
- font-size: 90% !important;
5945
- }
5946
-
5947
- .wptb-local-dev-image-card {
5948
- width: 100px;
5949
- max-width: 100px;
5950
- display: grid;
5951
- grid-template-columns: 1fr;
5952
- grid-template-rows: 1fr minmax(min-content, max-content);
5953
- grid-auto-flow: row;
5954
- cursor: pointer;
5955
- justify-content: center;
5956
- align-items: center;
5957
- margin: 5px;
5958
- border: 2px solid var(--wptb-plugin-gray-300);
5959
- padding: 5px;
5960
- border-radius: 5px;
5961
- transition: all 0.2s ease-out;
5962
- background-color: var(--wptb-plugin-theme-color-light);
5963
- }
5964
-
5965
- .wptb-local-dev-image-card[data-active=true] {
5966
- border: 2px solid var(--wptb-plugin-logo-color) !important;
5967
- }
5968
-
5969
- .wptb-local-dev-image-card:hover {
5970
- border: 2px solid var(--wptb-plugin-gray-400);
5971
- transform: scale(1.05);
5972
- }
5973
-
5974
- .wptb-local-dev-image-holder {
5975
- width: 100%;
5976
- height: 100%
5977
- }
5978
-
5979
- .wptb-local-dev-image-holder img {
5980
- max-width: 100%;
5981
- max-height: 100%;
5982
- display: block;
5983
- }
5984
-
5985
- .wptb-local-dev-image-name {
5986
- word-break: break-all;
5987
- display: flex;
5988
- justify-content: center;
5989
- align-items: center;
5990
- font-style: italic;
5991
- font-size: 90%;
5992
- border-top: 1px solid var(--wptb-plugin-gray-300);
5993
- }
5994
-
5995
- .wptb-local-dev-modal-close {
5996
- padding: 0 10px;
5997
- color: var(--wptb-plugin-red-600);
5998
- cursor: pointer;
5999
- font-size: 120% !important;
6000
- }
6001
-
6002
- /*endregion*/
6003
-
6004
- /*region upsells*/
6005
- .wptb-upsells-wrapper {
6006
- width: 100%;
6007
- padding: 15px;
6008
- color: var(--wptb-plugin-theme-color-light);
6009
- cursor: pointer;
6010
- transition: all 0.2s ease-out;
6011
- animation: wptb-unfold-up 0.3s ease-out forwards;
6012
- animation-delay: 0.5s;
6013
- transform: rotateX(-90deg);
6014
- transform-origin: top;
6015
- box-sizing: border-box;
6016
- }
6017
-
6018
- .wptb-left-panel .wptb-upsells-wrapper {
6019
- font-size: 90% !important;
6020
- }
6021
-
6022
- .wptb-panel-left .wptb-upsells-anchor {
6023
- font-size: 125%;
6024
- }
6025
-
6026
- .wptb-upsells-message-holder {
6027
- display: flex;
6028
- flex-direction: column;
6029
- justify-content: center;
6030
- align-items: center;
6031
- width: 100%;
6032
- margin: 0 !important;
6033
- border-radius: 5px;
6034
- padding: 10px 5px;
6035
- transition: all 0.3s ease-out;
6036
- text-align: center;
6037
- background-color: var(--wptb-plugin-theme-color-light) !important;
6038
- border: 1px solid var(--wptb-plugin-gray-400);
6039
- color: var(--wptb-plugin-gray-600);
6040
- font-weight: 500;
6041
- }
6042
-
6043
- .wptb-generate-wrapper .wptb-upsells-message-holder {
6044
- background-color: var(--wptb-plugin-gray-200) !important;
6045
- padding: 15px;
6046
- }
6047
-
6048
- .wptb-upsells-pro-label {
6049
- background-color: var(--wptb-plugin-cta-button) !important;
6050
- color: var(--wptb-plugin-black);
6051
- border-radius: 3px;
6052
- padding: 5px;
6053
- font-weight: bold;
6054
- border: 1px solid var(--wptb-plugin-gray-400) !important;
6055
- }
6056
-
6057
- .wptb-upsells-message-holder:hover {
6058
- box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.3) !important;
6059
- transform: scale(1.05);
6060
- }
6061
-
6062
- .wptb-upsells-anchor {
6063
- text-decoration: none;
6064
- }
6065
-
6066
- .wptb-upsells-wrapper:active {
6067
- /*animation: wptb-push 0.1s ease-out;*/
6068
- }
6069
-
6070
- @keyframes wptb-unfold-up {
6071
- 0% {
6072
- transform: perspective(100px) rotateX(-90deg);
6073
- }
6074
- 100% {
6075
- transform: perspective(100px) rotateX(0deg);
6076
- }
6077
- }
6078
-
6079
- /*region notification manager*/
6080
- .wptb-notification-manager {
6081
- position: fixed;
6082
- display: flex;
6083
- flex-wrap: nowrap;
6084
- flex-direction: column;
6085
- height: max-content;
6086
- top: 50%;
6087
- right: calc(-1 * var(--wptb-notification-manager-width));
6088
- width: var(--wptb-notification-manager-width);
6089
- transition: all 0.2s ease-out;
6090
- z-index: 99999999999;
6091
- }
6092
-
6093
- .wptb-notification-wrapper {
6094
- width: 100%;
6095
- display: grid;
6096
- grid-template-columns: 40px 3px 1fr;
6097
- justify-content: center;
6098
- align-items: start;
6099
- color: var(--wptb-plugin-gray-700);
6100
- border-radius: 3px 0 0 3px;
6101
- /*overflow: hidden;*/
6102
- border-right: 0 !important;
6103
- margin: 0 0 5px 0;
6104
- transition: all 0.3s ease-out;
6105
- cursor: pointer;
6106
- }
6107
-
6108
- .wptb-notification-icon {
6109
- width: 40px;
6110
- height: 40px;
6111
- display: flex;
6112
- justify-content: center;
6113
- align-items: center;
6114
- position: relative;
6115
- }
6116
-
6117
- .wptb-notification-filler {
6118
- width: 3px;
6119
- height: 40px;
6120
- background-color: var(--wptb-plugin-gray-200);
6121
- border-width: 1px 0 1px 0;
6122
- border-style: solid;
6123
- }
6124
-
6125
- .wptb-notification-message {
6126
- width: 100%;
6127
- height: 100%;
6128
- display: flex;
6129
- justify-content: flex-start;
6130
- align-items: center;
6131
- padding: 0 15px;
6132
- text-transform: capitalize;
6133
- border-width: 1px 0 1px 5px;
6134
- border-style: solid;
6135
- background-color: var(--wptb-plugin-gray-200);
6136
- }
6137
-
6138
- .wptb-notification-svg-wrapper {
6139
- display: flex;
6140
- justify-content: center;
6141
- align-items: center;
6142
- width: 100%;
6143
- height: 100%;
6144
- }
6145
-
6146
- .wptb-notification-svg-wrapper svg {
6147
- width: 25px;
6148
- height: 25px;
6149
- fill: currentColor;
6150
- }
6151
-
6152
-
6153
- .wptb-notification-manager-dev-tool-wrapper {
6154
- position: absolute;
6155
- top: 50%;
6156
- left: 10px;
6157
- width: fit-content;
6158
- display: grid;
6159
- grid-template-columns: repeat(1, 1fr);
6160
- grid-template-rows: repeat(4, minmax(min-content, max-content));
6161
- grid-template-areas: "header" "selection" "message" "submit";
6162
- border: 1px solid var(--wptb-plugin-gray-400);
6163
- border-radius: 3px;
6164
- justify-content: center;
6165
- align-items: center;
6166
- background-color: var(--wptb-plugin-gray-100);
6167
- }
6168
-
6169
- .wptb-notification-manager-dev-tool-wrapper > div {
6170
- padding: 10px;
6171
- border-bottom: 1px solid var(--wptb-plugin-gray-300);
6172
- }
6173
-
6174
- .wptb-nm-devtool-header {
6175
- grid-area: header;
6176
- font-weight: bold;
6177
- }
6178
-
6179
- .wptb-nm-devtool-selection {
6180
- grid-area: selection;
6181
- display: flex;
6182
- justify-content: space-evenly;
6183
- align-items: center;
6184
- flex-wrap: nowrap;
6185
- flex-direction: row;
6186
- }
6187
-
6188
- .wptb-nm-devtool-input {
6189
- display: grid;
6190
- grid-template-columns: 1fr;
6191
- grid-template-rows: repeat(2, 1fr);
6192
- }
6193
-
6194
- .wptb-nm-devtool-submit {
6195
- grid-area: submit;
6196
- justify-self: center;
6197
- }
6198
-
6199
- .wptb-nm-devtool-message {
6200
- grid-area: message;
6201
- justify-self: center;
6202
- }
6203
-
6204
- .wptb-notification-queue-length {
6205
- position: absolute;
6206
- width: 20px;
6207
- height: 20px;
6208
- left: -10px;
6209
- top: -10px;
6210
- display: flex;
6211
- justify-content: center;
6212
- align-items: center;
6213
- border-radius: 100%;
6214
- color: var(--wptb-plugin-theme-color-light);
6215
- font-weight: bold;
6216
- animation: wptb-more-pop 0.2s ease-out;
6217
- }
6218
-
6219
- /*endregion*/
6220
-
6221
- .wptb-builder-panel[data-manage-cells-active='true'] {
6222
- display: flex;
6223
- flex-flow: column;
6224
- height: 100%;
6225
- overflow: hidden !important;
6226
- }
6227
-
6228
- [data-manage-cells-active='true'] .wptb-builder-content {
6229
- display: flex;
6230
- flex-flow: column;
6231
- height: 100%;
6232
- overflow: hidden !important;
6233
-
6234
- }
6235
-
6236
- [data-manage-cells-active='true'] .wptb-management_table_container {
6237
- width: 100%;
6238
- height: 100%;
6239
- display: grid;
6240
- grid-template-columns: 1fr;
6241
- grid-template-rows: minmax(min-content, max-content) 1fr minmax(min-content, max-content);
6242
- overflow: hidden !important;
6243
- margin: unset;
6244
- }
6245
-
6246
- [data-manage-cells-active='true'] .wptb-preview-table-manage-cells {
6247
- overflow: auto !important;
6248
- }
6249
-
6250
- [data-manage-cells-active='true'] .wptb-management_table_container #wptb-bar-top {
6251
- text-align: center;
6252
- z-index: 10000;
6253
- }
6254
-
6255
- /*region What Is New*/
6256
- .wptb-what-is-new-container {
6257
- position: fixed;
6258
- z-index: 100000000;
6259
- background-color: rgba(0, 0, 0, 0.3);
6260
- top: 0;
6261
- left: 0;
6262
- width: 100%;
6263
- height: 100%;
6264
- display: flex;
6265
- justify-content: center;
6266
- align-items: center;
6267
- }
6268
-
6269
- .wptb-what-is-new-window {
6270
- background-color: var(--wptb-plugin-theme-color-light);
6271
- width: 700px;
6272
- display: grid;
6273
- grid-template-columns: 1fr;
6274
- grid-template-rows: repeat(2, minmax(min-content, max-content));
6275
- grid-template-areas: 'header' 'content';
6276
- justify-content: center;
6277
- align-items: center;
6278
- border-radius: 3px;
6279
- font-size: 110% !important;
6280
- color: var(--wptb-plugin-gray-700) !important;
6281
- border: 2px solid var(--wptb-plugin-gray-300);
6282
- }
6283
-
6284
- .wptb-what-is-new-header {
6285
- grid-area: header;
6286
- border-bottom: 2px solid var(--wptb-plugin-gray-300);
6287
- display: flex;
6288
- height: 45px;
6289
- }
6290
-
6291
- .wptb-what-is-new-header-version {
6292
- display: flex;
6293
- width: 100%;
6294
- height: 100%;
6295
- justify-content: center;
6296
- align-items: center;
6297
- font-weight: bold !important;
6298
- color: var(--wptb-plugin-logo-color)
6299
- }
6300
-
6301
- .wptb-what-is-new-header-text-icon {
6302
- width: 15px;
6303
- height: auto;
6304
- fill: var(--wptb-plugin-yellow-500);
6305
- margin: 0 10px;
6306
- }
6307
-
6308
- .wptb-what-is-new-header-close {
6309
- width: 45px;
6310
- height: 45px;
6311
- display: flex;
6312
- justify-content: center;
6313
- align-items: center;
6314
- border-left: 2px solid var(--wptb-plugin-gray-300);
6315
- cursor: pointer;
6316
- transition: all 0.2s ease-out;
6317
- }
6318
-
6319
- .wptb-what-is-new-header-close:hover {
6320
- background-color: var(--wptb-plugin-gray-300);
6321
- }
6322
-
6323
-
6324
- .wptb-what-is-new-header-close:hover svg {
6325
- fill: var(--wptb-plugin-gray-700);
6326
- }
6327
-
6328
- .wptb-what-is-new-header-close svg {
6329
- width: 15px;
6330
- height: auto;
6331
- fill: var(--wptb-plugin-gray-500);
6332
- transition: all 0.2s ease-out;
6333
- }
6334
-
6335
-
6336
- .wptb-what-is-new-content {
6337
- grid-area: content;
6338
- display: grid;
6339
- grid-template-columns: 1fr;
6340
- grid-template-rows: 200px minmax(min-content, max-content) 90px;
6341
- grid-template-areas: 'imageContainer' 'noteIndex' 'textContainer';
6342
- justify-content: center;
6343
- align-items: center;
6344
- }
6345
-
6346
- .wptb-what-is-new-note-image-carousel {
6347
- grid-area: imageContainer;
6348
- display: grid;
6349
- grid-template-rows: 1fr;
6350
- grid-template-columns: minmax(min-content, max-content) 1fr minmax(min-content, max-content);
6351
- }
6352
-
6353
- .wptb-what-is-new-note-index {
6354
- grid-area: noteIndex;
6355
- display: flex;
6356
- justify-content: center;
6357
- align-items: center;
6358
- color: var(--wptb-plugin-gray-500);
6359
- font-variant-numeric: tabular-nums;
6360
- }
6361
-
6362
- .wptb-what-is-new-note-text-container {
6363
- grid-area: textContainer;
6364
- display: grid;
6365
- grid-template-columns: 1fr;
6366
- grid-template-rows: 1fr;
6367
- justify-content: center;
6368
- align-items: center;
6369
- }
6370
-
6371
- .wptb-what-is-new-note-text {
6372
- grid-column: 1;
6373
- grid-row: 1;
6374
- display: flex;
6375
- justify-content: center;
6376
- flex-direction: column;
6377
- align-items: center;
6378
- text-align: center;
6379
- margin: 0 20px;
6380
- }
6381
-
6382
- .wptb-what-is-new-note-text .wptb-upsells-pro-label {
6383
- margin: 10px;
6384
- text-decoration: none;
6385
- }
6386
-
6387
- .wptb-what-is-new-carousel-nav-button {
6388
- display: flex;
6389
- justify-content: center;
6390
- align-items: center;
6391
- height: 100%;
6392
- margin: 0 20px;
6393
- color: var(--wptb-plugin-gray-700);
6394
- cursor: pointer;
6395
- transition: all 0.2s ease-out;
6396
- }
6397
-
6398
- .wptb-what-is-new-carousel-nav-button:active {
6399
- animation: wptb-pop 0.2s ease-out;
6400
- }
6401
-
6402
- .wptb-what-is-new-carousel-nav-button svg {
6403
- width: 25px;
6404
- height: auto;
6405
- fill: currentColor;
6406
- }
6407
-
6408
- .wptb-what-is-new-carousel-nav-button[disabled='disabled'] {
6409
- color: var(--wptb-plugin-gray-400);
6410
- cursor: default;
6411
- pointer-events: none;
6412
- }
6413
-
6414
- .wptb-what-is-new-images-wrapper {
6415
- display: grid;
6416
- grid-template-columns: 1fr;
6417
- grid-template-rows: 200px;
6418
- }
6419
-
6420
- .wptb-what-is-new-image-background {
6421
- position: relative;
6422
- margin: 10px;
6423
- padding: 10px;
6424
- grid-column: 1;
6425
- grid-row: 1;
6426
- background-color: var(--wptb-plugin-gray-200);
6427
- display: flex;
6428
- justify-content: center;
6429
- align-items: center;
6430
- border: 2px solid var(--wptb-plugin-gray-300);
6431
- }
6432
-
6433
- .wptb-what-is-new-pro-indicator {
6434
- position: absolute;
6435
- left: -20px;
6436
- top: 10px;
6437
- color: var(--wptb-plugin-theme-color-light);
6438
- z-index: 1;
6439
- }
6440
-
6441
- .wptb-what-is-new-pro-indicator-text {
6442
- padding: 5px 20px;
6443
- border-radius: 3px 3px 3px 0;
6444
- background-color: var(--wptb-plugin-logo-color);
6445
- }
6446
-
6447
- .wptb-what-is-new-pro-indicator-triangle-end {
6448
- width: 1px;
6449
- height: 20px;
6450
- border-left: 20px solid transparent;
6451
- border-top: 15px solid var(--wptb-plugin-gray-500);
6452
- }
6453
-
6454
- .wptb-what-is-new-image-background img {
6455
- width: 100%;
6456
- height: 100%;
6457
- object-fit: contain;
6458
- }
6459
-
6460
- /*endregion*/
6461
-
6462
- /*region extra styles*/
6463
- .wptb-css-code-input {
6464
- position: relative;
6465
- width: 100% !important;
6466
- max-width: 100% !important;
6467
- border: 1px solid #ddd !important;
6468
- border-radius: 3px;
6469
- }
6470
-
6471
- .wptb-css-code-input .wptb-menu-empty-cover {
6472
- background-color: rgba(0, 0, 0, 0.1) !important;
6473
- z-index: 10000000;
6474
- }
6475
-
6476
- .CodeMirror {
6477
- max-height: 200px !important;
6478
- height: 200px !important;
6479
- }
6480
-
6481
- .CodeMirror * {
6482
- font-size: 12px !important;
6483
- }
6484
-
6485
- /*endregion*/
6486
-
6487
- .wptb-plugin-inner-shadow {
6488
- box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.09) 0px 2px 4px 0px inset;
6489
- }
6490
-
6491
- .wptb-panel-plain-message {
6492
- display: flex;
6493
- justify-content: center;
6494
- align-items: center;
6495
- text-align: center;
6496
- padding: 20px 10px;
6497
- font-size: 80% !important;
6498
- color: var(--wptb-plugin-gray-600) !important;
6499
- }
6500
-
6501
- /*region background menu*/
6502
- .wptb-bg-selection-item {
6503
- position: absolute;
6504
- background-color: var(--wptb-plugin-logo-color);
6505
- width: 30px;
6506
- transition: all 0.2s ease-out;
6507
- cursor: pointer;
6508
- z-index: 10;
6509
- display: flex;
6510
- justify-content: center;
6511
- align-items: center;
6512
- }
6513
-
6514
- .wptb-bg-color-selectors[data-visible='false'] {
6515
- display: none !important;
6516
-
6517
- }
6518
-
6519
- .wptb-selector-icon-wrapper {
6520
- width: 100%;
6521
- height: 100%;
6522
- display: flex;
6523
- justify-content: center;
6524
- align-items: center;
6525
- }
6526
-
6527
- .wptb-selector-icon-wrapper svg {
6528
- width: 20px;
6529
- height: auto;
6530
- fill: var(--wptb-plugin-theme-color-light)
6531
- }
6532
-
6533
- .wptb-col-selection {
6534
- height: 30px;
6535
- }
6536
-
6537
- .wptb-bg-column-rail {
6538
- position: absolute;
6539
- display: grid;
6540
- grid-auto-flow: column;
6541
- justify-content: center;
6542
- align-items: center;
6543
- height: 30px;
6544
- }
6545
-
6546
- .wptb-bg-row-rail {
6547
- position: absolute;
6548
- display: grid;
6549
- grid-template-columns: 1fr;
6550
- grid-auto-flow: row;
6551
- justify-content: center;
6552
- align-items: center;
6553
- width: 30px;
6554
- top: 0;
6555
- }
6556
-
6557
- .wptb-bg-rail-mark {
6558
- border: 2px dashed var(--wptb-plugin-logo-color);
6559
- height: 100%;
6560
- opacity: 0;
6561
- transition: opacity 0.2s ease-out;
6562
- cursor: pointer;
6563
- }
6564
-
6565
- .wptb-bg-rail-mark:hover {
6566
- opacity: 0.5;
6567
- }
6568
-
6569
- /*endregion*/
6570
-
6571
- /*region general styles settings menu*/
6572
- .wptb-general-style-settings {
6573
- width: 100%;
6574
- height: 100%;
6575
- display: grid;
6576
- grid-template-columns: 1fr;
6577
- grid-template-rows: minmax(min-content, max-content) 1fr;
6578
- grid-gap: 20px;
6579
- }
6580
-
6581
- .wptb-general-style-settings .wptb-menu-empty-cover {
6582
- color: var(--wptb-plugin-logo-color) !important;
6583
- }
6584
-
6585
- .wptb-general-style-settings .wptb-css-code-input {
6586
- height: 100% !important;
6587
- }
6588
-
6589
- .wptb-general-style-settings .CodeMirror {
6590
- height: 100% !important;
6591
- max-height: 100% !important;
6592
- }
6593
-
6594
- /*endregion*/
6595
-
6596
- /*region panel message component*/
6597
- .wptb-panel-message {
6598
- color: var(--wptb-plugin-gray-600);
6599
- }
6600
-
6601
- .wptb-panel-message-icon {
6602
- margin-right: 10px;
6603
- }
6604
-
6605
- .wptb-panel-message-icon svg {
6606
- width: 20px;
6607
- height: 20px;
6608
- fill: var(--wptb-plugin-yellow-500);
6609
- }
6610
-
6611
-
6612
- /*endregion*/
6613
-
6614
- /*region size2 control*/
6615
- .wptb-size2-control-input-wrapper {
6616
- display: grid;
6617
- grid-template-columns: 1.2fr 20px 1.2fr 1fr;
6618
- grid-template-rows: 1fr auto;
6619
- justify-content: center;
6620
- align-content: center;
6621
- grid-gap: 10px;
6622
- }
6623
-
6624
- .wptb-size2-input input {
6625
- transition: all 0.2s ease-out;
6626
- width: 100%;
6627
- border: 1.5px solid var(--wptb-plugin-gray-400);
6628
- border-radius: 3px !important;
6629
- text-align: end;
6630
- }
6631
-
6632
- .wptb-size2-input input[disabled] {
6633
- background-color: var(--wptb-plugin-gray-300) !important;
6634
- cursor: not-allowed;
6635
- }
6636
-
6637
- .wptb-size2-control-input-component {
6638
- display: grid;
6639
- grid-template-columns: 1fr;
6640
- grid-template-rows: repeat(2, 1fr);
6641
- justify-items: center;
6642
- align-items: center;
6643
- height: 100%;
6644
- width: 100%;
6645
- }
6646
-
6647
- .wptb-size2-aspect-icon {
6648
- width: 100%;
6649
- height: 100%;
6650
- display: flex;
6651
- justify-content: center;
6652
- align-items: center;
6653
- cursor: pointer;
6654
- color: var(--wptb-plugin-red-600);
6655
- }
6656
-
6657
- .wptb-size2-aspect-icon[data-wptb-linked = 'true'] {
6658
- color: var(--wptb-plugin-green-500) !important;
6659
- }
6660
-
6661
- .wptb-size2-aspect-icon svg {
6662
- width: 100%;
6663
- height: 100%;
6664
- transition: all 0.2s ease-out;
6665
- }
6666
-
6667
- .wptb-size2-unit-dropdown {
6668
- border: 1.5px solid var(--wptb-plugin-gray-400) !important;
6669
- border-radius: 3px !important;
6670
- }
6671
-
6672
- .wptb-size-control-aspect-ratio-info-container {
6673
- padding: 10px;
6674
- grid-column: 1/-1;
6675
- justify-self: center;
6676
- color: var(--wptb-plugin-gray-500);
6677
- user-select: none;
6678
- }
6679
-
6680
- .wptb-settings-reset-size2-control {
6681
- transition: all 0.2s ease-out;
6682
- }
6683
-
6684
- .wptb-settings-reset-size2-control:active {
6685
- transform: rotateZ(-180deg);
6686
- }
6687
-
6688
- /*endregion*/
6689
-
6690
- /*region lazy load settings menu*/
6691
- .wptb-lazy-load-wrapper {
6692
- max-width: 800px;
6693
- width: 100%;
6694
- height: 100%;
6695
- display: grid;
6696
- grid-template-columns: repeat(2, 1fr);
6697
- grid-template-rows: 1fr;
6698
- gap: 10px;
6699
- grid-template-areas: 'left right';
6700
- }
6701
-
6702
- .wptb-lazy-load-left-column {
6703
- grid-area: left;
6704
- display: grid;
6705
- grid-template-columns: 1fr;
6706
- grid-template-rows: minmax(min-content, max-content) 1fr minmax(min-content, max-content);
6707
- grid-template-areas: 'basic' 'preview' 'disclaimer';
6708
- justify-content: center;
6709
- align-items: center;
6710
- gap: 10px;
6711
- overflow: auto;
6712
- }
6713
-
6714
- .wptb-lazy-load-basic-options {
6715
- grid-area: basic;
6716
- }
6717
-
6718
- .wptb-lazy-load-preview-container {
6719
- grid-area: preview;
6720
- width: 100%;
6721
- height: 100%;
6722
- display: grid;
6723
- grid-template-columns: minmax(150px, max-content);
6724
- grid-template-rows: minmax(min-content, max-content) minmax(150px, max-content) minmax(min-content, max-content);
6725
- justify-content: center;
6726
- justify-items: center;
6727
- align-content: center;
6728
- align-items: center;
6729
- grid-template-areas: 'header' 'preview' 'footer';
6730
- gap: 5px;
6731
- }
6732
-
6733
- .wptb-lazy-load-preview-header {
6734
- grid-area: header;
6735
- text-transform: uppercase;
6736
- font-weight: bold;
6737
- }
6738
-
6739
- .wptb-lazy-load-preview {
6740
- grid-area: preview;
6741
- }
6742
-
6743
- .wptb-lazy-load-preview img {
6744
- width: 150px;
6745
- height: 150px;
6746
- }
6747
-
6748
- .wptb-lazy-load-preview-button-container {
6749
- grid-area: footer;
6750
- }
6751
-
6752
- .wptb-lazy-load-preview-button-container > div {
6753
- margin: 10px;
6754
- }
6755
-
6756
- .wptb-lazy-load-pro-options {
6757
- padding: 0 10px;
6758
- overflow: auto;
6759
- color: var(--wptb-plugin-gray-500);
6760
- position: relative;
6761
- grid-area: right;
6762
- }
6763
-
6764
- .wptb-controls-for-settings > div {
6765
- border: 1px solid var(--wptb-plugin-gray-300);
6766
- border-bottom: 0;
6767
- }
6768
-
6769
- .wptb-lazy-load-pro-options > div:last-of-type {
6770
- border-bottom: 1px solid var(--wptb-plugin-gray-300);
6771
- }
6772
-
6773
- .wptb-lazy-load-pro-disabled-overlay {
6774
- width: 100%;
6775
- height: 100%;
6776
- background-image: repeating-linear-gradient(45deg, transparent, transparent 15px, #3299D132 15px, #3299D132 30px);
6777
- z-index: 10;
6778
- display: flex;
6779
- justify-content: center;
6780
- align-items: center;
6781
- }
6782
-
6783
-
6784
- /*endregion*/
6785
-
6786
- /*region controls for settings*/
6787
- .wptb-controls-for-settings * {
6788
- font-size: inherit !important;
6789
- color: var(--wptb-plugin-theme-text-color-main);
6790
- box-sizing: border-box;
6791
- }
6792
-
6793
- /*endregion*/
6794
-
6795
- /*region control tip wrapper*/
6796
- .wptb-control-tip-wrapper {
6797
- position: relative;
6798
- }
6799
-
6800
- .wptb-control-tip-wrapper[disabled] .wptb-tip-popup {
6801
- color: var(--wptb-plugin-gray-400);
6802
- }
6803
-
6804
- .wptb-control-tip-wrapper[disabled] .wptb-tip-popup:hover {
6805
- background-color: inherit !important;
6806
- }
6807
-
6808
- .wptb-tip-popup {
6809
- position: absolute;
6810
- border: 2px solid var(--wptb-plugin-gray-300);
6811
- border-radius: 100%;
6812
- width: 20px;
6813
- height: 20px;
6814
- display: flex;
6815
- justify-content: center;
6816
- align-items: center;
6817
- cursor: pointer;
6818
- background-color: var(--wptb-plugin-theme-color-light);
6819
- transition: background-color 0.2s ease-out;
6820
- top: 5px;
6821
- right: 5px;
6822
- }
6823
-
6824
- .wptb-tip-popup[data-tip-positon="topRight"] {
6825
- top: 5px;
6826
- right: 5px;
6827
- }
6828
-
6829
- .wptb-tip-popup:hover {
6830
- background-color: var(--wptb-plugin-gray-200);
6831
- }
6832
-
6833
-
6834
- /*endregion*/
6835
-
6836
- /*region lazy load frontend styles*/
6837
- .wptb-lazy-load-img[data-wptb-lazy-load-status='false'] {
6838
- opacity: 0;
6839
- }
6840
-
6841
- .wptb-lazy-load-img[data-wptb-lazy-load-status='true'] {
6842
- opacity: 1;
6843
- }
6844
-
6845
- .wptb-lazy-load-buffer-element-container {
6846
- position: relative;
6847
- }
6848
-
6849
- .wptb-lazy-load-buffer-element {
6850
- position: absolute;
6851
- top: 0;
6852
- left: 0;
6853
- width: 100%;
6854
- height: 100%;
6855
- border-radius: 5px;
6856
- display: flex;
6857
- justify-content: center;
6858
- align-items: center;
6859
- }
6860
-
6861
- .wptb-lazy-load-buffer-icon-wrapper {
6862
- display: flex;
6863
- justify-content: center;
6864
- align-items: center;
6865
- }
6866
-
6867
- .wptb-lazy-load-buffer-icon-wrapper[data-wptb-lazy-load-icon-animation='heartBeat'] svg {
6868
- animation: wptb-beat 1.3s ease-out forwards infinite;
6869
- }
6870
-
6871
- .wptb-lazy-load-buffer-icon-wrapper[data-wptb-lazy-load-icon-animation='rotate'] svg {
6872
- animation: wptb-rotate-simple 1s ease-out forwards infinite;
6873
- }
6874
-
6875
- .wptb-lazy-load-buffer-icon-wrapper[data-wptb-lazy-load-icon-animation='jump'] svg {
6876
- animation: wptb-jump 0.5s ease-out alternate infinite;
6877
- }
6878
-
6879
- .wptb-lazy-load-buffer-icon-wrapper[data-wptb-lazy-load-icon-animation='flip'] svg {
6880
- animation: wptb-flip 1s ease-out forwards infinite;
6881
- }
6882
-
6883
- @keyframes wptb-flip {
6884
- 0% {
6885
- transform: rotateY(0deg);
6886
- }
6887
-
6888
- 100% {
6889
- transform: rotateY(360deg);
6890
- }
6891
- }
6892
-
6893
- @keyframes wptb-jump {
6894
- 0% {
6895
- transform: translateY(25%);
6896
- }
6897
-
6898
- 100% {
6899
- transform: translateY(-25%);
6900
- }
6901
- }
6902
-
6903
-
6904
- @keyframes wptb-rotate-simple {
6905
- 0% {
6906
- transform: rotateZ(0deg);
6907
- }
6908
-
6909
- 100% {
6910
- transform: rotateZ(360deg);
6911
- }
6912
- }
6913
-
6914
- @keyframes wptb-beat {
6915
- 0% {
6916
- transform: scale(1);
6917
- }
6918
- 15% {
6919
- transform: scale(1.5);
6920
- }
6921
- 30% {
6922
- transform: scale(1);
6923
- }
6924
- 100% {
6925
- transform: scale(1);
6926
- }
6927
- }
6928
-
6929
- /*endregion*/
6930
-
6931
- /*region panel direction control*/
6932
- .wptb-panel-direction-control-indicators-container {
6933
- display: grid;
6934
- grid-template-columns: repeat(3, minmax(min-content, max-content));
6935
- grid-template-rows: repeat(3, minmax(min-content, max-content));
6936
- grid-template-areas: 'up up up' 'left static right' 'down down down';
6937
- grid-gap: 3px;
6938
- justify-content: center;
6939
- align-items: center;
6940
- }
6941
-
6942
- .wptb-panel-direction-cadet {
6943
- display: flex;
6944
- justify-content: center;
6945
- align-items: center;
6946
- cursor: pointer;
6947
- }
6948
-
6949
- .wptb-panel-direction-cadet svg {
6950
- width: 25px;
6951
- height: 25px;
6952
- fill: var(--wptb-plugin-gray-400);
6953
- transition: fill 0.2s ease-out;
6954
- }
6955
-
6956
- .wptb-panel-direction-cadet:hover svg {
6957
- fill: var(--wptb-plugin-gray-500);
6958
- }
6959
-
6960
- .wptb-panel-direction-cadet[data-wptb-active-direction='true'] svg {
6961
- fill: var(--wptb-plugin-logo-color);
6962
- }
6963
-
6964
- .wptb-panel-direction-cadet[data-wptb-panel-direction='up'] {
6965
- grid-area: up;
6966
- }
6967
-
6968
- .wptb-panel-direction-cadet[data-wptb-panel-direction='left'] {
6969
- grid-area: left;
6970
- }
6971
-
6972
- .wptb-panel-direction-cadet[data-wptb-panel-direction='right'] {
6973
- grid-area: right;
6974
- }
6975
-
6976
- .wptb-panel-direction-cadet[data-wptb-panel-direction='down'] {
6977
- grid-area: down;
6978
- }
6979
-
6980
- .wptb-panel-direction-static {
6981
- grid-area: static;
6982
- width: 20px;
6983
- height: 20px;
6984
- background-color: var(--wptb-plugin-gray-400);
6985
- border: 1px solid var(--wptb-plugin-gray-500);
6986
- border-radius: 3px;
6987
- }
6988
-
6989
- [data-wptb-disabled='true'] .wptb-panel-direction-cadet svg {
6990
- fill: var(--wptb-plugin-gray-300) !important;
6991
- }
6992
-
6993
- [data-wptb-disabled='true'] .wptb-panel-direction-static {
6994
- background-color: var(--wptb-plugin-gray-300);
6995
- border: 1px solid var(--wptb-plugin-gray-400);
6996
- }
6997
-
6998
- [data-wptb-disabled='true'] .wptb-panel-direction-cadet {
6999
- cursor: pointer;
7000
- pointer-events: none;
7001
- }
7002
-
7003
- /*endregion*/
7004
-
7005
- /*region disclaimer component*/
7006
- .wptb-disclaimer-container {
7007
- width: 100%;
7008
- display: flex;
7009
- justify-content: center;
7010
- padding: 10px 0;
7011
- flex-direction: column;
7012
- }
7013
-
7014
- .wptb-disclaimer-title {
7015
- color: var(--wptb-plugin-red-600) !important;
7016
- text-transform: uppercase;
7017
- font-weight: bold;
7018
- font-size: 120%;
7019
- }
7020
-
7021
- .wptb-disclaimer-message p, .wptb-disclaimer-message span {
7022
- font-size: 90% !important;
7023
- }
7024
-
7025
- /*endregion*/
7026
-
7027
- .wptb-code {
7028
- font-family: monospace !important;
7029
- padding: 0 3px;
7030
- border-radius: 3px;
7031
- background-color: #FDE68A;
7032
- border: 1px solid #FCD34D;
7033
- font-size: inherit !important;
7034
- }
7035
-
7036
- /*region dummy table element*/
7037
- .wptb-element[data-wptb-dummy="true"] {
7038
- pointer-events: none;
7039
- color: var(--wptb-plugin-gray-400) !important;
7040
- }
7041
-
7042
- .wptb-element[data-wptb-dummy="true"] svg {
7043
- fill: currentColor !important;
7044
- }
7045
-
7046
- .wptb-element[data-wptb-dummy="true"] .wptb-element-draggable-icon {
7047
- color: var(--wptb-plugin-gray-400) !important;
7048
- }
7049
-
7050
- /*endregion*/
7051
-
7052
- /*region disabled overlay container*/
7053
- .wptb-disabled-overlay-container {
7054
- display: grid;
7055
- grid-template-columns: 1fr;
7056
- grid-template-rows: 1fr;
7057
- justify-content: center;
7058
- align-items: center;
7059
- grid-template-areas: 'content';
7060
- }
7061
-
7062
- .wptb-disabled-overlay {
7063
- grid-area: content;
7064
- width: 100%;
7065
- height: 100%;
7066
- z-index: 10;
7067
- background-image: repeating-linear-gradient(45deg, transparent, transparent 15px, #3299D13C 15px, #3299D13C 30px);
7068
- cursor: not-allowed;
7069
- }
7070
-
7071
- .wptb-disabled-overlay-slot-wrapper {
7072
- grid-area: content;
7073
- z-index: 9;
7074
- }
7075
-
7076
- /*endregion*/
7077
-
7078
- .wptb-upsells-pro-overlay {
7079
- position: absolute;
7080
- display: flex;
7081
- justify-content: center;
7082
- align-items: center;
7083
- width: 100%;
7084
- height: 100%;
7085
- top: 0;
7086
- left: 0;
7087
- background-image: repeating-linear-gradient(45deg, transparent, transparent 15px, #3299D13C 15px, #3299D13C 30px);
7088
- }
7089
-
7090
- /*region data listing*/
7091
- .wptb-data-listing-row-search-clause-wrap {
7092
- color: var(--wptb-plugin-gray-500);
7093
-
7094
- }
7095
-
7096
- .wptb-data-listing-row-search-clause {
7097
- color: var(--wptb-plugin-logo-color) !important;
7098
- font-weight: bold !important;
7099
- }
7100
-
7101
- /*endregion*/
7102
-
7103
- /*region search input component*/
7104
- .wptb-search-input-wrapper {
7105
- position: relative;
7106
- width: fit-content;
7107
- }
7108
-
7109
- .wptb-search-input-element {
7110
- width: 100% !important;
7111
- border: 1px solid var(--wptb-plugin-gray-400) !important;
7112
- text-align: center;
7113
- color: inherit;
7114
- border-radius: 999px !important;
7115
- padding: 0 !important;
7116
- font-size: inherit !important;
7117
- }
7118
-
7119
- .wptb-search-input-element:active, .wptb-search-input-element:focus {
7120
- border: 1px solid var(--wptb-plugin-gray-500) !important;
7121
- inset: 0 !important;
7122
- box-shadow: none !important;
7123
- }
7124
-
7125
- .wptb-search-input-clear {
7126
- position: absolute;
7127
- top: 0;
7128
- right: 10px;
7129
- height: 100%;
7130
- display: flex;
7131
- justify-content: center;
7132
- align-items: center;
7133
- cursor: pointer;
7134
- padding: 0 5px;
7135
- color: var(--wptb-plugin-red-500);
7136
- font-weight: bold;
7137
- }
7138
-
7139
- .wptb-search-input-clear[data-disabled='true'] {
7140
- color: var(--wptb-plugin-gray-500) !important;
7141
- }
7142
-
7143
- /*endregion*/
7144
-
7145
- .wptb-svg-inherit-color svg {
7146
- fill: currentColor;
7147
- }
7148
-
7149
- .wptb-image-element-dummy {
7150
- display: none !important;
7151
- }
7152
-
7153
- .wptb-settings-generic-icon {
7154
- width: 16px;
7155
- height: 16px;
7156
- cursor: pointer;
7157
- }
7158
-
7159
- .wptb-svg-14px svg {
7160
- width: 14px;
7161
- }
7162
-
7163
- /*region multi checkbox control*/
7164
- .wptb-multi-checkbox-wrapper .wptb-settings-checkbox-row label {
7165
- transition: all 0.2s ease-out;
7166
- }
7167
-
7168
- .wptb-multi-checkbox-wrapper .wptb-settings-checkbox-row[data-wptb-checked="true"] label {
7169
- /*font-weight: bold;*/
7170
- color: var(--wptb-plugin-logo-color);
7171
- }
7172
-
7173
- /*endregion*/
7174
-
7175
- /*region range control input*/
7176
- .wptb-range-input-wrapper[disabled] {
7177
- pointer-events: none;
7178
- }
7179
-
7180
- .wptb-range-input-operation-button {
7181
- color: var(--wptb-plugin-gray-500) !important;
7182
- display: flex;
7183
- width: 100%;
7184
- justify-content: center;
7185
- align-items: center;
7186
- position: absolute;
7187
- transition: all 0.1s ease-out;
7188
- opacity: 0;
7189
- }
7190
-
7191
- .wptb-range-input-operation-button svg {
7192
- fill: var(--wptb-plugin-gray-500) !important;
7193
- }
7194
-
7195
- .wptb-range-input-operation-button:active {
7196
- transform: scale(0.8);
7197
- }
7198
-
7199
- .wptb-range-input-operation-button[data-wptb-button-position="up"] {
7200
- top: -50%;
7201
- }
7202
-
7203
- .wptb-range-input-operation-button[data-wptb-button-position="down"] {
7204
- bottom: -18%;
7205
- }
7206
-
7207
- .wptb-range-text-input-wrapper:hover .wptb-range-input-operation-button {
7208
- opacity: 1;
7209
- }
7210
-
7211
- /*endregion*/
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
inc/admin/css/src/admin.scss ADDED
@@ -0,0 +1,7263 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import 'base/global';
2
+ @import 'base/common';
3
+ @import 'base/colors';
4
+ @import 'inc/tableFixerSettings';
5
+
6
+ html {
7
+ overflow-y: hidden;
8
+ }
9
+
10
+ body > img {
11
+ position: absolute;
12
+ z-index: 1000001;
13
+ }
14
+
15
+ .wptb-admin-container {
16
+ background: #fff;
17
+ color: var(--wptb-plugin-theme-text-color-main);
18
+ z-index: 100000;
19
+ position: fixed;
20
+ top: 0;
21
+ bottom: 0;
22
+ left: 0;
23
+ right: 0;
24
+ height: 100%;
25
+ min-width: 0;
26
+ margin: 0 !important;
27
+ overflow-y: auto;
28
+ }
29
+
30
+ .wptb-container {
31
+ position: fixed;
32
+ left: 0;
33
+ top: 0;
34
+ right: 0;
35
+ bottom: 0;
36
+ overflow-y: auto;
37
+ overflow-x: hidden;
38
+ }
39
+
40
+ .wptb-container * {
41
+ box-sizing: border-box;
42
+ }
43
+
44
+ /**
45
+ * Header Section
46
+ */
47
+
48
+ .wptb-builder-header {
49
+ position: sticky !important;
50
+ top: 0;
51
+ z-index: 10;
52
+ }
53
+
54
+ .wptb-header {
55
+ width: 100%;
56
+ background-color: var(--wptb-plugin-theme-color-light);
57
+ border-bottom: 1px solid var(--wptb-plugin-theme-sidebar-bg);
58
+ text-align: center;
59
+ display: grid;
60
+ grid-auto-flow: row;
61
+ grid-template-columns: 1fr 1fr;
62
+ grid-template-areas: "table-name buttons close";
63
+ align-items: center;
64
+ justify-content: center;
65
+ font-size: var(--wptb-plugin-theme-header-font-size-base);
66
+ position: relative;
67
+ z-index: 10;
68
+ }
69
+
70
+ .wptb-left-panel[data-wptb-panel-location="right"] + .wptb-builder-panel .wptb-header {
71
+ grid-template-areas: "close buttons table-name" !important;
72
+ grid-template-columns: auto 1fr 1fr !important;
73
+ }
74
+
75
+ .wptb-header-buttons-container {
76
+ display: flex;
77
+ flex-direction: row;
78
+ align-items: center;
79
+ justify-content: center;
80
+ grid-area: buttons;
81
+ height: 100%;
82
+ }
83
+
84
+ .wptb-header-close {
85
+ font-size: 30px;
86
+ width: 30px;
87
+ height: 30px;
88
+ text-decoration: none;
89
+ color: var(--wptb-plugin-gray-500);
90
+ }
91
+
92
+ .wptb-logo {
93
+ padding-left: 30px;
94
+ float: left;
95
+ margin-top: 17px;
96
+ }
97
+
98
+ .wptb-right {
99
+ width: 100%;
100
+ display: flex;
101
+ flex-direction: row;
102
+ justify-content: flex-end;
103
+ align-items: center;
104
+ height: 100%;
105
+ }
106
+
107
+ .wptb-left-panel[data-wptb-panel-location="right"] + .wptb-builder-panel .wptb-right {
108
+ flex-direction: row-reverse !important;
109
+ }
110
+
111
+ .wptb-right .wptb-settings-section-item {
112
+ margin: 0 !important;
113
+ }
114
+
115
+ .wptb-plugin-width-full {
116
+ width: 100% !important;
117
+ }
118
+
119
+ .wptb-plugin-height-full {
120
+ height: 100%;
121
+ }
122
+
123
+ #wptb-messaging-area {
124
+ align-self: center;
125
+ /*margin: 0 auto;*/
126
+ /*display: inline-block;*/
127
+ /*margin-top: 15px;*/
128
+ /*margin-right: 15px;*/
129
+ position: absolute;
130
+ left: 0;
131
+ right: 0;
132
+ bottom: 100px;
133
+ pointer-events: none;
134
+ }
135
+
136
+ #wptb-messaging-area .wptb-message {
137
+ border-radius: 4px;
138
+ max-width: 410px;
139
+ padding: 20px;
140
+ margin: auto;
141
+ }
142
+
143
+ #wptb-messaging-area .wptb-success {
144
+ color: green;
145
+ background-color: lightgreen;
146
+ font-size: 15px;
147
+ }
148
+
149
+ #wptb-messaging-area .wptb-error {
150
+ color: red;
151
+ background-color: rgb(255, 213, 213);
152
+ font-size: 15px;
153
+ }
154
+
155
+ .wptb-panel-sub-container-buttons {
156
+ display: flex;
157
+ justify-content: center;
158
+ align-items: center;
159
+ height: 100%;
160
+ border-left: 1px solid var(--wptb-plugin-theme-sidebar-bg);
161
+ border-right: 1px solid var(--wptb-plugin-theme-sidebar-bg);
162
+ }
163
+
164
+ .wptb-panel-night-mode-container {
165
+ display: flex;
166
+ justify-content: center;
167
+ align-items: center;
168
+ height: 100%;
169
+ border-left: 1px solid var(--wptb-plugin-theme-sidebar-bg);
170
+ padding: 10px;
171
+ }
172
+
173
+ .wptb-panel-night-mode-icon-container {
174
+ width: 32px;
175
+ height: 32px;
176
+ cursor: pointer;
177
+ }
178
+
179
+ [data-wptb-mode='light'] .wptb-panel-night-mode-icon-container {
180
+ color: var(--wptb-plugin-gold);
181
+ }
182
+
183
+ [data-wptb-mode='dark'] .wptb-panel-night-mode-icon-container {
184
+ color: var(--wptb-plugin-blue-400);
185
+ }
186
+
187
+ .wptb-header .wptb-settings-section-item {
188
+ padding: 15px !important;
189
+ }
190
+
191
+ .wptb-undo-redo-container {
192
+ display: flex;
193
+ justify-content: center;
194
+ align-items: center;
195
+ height: 100%;
196
+ padding: 0 20px;
197
+ border-left: 1px solid var(--wptb-plugin-theme-sidebar-bg);
198
+ }
199
+
200
+ .wptb-undo,
201
+ .wptb-redo {
202
+ display: inline-block;
203
+ cursor: pointer;
204
+ }
205
+
206
+ .wptb-undo {
207
+ margin-right: 7px;
208
+ }
209
+
210
+ .wptb-undo:hover,
211
+ .wptb-redo:hover {
212
+ }
213
+
214
+ .wptb-undoredo-disabled {
215
+ cursor: default;
216
+ opacity: .4;
217
+ }
218
+
219
+ .wptb-embed-btn, .wptb-preview-btn, .wptb-save-btn {
220
+ height: 100%;
221
+ display: flex;
222
+ justify-content: center;
223
+ align-items: center;
224
+ text-decoration: none;
225
+ }
226
+
227
+ .wptb-embed,
228
+ .wptb-preview,
229
+ .wptb-save {
230
+ display: flex;
231
+ justify-content: center;
232
+ align-items: center;
233
+ height: 100%;
234
+ }
235
+
236
+ .wptb-save {
237
+ position: relative;
238
+ }
239
+
240
+ #wptb_builder[data-wptb-saving] .wptb-save-btn {
241
+ opacity: 0 !important;
242
+ }
243
+
244
+ .wptb-busy {
245
+ position: absolute;
246
+ width: 100%;
247
+ height: 100%;
248
+ left: 0;
249
+ right: 0;
250
+ display: flex;
251
+ justify-content: space-evenly;
252
+ align-items: center;
253
+ opacity: 0;
254
+ pointer-events: none;
255
+ transition: all 0.2s ease-out;
256
+ }
257
+
258
+ .wptb-busy .wptb-busy-circle {
259
+ width: 10px;
260
+ height: 10px;
261
+ border-radius: 100%;
262
+ background-color: var(--wptb-plugin-gray-700);
263
+ animation: wptb-beat var(--wptb-busy-duration) ease-out forwards infinite;
264
+ }
265
+
266
+ .wptb-busy-circle:nth-of-type(2) {
267
+ animation-delay: calc(var(--wptb-busy-duration) / 3);
268
+ }
269
+
270
+ .wptb-busy-circle:nth-of-type(3) {
271
+ animation-delay: calc(var(--wptb-busy-duration) / 1.5);
272
+ }
273
+
274
+ @keyframes wptb-beat {
275
+ 0% {
276
+ transform: scale(1);
277
+ }
278
+ 15% {
279
+ transform: scale(1.5);
280
+ }
281
+ 30% {
282
+ transform: scale(1);
283
+ }
284
+ 100% {
285
+ transform: scale(1);
286
+ }
287
+ }
288
+
289
+ #wptb_builder[data-wptb-saving] .wptb-busy {
290
+ opacity: 1;
291
+ pointer-events: all;
292
+ cursor: not-allowed;
293
+ }
294
+
295
+ .wptb-button-grey {
296
+ background-color: var(--wptb-plugin-white);
297
+ /*border: 1px solid #ccc;*/
298
+ /*font-size: 16px;*/
299
+ /*font-weight: 500;*/
300
+ text-transform: uppercase;
301
+ /*display: inline-block;*/
302
+ /*padding: 16px;*/
303
+ text-decoration: none;
304
+ color: inherit;
305
+ }
306
+
307
+ .wptb-button-grey:hover {
308
+ color: inherit;
309
+ }
310
+
311
+ .wptb-button-grey.wptb-button-disable {
312
+ cursor: not-allowed;
313
+ color: #CBD5E0 !important;
314
+ }
315
+
316
+ .wptb-save-btn {
317
+ color: inherit;
318
+ opacity: 1;
319
+ transition: all 0.2s ease-out;
320
+ }
321
+
322
+ .wptb-save-btn.wptb-save-disabled {
323
+ cursor: not-allowed;
324
+ color: #CBD5E0 !important;
325
+ }
326
+
327
+ .wptb-save-btn.wptb-save-disabled:hover {
328
+ text-decoration: none;
329
+ }
330
+
331
+ .wptb-close {
332
+ background-color: var(--wptb-plugin-white);
333
+ border-left: 1px solid var(--wptb-plugin-gray-300);
334
+ }
335
+
336
+ .wptb-close:hover {
337
+ background: var(--wptb-plugin-gray-300);
338
+ }
339
+
340
+ .wptb-close a {
341
+ text-decoration: none;
342
+ }
343
+
344
+ .wptb-popup-dark-area {
345
+ position: fixed;
346
+ width: 100%;
347
+ height: 100%;
348
+ visibility: hidden;
349
+ top: 0;
350
+ left: 0;
351
+ z-index: 1000;
352
+ background-color: slategray;
353
+ opacity: 0;
354
+ -webkit-transition: all 0.3s;
355
+ -moz-transition: all 0.3s;
356
+ transition: all 0.3s;
357
+ }
358
+
359
+ .wptb-popup-window-modal.wptb-popup-show ~ .wptb-popup-dark-area {
360
+ visibility: visible;
361
+ opacity: .6;
362
+ }
363
+
364
+ .wptb-popup-window-modal {
365
+ position: fixed;
366
+ top: 50%;
367
+ left: 50%;
368
+ width: 50%;
369
+ max-width: 630px;
370
+ min-width: 300px;
371
+ height: auto;
372
+ z-index: 2000;
373
+ visibility: hidden;
374
+ -webkit-backface-visibility: hidden;
375
+ -moz-backface-visibility: hidden;
376
+ backface-visibility: hidden;
377
+ -webkit-transform: translateX(-50%) translateY(-50%);
378
+ -moz-transform: translateX(-50%) translateY(-50%);
379
+ -ms-transform: translateX(-50%) translateY(-50%);
380
+ transform: translateX(-50%) translateY(-50%);
381
+ }
382
+
383
+ .wptb-popup-window-modal.wptb-popup-show {
384
+ visibility: visible;
385
+ }
386
+
387
+ .wptb-popup-box {
388
+ -webkit-transform: scale(0.7);
389
+ -moz-transform: scale(0.7);
390
+ -ms-transform: scale(0.7);
391
+ transform: scale(0.7);
392
+ opacity: 0;
393
+ -webkit-transition: all 0.3s;
394
+ -moz-transition: all 0.3s;
395
+ transition: all 0.3s;
396
+ border-radius: 0;
397
+ box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
398
+ padding: 30px;
399
+ background-color: white;
400
+ }
401
+
402
+ .wptb-popup-window-modal.wptb-popup-show .wptb-popup-box {
403
+ -webkit-transform: scale(1);
404
+ -moz-transform: scale(1);
405
+ -ms-transform: scale(1);
406
+ transform: scale(1);
407
+ opacity: 1;
408
+ }
409
+
410
+ .wptb-popup-window-close-icon {
411
+ height: 20px;
412
+ width: 20px;
413
+ position: absolute;
414
+ top: 10px;
415
+ right: 10px;
416
+ cursor: pointer;
417
+ opacity: .6;
418
+ text-align: center;
419
+ font-size: 27px !important;
420
+ line-height: 14px !important;
421
+ display: none;
422
+ z-index: 1;
423
+ }
424
+
425
+ .wptb-popup-content p {
426
+ font-size: 15px;
427
+ text-align: center;
428
+ }
429
+
430
+ #wptb-embed-shortcode {
431
+ width: 100%;
432
+ text-align: center;
433
+ font-size: 24px;
434
+ display: block;
435
+ border: 1px solid #d6d6d6;
436
+ padding: 10px;
437
+ box-shadow: none;
438
+ margin: 20px auto 0 auto;
439
+ }
440
+
441
+ .wptb-edit-bar ul {
442
+ display: flex;
443
+ display: -webkit-flex;
444
+ list-style: none;
445
+ margin: 0;
446
+ padding: 0;
447
+ }
448
+
449
+ .wptb-edit-bar {
450
+ border-radius: 2px;
451
+ display: none;
452
+ padding: .3em .4em 0em .4em;
453
+ position: relative;
454
+ width: auto;
455
+ z-index: 10;
456
+ background: none;
457
+ max-width: 870px;
458
+ margin: auto;
459
+ clear: both;
460
+ }
461
+
462
+ .wptb-edit-bar.visible {
463
+ display: block;
464
+ }
465
+
466
+ .wptb-edit-bar ul li {
467
+ height: auto;
468
+ margin: 0;
469
+ padding: 0;
470
+ }
471
+
472
+ .wptb-table_change_button {
473
+ cursor: pointer;
474
+ -webkit-box-sizing: border-box;
475
+ box-sizing: border-box;
476
+ height: 41px;
477
+ background: #fafbfc;
478
+ font-size: 13px;
479
+ color: #37454c;
480
+ border-radius: 3px;
481
+ border: 1px solid #a4a4a4;
482
+ padding-left: 12px;
483
+ padding-right: 12px;
484
+ position: relative;
485
+ display: inline-block;
486
+ text-transform: uppercase;
487
+ letter-spacing: .02em;
488
+ font-weight: bolder;
489
+ text-align: center;
490
+ margin-top: 0;
491
+ margin-right: 1em;
492
+ line-height: 2.4em;
493
+ margin-bottom: 8px;
494
+ }
495
+
496
+ .wptb-management.wptb-bar.wptb-edit-bar.visible button.visible:hover {
497
+ color: #4fbe31;
498
+ -webkit-transition: all .1s ease-out;
499
+ -o-transition: all .1s ease-out;
500
+ transition: all .1s ease-out;
501
+ }
502
+
503
+ #wptb-delete-column,
504
+ #wptb-delete-row {
505
+ background-color: #eb4c63;
506
+ }
507
+
508
+ #wptb-left-scroll-panel-curtain .wptb-table-edit-mode-close {
509
+ margin: auto;
510
+ display: block;
511
+ }
512
+
513
+ .wptb-table-edit-mode-close {
514
+ background: #329d3f;
515
+ color: #fff;
516
+ }
517
+
518
+ .wptb-edit-bar svg {
519
+ cursor: pointer;
520
+ }
521
+
522
+ .wptb-edit-bar svg * {
523
+ fill: rgba(0, 0, 0, 0) !important;
524
+ stroke: #fff !important;
525
+ }
526
+
527
+
528
+ /**
529
+ * Left Panel
530
+ */
531
+
532
+ .wptb-left-panel {
533
+ position: fixed;
534
+ height: 100%;
535
+ box-sizing: border-box;
536
+ background-color: var(--wptb-plugin-theme-sidebar-bg);
537
+ -webkit-transition: all 0.2s ease-out, right 0.2s ease-out;
538
+ -o-transition: all 0.2s ease-out, right 0.2s ease-out;
539
+ transition: all 0.2s ease-out, right 0.2s ease-out;
540
+ box-shadow: 0 0 5px 3px rgba(0, 0, 0, .2);
541
+ z-index: 100001;
542
+ font-size: var(--wptb-plugin-theme-side-bar-font-size-base);
543
+ }
544
+
545
+ .wptb-left-panel[data-wptb-panel-location="left"] {
546
+ left: 0;
547
+ }
548
+
549
+ .wptb-left-panel[data-wptb-panel-location="right"] {
550
+ right: 0;
551
+ }
552
+
553
+ .collapsed .wptb-left-panel[data-wptb-panel-location='left'] {
554
+ transform: translateX(calc(-100% + var(--wptb-plugin-left-panel-constant)));
555
+ }
556
+
557
+ .collapsed .wptb-left-panel[data-wptb-panel-location='right'] {
558
+ transform: translateX(calc(100% - var(--wptb-plugin-left-panel-constant)));
559
+ }
560
+
561
+ .collapsed .wptb-left-panel .wptb-left-panel-sidebar-content {
562
+ opacity: 0;
563
+ }
564
+
565
+ .collapsed .wptb-left-panel .wptb-panel-tabs {
566
+ opacity: 0;
567
+ }
568
+
569
+ .wptb-left-scroll-panel {
570
+ height: 100%;
571
+ overflow-y: auto;
572
+ overflow-x: hidden;
573
+ }
574
+
575
+ #wptb-left-scroll-panel-curtain,
576
+ #wptb-left-scroll-panel-cell-settings {
577
+ position: absolute;
578
+ top: 0;
579
+ right: 0;
580
+ left: 0;
581
+ bottom: 0;
582
+ background-color: var(--wptb-plugin-theme-sidebar-bg);
583
+ padding: 20px;
584
+ display: none;
585
+ }
586
+
587
+ #wptb-left-scroll-panel-cell-settings {
588
+ padding: 0px;
589
+ }
590
+
591
+ #wptb-left-scroll-panel-curtain.visible {
592
+ display: block;
593
+ }
594
+
595
+ #wptb-left-scroll-panel-cell-settings.visible {
596
+ display: block;
597
+ }
598
+
599
+ .wptb-panel-left {
600
+ height: 100%;
601
+ width: var(--wptb-plugin-sidebar-size-full);
602
+ display: grid;
603
+ grid-template-rows: auto auto 1fr auto;
604
+ grid-template-columns: 1fr;
605
+ grid-auto-flow: row;
606
+ transition: width .2s ease-out;
607
+ grid-template-areas: "brand" "sidebar-tabs" "sidebar-content" "sidebar-footer";
608
+ }
609
+
610
+ .wptb-left-panel-sidebar-content {
611
+ grid-area: sidebar-content;
612
+ overflow: auto;
613
+ transition: all 0.2s ease-out;
614
+ }
615
+
616
+ .wptb-panel-drawer-toggle {
617
+ background-color: var(--wptb-plugin-theme-sidebar-bg);
618
+ height: 50px;
619
+ width: 25px;
620
+ position: absolute;
621
+ top: calc(50% - 25px);
622
+ left: calc(100%);
623
+ display: flex;
624
+ justify-content: center;
625
+ align-items: center;
626
+ cursor: pointer;
627
+ border-radius: 0px 5px 5px 0;
628
+ box-shadow: 3px 1px 5px rgba(0, 0, 0, .2);
629
+ }
630
+
631
+ .wptb-panel-drawer-icon::after {
632
+ content: "\f341";
633
+ }
634
+
635
+ .collapsed .wptb-panel-drawer-icon::after {
636
+ content: "\f345";
637
+ }
638
+
639
+
640
+ .wptb-panel-brand {
641
+ grid-area: brand;
642
+ background-color: var(--wptb-plugin-logo-color);
643
+ color: var(--wptb-plugin-white);
644
+ padding: 25px 0;
645
+ font-size: 170%;
646
+ display: grid;
647
+ grid-template-columns: 1fr;
648
+ grid-template-rows: 1fr;
649
+ grid-template-areas: "brand-position";
650
+ text-align: center;
651
+ height: 61px;
652
+ }
653
+
654
+ .wptb-brand-name {
655
+ grid-area: brand-position
656
+ }
657
+
658
+ .wptb-brand-logo {
659
+ grid-area: brand-position;
660
+ display: none;
661
+ }
662
+
663
+ .wptb-panel-tabs {
664
+ grid-area: sidebar-tabs;
665
+ text-align: center;
666
+ justify-content: stretch;
667
+ transition: all 0.2s ease-out;
668
+ }
669
+
670
+ .wptb-panel-tabs div {
671
+ width: 100%;
672
+ margin: 0 !important;
673
+ font-size: 90%;
674
+ padding: 10px !important;
675
+ }
676
+
677
+ .wptb-left-panel-extend {
678
+ position: absolute;
679
+ top: 50%;
680
+ left: 100%;
681
+ margin-top: -55px;
682
+ overflow: hidden;
683
+ width: 18px;
684
+ border-top-right-radius: 8px;
685
+ border-bottom-right-radius: 8px;
686
+ height: 40px;
687
+ background-color: #f0f3f3;
688
+ -webkit-box-shadow: 1px 0 5px 0 rgba(25, 31, 40, 0.2);
689
+ box-shadow: 1px 0 5px 0 rgba(25, 31, 40, 0.2);
690
+ display: -webkit-box;
691
+ display: -webkit-flex;
692
+ display: -ms-flexbox;
693
+ display: flex;
694
+ -webkit-box-pack: center;
695
+ -webkit-justify-content: center;
696
+ -ms-flex-pack: center;
697
+ justify-content: center;
698
+ -webkit-box-align: center;
699
+ -webkit-align-items: center;
700
+ -ms-flex-align: center;
701
+ align-items: center;
702
+ font-size: 12px;
703
+ color: #353638;
704
+ z-index: -1;
705
+ border-right: 1px solid #ccc;
706
+ border-bottom: 1px solid #ccc;
707
+ border-top: 1px solid #ccc;
708
+ }
709
+
710
+ .wptb-left-panel-extend svg {
711
+ display: inline-block;
712
+ width: 1em;
713
+ height: 1em;
714
+ line-height: 1em;
715
+ vertical-align: middle;
716
+ stroke-width: 0;
717
+ stroke: currentColor;
718
+ fill: currentColor;
719
+ }
720
+
721
+ .wptb-container.collapsed .wptb-left-panel .wptb-left-panel-extend svg {
722
+ -webkit-transform: rotate(180deg);
723
+ -ms-transform: rotate(180deg);
724
+ transform: rotate(180deg);
725
+ }
726
+
727
+
728
+ /**
729
+ * Settings Section
730
+ */
731
+
732
+ .wptb-settings-section p {
733
+ font-size: 16px;
734
+ margin: 0 0 10px 0;
735
+ }
736
+
737
+ .wptb-input-px {
738
+ right: 35%;
739
+ top: 0px;
740
+ position: absolute;
741
+ margin-top: 7px;
742
+ }
743
+
744
+ .wptb-settings-dropdown {
745
+ font-size: 16px;
746
+ padding: 16px 20px 16px 20px;
747
+ position: relative;
748
+ background-color: #fff;
749
+ color: #186cba;
750
+ border-top: .5px solid #ccc;
751
+ border-bottom: .5px solid #ccc;
752
+ }
753
+
754
+ .wptb-panel-table-empty-message {
755
+ padding: 0 20px;
756
+ text-align: center;
757
+ font-size: 80%;
758
+ font-style: italic;
759
+ }
760
+
761
+ .wptb-settings-items,
762
+ .wptb-cell-management {
763
+ /*margin: 0px 1px;*/
764
+ transition: 1s 0s ease;
765
+ }
766
+
767
+ .wptb-cell-management {
768
+ display: none;
769
+ }
770
+
771
+ .wptb-settings-items.visible,
772
+ #wptb-inner-border-settings.visible,
773
+ .wptb-cell-management.visible {
774
+ display: block !important;
775
+ opacity: 1;
776
+ }
777
+
778
+ .wptb-settings-item-title {
779
+ font-size: 14px !important;
780
+ margin: 0 !important;
781
+ /*font-weight: 500;*/
782
+ margin: 0;
783
+ }
784
+
785
+ .wptb-settings-item-header {
786
+ font-size: 14px;
787
+ /*font-weight: 500;*/
788
+ line-height: 14px;
789
+ padding: 14px 0 14px 15px;
790
+ position: relative;
791
+ /*border: 1px solid #ddd;*/
792
+ background: var(--wptb-plugin-gray-100);
793
+ /*margin-top: 5px;*/
794
+ /*margin-bottom: -10px;*/
795
+ }
796
+
797
+ .wptb-settings-item-header-include-right {
798
+ font-size: 14px;
799
+ line-height: 14px;
800
+ padding: 14px 10px 14px 10px;
801
+ position: relative;
802
+ background: var(--wptb-plugin-gray-100);
803
+ }
804
+
805
+ .wptb-settings-row {
806
+ box-sizing: border-box !important;
807
+ display: flex;
808
+ flex: 0 1 auto;
809
+ flex-direction: row;
810
+ flex-wrap: wrap;
811
+ align-items: center;
812
+ /*padding-bottom: 25px;*/
813
+ padding-right: 0 !important;
814
+ }
815
+
816
+ .wptb-settings-row label {
817
+ display: flex;
818
+ flex-direction: row;
819
+ justify-content: space-between;
820
+ align-items: center;
821
+ }
822
+
823
+ .wptb-settings-middle-xs {
824
+ align-items: center;
825
+ background: var(--wptb-plugin-gray-100);
826
+ /*padding: 10px 10px 20px 10px;*/
827
+ padding: 15px !important;
828
+ /*margin: 0px 0 6px 0;*/
829
+ border-bottom: 1px solid #e5dfdf;
830
+ /*border-radius: 2px;*/
831
+ }
832
+
833
+ .wptb-settings-middle-xs * {
834
+ font-size: 14px !important;
835
+ }
836
+
837
+ .wptb-settings-col-xs-12 {
838
+ flex-basis: 100%;
839
+ max-width: 100%;
840
+ }
841
+
842
+ .wptb-settings-col-xs-8 {
843
+ flex-basis: 66.66666667%;
844
+ max-width: 66.66666667%;
845
+ }
846
+
847
+ .wptb-settings-col-xs-4 {
848
+ flex-basis: 33.33333333%;
849
+ max-width: 33.33333333%;
850
+ position: relative;
851
+ }
852
+
853
+ .wptb-number-input {
854
+ max-width: 75px;
855
+ width: 100%;
856
+ margin: 3px 10px;
857
+ }
858
+
859
+ input[type="number"] {
860
+ height: 28px !important;
861
+ line-height: 1;
862
+ padding: 3px 5px !important;
863
+ }
864
+
865
+ input[type=range]::-moz-focus-inner {
866
+ border: 0;
867
+ }
868
+
869
+ input[type=range]::-moz-focus-outer {
870
+ border: none;
871
+ outline: none;
872
+ }
873
+
874
+ input[type=range]:focus {
875
+ outline: 0;
876
+ }
877
+
878
+ input[type="range"] {
879
+ -webkit-appearance: none;
880
+ -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
881
+ width: 100%;
882
+ height: 8px;
883
+ margin: 0;
884
+ border: none;
885
+ padding: 1px 2px;
886
+ border-radius: 14px;
887
+ background: #cccccc;
888
+ outline: none;
889
+ /* no focus outline */
890
+ }
891
+
892
+ input[type="range"]::-moz-range-track {
893
+ border: inherit;
894
+ background: #cccccc;
895
+ }
896
+
897
+ input[type="range"]::-ms-track {
898
+ border: inherit;
899
+ color: transparent;
900
+ /* don't drawn vertical reference line */
901
+ background: #cccccc;
902
+ }
903
+
904
+ input[type="range"]::-ms-fill-lower,
905
+ input[type="range"]::-ms-fill-upper {
906
+ background: #cccccc;
907
+ }
908
+
909
+ input[type="range"]::-ms-tooltip {
910
+ display: none;
911
+ }
912
+
913
+ input[type=range]::-webkit-slider-thumb:before {
914
+ content: "";
915
+ position: absolute;
916
+ left: -3000px;
917
+ right: 100%;
918
+ top: 50%;
919
+ height: 6px;
920
+ padding: 0;
921
+ background: #1d9b2a;
922
+ transform: translate(0, -50%);
923
+ }
924
+
925
+ input[type=range]::-moz-range-progress {
926
+ background-color: #3B7EC0;
927
+ height: 6px;
928
+ }
929
+
930
+
931
+ /* thumb */
932
+
933
+ input[type="range"]::-webkit-slider-thumb {
934
+ -webkit-appearance: none;
935
+ width: 18px;
936
+ height: 18px;
937
+ border: 1px solid #3B7EC0;
938
+ border-radius: 50%;
939
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #ffffff));
940
+ /* android <= 2.2 */
941
+ background-image: -webkit-linear-gradient(top, #ffffff 0, #ffffff 100%);
942
+ /* older mobile safari and android > 2.2 */
943
+ ;
944
+ background-image: linear-gradient(to bottom, #ffffff 0, #ffffff 100%);
945
+ /* W3C */
946
+ }
947
+
948
+ input[type="range"]::-moz-range-thumb {
949
+ width: 18px;
950
+ height: 18px;
951
+ border: 1px solid #3B7EC0;
952
+ border-radius: 50%;
953
+ background-image: linear-gradient(to bottom, #ffffff 0, #ffffff 100%);
954
+ /* W3C */
955
+ }
956
+
957
+ input[type="range"]::-ms-thumb {
958
+ width: 18px;
959
+ height: 18px;
960
+ border-radius: 50%;
961
+ border: 1px solid #3B7EC0;
962
+ background-image: linear-gradient(to bottom, #ffffff 0, #ffffff 100%);
963
+ /* W3C */
964
+ }
965
+
966
+ .wptb-toggle {
967
+ display: inline-block;
968
+ width: 95%;
969
+ /*padding: 25px 0 10px 0;*/
970
+ }
971
+
972
+ .wptb-toggle input {
973
+ display: none;
974
+ }
975
+
976
+ .wptb-toggle input:checked + i::after {
977
+ -webkit-transform: translateX(20px);
978
+ transform: translateX(20px);
979
+ }
980
+
981
+ .wptb-toggle input:checked + i {
982
+ background: #3B7EC0;
983
+ }
984
+
985
+ .wptb-toggle i {
986
+ float: right;
987
+ padding: 2px;
988
+ width: 40px;
989
+ height: 20px;
990
+ border-radius: 13px;
991
+ vertical-align: middle;
992
+ transition: .25s .09s;
993
+ position: relative;
994
+ background: #d8d9db;
995
+ box-sizing: initial;
996
+ }
997
+
998
+ .wptb-toggle i::after {
999
+ content: " ";
1000
+ display: block;
1001
+ width: 20px;
1002
+ height: 20px;
1003
+ border-radius: 50%;
1004
+ background: #fff;
1005
+ position: absolute;
1006
+ left: 2px;
1007
+ transition: .25s;
1008
+ }
1009
+
1010
+ .wptb-toggle.wptb-toggle2 input:checked + i::after,
1011
+ .wptb-toggle.wptb-size-fixed-auto input:checked + i::after {
1012
+ -webkit-transform: translateX(50px);
1013
+ transform: translateX(50px);
1014
+ }
1015
+
1016
+ .wptb-toggle.wptb-toggle2 i,
1017
+ .wptb-toggle.wptb-size-fixed-auto i {
1018
+ float: left;
1019
+ width: 100px;
1020
+ border-radius: 5px;
1021
+ height: 25px;
1022
+ }
1023
+
1024
+ .wptb-toggle.wptb-toggle2 i:after,
1025
+ .wptb-toggle.wptb-size-fixed-auto i:after {
1026
+ width: 50px;
1027
+ height: 25px;
1028
+ border-radius: 5px;
1029
+ -webkit-transform: translateX(0px);
1030
+ transform: translateX(0px);
1031
+ }
1032
+
1033
+ .wptb-checkbox {
1034
+ display: block;
1035
+ user-select: none;
1036
+ padding-top: 3px;
1037
+ padding-bottom: 3px;
1038
+ }
1039
+
1040
+ .wptb-checkbox span {
1041
+ vertical-align: middle;
1042
+ }
1043
+
1044
+ .wptb-checkbox input[type="checkbox"] {
1045
+ opacity: 0;
1046
+ height: 0;
1047
+ width: 0;
1048
+ display: none;
1049
+ }
1050
+
1051
+ .wptb-checkbox-checkmark {
1052
+ height: 25px;
1053
+ width: 25px;
1054
+ background-color: #d8d9db;
1055
+ display: inline-block;
1056
+ position: relative;
1057
+ border-radius: 3px;
1058
+ margin-left: 5px;
1059
+ }
1060
+
1061
+ .wptb-checkbox:hover input[type="checkbox"] ~ .wptb-checkbox-checkmark {
1062
+ background-color: #6EA4D8;
1063
+ }
1064
+
1065
+ .wptb-checkbox input[type="checkbox"]:checked ~ .wptb-checkbox-checkmark {
1066
+ background-color: #3B7EC0;
1067
+ }
1068
+
1069
+ .wptb-checkbox-checkmark:after {
1070
+ content: "";
1071
+ position: absolute;
1072
+ display: none;
1073
+ }
1074
+
1075
+ .wptb-checkbox input[type="checkbox"]:checked ~ .wptb-checkbox-checkmark:after {
1076
+ display: block;
1077
+ }
1078
+
1079
+ .wptb-checkbox .wptb-checkbox-checkmark:after {
1080
+ left: 10px;
1081
+ top: 7px;
1082
+ width: 6px;
1083
+ height: 11px;
1084
+ border: solid #fff;
1085
+ border-width: 0 2px 2px 0;
1086
+ transform: rotate(45deg);
1087
+ }
1088
+
1089
+ .wptb-column-fixed,
1090
+ .wptb-column-auto {
1091
+ position: absolute;
1092
+ font-size: 15px;
1093
+ width: 50%;
1094
+ height: 100%;
1095
+ text-align: center;
1096
+ line-height: 25px;
1097
+ }
1098
+
1099
+ .wptb-column-fixed {
1100
+ color: #d8d9db;
1101
+ }
1102
+
1103
+ .wptb-column-auto {
1104
+ color: #3B7EC0;
1105
+ right: 0;
1106
+ }
1107
+
1108
+
1109
+ /**
1110
+ * Element Section
1111
+ */
1112
+
1113
+ .wptb-elements-section {
1114
+ /*height: auto;*/
1115
+ grid-area: sidebar-content;
1116
+ }
1117
+
1118
+ #element-options-group {
1119
+ grid-area: sidebar-content;
1120
+ padding-top: 20px;
1121
+ }
1122
+
1123
+ .wptb-settings-section {
1124
+ grid-area: sidebar-content;
1125
+ }
1126
+
1127
+ .wptb-responsive-section {
1128
+ grid-area: sidebar-content;
1129
+ }
1130
+
1131
+ [data-wptb-section] {
1132
+ padding-top: 20px;
1133
+ animation: wptb-basic-appear 0.2s ease-out;
1134
+ }
1135
+
1136
+ .wptb-tabs {
1137
+ width: 100%;
1138
+ margin: 0;
1139
+ padding: 0;
1140
+ background: #ffffff;
1141
+ border-bottom: .5px solid #ccc;
1142
+ max-width: 349px;
1143
+ z-index: 10;
1144
+ }
1145
+
1146
+ ul.wptb-tabs {
1147
+ list-style: none;
1148
+ }
1149
+
1150
+ .wptb-tabs li {
1151
+ float: left;
1152
+ width: 49.3%;
1153
+ margin: 0;
1154
+ }
1155
+
1156
+ .wptb-tabs li:last-of-type {
1157
+ float: right;
1158
+ }
1159
+
1160
+ .wptb-tabs li a {
1161
+ display: block;
1162
+ text-align: center;
1163
+ padding: 18px 10px;
1164
+ font-size: 16px;
1165
+ color: #186cba;
1166
+ text-decoration: none;
1167
+ }
1168
+
1169
+ .wptb-tabs li a:hover {
1170
+ color: #186cba;
1171
+ text-decoration: none;
1172
+ }
1173
+
1174
+ .wptb-tabs li a:focus {
1175
+ -webkit-box-shadow: none;
1176
+ box-shadow: none;
1177
+ }
1178
+
1179
+ .wptb-tabs li .active,
1180
+ .wptb-tabs li .active:hover {
1181
+ color: #186cba;
1182
+ }
1183
+
1184
+
1185
+ .wptb-tabs #wptb-add-elements .active {
1186
+ background: #fff;
1187
+ }
1188
+
1189
+ .wptb-tabs #element-options .active {
1190
+ background: #fff;
1191
+ }
1192
+
1193
+
1194
+ /**
1195
+ * Tabs Content
1196
+ */
1197
+
1198
+ .wptb-tab-content {
1199
+ padding: 0;
1200
+ }
1201
+
1202
+ .wptb-panel-toggle-group {
1203
+ background-color: var(--wptb-plugin-theme-color-light);
1204
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
1205
+ margin: 20px 0;
1206
+ }
1207
+
1208
+ .wptb-panel-toggle {
1209
+ background-color: var(--wptb-plugin-theme-color-light);
1210
+ padding: 10px;
1211
+ display: flex;
1212
+ flex-direction: row;
1213
+ justify-content: space-between;
1214
+ align-items: center;
1215
+ border-bottom: 3px solid var(--wptb-plugin-theme-sidebar-bg);
1216
+ cursor: pointer;
1217
+ }
1218
+
1219
+ .wptb-element-options .wptb-panel-toggle {
1220
+ cursor: pointer;
1221
+ }
1222
+
1223
+ .wptb-panel-toggle .header {
1224
+ text-transform: uppercase;
1225
+ font-size: 90%;
1226
+ display: flex;
1227
+ flex-direction: row;
1228
+ justify-content: center;
1229
+ align-items: center;
1230
+ }
1231
+
1232
+ .wptb-panel-toggle .header .wptb-panel-toggle-group-header-icon {
1233
+ width: 17px;
1234
+ margin-right: 7px;
1235
+ color: var(--wptb-plugin-logo-color);
1236
+ }
1237
+
1238
+ .wptb-panel-toggle .header .wptb-panel-toggle-group-header-icon:empty {
1239
+ display: none;
1240
+ }
1241
+
1242
+ .wptb-panel-toggle .header .wptb-panel-toggle-group-header-icon svg {
1243
+ fill: currentColor;
1244
+ }
1245
+
1246
+ .header .wptb-back-button {
1247
+ margin-right: 10px;
1248
+ }
1249
+
1250
+ .wptb-panel-toggle .toggle-icon {
1251
+ cursor: pointer;
1252
+ }
1253
+
1254
+ .wptb-panel-toggle .toggle-icon::after {
1255
+ content: "\f343";
1256
+ }
1257
+
1258
+ .wptb-panel-toggle-content .wptb-panel-toggle .toggle-icon::after {
1259
+ content: "\f347";
1260
+ }
1261
+
1262
+ .wptb-panel-toggle-target {
1263
+ background-color: var(--wptb-plugin-gray-100);
1264
+ padding: 20px 10px;
1265
+ }
1266
+
1267
+ .wptb-panel-section-toggle-target {
1268
+ background-color: var(--wptb-plugin-gray-100);
1269
+ }
1270
+
1271
+ .wptb-panel-elements-inner-wrapper {
1272
+ display: grid;
1273
+ grid-auto-flow: row;
1274
+ grid-template-columns: 1fr 1fr;
1275
+ grid-gap: 10px;
1276
+ color: var(--wptb-plugin-theme-text-color-main);
1277
+ font-size: 80%;
1278
+ }
1279
+
1280
+ .wptb-section-group-tabbed {
1281
+ display: grid;
1282
+ grid-template-columns: 1fr;
1283
+ grid-template-areas: "header" "tabButtons" "controls";
1284
+ grid-auto-flow: row;
1285
+ grid-template-rows: auto;
1286
+ }
1287
+
1288
+ .wptb-section-group-tabbed-header {
1289
+ grid-area: header;
1290
+ justify-content: center !important;
1291
+ }
1292
+
1293
+ .wptb-section-group-tabbed-tabs-buttons {
1294
+ grid-area: tabButtons;
1295
+ display: flex;
1296
+ flex-direction: row;
1297
+ background-color: var(--wptb-plugin-theme-color-light);
1298
+ text-align: center;
1299
+ justify-content: stretch;
1300
+ border-bottom: 1px solid #E5DFDF;
1301
+ }
1302
+
1303
+ .wptb-section-group-tabbed-tabs-buttons div {
1304
+ width: 100%;
1305
+ margin: 0 !important;
1306
+ font-size: 90%;
1307
+ padding: 7px !important;
1308
+ }
1309
+
1310
+ .wptb-section-group-tab-content {
1311
+ grid-area: controls;
1312
+ /*animation: wptb-basic-appear 0.2s ease-out;*/
1313
+ transition: opacity 0.2s ease-out;
1314
+ }
1315
+
1316
+ .wptb-plugin-non-visible {
1317
+ /*display: none !important;*/
1318
+ height: 0;
1319
+ opacity: 0;
1320
+ pointer-events: none;
1321
+ transition: none !important;
1322
+ }
1323
+
1324
+ .wptb-plugin-non-visible div {
1325
+ height: 0;
1326
+ }
1327
+
1328
+ /**
1329
+ * Elements
1330
+ */
1331
+
1332
+
1333
+ .wptb-elements-container {
1334
+ width: 100%;
1335
+ max-height: inherit;
1336
+ /*display: table;*/
1337
+ padding: 0 0 60px 0;
1338
+ background-color: inherit;
1339
+ }
1340
+
1341
+ .wptb-element {
1342
+ position: relative;
1343
+ background: var(--wptb-plugin-theme-color-light);
1344
+ /*font-size: 15px;*/
1345
+ display: flex;
1346
+ align-items: center;
1347
+ justify-content: center;
1348
+ flex-direction: column;
1349
+ height: 100px;
1350
+ text-align: center;
1351
+ border-radius: 5px;
1352
+ border: 2px solid var(--wptb-plugin-gray-400);
1353
+ transition: all .25s;
1354
+ cursor: move;
1355
+ }
1356
+
1357
+ .wptb-element:nth-child(odd) {
1358
+ /*width: 47.5%;*/
1359
+ /*float: left;*/
1360
+ /*margin: 6px 0 -4px 6px;*/
1361
+ }
1362
+
1363
+ .wptb-element:nth-child(even) {
1364
+ /*width: 47.5%;*/
1365
+ /*float: right;*/
1366
+ /*margin: 6px 5px -4px 0;*/
1367
+ }
1368
+
1369
+ .wptb-element p {
1370
+ margin: 0;
1371
+ }
1372
+
1373
+ .wptb-element:hover {
1374
+ box-shadow: 3px 3px 2px 0.5px rgba(0, 0, 0, 0.2);
1375
+ }
1376
+
1377
+ .wptb-element svg {
1378
+ fill: var(--wptb-plugin-theme-text-color-main) !important;
1379
+ }
1380
+
1381
+ .wptb-element-draggable-icon {
1382
+ position: absolute;
1383
+ top: 0;
1384
+ right: 0;
1385
+ color: var(--wptb-plugin-gray-500) !important;
1386
+ }
1387
+
1388
+ .left {
1389
+ width: 47.5%;
1390
+ float: left;
1391
+ margin: 6px 0 -4px 6px;
1392
+ }
1393
+
1394
+ .right {
1395
+ width: 47.5%;
1396
+ float: right;
1397
+ margin: 6px 5px -4px 0;
1398
+ }
1399
+
1400
+
1401
+ /**
1402
+ * Builder Panel
1403
+ */
1404
+
1405
+ .wptb-builder-panel {
1406
+ display: flex;
1407
+ flex-direction: column;
1408
+ position: relative;
1409
+ /*left: var(--wptb-plugin-sidebar-size-full);*/
1410
+ min-height: 100%;
1411
+ height: 100%;
1412
+ -webkit-transition: all 0.2s ease-out, right 0.2s ease-out;
1413
+ -o-transition: all 0.2s ease-out, right 0.2s ease-out;
1414
+ transition: all 0.2s ease-out, right 0.2s ease-out;
1415
+ width: calc(100% - var(--wptb-plugin-sidebar-size-full));
1416
+ text-align: center;
1417
+ z-index: 100000;
1418
+ }
1419
+
1420
+ [data-wptb-night-mode="true"] .wptb-builder-panel {
1421
+ background-color: var(--wptb-plugin-gray-500);
1422
+ }
1423
+
1424
+ .wptb-left-panel[data-wptb-panel-location="left"] + .wptb-builder-panel {
1425
+ left: var(--wptb-plugin-sidebar-size-full);
1426
+ }
1427
+
1428
+ .wptb-left-panel[data-wptb-panel-location="right"] + .wptb-builder-panel {
1429
+ left: 0;
1430
+ }
1431
+
1432
+
1433
+ .collapsed .wptb-left-panel[data-wptb-panel-location="left"] + .wptb-builder-panel {
1434
+ left: calc(0px + var(--wptb-plugin-left-panel-constant)) !important;
1435
+ width: calc(100% - var(--wptb-plugin-left-panel-constant)) !important;
1436
+ }
1437
+
1438
+
1439
+ .collapsed .wptb-left-panel[data-wptb-panel-location="right"] + .wptb-builder-panel {
1440
+ right: calc(0px - var(--wptb-plugin-left-panel-constant)) !important;
1441
+ width: calc(100% - var(--wptb-plugin-left-panel-constant)) !important;
1442
+ }
1443
+
1444
+ /*.collapsed .wptb-builder-panel {*/
1445
+ /* left: calc(0px + var(--wptb-plugin-left-panel-constant)) !important;*/
1446
+ /* width: calc(100% - var(--wptb-plugin-left-panel-constant)) !important;*/
1447
+ /*}*/
1448
+
1449
+ /**
1450
+ * Table name Setup
1451
+ */
1452
+
1453
+ .wptb-name-setup {
1454
+ /*justify-content: center;*/
1455
+ text-align: start;
1456
+ margin: 0 20px;
1457
+ grid-area: table-name;
1458
+ }
1459
+
1460
+ .wptb-left-panel[data-wptb-panel-location="right"] + .wptb-builder-panel .wptb-name-setup {
1461
+ text-align: end !important;
1462
+ }
1463
+
1464
+ .wptb-left-panel[data-wptb-panel-location="right"] + .wptb-builder-panel .wptb-name-setup input {
1465
+ text-align: end !important;
1466
+ }
1467
+
1468
+ .wptb-plugin-header-close {
1469
+ grid-area: close;
1470
+ }
1471
+
1472
+ #wptb-setup-name {
1473
+ height: 50px;
1474
+ box-shadow: none;
1475
+ border: 1px solid var(--wptb-plugin-gray-300);
1476
+ font-size: 100%;
1477
+ width: 420px;
1478
+ padding: 0 20px;
1479
+ }
1480
+
1481
+ .wptb-messaging {
1482
+ color: white;
1483
+ height: 0;
1484
+ margin: 0 auto;
1485
+ padding: 5px;
1486
+ transition: all 1s 0s;
1487
+ width: 90%;
1488
+ text-align: initial;
1489
+ }
1490
+
1491
+ .wptb-messaging.wptb-success {
1492
+ background: #4caf50;
1493
+ background: -moz-linear-gradient(45deg, #4caf50 0%, #8bc34a 100%);
1494
+ background: -webkit-linear-gradient(45deg, #4caf50 0%, #8bc34a 100%);
1495
+ background: linear-gradient(45deg, #4caf50 0%, #8bc34a 100%);
1496
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4caf50', endColorstr='#8bc34a', GradientType=1);
1497
+ height: auto;
1498
+ }
1499
+
1500
+ .wptb-messaging.wptb-warning {
1501
+ background: #f44336;
1502
+ background: -moz-linear-gradient(45deg, #f44336 0%, #ff5722 100%);
1503
+ background: -webkit-linear-gradient(45deg, #f44336 0%, #ff5722 100%);
1504
+ background: linear-gradient(45deg, #f44336 0%, #ff5722 100%);
1505
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f44336', endColorstr='#ff5722', GradientType=1);
1506
+ height: auto;
1507
+ }
1508
+
1509
+ .wptb-management_table_container {
1510
+ margin: auto;
1511
+ text-align: initial;
1512
+ }
1513
+
1514
+ .wptb-table-setup {
1515
+ justify-content: center;
1516
+ position: relative;
1517
+ z-index: 1;
1518
+ margin: 30px auto;
1519
+ background: #fff;
1520
+ max-width: 700px;
1521
+ overflow-x: auto;
1522
+ overflow-y: hidden;
1523
+ }
1524
+
1525
+ [data-wptb-active-section="manage_cells"] .wptb-table-setup {
1526
+
1527
+ }
1528
+
1529
+ #wptb-cell_mode_background {
1530
+ position: absolute;
1531
+ top: 0;
1532
+ left: 0;
1533
+ right: 0;
1534
+ bottom: 0;
1535
+ background: rgba(49, 59, 71, 0.49);
1536
+ display: none;
1537
+ text-align: initial;
1538
+ }
1539
+
1540
+ #wptb-cell_mode_background.visible {
1541
+ display: block;
1542
+ }
1543
+
1544
+
1545
+ /**
1546
+ * Table
1547
+ */
1548
+
1549
+ table.wptb-table {
1550
+ border-collapse: collapse
1551
+ }
1552
+
1553
+ .wptb-wrapper {
1554
+ margin: 0 auto;
1555
+ padding: 40px;
1556
+ max-width: 960px;
1557
+ text-align: initial;
1558
+ }
1559
+
1560
+ .wptb-table {
1561
+ margin: 20px 0 60px 0;
1562
+ width: 100%;
1563
+ border: 1px solid #ccc;
1564
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
1565
+ display: table;
1566
+ }
1567
+
1568
+ @media screen and (max-width: 580px) {
1569
+ .wptb-table {
1570
+ display: block;
1571
+ }
1572
+ }
1573
+
1574
+ .wptb-row {
1575
+ display: table-row;
1576
+ background: #bebebe;
1577
+ }
1578
+
1579
+ .wptb-row:nth-of-type(odd) {
1580
+ background: #bebebe;
1581
+ }
1582
+
1583
+ .wptb-row.wptb-table-header {
1584
+ font-weight: 900;
1585
+ color: #ffffff;
1586
+ background: #ea6153;
1587
+ }
1588
+
1589
+ .wptb-row.wptb-green {
1590
+ background: #27ae60;
1591
+ }
1592
+
1593
+ .wptb-row.wptb-blue {
1594
+ background: #2980b9;
1595
+ }
1596
+
1597
+ @media screen and (max-width: 580px) {
1598
+ .wptb-row {
1599
+ padding: 14px 0 7px;
1600
+ display: block;
1601
+ }
1602
+
1603
+ .wptb-row.wptb-table-header {
1604
+ padding: 0;
1605
+ height: 6px;
1606
+ }
1607
+
1608
+ .wptb-row.wptb-table-header .wptb-cell {
1609
+ display: none;
1610
+ }
1611
+
1612
+ .wptb-row .wptb-cell {
1613
+ margin-bottom: 10px;
1614
+ }
1615
+
1616
+ .wptb-row .wptb-cell:before {
1617
+ margin-bottom: 3px;
1618
+ content: attr(data-title);
1619
+ min-width: 98px;
1620
+ font-size: 10px;
1621
+ line-height: 10px;
1622
+ font-weight: bold;
1623
+ text-transform: uppercase;
1624
+ color: #969696;
1625
+ display: block;
1626
+ }
1627
+ }
1628
+
1629
+ .wptb-cell {
1630
+ padding: 12px 12px;
1631
+ display: table-wptb-cell;
1632
+ }
1633
+
1634
+ @media screen and (max-width: 580px) {
1635
+ /* .wptb-cell {
1636
+ padding: 2px 16px;
1637
+ display: block;
1638
+ }*/
1639
+ }
1640
+
1641
+ .wptb-preview-table {
1642
+ table-layout: fixed;
1643
+ font-size: 15px;
1644
+ display: table;
1645
+ border-collapse: collapse !important;
1646
+ margin: auto;
1647
+ width: auto;
1648
+ }
1649
+
1650
+ .wptb-preview-table.wptb-preview-table-auto-width {
1651
+ width: auto;
1652
+ }
1653
+
1654
+ .wptb-preview-table-manage-cells tbody > tr > td::after {
1655
+ content: '';
1656
+ display: block;
1657
+ position: absolute;
1658
+ top: 0;
1659
+ right: 0;
1660
+ left: 0;
1661
+ bottom: 0;
1662
+ z-index: 100;
1663
+ }
1664
+
1665
+ .wptb-preview-table-manage-cells td:hover::after {
1666
+ background: rgba(207, 218, 239, 0.2);
1667
+ border-color: inherit;
1668
+ }
1669
+
1670
+ .wptb-preview-table p {
1671
+ margin: 0;
1672
+ font-size: 15px;
1673
+ word-wrap: break-word;
1674
+ overflow-wrap: break-word;
1675
+ word-break: break-word;
1676
+ }
1677
+
1678
+ .wptb-preview-table ul {
1679
+ list-style-type: disc;
1680
+ margin-left: 15px;
1681
+ }
1682
+
1683
+ .wptb-preview-table tr {
1684
+ display: table-row;
1685
+ background: #fcfcfc;
1686
+ }
1687
+
1688
+ .wptb-preview-table tr:nth-of-type(odd) {
1689
+ background: #eeeeee;
1690
+ }
1691
+
1692
+ .wptb-state-dragging td {
1693
+ cursor: all-scroll;
1694
+ }
1695
+
1696
+ .wptb-preview-table td {
1697
+ padding: 15px;
1698
+ position: relative;
1699
+ box-sizing: content-box;
1700
+ }
1701
+
1702
+ .wptb-preview-table td.wptb-td-default-width {
1703
+ width: 100px;
1704
+ }
1705
+
1706
+ .wptb-preview-table .wptb-row td.wptb-highlighted,
1707
+ .wptb-state-dragging td:hover {
1708
+ outline: 1px solid #acc1e2;
1709
+ }
1710
+
1711
+ .wptb-preview-table .wptb-row.wptb-highlighted-row {
1712
+ background-color: hsla(210, 53%, 49%, 0.34);
1713
+ border: 1px solid pink;
1714
+ }
1715
+
1716
+ .wptb-preview-table .wptb-row td.wptb-highlighted-row-first {
1717
+ background-color: hsla(210, 53%, 49%, 0.34);
1718
+ border-bottom: 1px solid pink;
1719
+ border-left: 1px solid pink;
1720
+ border-right: inherit;
1721
+ border-top: 1px solid pink;
1722
+ }
1723
+
1724
+ .wptb-preview-table .wptb-row td.wptb-highlighted-row-inner {
1725
+ background-color: hsla(210, 53%, 49%, 0.34);
1726
+ border-bottom: 1px solid pink;
1727
+ border-left: inherit;
1728
+ border-right: inherit;
1729
+ border-top: 1px solid pink;
1730
+ }
1731
+
1732
+ .wptb-preview-table .wptb-row td.wptb-highlighted-row-last {
1733
+ background-color: hsla(210, 53%, 49%, 0.34);
1734
+ border-bottom: 1px solid pink;
1735
+ border-left: inherit;
1736
+ border-right: 1px solid pink;
1737
+ border-top: 1px solid pink;
1738
+ }
1739
+
1740
+ .wptb-preview-table .wptb-row td.wptb-highlighted-column-first {
1741
+ background-color: hsla(210, 53%, 49%, 0.34);
1742
+ border-bottom: inherit;
1743
+ border-left: 1px solid pink;
1744
+ border-right: 1px solid pink;
1745
+ border-top: 1px solid pink;
1746
+ }
1747
+
1748
+ .wptb-preview-table .wptb-row td.wptb-highlighted-column-inner {
1749
+ background-color: hsla(210, 53%, 49%, 0.34);
1750
+ border-bottom: inherit;
1751
+ border-left: 1px solid pink;
1752
+ border-right: 1px solid pink;
1753
+ border-top: inherit;
1754
+ }
1755
+
1756
+ .wptb-preview-table .wptb-row td.wptb-highlighted-column-last {
1757
+ background-color: hsla(210, 53%, 49%, 0.34);
1758
+ border-bottom: 1px solid pink;
1759
+ border-left: 1px solid pink;
1760
+ border-right: 1px solid pink;
1761
+ border-top: inherit;
1762
+ }
1763
+
1764
+ .wptb-row td:empty::before {
1765
+ content: 'Cell';
1766
+ display: block;
1767
+ font-weight: normal;
1768
+ font-size: 80%;
1769
+ text-align: center;
1770
+ color: #969fa6;
1771
+ }
1772
+
1773
+ .wptb-row td:empty::after {
1774
+ content: '';
1775
+ display: block;
1776
+ border: 1px dashed #969fa6;
1777
+ position: absolute;
1778
+ top: 2px;
1779
+ right: 2px;
1780
+ bottom: 2px;
1781
+ left: 2px;
1782
+ }
1783
+
1784
+ .wptb-preview-table.wptb-table-preview-head .wptb-row:first-child td:empty::before {
1785
+ content: 'Header';
1786
+ }
1787
+
1788
+ .wptb-ph-element {
1789
+ position: relative;
1790
+ border: 1px solid #fff0;
1791
+ min-height: 15px;
1792
+ }
1793
+
1794
+
1795
+ /*
1796
+ ** Image Style
1797
+ */
1798
+
1799
+ .wptb-image-wrapper img {
1800
+ width: 100%;
1801
+ display: block;
1802
+ padding: 0;
1803
+ max-width: 100%;
1804
+ height: auto;
1805
+ transition: all 0.2s ease-out;
1806
+ }
1807
+
1808
+ .wptb-image-wrapper a {
1809
+ display: block;
1810
+ max-width: 100%;
1811
+ position: relative;
1812
+ margin: auto;
1813
+ text-decoration: none;
1814
+ }
1815
+
1816
+ .wptb-icon-image-button {
1817
+ display: block;
1818
+ padding: 5px;
1819
+ background: #747d84;
1820
+ border-radius: 5px;
1821
+ color: black;
1822
+ cursor: pointer;
1823
+ }
1824
+
1825
+ .wptb-image-wrapper::after {
1826
+ content: "";
1827
+ display: block;
1828
+ height: 0;
1829
+ width: 100%;
1830
+ clear: both;
1831
+ }
1832
+
1833
+
1834
+ /*
1835
+ ** Button Style
1836
+ */
1837
+
1838
+ .wptb-button-wrapper {
1839
+ display: flex;
1840
+ align-items: center;
1841
+ justify-content: center;
1842
+ }
1843
+
1844
+ .wptb-button-wrapper > a {
1845
+ text-decoration: none;
1846
+ max-width: 100%;
1847
+ }
1848
+
1849
+ .wptb-button {
1850
+ padding: 16px;
1851
+ background: #329d3f;
1852
+ color: #ffffff;
1853
+ cursor: pointer;
1854
+ border-radius: 5px;
1855
+ border: 0;
1856
+ box-shadow: none;
1857
+ transition: all 0.2s ease-out;
1858
+ display: flex;
1859
+ justify-content: center;
1860
+ align-items: center;
1861
+ }
1862
+
1863
+ .wptb-button-icon {
1864
+ margin: 0 5px;
1865
+ order: -1;
1866
+ width: 25px;
1867
+ height: 25px;
1868
+ display: flex;
1869
+ justify-content: center;
1870
+ align-items: center;
1871
+ }
1872
+
1873
+ .wptb-button-icon svg {
1874
+ width: 100%;
1875
+ height: 100%;
1876
+ fill: currentColor;
1877
+ }
1878
+
1879
+ .wptb-button-icon[data-wptb-button-icon-src=""] {
1880
+ display: none;
1881
+ }
1882
+
1883
+ [data-wptb-button-icon-position='right'] .wptb-button-icon {
1884
+ order: 2
1885
+ }
1886
+
1887
+ .wptb-plugin-button-order-right .wptb-button-icon {
1888
+ order: 2;
1889
+ }
1890
+
1891
+ .wptb-button:hover {
1892
+ color: #ffffff;
1893
+ }
1894
+
1895
+
1896
+ /**
1897
+ * Table Generator
1898
+ */
1899
+
1900
+ .wptb-table-generator {
1901
+ text-align: center;
1902
+ margin: 60px auto 20px auto;
1903
+ }
1904
+
1905
+ .wptb-table-generator input {
1906
+ margin: 0;
1907
+ }
1908
+
1909
+ .wptb-generator-btn {
1910
+ width: 92%;
1911
+ padding: 15px;
1912
+ background: var(--wptb-plugin-logo-color);
1913
+ color: white;
1914
+ cursor: pointer;
1915
+ border: none;
1916
+ box-shadow: none;
1917
+ border-radius: 5px;
1918
+ }
1919
+
1920
+ .wptb-input-number {
1921
+ width: 80px;
1922
+ padding: 0 12px;
1923
+ vertical-align: top;
1924
+ text-align: center;
1925
+ outline: none;
1926
+ }
1927
+
1928
+ .wptb-input-number,
1929
+ .wptb-input-number-decrement,
1930
+ .wptb-input-number-increment {
1931
+ border: 1px solid #ccc;
1932
+ height: 40px;
1933
+ }
1934
+
1935
+ .wptb-input-number-decrement,
1936
+ .wptb-input-number-increment {
1937
+ display: inline-block;
1938
+ width: 30px;
1939
+ line-height: 38px;
1940
+ background: #f1f1f1;
1941
+ color: #444;
1942
+ text-align: center;
1943
+ font-weight: bold;
1944
+ cursor: pointer;
1945
+ user-select: none;
1946
+ }
1947
+
1948
+ .wptb-input-number-decrement:active,
1949
+ .wptb-input-number-increment:active {
1950
+ background: #ddd;
1951
+ }
1952
+
1953
+ .wptb-input-number-decrement {
1954
+ border-right: none;
1955
+ border-radius: 4px 0 0 4px;
1956
+ }
1957
+
1958
+ .wptb-input-number-increment {
1959
+ border-left: none;
1960
+ border-radius: 0 4px 4px 0;
1961
+ }
1962
+
1963
+ .wptb-allow-drop {
1964
+ background: #b5e0d7;
1965
+ }
1966
+
1967
+ #wpcd_fixed_toolbar {
1968
+ min-height: 55px;
1969
+ text-align: center;
1970
+ position: sticky !important;
1971
+ top: 39px;
1972
+ z-index: 100;
1973
+ display: inline-block;
1974
+ }
1975
+
1976
+ #wpcd_fixed_toolbar > div.toolbar-active {
1977
+ display: block !important;
1978
+ }
1979
+
1980
+
1981
+ /*
1982
+ ** Button Size Selector Style
1983
+ */
1984
+
1985
+ .wptb-btn-size-btn {
1986
+ padding: 8px 15px;
1987
+ margin: 0;
1988
+ vertical-align: middle;
1989
+ border: solid 1px #ccc;
1990
+ font-size: 12px;
1991
+ border-radius: 4px;
1992
+ cursor: pointer;
1993
+ }
1994
+
1995
+ .wptb-btn-size-switcher {
1996
+ background: linear-gradient(to bottom, white, #eeeeee);
1997
+ display: table-cell;
1998
+ border-right: none;
1999
+ border-radius: 0;
2000
+ color: #433f33;
2001
+ }
2002
+
2003
+ .wptb-btn-size-switcher:first-child {
2004
+ border-radius: 4px 0 0 4px;
2005
+ }
2006
+
2007
+ .wptb-btn-size-switcher:last-child {
2008
+ border-radius: 0 4px 4px 0;
2009
+ border-right: solid 1px #ccc;
2010
+ }
2011
+
2012
+ .wptb-btn-size-switcher:hover {
2013
+ background: #fff;
2014
+ }
2015
+
2016
+ .wptb-btn-size-switcher:active {
2017
+ box-shadow: inset 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
2018
+ }
2019
+
2020
+ .wptb-btn-size-switcher.bnt-selected {
2021
+ background: #fff;
2022
+ box-shadow: inset 0px 0px 20px 4px rgba(0, 0, 0, 0.15);
2023
+ cursor: default;
2024
+ }
2025
+
2026
+
2027
+ /* customize tinymce Editor */
2028
+
2029
+ .mce-content-body {
2030
+ min-height: 19px;
2031
+ word-break: break-word;
2032
+ }
2033
+
2034
+ .mce-tinymce.mce-tinymce-inline.mce-container.mce-panel {
2035
+ left: 50% !important;
2036
+ transform: translate(-50%, 0) !important;
2037
+ border: 1px solid var(--wptb-plugin-gray-300) !important;
2038
+ }
2039
+
2040
+ .mce-container.mce-panel.mce-floatpanel.mce-window.mce-in {
2041
+ z-index: 100100 !important;
2042
+ }
2043
+
2044
+ .mce-container.mce-panel.mce-floatpanel.mce-menu.mce-animate.mce-fixed.mce-menu-align.mce-in {
2045
+ z-index: 100101 !important;
2046
+ }
2047
+
2048
+ .mce-edit-focus {
2049
+ outline: none !important;
2050
+ }
2051
+
2052
+ .mce-btn button {
2053
+ padding: 14px 18px !important;
2054
+ }
2055
+
2056
+ .mce-ico {
2057
+ font-size: 20px !important;
2058
+ }
2059
+
2060
+ .mce-content-body [data-mce-selected="inline-boundary"] {
2061
+ background: transparent !important;
2062
+ }
2063
+
2064
+ br[data-mce-bogus="1"] {
2065
+ display: none;
2066
+ }
2067
+
2068
+ .wptb-text-container .mce-content-body a {
2069
+ color: rgb(30, 115, 190);
2070
+ }
2071
+
2072
+ .wptb-text-container p:empty:not(:focus)::before {
2073
+ content: attr(data-placeholder);
2074
+ opacity: 0.4;
2075
+ }
2076
+
2077
+ .wptb-droppable.wptb-cell ul,
2078
+ .wptb-droppable.wptb-cell ol {
2079
+ border: 1px solid transparent;
2080
+ margin: 0;
2081
+ padding: 1em 0.2em 0.4em;
2082
+ width: 100%;
2083
+ }
2084
+
2085
+ .wptb-droppable.wptb-cell ul article,
2086
+ .wptb-droppable.wptb-cell ol article {
2087
+ align-items: flex-start;
2088
+ border: 1px solid transparent;
2089
+ display: flex;
2090
+ flex-direction: row;
2091
+ justify-content: flex-start;
2092
+ list-style-type: none;
2093
+ margin-bottom: 0;
2094
+ padding: 0;
2095
+ position: relative;
2096
+ width: 100%;
2097
+ }
2098
+
2099
+ .wptb-list-container ul li {
2100
+ list-style: none;
2101
+ margin: 0px;
2102
+ }
2103
+
2104
+ .wptb-droppable.wptb-cell li .wptb-list-item-content {
2105
+ min-height: 30px;
2106
+ }
2107
+
2108
+ .wptb-droppable.wptb-cell li .wptb-list-item-content p {
2109
+ word-wrap: break-word;
2110
+ line-height: 30px;
2111
+ font-size: 15px;
2112
+ padding-left: 20px;
2113
+ }
2114
+
2115
+ .wptb-list-container ul li > div > p::before {
2116
+ content: attr(data-list-style-type-index);
2117
+ display: inline-block;
2118
+ line-height: 30px;
2119
+ padding: 0 5px 0 0;
2120
+ /* font-size: 15px; */
2121
+ font-family: verdana, sans-serif;
2122
+ cursor: text;
2123
+ min-width: fit-content;
2124
+ }
2125
+
2126
+ .wptb-droppable.wptb-cell li .wptb-list-item-content p span.content {
2127
+ display: block;
2128
+ }
2129
+
2130
+ .wptb-list-container ul li > div > p::before {
2131
+ margin-left: -20px;
2132
+ }
2133
+
2134
+ .wptb-list-container ul li > div > p.wptb-list-style-type-disc::before {
2135
+ content: '\25CF';
2136
+ }
2137
+
2138
+ .wptb-list-container ul li > div > p.wptb-list-style-type-circle::before {
2139
+ content: '\25CB';
2140
+ }
2141
+
2142
+ .wptb-list-container ul li > div > p.wptb-list-style-type-square::before {
2143
+ content: '\25A0';
2144
+ }
2145
+
2146
+ .wptb-list-container ul li > div > p.wptb-list-style-type-none::before {
2147
+ content: '';
2148
+ padding-right: 0px;
2149
+ }
2150
+
2151
+ .wptb-droppable.wptb-cell .wptb-directlyhovered {
2152
+ outline: 1px solid #1ea5e5 !important;
2153
+ position: relative;
2154
+ /*width: 100%;*/
2155
+ }
2156
+
2157
+ .wptb-cell .wptb-ph-element.edit-active {
2158
+ outline: 2px solid #1ea5e5 !important;
2159
+ position: relative;
2160
+ }
2161
+
2162
+ .wptb-droppable.wptb-cell .wptb-list-container.wptb-directlyhovered {
2163
+ display: block;
2164
+ }
2165
+
2166
+ .wptb-droppable.wptb-cell .wptb-directlyhovered .wptb-directlyhovered {
2167
+ display: flex;
2168
+ width: 100%;
2169
+ }
2170
+
2171
+ .wptb-droppable.wptb-cell .wptb-list-container.wptb-directlyhovered .wptb-directlyhovered {
2172
+ display: list-item;
2173
+ border: none !important;
2174
+ }
2175
+
2176
+ .wptb-droppable.wptb-cell .wptb-list-container.wptb-directlyhovered .wptb-directlyhovered:before {
2177
+ content: "";
2178
+ display: inline-block;
2179
+ position: absolute;
2180
+ top: 0;
2181
+ right: 0;
2182
+ bottom: 0;
2183
+ left: 0;
2184
+ border: 1px solid #1ea5e5 !important;
2185
+ }
2186
+
2187
+ .wptb-list-container {
2188
+ /*padding-left: 20px;*/
2189
+ }
2190
+
2191
+ .wptb-actions {
2192
+ align-items: center;
2193
+ background-color: #1ea5e5;
2194
+ border-top-left-radius: 4px;
2195
+ border-top-right-radius: 4px;
2196
+ /*border-bottom: 3px solid #fff0;*/
2197
+ box-sizing: content-box;
2198
+ color: white;
2199
+ justify-content: space-between;
2200
+ line-height: 1em;
2201
+ padding: 0px 5px;
2202
+ position: absolute;
2203
+ height: 15px;
2204
+ font-size: 9pt;
2205
+ display: none;
2206
+ max-width: 70px;
2207
+ z-index: 100001;
2208
+ box-sizing: border-box;
2209
+ }
2210
+
2211
+ .wptb-ph-element:hover .wptb-actions {
2212
+ display: inline;
2213
+ }
2214
+
2215
+ .wptb-actions .dashicons.dashicons-admin-page.wptb-duplicate-action {
2216
+ font-size: 10pt;
2217
+ margin: 0em 0.05em 0 0.1em;
2218
+ width: 16px;
2219
+ height: 16px;
2220
+ cursor: pointer;
2221
+ }
2222
+
2223
+ .wptb-actions .dashicons.wptb-prebuilt-mark-action {
2224
+ font-size: 10pt;
2225
+ margin: 0em 0.05em 0 0.1em;
2226
+ width: 16px;
2227
+ height: 16px;
2228
+ cursor: pointer;
2229
+ }
2230
+
2231
+ .wptb-actions .dashicons.dashicons-trash.wptb-delete-action {
2232
+ font-size: 10pt;
2233
+ margin: 0em 0.1em 0 0.05em;
2234
+ width: 16px;
2235
+ height: 16px;
2236
+ order: 2;
2237
+ cursor: pointer;
2238
+ }
2239
+
2240
+ .wptb-cell-management .wptb-button {
2241
+ background: #3e99ca;
2242
+ color: #ffffff;
2243
+ border: none;
2244
+ border-radius: 2px;
2245
+ padding: .4em 0;
2246
+ width: 100%;
2247
+ box-shadow: 2px 1px 0px 0px rgba(13, 85, 126, 0.71);
2248
+ }
2249
+
2250
+ .wptb-cell-management .wptb-button[disabled] {
2251
+ display: none;
2252
+ }
2253
+
2254
+ .wptb-space-between {
2255
+ min-height: 10px;
2256
+ width: 100%;
2257
+ }
2258
+
2259
+ .wptb-ph-element.wptb-directlyhovered.wptb-moving-mode {
2260
+ outline: 0px !important;
2261
+ }
2262
+
2263
+ .wptb-ph-element.wptb-ondragenter::before {
2264
+ content: "";
2265
+ display: block;
2266
+ position: absolute;
2267
+ top: 0;
2268
+ bottom: 0;
2269
+ left: 0;
2270
+ right: 0;
2271
+ z-index: 101000;
2272
+ }
2273
+
2274
+ .wptb-ph-element.wptb-moving-mode {
2275
+ opacity: .4;
2276
+ -webkit-transform: scale(0.9) translate(-5%, -5%);
2277
+ -ms-transform: scale(0.9) translate(-5%, -5%);
2278
+ transform: scale(0.9) translate(-5%, -5%);
2279
+ -webkit-transition: all .2s ease-in-out;
2280
+ -o-transition: all .2s ease-in-out;
2281
+ transition: all .2s ease-in-out;
2282
+ }
2283
+
2284
+ .wptb-drop-handle {
2285
+ height: 11px;
2286
+ position: absolute;
2287
+ z-index: 101000;
2288
+ display: none;
2289
+ }
2290
+
2291
+ .wptb-drop-handle::after {
2292
+ content: attr(data-text);
2293
+ background-color: dodgerblue;
2294
+ color: white;
2295
+ display: block;
2296
+ font-variant: small-caps;
2297
+ position: relative;
2298
+ text-align: center;
2299
+ width: 100%;
2300
+ height: 100%;
2301
+ font-size: 11px;
2302
+ line-height: 1;
2303
+ text-transform: uppercase;
2304
+ box-sizing: border-box;
2305
+ }
2306
+
2307
+ .wptb-drop-border-marker {
2308
+ position: absolute;
2309
+ width: 1px;
2310
+ height: 1px;
2311
+ z-index: 101000;
2312
+ }
2313
+
2314
+ .wptb-drop-handle.wptb-moving-into-same-elem,
2315
+ .wptb-drop-border-marker.wptb-moving-into-same-elem {
2316
+ opacity: 0;
2317
+ visibility: hidden;
2318
+ }
2319
+
2320
+ .wptb-drop-border-marker > div {
2321
+ position: absolute;
2322
+ background: #1ea9eb;
2323
+ }
2324
+
2325
+ .wptb-drop-border-marker-top {
2326
+ top: 0;
2327
+ left: 0;
2328
+ height: 1px;
2329
+ }
2330
+
2331
+ .wptb-drop-border-marker-right {
2332
+ top: 0;
2333
+ width: 1px;
2334
+ }
2335
+
2336
+ .wptb-drop-border-marker-bottom {
2337
+ left: 0;
2338
+ height: 1px;
2339
+ }
2340
+
2341
+ .wptb-drop-border-marker-left {
2342
+ top: 0;
2343
+ left: 0;
2344
+ width: 1px;
2345
+ }
2346
+
2347
+ .wptb-space-between.visible:empty::before {
2348
+ background-color: dodgerblue;
2349
+ border: 1px solid dodgerblue;
2350
+ color: white;
2351
+ content: 'drop here';
2352
+ display: block;
2353
+ font-variant: small-caps;
2354
+ margin: 2px 5%;
2355
+ padding: 0.5em 0;
2356
+ position: relative;
2357
+ text-align: center;
2358
+ width: 90%;
2359
+ }
2360
+
2361
+ .wptb-draggable {
2362
+ border: none;
2363
+ }
2364
+
2365
+ .wptb-actions .dashicons.dashicons-move.wptb-move-action {
2366
+ font-size: 14px !important;
2367
+ cursor: move;
2368
+ width: 16px;
2369
+ height: 16px;
2370
+ order: -1;
2371
+ }
2372
+
2373
+ .wptb-no-cell-action:not(.visible),
2374
+ .wptb-single-action:not(.visible),
2375
+ .wptb-multiple-select-action:not(.visible) {
2376
+ cursor: not-allowed;
2377
+ opacity: 0.3;
2378
+ }
2379
+
2380
+ .wptb-item-dragging {
2381
+ background-color: purple;
2382
+ min-height: 30px;
2383
+ min-width: 30px;
2384
+ position: absolute;
2385
+ transition: all 0.2s ease;
2386
+ transition-property: left, top;
2387
+ width: auto;
2388
+ z-index: 11000;
2389
+ }
2390
+
2391
+ .wptb-range-input {
2392
+ height: 20px;
2393
+ position: relative;
2394
+ }
2395
+
2396
+ .wptb-range-input .slider {
2397
+ background-color: white;
2398
+ border: 1px solid #4b88c4;
2399
+ border-radius: 200px;
2400
+ box-sizing: border-box;
2401
+ height: 20px;
2402
+ left: 2px;
2403
+ position: absolute;
2404
+ top: 0;
2405
+ width: 20px;
2406
+ z-index: 10;
2407
+ }
2408
+
2409
+ .wptb-range-input .rail {
2410
+ background: #cccccc;
2411
+ border-radius: 14px;
2412
+ bottom: 6px;
2413
+ height: 8px;
2414
+ position: absolute;
2415
+ width: 100%;
2416
+ z-index: 1;
2417
+ }
2418
+
2419
+ .wptb-preview-table.wptb-table-preview-head .wptb-row:first-child td.wptb-drop-here-empty:empty::before,
2420
+ .wptb-row td.wptb-drop-here-empty:empty::before {
2421
+ background-color: dodgerblue;
2422
+ border: 1px solid dodgerblue;
2423
+ box-sizing: border-box;
2424
+ color: white;
2425
+ content: 'drop here';
2426
+ display: block;
2427
+ font-size: 1em;
2428
+ font-variant: small-caps;
2429
+ padding: 0.2em 0.4em;
2430
+ text-align: center;
2431
+ width: 100%;
2432
+ }
2433
+
2434
+ td[class*="wptb-fused-cell"] {
2435
+ display: none !important;
2436
+ }
2437
+
2438
+ .wptb-size-s .wptb-button {
2439
+ border-radius: .2rem;
2440
+ padding: .35rem .6rem;
2441
+ max-width: 100%;
2442
+ }
2443
+
2444
+ .wptb-size-s .wptb-button p {
2445
+ font-size: .875rem;
2446
+ line-height: 1.5;
2447
+ }
2448
+
2449
+ .wptb-size-m .wptb-button {
2450
+ border-radius: .3rem;
2451
+ padding: .475rem .85rem;
2452
+ max-width: 100%;
2453
+ }
2454
+
2455
+ .wptb-size-m .wptb-button p {
2456
+ font-size: 1.125rem;
2457
+ line-height: 1.5;
2458
+ }
2459
+
2460
+ .wptb-size-l .wptb-button {
2461
+ border-radius: .3rem;
2462
+ padding: .6rem 1.2rem;
2463
+ max-width: 100%;
2464
+ }
2465
+
2466
+ .wptb-size-l .wptb-button p {
2467
+ font-size: 1.25rem;
2468
+ line-height: 1.5;
2469
+ }
2470
+
2471
+ .wptb-size-xl .wptb-button {
2472
+ border-radius: .4rem;
2473
+ padding: .8rem 1.35rem;
2474
+ max-width: 100%;
2475
+ }
2476
+
2477
+ .wptb-size-xl .wptb-button p {
2478
+ font-size: 1.35rem;
2479
+ line-height: 1.5;
2480
+ }
2481
+
2482
+ [class*=wptb-element-text-] p {
2483
+ color: inherit !important;
2484
+ font-size: inherit !important;
2485
+ }
2486
+
2487
+ .wptb-split-page-title-action a,
2488
+ .wptb-split-page-title-action a:active,
2489
+ .wptb-split-page-title-action .wptb-expander::after {
2490
+ padding: 6px 10px;
2491
+ position: relative;
2492
+ top: -3px;
2493
+ text-decoration: none;
2494
+ border: 1px solid #ccc;
2495
+ border-radius: 2px;
2496
+ background: #f7f7f7;
2497
+ text-shadow: none;
2498
+ font-weight: 600;
2499
+ font-size: 13px;
2500
+ line-height: normal;
2501
+ color: #0073aa;
2502
+ cursor: pointer;
2503
+ outline: 0;
2504
+ }
2505
+
2506
+ .wptb-split-page-title-action a:hover {
2507
+ color: #fff;
2508
+ background-color: #1f8abb;
2509
+ }
2510
+
2511
+ .wptb-column-title-mobile {
2512
+ display: none;
2513
+ }
2514
+
2515
+
2516
+ /* Star Rating */
2517
+
2518
+ .wptb-star_rating-container {
2519
+ text-align: center;
2520
+ }
2521
+
2522
+ .wptb-rating-stars-box {
2523
+ text-align: center;
2524
+ display: inline-block;
2525
+ padding: 7px;
2526
+ }
2527
+
2528
+ .wptb-rating-stars-box ul {
2529
+ list-style-type: none;
2530
+ padding: 0;
2531
+ -moz-user-select: none;
2532
+ -webkit-user-select: none;
2533
+ padding: 0.5em 0.2em 0.2em;
2534
+ }
2535
+
2536
+ .wptb-rating-stars-box ul li {
2537
+ display: inline-block;
2538
+ }
2539
+
2540
+ .wptb-rating-stars-box ul > li.wptb-rating-star {
2541
+ color: #ccc;
2542
+ cursor: pointer;
2543
+ margin: 0px;
2544
+ position: relative;
2545
+ width: 20px;
2546
+ height: 20px;
2547
+ }
2548
+
2549
+ .wptb-rating-stars-box ul > li.wptb-rating-star span {
2550
+ position: absolute;
2551
+ height: 100%;
2552
+ width: 100%;
2553
+ top: 0px;
2554
+ left: 0px;
2555
+ z-index: 10;
2556
+ }
2557
+
2558
+ .wptb-rating-stars-box ul > li.wptb-rating-star span.wptb-rating-star-left-signal-part,
2559
+ .wptb-rating-stars-box ul > li.wptb-rating-star span.wptb-rating-star-right-signal-part {
2560
+ height: 100%;
2561
+ width: 50%;
2562
+ z-index: 20;
2563
+ }
2564
+
2565
+ .wptb-rating-stars-box ul > li.wptb-rating-star span.wptb-rating-star-left-signal-part {
2566
+ left: 0px;
2567
+ }
2568
+
2569
+ .wptb-rating-stars-box ul > li.wptb-rating-star span.wptb-rating-star-left-signal-part span.wptb-rating-star-zero-set {
2570
+ left: 0px;
2571
+ width: 40%;
2572
+ height: 100%;
2573
+ top: 0px;
2574
+ z-index: 30px;
2575
+ }
2576
+
2577
+ .wptb-rating-stars-box ul > li.wptb-rating-star span.wptb-rating-star-right-signal-part {
2578
+ right: 0px;
2579
+ left: auto;
2580
+ }
2581
+
2582
+ .wptb-rating-stars-box ul > li.wptb-rating-star span {
2583
+ display: block;
2584
+ }
2585
+
2586
+ .wptb-rating-stars-box ul > li.wptb-rating-star span.wptb-filled-rating-star {
2587
+ display: none;
2588
+ }
2589
+
2590
+ .wptb-rating-stars-box ul > li.wptb-rating-star span.wptb-half-filled-rating-star {
2591
+ display: none;
2592
+ }
2593
+
2594
+ .wptb-rating-stars-box ul > li.wptb-rating-star span.wptb-not-filled-rating-star {
2595
+ fill: #ccc;
2596
+ }
2597
+
2598
+ .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-hover-half span.wptb-not-filled-rating-star {
2599
+ display: none;
2600
+ }
2601
+
2602
+ .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-hover-half span.wptb-half-filled-rating-star {
2603
+ display: block;
2604
+ fill: #FF912C;
2605
+ opacity: 0.5;
2606
+ }
2607
+
2608
+ .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-hover-half span.wptb-filled-rating-star {
2609
+ display: none;
2610
+ }
2611
+
2612
+ .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-hover-full span.wptb-not-filled-rating-star {
2613
+ display: none;
2614
+ }
2615
+
2616
+ .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-hover-full span.wptb-half-filled-rating-star {
2617
+ display: none;
2618
+ }
2619
+
2620
+ .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-hover-full span.wptb-filled-rating-star {
2621
+ display: block;
2622
+ fill: #FF912C;
2623
+ opacity: 0.5;
2624
+ }
2625
+
2626
+ .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-selected-half.wptb-rating-star-hover-half span,
2627
+ .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-selected-half.wptb-rating-star-hover-full span,
2628
+ .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-selected-full.wptb-rating-star-hover-half span,
2629
+ .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-selected-full.wptb-rating-star-hover-full span {
2630
+ opacity: 1;
2631
+ }
2632
+
2633
+ .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-selected-half span.wptb-filled-rating-star {
2634
+ display: none;
2635
+ }
2636
+
2637
+ .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-selected-half.wptb-rating-star-hover-full span.wptb-filled-rating-star {
2638
+ display: block;
2639
+ fill: #FF912C;
2640
+ opacity: 0.5;
2641
+ }
2642
+
2643
+ .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-selected-half span.wptb-not-filled-rating-star {
2644
+ display: none;
2645
+ }
2646
+
2647
+ .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-selected-half span.wptb-half-filled-rating-star {
2648
+ display: block;
2649
+ fill: #FF912C;
2650
+ }
2651
+
2652
+ .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-selected-full span.wptb-filled-rating-star {
2653
+ display: block;
2654
+ fill: #FF912C;
2655
+ }
2656
+
2657
+ .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-selected-full span.wptb-not-filled-rating-star {
2658
+ display: none;
2659
+ }
2660
+
2661
+ .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-selected-full span.wptb-half-filled-rating-star {
2662
+ display: none;
2663
+ }
2664
+
2665
+ .wptb-rating-stars-box ul > li.wptb-rating-star span svg {
2666
+ display: block;
2667
+ }
2668
+
2669
+
2670
+ /*.wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-hover {
2671
+ color:#FF912C;
2672
+ opacity: 0.4;
2673
+ }
2674
+
2675
+ .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-selected {
2676
+ color:#FF912C;
2677
+ }
2678
+
2679
+
2680
+ .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-selected.wptb-rating-star-hover {
2681
+ opacity: 1;
2682
+ }
2683
+
2684
+ .wptb-rating-stars-box ul > li.wptb-rating-star:before {
2685
+ content: "☆";
2686
+ font-size: inherit;
2687
+ height: inherit;
2688
+ line-height: inherit;
2689
+ color: #ccc;
2690
+ font-style: normal;
2691
+ display: block;
2692
+ }
2693
+
2694
+ .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-hover:before {
2695
+ content: "★";
2696
+ color: inherit;
2697
+ }
2698
+
2699
+ .wptb-rating-stars-box ul > li.wptb-rating-star.wptb-rating-star-selected:before {
2700
+ content: "★";
2701
+ color: inherit;
2702
+ }*/
2703
+
2704
+ .wptb-number-rating-box {
2705
+ text-align: center;
2706
+ font-size: 20px;
2707
+ }
2708
+
2709
+ .wptb-number-rating-box > div {
2710
+ vertical-align: top;
2711
+ display: inline-block;
2712
+ color: #888;
2713
+ text-align: center;
2714
+ height: 25px;
2715
+ font-size: 25px;
2716
+ line-height: 25px;
2717
+ }
2718
+
2719
+ /* Shortcode */
2720
+
2721
+ wptb_shortcode_container_element {
2722
+ display: block;
2723
+ }
2724
+
2725
+ @media screen and (max-width: 1375px) {
2726
+ #wptb-messaging-area {
2727
+ position: relative;
2728
+ }
2729
+
2730
+ #wptb-messaging-area .wptb-message {
2731
+ max-width: 400px;
2732
+ padding: 20px 5px;
2733
+ box-sizing: border-box;
2734
+ }
2735
+ }
2736
+
2737
+ @media screen and (max-width: 1070px) {
2738
+ #wptb-messaging-area {
2739
+ position: absolute;
2740
+ top: 190px;
2741
+ left: 30px;
2742
+ right: 30px;
2743
+ margin: auto;
2744
+ }
2745
+
2746
+ #wptb-messaging-area .wptb-message {
2747
+ padding: 50px 20px;
2748
+ }
2749
+ }
2750
+
2751
+ @media screen and (max-width: 970px) {
2752
+ #wptb-setup-name {
2753
+ width: 100%;
2754
+ max-width: 420px;
2755
+ margin-left: 0px;
2756
+ }
2757
+ }
2758
+
2759
+ @media screen and (max-width: 600px) {
2760
+ /*.wptb-right {*/
2761
+ /* width: 100%;*/
2762
+ /* text-align: justify;*/
2763
+ /*}*/
2764
+ /*.wptb-embed,*/
2765
+ /*.wptb-preview,*/
2766
+ /*.wptb-save {*/
2767
+ /* display: inline-block;*/
2768
+ /* float: none;*/
2769
+ /* margin: 20px 20px auto;*/
2770
+ /*}*/
2771
+ /*.wptb-close {*/
2772
+ /* padding: 20px;*/
2773
+ /*}*/
2774
+ /*.wptb-right::after {*/
2775
+ /* !*content: "";*!*/
2776
+ /* !*width: 100%;*!*/
2777
+ /* !*display: inline-block;*!*/
2778
+ /*}*/
2779
+ /*.wptb-container {*/
2780
+ /* top: 172px;*/
2781
+ /*}*/
2782
+ }
2783
+
2784
+ @media screen and (max-width: 450px) {
2785
+ /*.wptb-embed,*/
2786
+ /*.wptb-preview,*/
2787
+ /*.wptb-save {*/
2788
+ /* width: 100%;*/
2789
+ /* margin: 15px 0px 0px;*/
2790
+ /* padding: 0px 15px;*/
2791
+ /* box-sizing: border-box;*/
2792
+ /*}*/
2793
+ /*.wptb-embed a,*/
2794
+ /*.wptb-preview a,*/
2795
+ /*.wptb-save a {*/
2796
+ /* width: 100%;*/
2797
+ /* text-align: center;*/
2798
+ /* box-sizing: border-box;*/
2799
+ /*}*/
2800
+ /*#wptb-messaging-area {*/
2801
+ /* top: 310px;*/
2802
+ /*}*/
2803
+ /*.wptb-container {*/
2804
+ /* top: 300px;*/
2805
+ /*}*/
2806
+ }
2807
+
2808
+ .wptb-cell img {
2809
+ max-width: 100%;
2810
+ }
2811
+
2812
+ .wptb-exit-options {
2813
+ text-decoration: none;
2814
+ }
2815
+
2816
+ .wptb-back-button {
2817
+ /*float: left;*/
2818
+ }
2819
+
2820
+ .wptb-option-text {
2821
+ text-align: center;
2822
+ }
2823
+
2824
+
2825
+ /*
2826
+ ** Star rating alignment Selector Style
2827
+ */
2828
+
2829
+ .wptb-rating-alignment-btn {
2830
+ padding: 8px 15px 3px 15px;
2831
+ margin: 0;
2832
+ vertical-align: middle;
2833
+ border: solid 1px #ccc;
2834
+ font-size: 12px;
2835
+ border-radius: 4px;
2836
+ cursor: pointer;
2837
+ }
2838
+
2839
+ .wptb-rating-alignment-switcher {
2840
+ background: linear-gradient(to bottom, white, #eeeeee);
2841
+ display: table-cell;
2842
+ border-right: none;
2843
+ border-radius: 0;
2844
+ color: #433f33;
2845
+ }
2846
+
2847
+ .wptb-rating-alignment-switcher:first-child {
2848
+ border-radius: 4px 0 0 4px;
2849
+ }
2850
+
2851
+ .wptb-rating-alignment-switcher:last-child {
2852
+ border-radius: 0 4px 4px 0;
2853
+ border-right: solid 1px #ccc;
2854
+ }
2855
+
2856
+ .wptb-rating-alignment-switcher:hover {
2857
+ background: #fff;
2858
+ }
2859
+
2860
+ .wptb-rating-alignment-switcher:active {
2861
+ box-shadow: inset 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
2862
+ }
2863
+
2864
+ .wptb-rating-alignment-switcher.selected {
2865
+ background: #fff;
2866
+ box-shadow: inset 0px 0px 20px 4px rgba(0, 0, 0, 0.15);
2867
+ cursor: default;
2868
+ }
2869
+
2870
+
2871
+ /*
2872
+ ** list rating alignment Selector Style
2873
+ */
2874
+
2875
+ .wptb-list-alignment-btn {
2876
+ padding: 8px 15px 3px 15px;
2877
+ margin: 0;
2878
+ vertical-align: middle;
2879
+ border: solid 1px #ccc;
2880
+ font-size: 12px;
2881
+ border-radius: 4px;
2882
+ cursor: pointer;
2883
+ }
2884
+
2885
+ .wptb-list-alignment-switcher {
2886
+ background: linear-gradient(to bottom, white, #eeeeee);
2887
+ display: table-cell;
2888
+ border-right: none;
2889
+ border-radius: 0;
2890
+ color: #433f33;
2891
+ }
2892
+
2893
+ .wptb-list-alignment-switcher:first-child {
2894
+ border-radius: 4px 0 0 4px;
2895
+ }
2896
+
2897
+ .wptb-list-alignment-switcher:last-child {
2898
+ border-radius: 0 4px 4px 0;
2899
+ border-right: solid 1px #ccc;
2900
+ }
2901
+
2902
+ .wptb-list-alignment-switcher:hover {
2903
+ background: #fff;
2904
+ }
2905
+
2906
+ .wptb-list-alignment-switcher:active {
2907
+ box-shadow: inset 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
2908
+ }
2909
+
2910
+ .wptb-list-alignment-switcher.selected {
2911
+ background: #fff;
2912
+ box-shadow: inset 0px 0px 20px 4px rgba(0, 0, 0, 0.15);
2913
+ cursor: default;
2914
+ }
2915
+
2916
+
2917
+ /*
2918
+ ** button rating alignment Selector Style
2919
+ */
2920
+
2921
+ .wptb-button-alignment-btn {
2922
+ padding: 8px 15px 3px 15px;
2923
+ margin: 0;
2924
+ vertical-align: middle;
2925
+ border: solid 1px #ccc;
2926
+ font-size: 12px;
2927
+ border-radius: 4px;
2928
+ cursor: pointer;
2929
+ }
2930
+
2931
+ .wptb-button-alignment-switcher {
2932
+ background: linear-gradient(to bottom, white, #eeeeee);
2933
+ display: table-cell;
2934
+ border-right: none;
2935
+ border-radius: 0;
2936
+ color: #433f33;
2937
+ }
2938
+
2939
+ .wptb-button-alignment-switcher:first-child {
2940
+ border-radius: 4px 0 0 4px;
2941
+ }
2942
+
2943
+ .wptb-button-alignment-switcher:last-child {
2944
+ border-radius: 0 4px 4px 0;
2945
+ border-right: solid 1px #ccc;
2946
+ }
2947
+
2948
+ .wptb-button-alignment-switcher:hover {
2949
+ background: #fff;
2950
+ }
2951
+
2952
+ .wptb-button-alignment-switcher:active {
2953
+ box-shadow: inset 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
2954
+ }
2955
+
2956
+ .wptb-button-alignment-switcher.selected {
2957
+ background: #fff;
2958
+ box-shadow: inset 0px 0px 20px 4px rgba(0, 0, 0, 0.15);
2959
+ cursor: default;
2960
+ }
2961
+
2962
+
2963
+ /*
2964
+ ** image rating alignment Selector Style
2965
+ */
2966
+
2967
+ .wptb-image-alignment-btn {
2968
+ padding: 8px 15px 3px 15px;
2969
+ margin: 0;
2970
+ vertical-align: middle;
2971
+ border: solid 1px #ccc;
2972
+ font-size: 12px;
2973
+ border-radius: 4px;
2974
+ cursor: pointer;
2975
+ }
2976
+
2977
+ .wptb-image-alignment-switcher {
2978
+ background: linear-gradient(to bottom, white, #eeeeee);
2979
+ display: table-cell;
2980
+ border-right: none;
2981
+ border-radius: 0;
2982
+ color: #433f33;
2983
+ }
2984
+
2985
+ .wptb-image-alignment-switcher:first-child {
2986
+ border-radius: 4px 0 0 4px;
2987
+ }
2988
+
2989
+ .wptb-image-alignment-switcher:last-child {
2990
+ border-radius: 0 4px 4px 0;
2991
+ border-right: solid 1px #ccc;
2992
+ }
2993
+
2994
+ .wptb-image-alignment-switcher:hover {
2995
+ background: #fff;
2996
+ }
2997
+
2998
+ .wptb-image-alignment-switcher:active {
2999
+ box-shadow: inset 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
3000
+ }
3001
+
3002
+ .wptb-image-alignment-switcher.selected {
3003
+ background: #fff;
3004
+ box-shadow: inset 0px 0px 20px 4px rgba(0, 0, 0, 0.15);
3005
+ cursor: default;
3006
+ }
3007
+
3008
+
3009
+ /*
3010
+ ** classes with justify-content styles
3011
+ */
3012
+
3013
+ .wptb-justify-content-left {
3014
+ justify-content: left;
3015
+ }
3016
+
3017
+ .wptb-justify-content-center {
3018
+ justify-content: center;
3019
+ }
3020
+
3021
+ .wptb-justify-content-right {
3022
+ justify-content: right;
3023
+ }
3024
+
3025
+
3026
+ /*
3027
+ ** classes with float styles
3028
+ */
3029
+
3030
+ .wptb-float-left {
3031
+ float: left;
3032
+ }
3033
+
3034
+ .wptb-float-center {
3035
+ float: none;
3036
+ }
3037
+
3038
+ .wptb-float-right {
3039
+ float: right;
3040
+ }
3041
+
3042
+ /*
3043
+ ** classes with text-align styles
3044
+ */
3045
+
3046
+ .wptb-text-align-left {
3047
+ text-align: left;
3048
+ }
3049
+
3050
+ .wptb-text-align-center {
3051
+ text-align: center;
3052
+ }
3053
+
3054
+ .wptb-text-align-right {
3055
+ text-align: right;
3056
+ }
3057
+
3058
+ /*settings page related styles*/
3059
+ .wptb-menu-page-wrapper {
3060
+ display: flex;
3061
+ justify-content: center;
3062
+ align-items: center;
3063
+ width: 100%;
3064
+ height: 90vh;
3065
+ color: #4A5568;
3066
+ line-height: normal;
3067
+ }
3068
+
3069
+ .wptb-settings-wrapper {
3070
+ background-color: white;
3071
+ min-width: 90%;
3072
+ max-width: 90%;
3073
+ height: 90%;
3074
+ display: grid;
3075
+ grid-template-columns: 1fr;
3076
+ grid-template-rows: minmax(min-content, max-content) minmax(min-content, max-content) 1fr minmax(min-content, max-content);
3077
+ border-radius: 5px;
3078
+ overflow: hidden;
3079
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
3080
+ }
3081
+
3082
+ .wptb-settings-wrapper .import-export {
3083
+ grid-template-rows: minmax(min-content, max-content) minmax(min-content, max-content) minmax(min-content, max-content) 1fr minmax(min-content, max-content);
3084
+ }
3085
+
3086
+
3087
+ .wptb-settings-header {
3088
+ display: flex;
3089
+ justify-content: space-between;
3090
+ align-items: center;
3091
+ background-color: var(--wptb-plugin-logo-color);
3092
+ padding: 10px;
3093
+ }
3094
+
3095
+ .wptb-settings-header * {
3096
+ color: #ffffff;
3097
+ }
3098
+
3099
+ .wptb-settings-header a {
3100
+ text-decoration: none;
3101
+ font-size: 1rem;
3102
+ margin: 0 10px;
3103
+ text-transform: capitalize;
3104
+ }
3105
+
3106
+ .wptb-settings-header a:hover {
3107
+ color: #CBD5E0;
3108
+ }
3109
+
3110
+ .wptb-settings-brand {
3111
+ font-size: 2.5rem;
3112
+ display: flex;
3113
+ align-items: center;
3114
+ cursor: default;
3115
+ }
3116
+
3117
+ .wptb-settings-header-name {
3118
+ margin-left: 1rem;
3119
+ }
3120
+
3121
+ .wptb-settings-sections-wrapper {
3122
+ position: relative;
3123
+ display: flex;
3124
+ flex-direction: row;
3125
+ background-color: #ffffff;
3126
+ border-bottom: 1px solid #cbd5e0;
3127
+ }
3128
+
3129
+ .wptb-plugins-m-b-40 {
3130
+ margin-bottom: 40px;
3131
+ }
3132
+
3133
+ .wptb-settings-checkbox-row {
3134
+ display: flex;
3135
+ flex-direction: row;
3136
+ justify-content: flex-start;
3137
+ align-items: center;
3138
+ margin: 5px 0;
3139
+ width: 100%;
3140
+ }
3141
+
3142
+ .wptb-settings-dropdown-row {
3143
+ margin: 10px 0;
3144
+ }
3145
+
3146
+ .wptb-settings-sections-wrapper.child {
3147
+ display: flex;
3148
+ flex-direction: row;
3149
+ justify-content: center;
3150
+ }
3151
+
3152
+ .wptb-settings-section-item {
3153
+ text-transform: uppercase;
3154
+ font-size: 1rem;
3155
+ padding: 20px;
3156
+ margin: 0 10px;
3157
+ cursor: pointer;
3158
+ transition: background-color 0.5s ease-out;
3159
+ }
3160
+
3161
+ .wptb-settings-section-item.static-active {
3162
+ border-bottom: 3px solid transparent;
3163
+ }
3164
+
3165
+ .wptb-settings-section-item.static-active.active {
3166
+ border-bottom: 3px solid var(--wptb-plugin-logo-color) !important;
3167
+ background-color: var(--wptb-plugin-gray-100);
3168
+ }
3169
+
3170
+ .child .wptb-settings-section-item {
3171
+ font-size: 0.8rem;
3172
+ padding: 10px;
3173
+ }
3174
+
3175
+ .wptb-settings-section-item:hover {
3176
+ background-color: #EDF2F7;
3177
+ }
3178
+
3179
+ .wptb-settings-section-item.disabled {
3180
+ color: #CBD5E0 !important;
3181
+ }
3182
+
3183
+ .wptb-panel-tabs .wptb-settings-section-item.disabled {
3184
+ color: inherit !important;
3185
+ }
3186
+
3187
+ .wptb-menu-active-section-indicator {
3188
+ position: absolute;
3189
+ /*border-bottom: 2px solid #1A202C;*/
3190
+ border-bottom: 2px solid var(--wptb-plugin-logo-color);
3191
+ transition: all 0.3s ease-out;
3192
+ }
3193
+
3194
+ .wptb-settings-controls-wrapper {
3195
+ padding: 20px 40px;
3196
+ overflow: auto;
3197
+ }
3198
+
3199
+ .wptb-settings-controls-wrapper.grid {
3200
+ display: grid;
3201
+ grid-gap: 10px;
3202
+ grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
3203
+ grid-auto-rows: minmax(min-content, max-content);
3204
+ grid-auto-flow: row;
3205
+ }
3206
+
3207
+ .wptb-settings-controls-wrapper.center {
3208
+ display: flex;
3209
+ justify-content: center;
3210
+ align-items: flex-start;
3211
+ }
3212
+
3213
+ .wptb-setting-control {
3214
+ padding: 20px;
3215
+ transition: all 0.2s ease-out;
3216
+ border: 1px solid transparent;
3217
+ }
3218
+
3219
+ .wptb-setting-control:hover {
3220
+ border: 1px solid #cbd5e0;
3221
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
3222
+ transform: translateY(-5px);
3223
+ }
3224
+
3225
+ .wptb-setting-control .title {
3226
+ font-weight: bold;
3227
+ font-size: 1rem;
3228
+ text-transform: capitalize;
3229
+ margin-bottom: 30px;
3230
+ border-bottom: 1px solid #cbd5e0;
3231
+ padding: 10px 0;
3232
+ }
3233
+
3234
+ .wptb-menu-export-control-title {
3235
+ font-weight: bold;
3236
+ font-size: 1rem;
3237
+ text-transform: capitalize;
3238
+ padding: 10px 0;
3239
+ width: 100%;
3240
+ border-bottom: 1px solid #cbd5e0;
3241
+ }
3242
+
3243
+ .wptb-export-list-table-search {
3244
+ padding: 10px 0;
3245
+ border-bottom: 1px solid #cbd5e0;
3246
+ }
3247
+
3248
+ .wptb-setting-control-row {
3249
+ display: flex;
3250
+ align-items: center;
3251
+ margin: 20px 0;
3252
+ }
3253
+
3254
+ .wptb-setting-control-row label {
3255
+ text-transform: capitalize;
3256
+ }
3257
+
3258
+ .wptb-setting-control-row input {
3259
+ margin-right: 20px;
3260
+ }
3261
+
3262
+ .wptb-setting-control-row select {
3263
+ margin-right: 20px;
3264
+ }
3265
+
3266
+ .wptb-settings-footer {
3267
+ background-color: #ffffff;
3268
+ display: flex;
3269
+ justify-content: space-between;
3270
+ width: 100%;
3271
+ border-top: 1px solid #cbd5e0;
3272
+ padding: 20px 0;
3273
+ }
3274
+
3275
+ .wptb-settings-messages {
3276
+ margin: 0 20px;
3277
+ display: flex;
3278
+ align-items: center;
3279
+ }
3280
+
3281
+ .wptb-settings-message {
3282
+ font-style: italic;
3283
+ font-weight: bold;
3284
+ text-transform: uppercase;
3285
+ }
3286
+
3287
+ .wptb-settings-message.ok {
3288
+ color: #3299D1;
3289
+ }
3290
+
3291
+ .wptb-settings-message.error {
3292
+ color: #E53E3E;
3293
+ }
3294
+
3295
+ .wptb-settings-fetching {
3296
+ animation: wptb-settings-rotate 1s linear infinite reverse;
3297
+
3298
+ }
3299
+
3300
+ .wptb-settings-button-container {
3301
+ display: flex;
3302
+ justify-content: center;
3303
+ align-items: center;
3304
+ }
3305
+
3306
+ .wptb-settings-button {
3307
+ width: fit-content;
3308
+ margin: 0 20px;
3309
+ color: #ffffff;
3310
+ font-size: 1.0rem;
3311
+ padding: 10px 20px;
3312
+ border-radius: 5px;
3313
+ text-transform: uppercase;
3314
+ cursor: pointer;
3315
+ transition: all .2s ease-out;
3316
+ }
3317
+
3318
+ .wptb-settings-button:hover {
3319
+ color: #CBD5E0;
3320
+ }
3321
+
3322
+ .wptb-settings-button.primary {
3323
+ background-color: #3299D1;
3324
+ }
3325
+
3326
+ .wptb-settings-button.danger {
3327
+ background-color: #E53E3E;
3328
+ }
3329
+
3330
+ .wptb-settings-button.disabled {
3331
+ background-color: #CBD5E0 !important;
3332
+ }
3333
+
3334
+ .wptb-settings-button.small {
3335
+ font-size: inherit;
3336
+ }
3337
+
3338
+ .wptb-settings-button.disabled:hover {
3339
+ color: #ffffff !important;
3340
+ cursor: not-allowed;
3341
+ }
3342
+
3343
+ .wptb-fade-enter-active, .wptb-fade-leave-active {
3344
+ transition: opacity 0.2s ease-out;
3345
+ }
3346
+
3347
+ .wptb-fade-enter, .wptb-fade-leave-to {
3348
+ opacity: 0;
3349
+ }
3350
+
3351
+ .wptb-menu-file-drop {
3352
+ border: 2px dashed #cbd5e0;
3353
+ width: 500px;
3354
+ height: 200px;
3355
+ margin: 20px 0;
3356
+ display: flex;
3357
+ flex-direction: column;
3358
+ justify-content: center;
3359
+ align-items: center;
3360
+ text-transform: capitalize;
3361
+ transition: all 0.2s ease-out;
3362
+ border-radius: 5px;
3363
+ }
3364
+
3365
+ .wptb-menu-file-drop.dragenter {
3366
+ background-color: #EDF2F7;
3367
+ }
3368
+
3369
+ .wptb-menu-file-drop div {
3370
+ margin: 10px 0;
3371
+ }
3372
+
3373
+ .wptb-menu-file-drop .hint {
3374
+ font-style: italic;
3375
+ color: #cbd5e0;
3376
+ font-size: 1.3rem;
3377
+ }
3378
+
3379
+ .wptb-menu-file-drop .supported {
3380
+ font-style: italic;
3381
+ color: #cbd5e0;
3382
+ font-size: 1rem;
3383
+ }
3384
+
3385
+ .wptb-menu-file-drop .file {
3386
+ text-transform: none;
3387
+ font-size: 1.3rem;
3388
+ color: inherit;
3389
+ }
3390
+
3391
+ .wptb-menu-file-drop a {
3392
+ text-decoration: underline;
3393
+ cursor: pointer;
3394
+ }
3395
+
3396
+ .wptb-menu-file-drop .file-icon {
3397
+ color: #cbd5e0;
3398
+ transform: scale(4);
3399
+ }
3400
+
3401
+ .wptb-flex {
3402
+ display: flex;
3403
+ }
3404
+
3405
+ .wptb-flex-col {
3406
+ flex-direction: column;
3407
+ }
3408
+
3409
+ .wptb-flex-row {
3410
+ flex-direction: row;
3411
+ }
3412
+
3413
+ .wptb-flex-align-center {
3414
+ align-items: center;
3415
+ }
3416
+
3417
+ .wptb-flex-justify-center {
3418
+ justify-content: center;
3419
+ }
3420
+
3421
+ .wptb-flex-justify-space-between {
3422
+ justify-content: space-between;
3423
+ }
3424
+
3425
+ .wptb-import-tables-wrapper {
3426
+ margin-top: 50px;
3427
+ margin-bottom: 30px;
3428
+ display: flex;
3429
+ justify-content: center;
3430
+ }
3431
+
3432
+ .wptb-import-table {
3433
+ text-align: center;
3434
+ border-collapse: collapse;
3435
+ }
3436
+
3437
+ .wptb-import-table th{
3438
+ padding: 15px 10px;
3439
+ }
3440
+
3441
+ .wptb-import-table th {
3442
+ border-bottom: 1px solid #cbd5e0;
3443
+ }
3444
+
3445
+ .wptb-import-table tbody tr:hover {
3446
+ background-color: #edf2f7;
3447
+ }
3448
+
3449
+ .wptb-menu-overflow-auto {
3450
+ overflow: auto;
3451
+ }
3452
+
3453
+ .wptb-text-transform-cap {
3454
+ text-transform: capitalize !important;
3455
+ }
3456
+
3457
+ .wptb-text-transform-none {
3458
+ text-transform: none !important;
3459
+ }
3460
+
3461
+ .wptb-import-table-count-info {
3462
+ margin-bottom: 20px;
3463
+ font-weight: bold;
3464
+ font-style: italic;
3465
+ }
3466
+
3467
+ .wptb-menu-export-wrapper {
3468
+ display: grid;
3469
+ grid-auto-flow: column;
3470
+ grid-template-columns: 1fr auto 1fr;
3471
+ grid-template-rows: 0.9fr;
3472
+ justify-content: center;
3473
+ align-content: center;
3474
+ grid-gap: 30px;
3475
+ width: 90%;
3476
+ height: 100%;
3477
+ }
3478
+
3479
+ .wptb-menu-export-card {
3480
+ display: grid;
3481
+ grid-auto-flow: row;
3482
+ grid-template-rows: auto auto 1fr;
3483
+ grid-template-columns: 1fr;
3484
+ position: relative;
3485
+ border: 1px solid #cbd5e0;
3486
+ padding: 10px;
3487
+ overflow: auto;
3488
+ }
3489
+
3490
+ .wptb-menu-export-controls-wrapper {
3491
+ padding: 10px 0;
3492
+ overflow-y: auto;
3493
+ display: grid;
3494
+ grid-auto-flow: row;
3495
+ }
3496
+
3497
+ .wptb-menu-empty-cover {
3498
+ position: absolute;
3499
+ top: 0;
3500
+ left: 0;
3501
+ right: 0;
3502
+ bottom: 0;
3503
+ display: flex;
3504
+ justify-content: center;
3505
+ align-items: center;
3506
+ font-style: italic;
3507
+ font-size: 1.2rem;
3508
+ color: #CBD5E0;
3509
+ }
3510
+
3511
+ .wptb-menu-export-middle-section {
3512
+ display: flex;
3513
+ flex-direction: column;
3514
+ justify-content: space-around;
3515
+ align-items: center;
3516
+ }
3517
+
3518
+ .wptb-menu-export-middle-section .arrow-holder {
3519
+ max-width: 100px;
3520
+ width: 50%;
3521
+ cursor: pointer;
3522
+ }
3523
+
3524
+ .wptb-menu-export-middle-section img {
3525
+ max-width: 100px;
3526
+ cursor: pointer;
3527
+ transition: transform 0.1s ease-out;
3528
+ }
3529
+
3530
+ .wptb-menu-export-middle-section img:hover {
3531
+ transform: scale(1.2);
3532
+ }
3533
+
3534
+ .wptb-menu-export-middle-section img:active {
3535
+ transform: scale(1);
3536
+ }
3537
+
3538
+ .wptb-menu-export-middle-section .flip {
3539
+ transform: rotateZ(180deg);
3540
+ }
3541
+
3542
+ .wptb-menu-popup-wrapper {
3543
+ display: flex;
3544
+ position: relative;
3545
+ justify-content: center;
3546
+ align-items: center;
3547
+ margin: 0 10px;
3548
+ border: 1px solid #cbd5e0;
3549
+ width: 20px;
3550
+ height: 20px;
3551
+ border-radius: 50%;
3552
+ cursor: pointer;
3553
+ transition: all 0.2s ease-out;
3554
+ }
3555
+
3556
+ .wptb-menu-popup-wrapper:hover {
3557
+ background-color: #cbd5e0;
3558
+ }
3559
+
3560
+ .wptb-menu-popup-message {
3561
+ display: block;
3562
+ position: fixed;
3563
+ color: white;
3564
+ min-width: 100px;
3565
+ max-width: 200px;
3566
+ transition: opacity 0.2s ease-out;
3567
+ opacity: 0;
3568
+ text-align: start;
3569
+ z-index: 999;
3570
+ pointer-events: none;
3571
+ }
3572
+
3573
+ .wptb-menu-popup-wrapper:hover + .wptb-menu-popup-message {
3574
+ opacity: 1
3575
+ }
3576
+
3577
+ .wptb-menu-popup-inner-holder {
3578
+ position: relative;
3579
+ background-color: #4A5568;
3580
+ padding: 10px;
3581
+ }
3582
+
3583
+ .wptb-menu-popup-arrow {
3584
+ position: absolute;
3585
+ background-color: inherit;
3586
+ width: 10px;
3587
+ height: 10px;
3588
+ bottom: -5px;
3589
+ left: calc(50% - 5px);
3590
+ transform: rotateZ(45deg);
3591
+ }
3592
+
3593
+ .wptb-menu-list-table {
3594
+ border-collapse: collapse;
3595
+ width: 100%;
3596
+
3597
+ td {
3598
+ padding: 15px 10px;
3599
+ }
3600
+ }
3601
+
3602
+ .wptb-menu-list-table thead {
3603
+ border-bottom: 1px solid #cbd5e0;
3604
+ text-align: start;
3605
+ }
3606
+
3607
+ .wptb-menu-list-table thead td {
3608
+ font-weight: bold;
3609
+ transition: all 0.2s ease-out;
3610
+ cursor: pointer;
3611
+ text-transform: capitalize;
3612
+
3613
+ &:first-child {
3614
+ pointer-events: none;
3615
+
3616
+ & input {
3617
+ visibility: collapse;
3618
+ }
3619
+ }
3620
+
3621
+ &:hover {
3622
+ background-color: #EDF2F7;
3623
+ }
3624
+ }
3625
+
3626
+ .wptb-menu-list-table tbody td .title-label {
3627
+ word-break: break-all;
3628
+ }
3629
+
3630
+ .wptb-menu-list-table tbody tr:nth-child(even) {
3631
+ background-color: #edf2f7;
3632
+ }
3633
+
3634
+ .wptb-plugin-box-shadow-md {
3635
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
3636
+ }
3637
+
3638
+ .wptb-plugin-filter-box-shadow-md {
3639
+ filter: drop-shadow(4px 6px 2px rgba(0, 0, 0, 0.1))
3640
+ }
3641
+
3642
+ .wptb-plugin-filter-box-shadow-md-close {
3643
+ filter: drop-shadow(4px 1px 2px rgba(0, 0, 0, 0.1))
3644
+ }
3645
+
3646
+ .wptb-plugin-filter-box-shadow-md-around {
3647
+ filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.3))
3648
+ }
3649
+
3650
+ .wptb-plugin-box-shadow-up-md {
3651
+ box-shadow: 0 -5px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
3652
+ }
3653
+
3654
+ .wptb-plugin-box-shadow-xl {
3655
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.3) !important;
3656
+ }
3657
+
3658
+ .wptb-plugin-inset-shadow-md {
3659
+ box-shadow: inset 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
3660
+ }
3661
+
3662
+ .wptb-plugin-margin-no {
3663
+ margin: 0 !important;
3664
+ }
3665
+
3666
+ @keyframes wptb-settings-rotate {
3667
+ 0% {
3668
+ transform: rotateZ(0deg);
3669
+ }
3670
+ 100% {
3671
+ transform: rotateZ(360deg);
3672
+ }
3673
+ }
3674
+
3675
+ @keyframes wptb-basic-appear {
3676
+ 0% {
3677
+ opacity: 0
3678
+ }
3679
+ 100% {
3680
+ opacity: 1
3681
+ }
3682
+ }
3683
+
3684
+ .wptb-settings-space-between {
3685
+ display: flex;
3686
+ flex-direction: row;
3687
+ width: 100%;
3688
+ justify-content: space-between;
3689
+ align-items: center;
3690
+ }
3691
+
3692
+
3693
+ .wptb-icon-select-wrapper {
3694
+ align-items: center;
3695
+ height: 100%;
3696
+ }
3697
+
3698
+ .wptb-icon-select-wrapper[disabled] .wptb-icon-select-preview {
3699
+ opacity: 0.2;
3700
+ cursor: default;
3701
+ }
3702
+
3703
+ .wptb-icon-select-display {
3704
+ width: 50px;
3705
+ height: 50px;
3706
+ background-color: var(--wptb-plugin-theme-color-light);
3707
+ border: 1px solid var(--wptb-plugin-gray-400);
3708
+ border-radius: 5px;
3709
+ position: relative;
3710
+ }
3711
+
3712
+ .wptb-icon-select-preview {
3713
+ width: 100%;
3714
+ height: 100%;
3715
+ justify-content: center;
3716
+ align-items: center;
3717
+ padding: 5px;
3718
+ cursor: pointer;
3719
+ position: relative;
3720
+ }
3721
+
3722
+ .wptb-icon-select-preview img[src=''] {
3723
+ display: none;
3724
+ }
3725
+
3726
+ .wptb-icon-select-preview img {
3727
+ width: 100%;
3728
+ height: 100%;
3729
+ }
3730
+
3731
+ .wptb-icon-select-drawer {
3732
+ position: fixed;
3733
+ display: grid;
3734
+ grid-template-columns: 1fr;
3735
+ grid-template-rows: auto 1fr;
3736
+ grid-auto-flow: row;
3737
+ grid-gap: 15px;
3738
+ background-color: var(--wptb-plugin-theme-color-light);
3739
+ border: 1px solid var(--wptb-plugin-gray-400);
3740
+ border-radius: 5px;
3741
+ padding: 10px;
3742
+ width: 200px;
3743
+ max-height: 200px;
3744
+ overflow-y: hidden;
3745
+ z-index: 110000;
3746
+ }
3747
+
3748
+ .wptb-icon-search-wrapper {
3749
+ width: 100%;
3750
+ }
3751
+
3752
+ .wptb-icon-search-wrapper input {
3753
+ width: 100%;
3754
+ }
3755
+
3756
+ .wptb-icon-previews {
3757
+ position: relative;
3758
+ width: 100%;
3759
+ display: grid;
3760
+ grid-template-columns: repeat(4, 1fr);
3761
+ grid-auto-flow: row;
3762
+ grid-gap: 10px;
3763
+ justify-content: center;
3764
+ align-items: center;
3765
+ overflow-y: scroll;
3766
+ }
3767
+
3768
+ .wptb-icon-select-drawer-preview {
3769
+ display: flex;
3770
+ justify-content: center;
3771
+ align-items: center;
3772
+ }
3773
+
3774
+ .wptb-icon-select-drawer-preview img {
3775
+ width: 25px;
3776
+ height: 25px;
3777
+ transition: transform .2s ease-out;
3778
+ cursor: pointer;
3779
+ }
3780
+
3781
+ .wptb-icon-select-drawer-preview img:hover {
3782
+ transform: scale(1.2);
3783
+ }
3784
+
3785
+ .wptb-icon-select-drawer-end {
3786
+ /*border: 1px solid red;*/
3787
+ }
3788
+
3789
+ .wptb-icon-preview-active {
3790
+ border: 2px solid var(--wptb-plugin-logo-color);
3791
+ }
3792
+
3793
+ .wptb-icon-reset {
3794
+ border: 1px solid var(--wptb-plugin-theme-sidebar-bg);
3795
+ width: 100%;
3796
+ height: 100%;
3797
+ border-radius: 5px;
3798
+ cursor: pointer;
3799
+ }
3800
+
3801
+ .wptb-html-control-wrapper {
3802
+ display: flex;
3803
+ flex-direction: column;
3804
+ justify-content: center;
3805
+ align-items: center;
3806
+ }
3807
+
3808
+ .wptb-html-control-wrapper > div {
3809
+ /*margin: 10px 0;*/
3810
+ }
3811
+
3812
+ .wptb-html-control-wrapper div:last-child {
3813
+ /*margin-bottom: 40px;*/
3814
+ }
3815
+
3816
+ .wptb-help-support-section-wrapper {
3817
+ display: flex;
3818
+ flex-direction: column;
3819
+ justify-content: center;
3820
+ align-items: center;
3821
+ padding: 20px 0;
3822
+ }
3823
+
3824
+ .wptb-help-support-section-wrapper div {
3825
+ margin: 5px 0;
3826
+ }
3827
+
3828
+ .wptb-builder-responsive {
3829
+ position: absolute;
3830
+ top: 0;
3831
+ left: 0;
3832
+ width: 100%;
3833
+ height: 100%;
3834
+ background-color: #fff;
3835
+ z-index: 400000;
3836
+ margin: auto;
3837
+ padding: 40px 10px;
3838
+ }
3839
+
3840
+ .wptb-builder-responsive[data-wptb-responsive-status="true"] .wptb-responsive-builder-main {
3841
+ overflow-x: hidden !important;
3842
+ }
3843
+
3844
+ .wptb-responsive-menu-tools {
3845
+ margin: auto auto 60px auto;
3846
+ max-width: 700px;
3847
+ }
3848
+
3849
+ .wptb-screen-size-slider-wrapper {
3850
+ display: grid;
3851
+ grid-template-columns: 1fr;
3852
+ grid-template-areas: 'content';
3853
+ justify-content: center;
3854
+ align-items: center;
3855
+ margin-bottom: 80px;
3856
+ }
3857
+
3858
+ .wptb-screen-size-slider-empty {
3859
+ width: 100%;
3860
+ position: relative;
3861
+ height: 5px;
3862
+ border-radius: 3px;
3863
+ background-color: #fff;
3864
+ border: 1px solid var(--wptb-plugin-gray-400);
3865
+ grid-area: content;
3866
+ }
3867
+
3868
+ .wptb-screen-size-slider-fill {
3869
+ height: 100%;
3870
+ position: absolute;
3871
+ left: 0;
3872
+ border-radius: 3px;
3873
+ background-color: var(--wptb-plugin-logo-color);
3874
+ border: 1px solid transparent;
3875
+ transition: all 0.1s linear;
3876
+ }
3877
+
3878
+ .wptb-drag-active .wptb-screen-size-slider-fill {
3879
+ transition: none !important;
3880
+ }
3881
+
3882
+ .wptb-screen-size-slider-arrow {
3883
+ position: absolute;
3884
+ top: -30px;
3885
+ cursor: grab;
3886
+ transition: all 0.1s linear;
3887
+ }
3888
+
3889
+ .wptb-drag-active .wptb-screen-size-slider-arrow {
3890
+ transition: none !important;
3891
+ }
3892
+
3893
+ .wptb-screen-size-slider-arrow:active {
3894
+ cursor: grabbing;
3895
+ }
3896
+
3897
+ .wptb-size-slider-stops-wrapper {
3898
+ z-index: 900000;
3899
+ position: absolute;
3900
+ top: -10px;
3901
+ }
3902
+
3903
+ .wptb-slider-stop {
3904
+ position: absolute;
3905
+ display: flex;
3906
+ width: fit-content;
3907
+ flex-direction: column;
3908
+ justify-content: center;
3909
+ align-items: center;
3910
+ cursor: pointer;
3911
+ }
3912
+
3913
+ .wptb-slider-stop-knob {
3914
+ width: 20px;
3915
+ height: 20px;
3916
+ background-color: #fff;
3917
+ border: 2px solid var(--wptb-plugin-logo-color);
3918
+ border-radius: 50%;
3919
+ margin-bottom: 5px;
3920
+ transition: all 0.2s ease-out;
3921
+ display: flex;
3922
+ justify-content: center;
3923
+ align-items: center;
3924
+ }
3925
+
3926
+ .wptb-slider-stop-label {
3927
+ text-transform: capitalize;
3928
+ font-size: 90%;
3929
+ color: var(--wptb-plugin-gray-400);
3930
+ }
3931
+
3932
+ .wptb-slider-stop-knob[data-wptb-knob-disabled="true"] {
3933
+ background-color: var(--wptb-plugin-theme-color-light) !important;
3934
+ border: 2px solid var(--wptb-plugin-red-300) !important;
3935
+ }
3936
+
3937
+ .wptb-slider-stop-knob[data-wptb-knob-disabled="true"] svg {
3938
+ fill: var(--wptb-plugin-red-600);
3939
+ }
3940
+
3941
+ .wptb-slider-stop-active .wptb-slider-stop-knob {
3942
+ background-color: var(--wptb-plugin-logo-color);
3943
+ color: inherit !important;
3944
+ }
3945
+
3946
+ .wptb-slider-stop-active .wptb-slider-stop-label {
3947
+ color: inherit !important;
3948
+ }
3949
+
3950
+ .wptb-size-input-wrapper {
3951
+ display: flex;
3952
+ justify-content: center;
3953
+ align-items: center;
3954
+ font-size: 90%;
3955
+ }
3956
+
3957
+ .wptb-size-input-wrapper * {
3958
+ margin: 0 10px;
3959
+ font-size: inherit !important;
3960
+ font-variant-numeric: tabular-nums;
3961
+ }
3962
+
3963
+ .wptb-size-input {
3964
+ width: calc(9ch);
3965
+ border: 1px solid var(--wptb-plugin-gray-400) !important;
3966
+ background-color: var(--wptb-plugin-gray-100) !important;
3967
+ text-align: center;
3968
+ color: var(--wptb-plugin-theme-text-color-main) !important;
3969
+ }
3970
+
3971
+ .wptb-responsive-builder-main {
3972
+ /*display: grid;*/
3973
+ /*grid-auto-flow: row;*/
3974
+ /*grid-template-areas: "toolbox" "main";*/
3975
+ margin-bottom: 20px;
3976
+ padding: 0 20px;
3977
+ position: relative;
3978
+ overflow: auto;
3979
+ }
3980
+
3981
+ .wptb-responsive-toolbox-wrapper {
3982
+ display: grid;
3983
+ align-items: center;
3984
+ border: 1px solid var(--wptb-plugin-gray-300);
3985
+ border-radius: 3px;
3986
+ grid-area: toolbox;
3987
+ }
3988
+
3989
+ .wptb-responsive-toolbox-top-static {
3990
+ display: grid;
3991
+ grid-template-columns: repeat(2, 1fr);
3992
+ grid-auto-rows: 1fr;
3993
+ align-items: center;
3994
+ grid-gap: 10px;
3995
+ }
3996
+
3997
+ .wptb-responsive-identify-cells-wrapper {
3998
+ /*grid-column: 2;*/
3999
+ }
4000
+
4001
+ .wptb-responsive-toolbox-dynamic-wrapper {
4002
+ display: grid;
4003
+ grid-template-columns: 1fr;
4004
+ grid-gap: 10px;
4005
+ grid-auto-rows: auto;
4006
+ }
4007
+
4008
+ .wptb-responsive-toolbox-wrapper > div {
4009
+ padding: 10px;
4010
+ border-bottom: 1px solid var(--wptb-plugin-gray-300);
4011
+ }
4012
+
4013
+ .wptb-responsive-toolbox-row div:nth-child(even) {
4014
+ justify-self: end;
4015
+ }
4016
+
4017
+ .wptb-responsive-toolbox-wrapper > div:last-child {
4018
+ border-bottom: none !important;
4019
+ }
4020
+
4021
+ .wptb-responsive-toolbox-dynamic-controls-holder {
4022
+ display: grid;
4023
+ grid-template-columns: repeat(2, 1fr);
4024
+ grid-gap: 5px;
4025
+ }
4026
+
4027
+ .wptb-responsive-toolbox-dynamic-controls-holder > div:nth-child(even) {
4028
+ justify-self: end;
4029
+ }
4030
+
4031
+ .wptb-responsive-size-range-name {
4032
+ justify-self: center;
4033
+ font-weight: bold;
4034
+ }
4035
+
4036
+ .wptb-responsive-clone-wrapper {
4037
+ width: 100%;
4038
+ height: 100%;
4039
+ grid-area: main;
4040
+ padding: 20px 0;
4041
+ justify-self: center;
4042
+ border: 1px solid var(--wptb-plugin-gray-300);
4043
+ border-top: none !important;
4044
+ display: flex;
4045
+ justify-content: center;
4046
+ align-items: center;
4047
+ }
4048
+
4049
+ .wptb-responsive-clone-inner-wrapper {
4050
+ display: flex;
4051
+ justify-content: center;
4052
+ width: 100%;
4053
+ }
4054
+
4055
+
4056
+ .wptb-checkerboard-pattern {
4057
+ background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyIDIiPgogICAgPHJlY3Qgd2lkdGg9IjEiIGhlaWdodD0iMSIgeD0iMCIgeT0iMCIgZmlsbD0icmdiKDIwMywyMTMsMjI0KSIvPgogICAgPHJlY3Qgd2lkdGg9IjEiIGhlaWdodD0iMSIgeD0iMSIgeT0iMCIgZmlsbD0icmdiKDIzNywyNDIsMjQ3KSIvPgogICAgPHJlY3Qgd2lkdGg9IjEiIGhlaWdodD0iMSIgeD0iMSIgeT0iMSIgZmlsbD0icmdiKDIwMywyMTMsMjI0KSIvPgogICAgPHJlY3Qgd2lkdGg9IjEiIGhlaWdodD0iMSIgeD0iMCIgeT0iMSIgZmlsbD0icmdiKDIzNywyNDIsMjQ3KSIvPgo8L3N2Zz4=");
4058
+ background-repeat: repeat;
4059
+ background-size: 20px;
4060
+ }
4061
+
4062
+ .wptb-responsive-disabled-table-overlay {
4063
+ /*grid-area: main;*/
4064
+ position: absolute;
4065
+ left: 0;
4066
+ top: 0;
4067
+ width: 100%;
4068
+ height: 100%;
4069
+ background-image: repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(1, 1, 1, 0.2) 15px, rgba(1, 1, 1, 0.2) 30px);
4070
+ z-index: 10;
4071
+ }
4072
+
4073
+ .wptb-responsive-wait-overlay {
4074
+ /*grid-area: main;*/
4075
+ position: absolute;
4076
+ top: 0;
4077
+ left: 0;
4078
+ width: 100%;
4079
+ height: 100%;
4080
+ z-index: 10;
4081
+ display: flex;
4082
+ justify-content: center;
4083
+ align-items: center;
4084
+ background-color: rgba(0, 0, 0, 0.4);
4085
+ color: #fff;
4086
+ text-transform: uppercase;
4087
+ font-weight: bold;
4088
+ }
4089
+
4090
+ .wptb-responsive-wait-overlay:after {
4091
+ content: '';
4092
+ animation: wptb-text-dots 2s infinite;
4093
+ }
4094
+
4095
+ @keyframes wptb-text-dots {
4096
+ 0% {
4097
+ content: ''
4098
+ }
4099
+ 33% {
4100
+ content: '.'
4101
+ }
4102
+ 66% {
4103
+ content: '..'
4104
+ }
4105
+ 100% {
4106
+ content: '...'
4107
+ }
4108
+ }
4109
+
4110
+ .wptb-controls-flex-row {
4111
+ display: flex;
4112
+ align-items: center;
4113
+ flex-direction: row;
4114
+ }
4115
+
4116
+ .wptb-controls-flex-row label {
4117
+ margin: 0 5px;
4118
+ }
4119
+
4120
+ /*checkbox fix for WordPress default style adding margin-top*/
4121
+ .wptb-responsive-builder-main input[type="checkbox"] {
4122
+ margin-top: 0 !important;
4123
+ }
4124
+
4125
+ .wptb-responsive-cell-identifier {
4126
+ position: absolute;
4127
+ top: 0;
4128
+ left: 0;
4129
+ width: 100%;
4130
+ height: 100%;
4131
+ display: flex;
4132
+ justify-content: center;
4133
+ align-items: center;
4134
+ font-size: 4rem;
4135
+ text-shadow: 3px 3px 1px var(--wptb-plugin-gray-300);
4136
+ opacity: 0;
4137
+ transition: opacity 0.5s ease-out;
4138
+ z-index: 100;
4139
+ }
4140
+
4141
+ .wptb-responsive-show-cell-identifier .wptb-responsive-cell-identifier {
4142
+ opacity: 1 !important;
4143
+ }
4144
+
4145
+ .wptb-plugin-modal-window {
4146
+ position: absolute;
4147
+ top: 0;
4148
+ left: 0;
4149
+ width: 100%;
4150
+ height: 100%;
4151
+ background-color: rgba(0, 0, 0, 0.5);
4152
+ z-index: 600000;
4153
+ display: flex;
4154
+ justify-content: center;
4155
+ align-items: center;
4156
+ box-sizing: border-box;
4157
+ text-align: center;
4158
+
4159
+ &[data-is-fixed="true"] {
4160
+ position: fixed;
4161
+ }
4162
+
4163
+
4164
+ & * {
4165
+ box-sizing: border-box;
4166
+ }
4167
+ }
4168
+
4169
+ .wptb-plugin-modal-inner-window {
4170
+ max-width: 400px;
4171
+ background-color: #fff;
4172
+ border-radius: 3px;
4173
+ display: grid;
4174
+ grid-template-columns: 1fr;
4175
+ grid-template-areas: "modalHeader" "modalContent";
4176
+ overflow: hidden;
4177
+ }
4178
+
4179
+ .wptb-plugin-modal-header {
4180
+ grid-area: modalHeader;
4181
+ display: grid;
4182
+ justify-content: center;
4183
+ grid-template-columns: 1fr;
4184
+ align-items: center;
4185
+ border-bottom: 1px solid $gray-400;
4186
+
4187
+ .wptb-plugin-modal-header-title {
4188
+ font-weight: bold;
4189
+ grid-row: 1;
4190
+ grid-column: 1;
4191
+ }
4192
+
4193
+ .wptb-plugin-modal-header-close {
4194
+ display: flex;
4195
+ justify-content: flex-end;
4196
+ align-items: center;
4197
+ grid-row: 1;
4198
+ grid-column: 1;
4199
+
4200
+ .wptb-plugin-modal-close-wrapper {
4201
+ @extend %default-transition;
4202
+ padding: 10px 15px;
4203
+ font-weight: bold;
4204
+ border-left: 1px solid $gray-400;
4205
+ color: $gray-400;
4206
+ cursor: pointer;
4207
+ font-size: 120%;
4208
+
4209
+ &:hover {
4210
+ color: $white;
4211
+ background-color: $gray-400;
4212
+ }
4213
+ }
4214
+ }
4215
+ }
4216
+
4217
+ .wptb-plugin-modal-content-container {
4218
+ grid-area: modalContent;
4219
+ padding: 20px;
4220
+ display: grid;
4221
+ grid-template-areas:
4222
+ "modalIcon message"
4223
+ "slotContainer slotContainer"
4224
+ "buttonContainer buttonContainer";
4225
+ grid-gap: 20px;
4226
+
4227
+ }
4228
+
4229
+ .wptb-embed-button-success {
4230
+ background-color: $green-500 !important;
4231
+ }
4232
+
4233
+ .wptb-plugin-modal-slot-container {
4234
+ grid-area: slotContainer;
4235
+ }
4236
+
4237
+ .wptb-plugin-modal-icon {
4238
+ grid-area: modalIcon;
4239
+ width: 50px;
4240
+ height: 100%;
4241
+ display: flex;
4242
+ justify-content: center;
4243
+ align-items: center;
4244
+ pointer-events: none;
4245
+ color: $logo-color;
4246
+
4247
+ .wptb-plugin-modal-icon-parent-wrapper {
4248
+ @extend %size-full;
4249
+ @extend %flex-center-all;
4250
+
4251
+ .wptb-plugin-modal-icon-inner-wrapper {
4252
+ @extend %size-full;
4253
+ @extend %flex-center-all;
4254
+
4255
+ svg {
4256
+ @extend %size-full;
4257
+ }
4258
+ }
4259
+ }
4260
+
4261
+ }
4262
+
4263
+ .wptb-plugin-modal-message {
4264
+ @extend %flex-center-all;
4265
+ grid-area: message;
4266
+ }
4267
+
4268
+ .wptb-plugin-modal-button-container {
4269
+ margin: 5px 0 0 0;
4270
+ justify-self: center;
4271
+ grid-area: buttonContainer;
4272
+ width: 100%;
4273
+ }
4274
+
4275
+ .wptb-plugin-button-material {
4276
+ width: fit-content;
4277
+ padding: 5px;
4278
+ border-radius: 3px;
4279
+ background-color: var(--wptb-plugin-logo-color);
4280
+ color: #fff;
4281
+ cursor: pointer;
4282
+ transition: all 0.05s ease-out;
4283
+ }
4284
+
4285
+ .wptb-plugin-button-material:active {
4286
+ transform: scale(0.95);
4287
+ }
4288
+
4289
+ .wptb-plugin-button-material[disabled] {
4290
+ background-color: var(--wptb-plugin-gray-400) !important;
4291
+ cursor: not-allowed;
4292
+ }
4293
+
4294
+ .wptb-plugin-button-material[disabled]:active {
4295
+ transform: none;
4296
+ }
4297
+
4298
+ .wptb-plugin-button-material-fit-content {
4299
+ width: fit-content !important;
4300
+ }
4301
+
4302
+ .wptb-plugin-button-material-full-size {
4303
+ width: 100%;
4304
+ }
4305
+
4306
+ .wptb-plugin-responsive-base {
4307
+ min-width: auto !important;
4308
+ width: 100% !important;
4309
+ }
4310
+
4311
+ /*visual update for popup components inside responsive menu*/
4312
+ .wptb-responsive-toolbox-wrapper .wptb-menu-popup-wrapper {
4313
+ margin-right: 0 !important;
4314
+ }
4315
+
4316
+ .wptb-responsive-breakpoint-edit-wrapper {
4317
+ display: grid;
4318
+ grid-template-columns: repeat(2, 1fr);
4319
+ grid-auto-flow: row;
4320
+ align-items: center;
4321
+ }
4322
+
4323
+ .wptb-toggle input:disabled + i {
4324
+ background: var(--wptb-plugin-gray-400);
4325
+ }
4326
+
4327
+ .wptb-control-row {
4328
+ width: 95%;
4329
+ }
4330
+
4331
+ label.wptb-control-row {
4332
+ text-transform: capitalize;
4333
+ }
4334
+
4335
+ .wptb-builder-content {
4336
+ position: relative;
4337
+ height: 100%;
4338
+ overflow: auto;
4339
+ }
4340
+
4341
+ #wptb_builder[data-wptb-active-section="table_responsive_menu"] .wptb-builder-content {
4342
+ overflow-x: hidden !important;
4343
+ }
4344
+
4345
+ .wptb-responsive-builder-toolbox-float {
4346
+ grid-area: toolbox;
4347
+ padding: 10px 0;
4348
+ display: flex;
4349
+ justify-content: space-between;
4350
+ }
4351
+
4352
+ .wptb-responsive-builder-toolbox-left-float {
4353
+ /*display: inline;*/
4354
+ display: flex;
4355
+ justify-content: flex-start;
4356
+ align-items: center;
4357
+ }
4358
+
4359
+ .wptb-number-postfix-buttons-wrapper {
4360
+ margin-left: 10px;
4361
+ display: flex !important;
4362
+ height: 100%;
4363
+ }
4364
+
4365
+ .wptb-number-postfix-button {
4366
+ display: flex;
4367
+ justify-content: center;
4368
+ align-items: center;
4369
+ width: 30px;
4370
+ border: 1px solid var(--wptb-plugin-gray-400) !important;
4371
+ background-color: var(--wptb-plugin-gray-100) !important;
4372
+ border-radius: 5px;
4373
+ cursor: pointer;
4374
+ font-weight: bold;
4375
+ color: var(--wptb-plugin-theme-text-color-main) !important;
4376
+ font-size: 110%;
4377
+ }
4378
+
4379
+ .wptb-number-postfix-button:active {
4380
+ animation: wptb-push 0.2s ease-out;
4381
+ }
4382
+
4383
+ .wptb-panel-toggle-section {
4384
+ grid-area: sidebar-footer;
4385
+ display: flex;
4386
+ flex-direction: row;
4387
+ justify-content: flex-end;
4388
+ align-items: center;
4389
+ padding: 20px 10px;
4390
+ background-color: var(--wptb-plugin-logo-color);
4391
+ color: #fff;
4392
+ }
4393
+
4394
+
4395
+ .wptb-left-panel[data-wptb-panel-location="right"] .wptb-panel-toggle-section {
4396
+ justify-content: flex-start !important;
4397
+ }
4398
+
4399
+
4400
+ .wptb-panel-toggle-section .wptb-panel-drawer-icon {
4401
+ cursor: pointer;
4402
+ transform: scale(2);
4403
+ }
4404
+
4405
+ .wptb-left-panel[data-wptb-panel-location="right"] .wptb-panel-toggle-section .wptb-panel-drawer-icon {
4406
+ transform: scale(2) rotateZ(180deg);
4407
+ }
4408
+
4409
+ .collapsed .wptb-panel-toggle-section {
4410
+ opacity: 1 !important;
4411
+ }
4412
+
4413
+ .wptb-cell-related-drop-handle {
4414
+ position: fixed;
4415
+ display: none;
4416
+ background-color: #e2e8f0c7;
4417
+ z-index: 300000;
4418
+ pointer-events: none;
4419
+ transition: all 0.2s ease-out;
4420
+ animation: wptb-basic-appear 0.2s ease-out;
4421
+ align-items: center;
4422
+ justify-content: center;
4423
+ font-size: 1.5rem;
4424
+ font-weight: bold;
4425
+ text-transform: uppercase;
4426
+ color: #4a5568;
4427
+ }
4428
+
4429
+ .wptb-control-media-select-button {
4430
+ width: 100px;
4431
+ height: 50px;
4432
+ border: 1px solid var(--wptb-plugin-gray-400);
4433
+ background-position: center center;
4434
+ background-size: contain;
4435
+ background-repeat: no-repeat;
4436
+ cursor: pointer;
4437
+ }
4438
+
4439
+ .wptb-control-media-button-wrapper {
4440
+ position: relative;
4441
+ }
4442
+
4443
+ .wptb-control-media-clear-button {
4444
+ position: absolute;
4445
+ width: 20px;
4446
+ height: 20px;
4447
+ top: -5px;
4448
+ right: -10px;
4449
+ color: red;
4450
+ cursor: pointer;
4451
+ }
4452
+
4453
+ .wptb-control-media-clear-button span {
4454
+ transform: scale(1.8);
4455
+ }
4456
+
4457
+ .wptb-controls-ul-row {
4458
+ display: flex;
4459
+ }
4460
+
4461
+ .wptb-button-svg-center {
4462
+ display: flex !important;
4463
+ justify-content: center;
4464
+ align-items: center;
4465
+ }
4466
+
4467
+ /*region sides control*/
4468
+ .wptb-sides-link-icon-wrapper {
4469
+ width: 16px;
4470
+ height: 16px;
4471
+ cursor: pointer;
4472
+ transition: transform 0.1s ease-out;
4473
+ filter: opacity(0.7);
4474
+ }
4475
+
4476
+ .wptb-sides-link-icon-wrapper:active {
4477
+ transform: scale(0.9);
4478
+ }
4479
+
4480
+ .wptb-sides-controls-wrapper {
4481
+ display: grid;
4482
+ grid-template-columns: repeat(5, 1fr);
4483
+ }
4484
+
4485
+ .wptb-side-control-header {
4486
+ color: var(--wptb-plugin-gray-500);
4487
+ text-align: center;
4488
+ margin: 5px 0;
4489
+ }
4490
+
4491
+ .wptb-side-control-main-input {
4492
+ width: 100%;
4493
+ height: 30px !important;
4494
+ border: 1.5px solid var(--wptb-plugin-gray-400) !important;
4495
+ border-radius: 0 !important;
4496
+ text-align: center;
4497
+ }
4498
+
4499
+ .wptb-side-control-number-input {
4500
+ transition: all 0.3s ease-out;
4501
+ margin-left: 5px;
4502
+ }
4503
+
4504
+ .wptb-side-values-linked .wptb-side-control-number-input {
4505
+ margin-left: 0;
4506
+ }
4507
+
4508
+ .wptb-side-control-main-input:active, .wptb-side-control-main-input:focus {
4509
+ outline: none !important;
4510
+ box-shadow: none !important;
4511
+ }
4512
+
4513
+ .wptb-side-control-input-wrapper:first-of-type .wptb-side-control-main-input {
4514
+ border-left-width: 3px !important;
4515
+ border-radius: 5px 0 0 5px !important;
4516
+ }
4517
+
4518
+ .wptb-side-control-input-wrapper:last-of-type .wptb-side-control-main-input {
4519
+ border-right-width: 3px !important;
4520
+ border-radius: 0 5px 5px 0 !important;
4521
+ }
4522
+
4523
+ .wptb-side-control-dropdown-wrapper {
4524
+ align-self: end;
4525
+ }
4526
+
4527
+ .wptb-side-control-dropdown {
4528
+ background-color: var(--wptb-plugin-gray-400) !important;
4529
+ }
4530
+
4531
+ /*endregion*/
4532
+
4533
+ /*region named toggle control*/
4534
+ .wptb-named-toggle-control-wrapper {
4535
+ position: relative;
4536
+ min-height: 30px;
4537
+ display: grid;
4538
+ grid-template-columns: 1fr;
4539
+ grid-auto-columns: 1fr;
4540
+ grid-auto-flow: column;
4541
+ justify-content: center;
4542
+ align-items: center;
4543
+ border: 1px solid var(--wptb-plugin-gray-400);
4544
+ border-radius: 5px;
4545
+ background-color: var(--wptb-plugin-white);
4546
+ overflow: hidden;
4547
+ }
4548
+
4549
+ .wptb-named-toggle-item {
4550
+ display: flex;
4551
+ justify-content: center;
4552
+ align-items: center;
4553
+ text-wrap: avoid;
4554
+ padding: 10px;
4555
+ z-index: 10;
4556
+ cursor: pointer;
4557
+ color: var(--wptb-plugin-gray-400);
4558
+ font-weight: bold;
4559
+ font-size: 90% !important;
4560
+ }
4561
+
4562
+ .wptb-named-toggle-item[data-wptb-named-toggle-active='true'] {
4563
+ color: var(--wptb-plugin-white);
4564
+ }
4565
+
4566
+ .wptb-named-toggle-active-indicator {
4567
+ position: absolute;
4568
+ height: 100%;
4569
+ background-color: var(--wptb-plugin-logo-color);
4570
+ z-index: 9;
4571
+ transition: left 0.2s ease-out;
4572
+ }
4573
+
4574
+ /*endregion*/
4575
+
4576
+ /*region cell vertical alignment*/
4577
+ .wptb-cell[data-wptb-cell-vertical-alignment="top"] {
4578
+ vertical-align: baseline;
4579
+ }
4580
+
4581
+ .wptb-cell[data-wptb-cell-vertical-alignment="center"] {
4582
+ vertical-align: middle;
4583
+ }
4584
+
4585
+ .wptb-cell[data-wptb-cell-vertical-alignment="bottom"] {
4586
+ vertical-align: bottom;
4587
+ }
4588
+
4589
+ /*endregion*/
4590
+
4591
+ /*sortable mode*/
4592
+ .wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical]::after,
4593
+ .wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal]::after,
4594
+ .wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical]::after,
4595
+ .wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal]::after {
4596
+ position: absolute;
4597
+ top: 0;
4598
+ bottom: 0;
4599
+ z-index: 101;
4600
+ display: grid;
4601
+ font-family: dashicons;
4602
+ font-size: 35px;
4603
+ align-content: center;
4604
+ text-align: center;
4605
+ }
4606
+
4607
+ .wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical="ask"]::after,
4608
+ .wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical="ask"]::after {
4609
+ content: "\f142";
4610
+ right: 0;
4611
+ }
4612
+
4613
+ .wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical="desk"].sortable-hover::after,
4614
+ .wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical="desk"].sortable-hover::after {
4615
+ content: "\f142";
4616
+ cursor: pointer;
4617
+ opacity: 0.7;
4618
+ }
4619
+
4620
+ .wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical="desk"]::after,
4621
+ .wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical="desk"]::after {
4622
+ content: "\f140";
4623
+ right: 0;
4624
+ }
4625
+
4626
+ .wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical="ask"].sortable-hover::after,
4627
+ .wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-vertical="1"] td[data-sorted-vertical="ask"].sortable-hover::after {
4628
+ content: "\f140";
4629
+ cursor: pointer;
4630
+ opacity: 0.7;
4631
+ }
4632
+
4633
+ .wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal="ask"]::after,
4634
+ .wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal="ask"]::after {
4635
+ content: "\f141";
4636
+ left: 0;
4637
+ }
4638
+
4639
+ .wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal="desk"].sortable-hover::after,
4640
+ .wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal="desk"].sortable-hover::after {
4641
+ content: "\f141";
4642
+ cursor: pointer;
4643
+ opacity: 0.7;
4644
+ }
4645
+
4646
+ .wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal="desk"]::after,
4647
+ .wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal="desk"]::after {
4648
+ content: "\f139";
4649
+ left: 0;
4650
+ }
4651
+
4652
+ .wptb-table-setup:not(.wptb-preview-table-manage-cells) .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal="ask"].sortable-hover::after,
4653
+ .wptb-responsive-clone-wrapper .wptb-preview-table[data-wptb-sortable-table-horizontal="1"] td[data-sorted-horizontal="ask"].sortable-hover::after {
4654
+ content: "\f139";
4655
+ cursor: pointer;
4656
+ opacity: 0.7;
4657
+ }
4658
+
4659
+ /*sortable mode end*/
4660
+
4661
+ /*endregion*/
4662
+
4663
+ /*region generate menu*/
4664
+ .wptb-generate-wrapper {
4665
+ margin: 0 50px 0 50px;
4666
+ display: flex;
4667
+ flex-direction: column;
4668
+ justify-content: center;
4669
+ align-items: center;
4670
+ color: inherit;
4671
+ }
4672
+
4673
+ .wptb-generate-menu {
4674
+ display: grid;
4675
+ grid-template-columns: 1fr;
4676
+ grid-template-areas: 'header' 'listing';
4677
+ }
4678
+
4679
+ .wptb-generate-menu-header {
4680
+ grid-area: header;
4681
+ padding: 30px;
4682
+ border-bottom: 1px solid var(--wptb-plugin-gray-300);
4683
+ }
4684
+
4685
+ .wptb-generate-menu-listing {
4686
+ grid-area: listing;
4687
+ padding: 30px;
4688
+ display: flex;
4689
+ justify-content: center;
4690
+ align-items: center;
4691
+ flex-wrap: wrap;
4692
+ }
4693
+
4694
+ .wptb-generate-search {
4695
+ border: 1px solid var(--wptb-plugin-gray-300) !important;
4696
+ text-align: center;
4697
+ font-size: 90%;
4698
+ color: inherit;
4699
+ }
4700
+
4701
+ .wptb-generate-search:active, .wptb-generate-search:focus {
4702
+ border: 1px solid var(--wptb-plugin-gray-400) !important;
4703
+ inset: 0 !important;
4704
+ box-shadow: none !important;
4705
+ }
4706
+
4707
+ .wptb-prebuilt-card {
4708
+ width: 200px;
4709
+ max-width: 200px;
4710
+ display: grid;
4711
+ grid-template-columns: 1fr;
4712
+ grid-template-rows: 125px auto;
4713
+ grid-template-areas: 'main' 'footer';
4714
+ border-radius: 5px;
4715
+ transition: all 0.4s ease-out;
4716
+ background-color: var(--wptb-plugin-theme-color-light);
4717
+ cursor: pointer;
4718
+ margin: calc(var(--wptb-prebuilt-card-control-size) + 10px);
4719
+ }
4720
+
4721
+ .wptb-prebuilt-card-active {
4722
+ cursor: default;
4723
+ animation: wptb-pop 0.2s ease-out;
4724
+ }
4725
+
4726
+ @keyframes wptb-pop {
4727
+ 0% {
4728
+ transform: scale(1);
4729
+ }
4730
+ 50% {
4731
+ transform: scale(1.05);
4732
+ }
4733
+ 0% {
4734
+ transform: scale(1);
4735
+ }
4736
+ }
4737
+
4738
+ @keyframes wptb-more-pop {
4739
+ 0% {
4740
+ transform: scale(1);
4741
+ }
4742
+ 50% {
4743
+ transform: scale(1.5);
4744
+ }
4745
+ 0% {
4746
+ transform: scale(1);
4747
+ }
4748
+ }
4749
+
4750
+ .wptb-prebuilt-card:hover {
4751
+ box-shadow: 3px 3px 2px 0.5px rgba(0, 0, 0, 0.2);
4752
+ }
4753
+
4754
+ .wptb-prebuilt-card-preview {
4755
+ position: relative;
4756
+ grid-area: main;
4757
+ border: var(--wptb-prebuilt-card-border-size) solid var(--wptb-plugin-gray-400);
4758
+ border-bottom: 1px solid var(--wptb-plugin-gray-400) !important;
4759
+ background-color: var(--wptb-plugin-gray-300);
4760
+ display: grid;
4761
+ grid-template-columns: 1fr;
4762
+ grid-template-rows: 1fr;
4763
+ grid-template-areas: 'preview';
4764
+ justify-content: center;
4765
+ align-items: center;
4766
+ border-radius: 5px 5px 0 0;
4767
+ }
4768
+
4769
+ .wptb-prebuilt-card .wptb-settings-fetching {
4770
+ grid-area: main;
4771
+ width: 100%;
4772
+ height: 100%;
4773
+ z-index: 100;
4774
+ display: flex;
4775
+ justify-content: center;
4776
+ align-items: center;
4777
+ color: var(--wptb-plugin-gray-500);
4778
+ }
4779
+
4780
+ .wptb-prebuilt-card-preview table {
4781
+ transition: opacity 0.2s ease-out;
4782
+ }
4783
+
4784
+ .wptb-team-prebuilt {
4785
+ border: var(--wptb-prebuilt-card-border-size) solid var(--wptb-plugin-logo-color) !important;
4786
+ }
4787
+
4788
+ .wptb-prebuilt-card-controls {
4789
+ grid-area: preview;
4790
+ position: relative;
4791
+ width: 100%;
4792
+ height: 100%;
4793
+ display: flex;
4794
+ justify-content: center;
4795
+ align-items: center;
4796
+ pointer-events: none;
4797
+ }
4798
+
4799
+ .wptb-prebuilt-live-display {
4800
+ width: 100%;
4801
+ height: 100%;
4802
+ grid-area: preview;
4803
+ padding: 15px
4804
+ }
4805
+
4806
+ .wptb-prebuilt-live-table {
4807
+ width: 100%;
4808
+ height: 100%;
4809
+ background-color: var(--wptb-plugin-theme-color-light);
4810
+ border-radius: 5px;
4811
+ /*overflow: hidden;*/
4812
+ border: 1px solid var(--wptb-plugin-gray-400);
4813
+ display: grid;
4814
+ }
4815
+
4816
+ .wptb-prebuilt-live-cell {
4817
+ width: 100%;
4818
+ height: 100%;
4819
+ border: 0.5px solid var(--wptb-plugin-gray-400);
4820
+ cursor: pointer;
4821
+ display: flex;
4822
+ justify-content: center;
4823
+ align-items: center;
4824
+ position: relative;
4825
+ overflow: visible;
4826
+ z-index: 10;
4827
+ }
4828
+
4829
+ .wptb-prebuilt-live-cell-hover {
4830
+ opacity: 0.7;
4831
+ background-color: var(--wptb-plugin-logo-color);
4832
+ }
4833
+
4834
+
4835
+ .wptb-prebuilt-live-cell:hover .wptb-prebuilt-live-control {
4836
+ opacity: unset;
4837
+ pointer-events: all;
4838
+ }
4839
+
4840
+ .wptb-prebuilt-live-control-hide .wptb-prebuilt-live-control {
4841
+ display: none;
4842
+ }
4843
+
4844
+ .wptb-prebuilt-live-control-active {
4845
+ background-color: var(--wptb-plugin-logo-color);
4846
+ }
4847
+
4848
+ .wptb-prebuilt-live-control {
4849
+ position: absolute;
4850
+ opacity: 0;
4851
+ pointer-events: none;
4852
+ transition: all 0.1s ease-out;
4853
+ font-size: 120%;
4854
+ }
4855
+
4856
+ .wptb-prebuilt-live-control:active {
4857
+ animation: wptb-push 0.2s ease-out;
4858
+ }
4859
+
4860
+ .wptb-prebuilt-added-cell {
4861
+ background-color: turquoise;
4862
+ cursor: default;
4863
+ z-index: 1 !important;
4864
+ }
4865
+
4866
+ .wptb-prebuilt-control {
4867
+ position: absolute;
4868
+ display: flex;
4869
+ justify-content: center;
4870
+ align-items: center;
4871
+ pointer-events: all;
4872
+ }
4873
+
4874
+ .wptb-prebuilt-control[data-orientation="row"] {
4875
+ top: 0;
4876
+ transform: translateY(calc(-100% - var(--wptb-prebuilt-card-border-size)));
4877
+ display: flex;
4878
+ justify-content: center;
4879
+ align-items: center;
4880
+ }
4881
+
4882
+ .wptb-prebuilt-control[data-orientation="col"] {
4883
+ left: 0;
4884
+ transform: translateX(calc(-100% - var(--wptb-prebuilt-card-border-size)));
4885
+ display: flex;
4886
+ flex-wrap: wrap;
4887
+ flex-direction: column-reverse;
4888
+ width: var(--wptb-prebuilt-card-control-size);
4889
+ justify-content: center;
4890
+ align-items: center;
4891
+ }
4892
+
4893
+ .wptb-prebuilt-control-input {
4894
+ text-align: center;
4895
+ width: var(--wptb-prebuilt-card-control-size);
4896
+ height: var(--wptb-prebuilt-card-control-size);
4897
+ border: 1px solid var(--wptb-plugin-gray-300) !important;
4898
+ color: inherit !important;
4899
+ border-radius: 0 !important;
4900
+ margin: 0 !important;
4901
+ }
4902
+
4903
+ .wptb-prebuilt-control-input:active, .wptb-prebuilt-control-input:focus {
4904
+ border: 1px solid var(--wptb-plugin-gray-400) !important;
4905
+ inset: 0 !important;
4906
+ box-shadow: none !important;
4907
+ }
4908
+
4909
+ .wptb-prebuilt-control-input:disabled {
4910
+ color: var(--wptb-plugin-gray-300) !important;
4911
+ }
4912
+
4913
+ .wptb-prebuilt-control-increment-box {
4914
+ width: var(--wptb-prebuilt-card-control-size);
4915
+ height: var(--wptb-prebuilt-card-control-size);
4916
+ background-color: var(--wptb-plugin-gray-300);
4917
+ display: flex;
4918
+ justify-content: center;
4919
+ align-items: center;
4920
+ font-size: 150%;
4921
+ cursor: pointer;
4922
+ }
4923
+
4924
+ .wptb-prebuilt-control-increment-box:hover {
4925
+ background-color: var(--wptb-plugin-gray-400);
4926
+ }
4927
+
4928
+ .wptb-prebuilt-control-increment-box[disabled] {
4929
+ background-color: var(--wptb-plugin-gray-200) !important;
4930
+ color: var(--wptb-plugin-gray-400) !important;
4931
+ cursor: default;
4932
+ }
4933
+
4934
+ .wptb-prebuilt-card-footer {
4935
+ grid-area: footer;
4936
+ display: flex;
4937
+ justify-content: center;
4938
+ align-items: center;
4939
+ }
4940
+
4941
+ .wptb-prebuilt-card-footer-element {
4942
+ padding: 15px;
4943
+ border: var(--wptb-prebuilt-card-border-size) solid var(--wptb-plugin-gray-400);
4944
+ border-top: 0 !important;
4945
+ width: 100%;
4946
+ height: 100%;
4947
+ border-radius: 0 0 5px 5px;
4948
+ }
4949
+
4950
+ .wptb-prebuilt-card-footer-button-holder {
4951
+ padding: 0 !important;
4952
+ display: grid;
4953
+ grid-template-columns: repeat(2, 1fr);
4954
+ grid-gap: 1px;
4955
+ background-color: var(--wptb-plugin-gray-500);
4956
+ }
4957
+
4958
+ .wptb-prebuilt-card-footer-button-holder-single {
4959
+ grid-template-columns: 1fr !important;
4960
+ }
4961
+
4962
+ .wptb-prebuilt-blank {
4963
+ font-size: 400%;
4964
+ color: var(--wptb-plugin-gray-500);
4965
+ margin: 0 !important;
4966
+ }
4967
+
4968
+ .wptb-prebuilt-footer-button {
4969
+ width: 100%;
4970
+ height: 100%;
4971
+ cursor: pointer;
4972
+ transition: color 0.2s ease-out;
4973
+ font-weight: bold;
4974
+ padding: 15px;
4975
+ color: var(--wptb-plugin-gray-400);
4976
+ }
4977
+
4978
+ .wptb-prebuilt-footer-generate {
4979
+ background-color: var(--wptb-plugin-logo-color);
4980
+ }
4981
+
4982
+ .wptb-prebuilt-footer-edit {
4983
+ background-color: var(--wptb-plugin-green-500);
4984
+ }
4985
+
4986
+ .wptb-prebuilt-footer-button:first-of-type {
4987
+ border-radius: 0 0 0 5px;
4988
+ }
4989
+
4990
+ .wptb-prebuilt-footer-button:last-of-type {
4991
+ border-radius: 0 0 5px 0;
4992
+ }
4993
+
4994
+ .wptb-prebuilt-footer-button:only-of-type {
4995
+ border-radius: 0 0 5px 5px;
4996
+ }
4997
+
4998
+ .wptb-prebuilt-footer-button:hover {
4999
+ color: var(--wptb-plugin-theme-color-light);
5000
+ }
5001
+
5002
+ .wptb-unselectable {
5003
+ -moz-user-select: none;
5004
+ -webkit-user-select: none;
5005
+ -ms-user-select: none;
5006
+ user-select: none;
5007
+ }
5008
+
5009
+ .wptb-no-pointer-events {
5010
+ pointer-events: none;
5011
+ }
5012
+
5013
+ .wptb-plugin-basic-disappear {
5014
+ animation: wptb-basic-disappear 0.1s ease-out;
5015
+ }
5016
+
5017
+ @keyframes wptb-basic-disappear {
5018
+ 0% {
5019
+ opacity: 1;
5020
+ }
5021
+ 100% {
5022
+ opacity: 0;
5023
+ }
5024
+ }
5025
+
5026
+ .wptb-prebuilt-ad {
5027
+ margin: 50px;
5028
+ color: var(--wptb-plugin-gray-500);
5029
+ }
5030
+
5031
+ .wptb-prebuilt-ad-link {
5032
+ font-size: 120%;
5033
+ color: var(--wptb-plugin-logo-color) !important;
5034
+ font-weight: bold;
5035
+ }
5036
+
5037
+ .wptb-prebuilt-table-wrapper {
5038
+ width: 100%;
5039
+ overflow: hidden !important;
5040
+ display: flex;
5041
+ justify-content: center;
5042
+ align-items: center;
5043
+ padding: 20px;
5044
+ animation: wptb-basic-disappear 0.2s ease-out alternate-reverse;
5045
+ pointer-events: none;
5046
+ }
5047
+
5048
+ .wptb-prebuilt-table-wrapper table {
5049
+ /*width: 700px;*/
5050
+ }
5051
+
5052
+ .wptb-prebuilt-card-search-indicator-main {
5053
+ color: var(--wptb-plugin-gray-500);
5054
+ }
5055
+
5056
+ .wptb-prebuilt-card-search-indicator {
5057
+ color: var(--wptb-plugin-logo-color) !important;
5058
+ font-weight: bold;
5059
+ }
5060
+
5061
+ .wptb-prebuilt-card-icon {
5062
+ width: 25px;
5063
+ height: 25px;
5064
+ position: absolute;
5065
+ cursor: pointer;
5066
+ display: flex;
5067
+ justify-content: center;
5068
+ align-items: center;
5069
+ }
5070
+
5071
+ .wptb-prebuilt-card-icon svg {
5072
+ width: 100%;
5073
+ height: 100%;
5074
+
5075
+ }
5076
+
5077
+ .wptb-prebuilt-card-fav-icon {
5078
+ left: 8px;
5079
+ top: 8px;
5080
+ }
5081
+
5082
+ .wptb-prebuilt-card-delete-icon {
5083
+ background-color: var(--wptb-plugin-gray-200);
5084
+ padding: 6px;
5085
+ border-radius: 50%;
5086
+ width: 35px;
5087
+ height: 35px;
5088
+ right: -15px;
5089
+ top: -15px;
5090
+ display: flex;
5091
+ justify-content: center;
5092
+ align-items: center;
5093
+ border: 2px solid var(--wptb-plugin-gray-400);
5094
+ transition: all 0.2s ease-out;
5095
+ z-index: 120;
5096
+ }
5097
+
5098
+ .wptb-prebuilt-card-delete-icon:hover {
5099
+ transform: scale(1.1);
5100
+ }
5101
+
5102
+ .wptb-prebuilt-card-delete-icon {
5103
+ fill: red;
5104
+ }
5105
+
5106
+ .wptb-prebuilt-card-fav-icon svg {
5107
+ transition: fill 0.2s ease-out;
5108
+ fill: transparent;
5109
+ stroke-width: 40;
5110
+ stroke: var(--wptb-plugin-theme-color-light);
5111
+ }
5112
+
5113
+ .wptb-prebuilt-card-fav-icon:active {
5114
+ animation: wptb-push 0.2s ease-out;
5115
+ }
5116
+
5117
+ .wptb-prebuilt-card-fav-icon.is-fav svg {
5118
+ fill: var(--wptb-plugin-logo-color) !important;
5119
+ stroke-width: 0 !important;
5120
+ }
5121
+
5122
+ .wptb-prebuilt-card-fav-icon:hover svg {
5123
+ fill: var(--wptb-plugin-theme-color-light);
5124
+ }
5125
+
5126
+ @keyframes wptb-push {
5127
+ 0% {
5128
+ transform: scale(1);
5129
+ }
5130
+ 50% {
5131
+ transform: scale(0.9);
5132
+ }
5133
+ 100% {
5134
+ transform: scale(1);
5135
+ }
5136
+ }
5137
+
5138
+ .wptb-prebuilt-delete-module-confirmation-overlay {
5139
+ position: absolute;
5140
+ width: 100%;
5141
+ height: 100%;
5142
+ top: 0;
5143
+ left: 0;
5144
+ display: flex;
5145
+ flex-direction: column;
5146
+ justify-content: center;
5147
+ align-items: center;
5148
+ background-color: rgba(0, 0, 0, 0.5);
5149
+ color: var(--wptb-plugin-theme-color-light);
5150
+ z-index: 100;
5151
+ border-radius: 5px 5px 0 0;
5152
+ }
5153
+
5154
+ .wptb-prebuilt-delete-module-confirmation-overlay div {
5155
+ margin: 5px;
5156
+ }
5157
+
5158
+ .wptb-prebuilt-delete-button-container {
5159
+ width: 100%;
5160
+ display: flex;
5161
+ justify-content: space-evenly;
5162
+ align-items: center;
5163
+ }
5164
+
5165
+ .wptb-prebuilt-card-circle-icon-button {
5166
+ width: 30px;
5167
+ height: 30px;
5168
+ border-radius: 50%;
5169
+ display: flex;
5170
+ justify-content: center;
5171
+ align-items: center;
5172
+ cursor: pointer;
5173
+ color: var(--wptb-plugin-theme-color-light)
5174
+ }
5175
+
5176
+ .wptb-prebuilt-card-circle-icon-button svg {
5177
+ width: 100%;
5178
+ height: 100%;
5179
+ fill: currentColor;
5180
+ }
5181
+
5182
+ .wptb-prebuilt-card-circle-icon-button:active {
5183
+ animation: wptb-push 0.2s ease-out;
5184
+ }
5185
+
5186
+ .wptb-prebuilt-card-circle-icon-button[data-wptb-button-type='positive'] {
5187
+ background-color: var(--wptb-plugin-green-500);
5188
+ }
5189
+
5190
+ .wptb-prebuilt-card-circle-icon-button[data-wptb-button-type='negative'] {
5191
+ background-color: red;
5192
+ }
5193
+
5194
+ .wptb-prebuilt-mark-indicator {
5195
+ position: absolute;
5196
+ pointer-events: none;
5197
+ width: calc(100% + 10px);
5198
+ height: calc(100% + 10px);
5199
+ top: -5px;
5200
+ left: -5px;
5201
+ background: repeating-linear-gradient(45deg, white, white 5px, var(--wptb-plugin-logo-color) 5px, var(--wptb-plugin-logo-color) 10px);
5202
+ background-size: 400% 400%;
5203
+ animation: linear-gradient-move 20s linear infinite reverse;
5204
+ opacity: 0.2;
5205
+ }
5206
+
5207
+ .wptb-repeating-linear-gradient {
5208
+ background: repeating-linear-gradient(45deg, white, white 5px, var(--wptb-plugin-logo-color) 5px, var(--wptb-plugin-logo-color) 10px);
5209
+ background-size: 400% 400%;
5210
+ animation: linear-gradient-move 20s linear infinite reverse;
5211
+ }
5212
+
5213
+ @keyframes linear-gradient-move {
5214
+ 0% {
5215
+ background-position: 0% 50%;
5216
+ }
5217
+ 100% {
5218
+ background-position: 100% 50%;
5219
+ }
5220
+ }
5221
+
5222
+ .wptb-prebuilt-card .wptb-prebuilt-mark-indicator {
5223
+ display: none;
5224
+ }
5225
+
5226
+ .wptb-prebuilt-tab-control {
5227
+ position: absolute;
5228
+ top: 20px;
5229
+ left: 20px;
5230
+ border: 1px solid var(--wptb-plugin-gray-400);
5231
+ display: flex;
5232
+ justify-content: center;
5233
+ align-items: center;
5234
+ border-radius: 5px;
5235
+ }
5236
+
5237
+ .wptb-prebuilt-tab-control div {
5238
+ padding: 5px;
5239
+ }
5240
+
5241
+ .wptb-prebuilt-tab-control-label {
5242
+ text-transform: capitalize;
5243
+ border-right: 1px solid var(--wptb-plugin-gray-400);
5244
+ white-space: nowrap;
5245
+ }
5246
+
5247
+ .wptb-prebuilt-tab-control-buttons-wrapper {
5248
+ display: flex;
5249
+ justify-content: center;
5250
+ align-items: center;
5251
+ flex-direction: row;
5252
+ flex-wrap: nowrap;
5253
+ }
5254
+
5255
+ .wptb-prebuilt-tab-control-icon {
5256
+ width: 35px;
5257
+ height: 35px;
5258
+ display: flex;
5259
+ justify-content: center;
5260
+ align-items: center;
5261
+ }
5262
+
5263
+ .wptb-prebuilt-tab-control-icon[data-wptb-prebuilt-tab-control-type="stop"] {
5264
+ fill: red;
5265
+ }
5266
+
5267
+ .wptb-prebuilt-tab-control-icon[data-wptb-prebuilt-tab-control-type="restart"] {
5268
+ fill: var(--wptb-plugin-green-500);
5269
+ }
5270
+
5271
+ .wptb-prebuilt-tab-control-icon svg {
5272
+ width: 100%;
5273
+ height: 100%;
5274
+ cursor: pointer;
5275
+ }
5276
+
5277
+ .wptb-prebuilt-tab-control-icon svg:active {
5278
+ animation: wptb-push 0.2s ease-out;
5279
+ }
5280
+
5281
+ .wptb-prebuilt-dev-tool {
5282
+ position: absolute;
5283
+ top: 20px;
5284
+ right: 20px;
5285
+ border: 1px solid var(--wptb-plugin-gray-400);
5286
+ display: flex;
5287
+ flex-direction: column;
5288
+ flex-wrap: nowrap;
5289
+ justify-content: center;
5290
+ align-items: center;
5291
+ border-radius: 5px;
5292
+ }
5293
+
5294
+ .wptb-prebuilt-dev-tool div {
5295
+ padding: 5px;
5296
+ }
5297
+
5298
+ .wptb-prebuilt-dev-tool .label {
5299
+ font-weight: bold;
5300
+ border-bottom: 1px solid var(--wptb-plugin-gray-400);
5301
+ }
5302
+
5303
+ .wptb-prebuilt-dev-tool .prebuilt-button {
5304
+ width: fit-content;
5305
+ padding: 10px;
5306
+ margin: 5px;
5307
+ color: var(--wptb-plugin-theme-color-light);
5308
+ background-color: var(--wptb-plugin-logo-color);
5309
+ border-radius: 5px;
5310
+ cursor: pointer;
5311
+ }
5312
+
5313
+ .wptb-prebuilt-dev-tool .prebuilt-button:active {
5314
+ animation: wptb-push 0.2s ease-out;
5315
+ }
5316
+
5317
+ .wptb-prebuilt-display-calculate {
5318
+ width: 700px;
5319
+ }
5320
+
5321
+ /*endregion*/
5322
+
5323
+ /*region tinyMCE blocker*/
5324
+ .wptb-preview-table-manage-cells table tr td div {
5325
+ pointer-events: none;
5326
+ -moz-user-select: none;
5327
+ -webkit-user-select: none;
5328
+ -ms-user-select: none;
5329
+ user-select: none;
5330
+ }
5331
+
5332
+ .wptb-plugin-blocker-element {
5333
+ position: absolute;
5334
+ top: 0;
5335
+ left: 0;
5336
+ width: 100%;
5337
+ height: 100%;
5338
+ display: flex;
5339
+ justify-content: center;
5340
+ align-items: center;
5341
+ cursor: pointer;
5342
+ }
5343
+
5344
+ .wptb-highlighted .wptb-plugin-blocker-element {
5345
+ background: repeating-linear-gradient(45deg, white, white 5px, var(--wptb-plugin-logo-color) 5px, var(--wptb-plugin-logo-color) 10px);
5346
+ background-size: 400% 400%;
5347
+ animation: linear-gradient-move 40s linear infinite reverse;
5348
+ opacity: 0.2;
5349
+ }
5350
+
5351
+ .wptb-plugin-blocker-element-empty::before {
5352
+ content: 'Cell';
5353
+ display: block;
5354
+ font-weight: normal;
5355
+ font-size: 80%;
5356
+ text-align: center;
5357
+ color: #969fa6;
5358
+ }
5359
+
5360
+ .wptb-plugin-blocker-element-empty::after {
5361
+ content: '';
5362
+ display: block;
5363
+ border: 1px dashed #969fa6;
5364
+ position: absolute;
5365
+ top: 2px;
5366
+ right: 2px;
5367
+ bottom: 2px;
5368
+ left: 2px;
5369
+ }
5370
+
5371
+ /*endregion*/
5372
+
5373
+ /*region header-toolbar*/
5374
+ .wptb-plugin-header-toolbar {
5375
+ top: 0;
5376
+ position: absolute;
5377
+ left: 50%;
5378
+ padding: 0 10px;
5379
+ border: 1px solid var(--wptb-plugin-gray-300);
5380
+ z-index: 1;
5381
+ background-color: var(--wptb-plugin-gray-100);
5382
+ transition: top 0.2s ease-out;
5383
+ display: flex;
5384
+ flex-direction: row;
5385
+ align-items: center;
5386
+ }
5387
+
5388
+ .wptb-plugin-header-toolbar div {
5389
+ font-size: 110%;
5390
+ width: fit-content;
5391
+ padding: 5px;
5392
+ margin: 0 5px;
5393
+ }
5394
+
5395
+ .wptb-plugin-header-toolbar .dashicons {
5396
+ color: var(--wptb-plugin-logo-color) !important;
5397
+ font-weight: bold !important;
5398
+ }
5399
+
5400
+ /*endregion*/
5401
+
5402
+ /*region versionControl*/
5403
+ .wptb-settings-version-control {
5404
+ max-width: 800px;
5405
+ width: 100%;
5406
+ display: grid;
5407
+ grid-template-columns: 1fr 300px;
5408
+ grid-template-areas: 'main changelog';
5409
+ grid-template-rows: 500px;
5410
+ grid-gap: 50px;
5411
+ }
5412
+
5413
+ .wptb-version-control-main {
5414
+ grid-area: main;
5415
+ padding: 20px;
5416
+ display: flex;
5417
+ flex-direction: column;
5418
+ justify-content: space-between;
5419
+ align-items: center;
5420
+ }
5421
+
5422
+ .wptb-version-control-main-row {
5423
+ width: 100%;
5424
+ display: flex;
5425
+ justify-content: center;
5426
+ padding: 10px 0;
5427
+ flex-direction: column;
5428
+ }
5429
+
5430
+ .wptb-version-control-warning-span {
5431
+ color: var(--wptb-plugin-red-600) !important;
5432
+ text-transform: uppercase;
5433
+ font-weight: bold;
5434
+ font-size: 120%;
5435
+ }
5436
+
5437
+ .wptb-version-control-warning-info {
5438
+ font-size: 90%;
5439
+ }
5440
+
5441
+ .wptb-version-control-changelog {
5442
+ grid-area: changelog;
5443
+ background-color: var(--wptb-plugin-gray-200);
5444
+ border: 1px solid var(--wptb-plugin-gray-300);
5445
+ font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
5446
+ padding: 10px;
5447
+ overflow-y: scroll;
5448
+ height: 100%;
5449
+ }
5450
+
5451
+ .wptb-version-control-controls {
5452
+ width: 100%;
5453
+ height: 100%;
5454
+ margin: 20px 0;
5455
+ display: grid;
5456
+ grid-template-columns: auto 1fr;
5457
+ grid-template-rows: repeat(3, auto);
5458
+ align-items: center;
5459
+ grid-gap: 20px
5460
+ }
5461
+
5462
+ .wptb-version-control-row-element {
5463
+ padding: 10px 0;
5464
+
5465
+ }
5466
+
5467
+ .wptb-version-control-row-label {
5468
+ text-transform: capitalize;
5469
+ font-weight: bold;
5470
+ }
5471
+
5472
+ .wptb-version-control-row-label:after {
5473
+ content: ':';
5474
+ }
5475
+
5476
+ .wptb-version-indicator {
5477
+ height: 100%;
5478
+ /*width: 100%;*/
5479
+ display: flex;
5480
+ align-items: center;
5481
+ margin-right: 10px;
5482
+ }
5483
+
5484
+ .wptb-version-indicator-circle {
5485
+ width: 15px;
5486
+ height: 15px;
5487
+ border-radius: 50%;
5488
+ margin-right: 10px;
5489
+ }
5490
+
5491
+ .wptb-version-indicator-match {
5492
+ background-color: var(--wptb-plugin-green-500);
5493
+ }
5494
+
5495
+ .wptb-version-indicator-low {
5496
+ background-color: var(--wptb-plugin-yellow-500);
5497
+ }
5498
+
5499
+ .wptb-version-control-anchor {
5500
+ text-transform: capitalize;
5501
+ }
5502
+
5503
+ .wptb-version-control-row-slot {
5504
+ width: 100%;
5505
+ height: 100%;
5506
+ display: flex;
5507
+ justify-content: flex-start;
5508
+ align-items: center;
5509
+ flex-direction: row;
5510
+ }
5511
+
5512
+ /*endregion*/
5513
+
5514
+ .wptb-table-tags-menu-wrapper {
5515
+ position: fixed;
5516
+ width: 100%;
5517
+ height: 100%;
5518
+ top: 0;
5519
+ left: 0;
5520
+ }
5521
+
5522
+ /*region tagControl*/
5523
+ .wptb-tag-control-cloud-wrapper {
5524
+ width: 100%;
5525
+ }
5526
+
5527
+ .wptb-tag-control-create-wrapper {
5528
+ margin-top: 20px !important;
5529
+ border-top: 1px solid var(--wptb-plugin-gray-400);
5530
+ padding-top: 10px;
5531
+ }
5532
+
5533
+ .wptb-tag-control-cloud-wrapper:nth-of-type(n+1) {
5534
+ margin-top: 10px;
5535
+ }
5536
+
5537
+ .wptb-tag-control-cloud-wrapper .wptb-settings-item-title {
5538
+ text-transform: capitalize;
5539
+ font-size: 90% !important;
5540
+ font-weight: bold;
5541
+ }
5542
+
5543
+ .wptb-tag-control-cloud {
5544
+ width: 100%;
5545
+ min-height: 90px;
5546
+ max-height: 90px;
5547
+ overflow-y: auto;
5548
+ background-color: var(--wptb-plugin-gray-200);
5549
+ padding: 3px;
5550
+ display: flex;
5551
+ flex-direction: row;
5552
+ flex-wrap: wrap;
5553
+ justify-content: center;
5554
+ align-items: center;
5555
+ position: relative;
5556
+ border: 1px solid var(--wptb-plugin-gray-400);
5557
+ border-radius: 5px;
5558
+ }
5559
+
5560
+ .wptb-tag-ribbon-wrapper {
5561
+ color: var(--wptb-plugin-theme-color-light);
5562
+ font-size: 90% !important;
5563
+ padding: 3px 5px 3px 10px;
5564
+ background-color: var(--wptb-plugin-logo-color);
5565
+ border-radius: 999px !important;
5566
+ display: flex;
5567
+ align-items: center;
5568
+ justify-content: space-between;
5569
+ margin: 5px;
5570
+ cursor: default;
5571
+ animation: wptb-basic-appear 0.2s ease-out;
5572
+ }
5573
+
5574
+ .wptb-tag-ribbon-name {
5575
+ font-size: inherit !important;
5576
+ }
5577
+
5578
+ .wptb-tag-ribbon-wrapper:hover .wptb-tag-operation-button {
5579
+ opacity: 1;
5580
+ }
5581
+
5582
+ .wptb-tag-operation-button {
5583
+ width: 20px;
5584
+ height: 20px;
5585
+ border-radius: 100%;
5586
+ margin-left: 10px;
5587
+ opacity: 0;
5588
+ transition: all 0.3s ease-out;
5589
+ display: flex;
5590
+ justify-content: center;
5591
+ align-items: center;
5592
+ cursor: pointer;
5593
+ }
5594
+
5595
+ .wptb-tag-operation-add-button {
5596
+ background-color: var(--wptb-plugin-green-500);
5597
+ }
5598
+
5599
+ .wptb-tag-operation-remove-button {
5600
+ background-color: var(--wptb-plugin-red-600);
5601
+ }
5602
+
5603
+ .wptb-tag-control-cloud-empty {
5604
+ position: absolute;
5605
+ top: 0;
5606
+ left: 0;
5607
+ width: 100%;
5608
+ height: 100%;
5609
+ color: var(--wptb-plugin-gray-500);
5610
+ display: flex;
5611
+ justify-content: center;
5612
+ align-items: center;
5613
+ font-style: italic;
5614
+ font-size: 90% !important;
5615
+ }
5616
+
5617
+ .wptb-tag-control-cloud-empty:before, .wptb-tag-control-cloud-empty:after {
5618
+ content: '==';
5619
+ margin: 0 5px;
5620
+ }
5621
+
5622
+ .wptb-tag-control-search-wrapper {
5623
+ margin-top: 5px;
5624
+ width: 100%;
5625
+ display: flex;
5626
+ justify-content: center;
5627
+ align-items: center;
5628
+ }
5629
+
5630
+ .wptb-tag-control-search {
5631
+ border: 1px solid var(--wptb-plugin-gray-400) !important;
5632
+ text-align: center;
5633
+ font-size: 90% !important;
5634
+ color: inherit;
5635
+ border-radius: 999px !important;
5636
+ padding: 0 !important;
5637
+ }
5638
+
5639
+ .wptb-tag-control-search:active, .wptb-tag-control-search:focus {
5640
+ border: 1px solid var(--wptb-plugin-gray-500) !important;
5641
+ inset: 0 !important;
5642
+ box-shadow: none !important;
5643
+ }
5644
+
5645
+ .wptb-tag-control-search-input {
5646
+ position: relative;
5647
+ width: fit-content;
5648
+ font-size: 90% !important;
5649
+ }
5650
+
5651
+ .wptb-tag-control-search-clear {
5652
+ position: absolute;
5653
+ top: 0;
5654
+ right: 10px;
5655
+ height: 100%;
5656
+ display: flex;
5657
+ justify-content: center;
5658
+ align-items: center;
5659
+ color: var(--wptb-plugin-gray-500);
5660
+ cursor: pointer;
5661
+ padding: 5px;
5662
+ }
5663
+
5664
+ .wptb-tag-control-search-indicator {
5665
+ font-weight: bold;
5666
+ color: var(--wptb-plugin-green-500) !important;
5667
+ font-size: inherit !important;
5668
+ }
5669
+
5670
+ .wptb-tag-control-create-controls-wrapper {
5671
+ width: 100%;
5672
+ display: grid;
5673
+ grid-template-columns: 1fr auto;
5674
+ align-items: center;
5675
+ grid-gap: 10px;
5676
+ margin-top: 10px;
5677
+ }
5678
+
5679
+ .wptb-tag-control-create-controls-wrapper input {
5680
+ width: 100% !important;
5681
+ }
5682
+
5683
+ .wptb-tag-control-create-control-label {
5684
+ font-size: 90% !important;
5685
+ text-transform: capitalize;
5686
+ }
5687
+
5688
+ .wptb-tag-control-create-button {
5689
+ background-color: var(--wptb-plugin-logo-color);
5690
+ color: var(--wptb-plugin-theme-color-light);
5691
+ display: flex;
5692
+ justify-self: end;
5693
+ justify-content: center;
5694
+ align-items: center;
5695
+ font-size: 90% !important;
5696
+ text-transform: uppercase;
5697
+ padding: 5px;
5698
+ border-radius: 5px;
5699
+ grid-column: 2;
5700
+ width: fit-content;
5701
+ cursor: pointer;
5702
+ transition: all 0.2s ease-out;
5703
+ }
5704
+
5705
+ .wptb-tag-control-create-button[data-disabled] {
5706
+ background-color: var(--wptb-plugin-gray-400);
5707
+ pointer-events: none;
5708
+ }
5709
+
5710
+ .wptb-tag-control-status {
5711
+ grid-column: 1;
5712
+ width: 100%;
5713
+ height: 100%;
5714
+ display: flex;
5715
+ align-items: center;
5716
+ }
5717
+
5718
+ .wptb-tag-control-status[data-status='positive'] {
5719
+ color: var(--wptb-plugin-green-500) !important;
5720
+ }
5721
+
5722
+ .wptb-tag-control-status[data-status='negative'] {
5723
+ color: var(--wptb-plugin-red-600) !important;
5724
+ }
5725
+
5726
+ .wptb-tag-control-busy {
5727
+ width: 100%;
5728
+ height: 100%;
5729
+ display: flex;
5730
+ align-items: center;
5731
+ color: var(--wptb-plugin-logo-color);
5732
+ grid-column: 1;
5733
+ }
5734
+
5735
+ /*endregion*/
5736
+
5737
+ .wptb-table-cell-select-wrapper {
5738
+ display: grid;
5739
+ grid-gap: 5px;
5740
+ width: 100%;
5741
+ height: 150px;
5742
+ border: 1px solid var(--wptb-plugin-gray-400);
5743
+ padding: 10px;
5744
+ border-radius: 3px;
5745
+ background-color: var(--wptb-plugin-gray-300);
5746
+ }
5747
+
5748
+ .wptb-table-cell-select-cell {
5749
+ width: 100%;
5750
+ height: 100%;
5751
+ cursor: pointer;
5752
+ transition: all 0.2s ease-out;
5753
+ border-radius: 3px;
5754
+ background-color: var(--wptb-plugin-gray-400);
5755
+ }
5756
+
5757
+ .wptb-table-cell-select-cell:hover {
5758
+ background-color: var(--wptb-plugin-gray-500);
5759
+ }
5760
+
5761
+ .wptb-table-cell-select-cell[data-cell-selected=true] {
5762
+ /*background-color: var(--wptb-plugin-gray-300);*/
5763
+ /*background-color: #93B9CD !important;*/
5764
+ background-color: var(--wptb-plugin-logo-color) !important;
5765
+ }
5766
+
5767
+ .wptb-table-cell-indicator {
5768
+ position: fixed;
5769
+ opacity: 0.2;
5770
+ pointer-events: none;
5771
+ }
5772
+
5773
+ .wptb-different-border-control-wrapper .wptb-settings-middle-xs {
5774
+ padding-top: 5px !important;
5775
+ /*padding-left: 0 !important;*/
5776
+ /*padding-right: 0 !important;*/
5777
+ border-bottom: 0 !important;
5778
+ }
5779
+
5780
+ .wptb-different-border-range-input .wptb-settings-item-header {
5781
+ padding-bottom: 0 !important;
5782
+ }
5783
+
5784
+ /*region color picker*/
5785
+ .wptb-color-picker-wrapper {
5786
+ width: 100%;
5787
+ }
5788
+
5789
+ .wptb-color-picker-input-wrapper {
5790
+ width: 100px;
5791
+ height: 30px;
5792
+ border: 1px solid var(--wptb-plugin-gray-400);
5793
+ border-radius: 3px;
5794
+ cursor: pointer;
5795
+ background-color: var(--wptb-plugin-gray-200);
5796
+ display: grid;
5797
+ grid-template-columns: 0.7fr 0.3fr;
5798
+ justify-content: center;
5799
+ align-items: center;
5800
+ }
5801
+
5802
+ .wptb-color-picker-input-wrapper[disabled] {
5803
+ pointer-events: none;
5804
+ }
5805
+
5806
+ .wptb-color-picker-inner-indicator {
5807
+ height: 100%;
5808
+ padding: 3px;
5809
+ display: grid;
5810
+ grid-template-columns: 1fr;
5811
+ grid-template-rows: 1fr;
5812
+ }
5813
+
5814
+ .wptb-color-picker-clear-color-indicator {
5815
+ width: 100%;
5816
+ height: 100%;
5817
+ grid-column: 1;
5818
+ grid-row: 1;
5819
+ z-index: 2;
5820
+ display: flex;
5821
+ justify-content: center;
5822
+ align-items: center;
5823
+ }
5824
+
5825
+ .wptb-color-picker-clear-color-indicator svg {
5826
+ fill: var(--wptb-plugin-red-600)
5827
+ }
5828
+
5829
+ .wptb-color-picker-icon-standards svg {
5830
+ width: 15px;
5831
+ height: auto;
5832
+
5833
+ }
5834
+
5835
+ .wptb-color-picker-selected-color {
5836
+ border-radius: 3px 0 0 3px;
5837
+ border: 1px solid var(--wptb-plugin-gray-400);
5838
+ transition: background-color 0.2s ease-out;
5839
+ cursor: pointer;
5840
+ grid-column: 1;
5841
+ grid-row: 1;
5842
+ z-index: 2;
5843
+ }
5844
+
5845
+ .wptb-color-picker-alpha-checkerboard {
5846
+ z-index: 1;
5847
+ grid-column: 1;
5848
+ grid-row: 1;
5849
+ background-size: 15px !important;
5850
+ }
5851
+
5852
+ .wptb-color-picker-logo {
5853
+ display: flex;
5854
+ justify-content: center;
5855
+ align-items: center;
5856
+ width: 100%;
5857
+ height: 100%;
5858
+ font-size: 120% !important;
5859
+ color: var(--wptb-plugin-logo-color)
5860
+ }
5861
+
5862
+ .wptb-color-picker-logo div {
5863
+ display: flex;
5864
+ justify-content: center;
5865
+ align-items: center;
5866
+ }
5867
+
5868
+ .wptb-color-picker-logo svg {
5869
+ fill: currentColor;
5870
+ }
5871
+
5872
+
5873
+ .wptb-color-picker-tool-wrapper {
5874
+ position: fixed;
5875
+ z-index: 100;
5876
+ }
5877
+
5878
+ .wptb-color-picker-tool-inner-wrapper {
5879
+ position: relative;
5880
+ }
5881
+
5882
+ .wptb-color-picker-input {
5883
+ cursor: pointer;
5884
+ }
5885
+
5886
+ .wptb-color-picker-input:disabled {
5887
+ cursor: default;
5888
+ }
5889
+
5890
+ [data-wptb-text-disabled=true] {
5891
+ color: var(--wptb-plugin-gray-400) !important;
5892
+ }
5893
+
5894
+ .wptb-color-picker-clear-color-wrapper {
5895
+ position: absolute;
5896
+ display: flex;
5897
+ justify-content: center;
5898
+ align-items: center;
5899
+ left: 0;
5900
+ width: 100%;
5901
+ height: 30px;
5902
+ }
5903
+
5904
+ .wptb-color-picker-clear-color {
5905
+ background-color: #ffffff;
5906
+ height: 100%;
5907
+ padding: 0 10px;
5908
+ display: flex;
5909
+ justify-content: center;
5910
+ align-items: center;
5911
+ border: 1px solid var(--wptb-plugin-gray-400);
5912
+ border-radius: 0 0 3px 3px;
5913
+ font-size: 90% !important;
5914
+ color: var(--wptb-plugin-red-600);
5915
+ cursor: pointer;
5916
+ }
5917
+
5918
+ .wptb-color-picker-clear-color svg {
5919
+ fill: currentColor;
5920
+ }
5921
+
5922
+ .wptb-color-picker-input-wrapper[disabled] .wptb-color-picker-logo svg {
5923
+ fill: var(--wptb-plugin-gray-400);
5924
+ }
5925
+
5926
+ .wptb-color-picker-input-wrapper[disabled] .wptb-color-picker-selected-color {
5927
+ background-color: var(--wptb-plugin-gray-300) !important;
5928
+ }
5929
+
5930
+ /*endregion*/
5931
+
5932
+ /*region local dev file control*/
5933
+ .wptb-local-dev-file-chooser {
5934
+ position: fixed;
5935
+ width: 100%;
5936
+ height: 100%;
5937
+ left: 0;
5938
+ top: 0;
5939
+ display: flex;
5940
+ justify-content: center;
5941
+ align-items: center;
5942
+ background-color: rgba(0, 0, 0, 0.6);
5943
+ }
5944
+
5945
+ .wptb-local-dev-modal {
5946
+ background-color: var(--wptb-plugin-theme-color-light);
5947
+ width: 500px;
5948
+ height: 300px;
5949
+ border-radius: 3px;
5950
+ display: grid;
5951
+ grid-template-columns: 1fr;
5952
+ grid-template-rows: minmax(min-content, max-content) 1fr minmax(min-content, max-content);
5953
+ grid-template-areas: "header" "files" "footer";
5954
+ }
5955
+
5956
+ .wptb-local-dev-modal > div {
5957
+ padding: 5px;
5958
+ border-bottom: 1px solid var(--wptb-plugin-gray-400);
5959
+ display: flex;
5960
+ align-items: center;
5961
+ }
5962
+
5963
+ .wptb-local-dev-modal > div:last-of-type {
5964
+ border-bottom: 0;
5965
+ }
5966
+
5967
+ .wptb-local-dev-modal-header {
5968
+ font-weight: bold;
5969
+ text-transform: uppercase;
5970
+ justify-content: space-between;
5971
+ padding: 0 !important;
5972
+ }
5973
+
5974
+ .wptb-local-dev-modal-title {
5975
+ padding: 5px !important;
5976
+ }
5977
+
5978
+ .wptb-local-dev-modal-files {
5979
+ position: relative;
5980
+ overflow-y: auto;
5981
+ display: flex;
5982
+ flex-direction: row;
5983
+ flex-wrap: wrap;
5984
+ justify-content: center;
5985
+ align-items: center;
5986
+ background-color: var(--wptb-plugin-gray-200);
5987
+ }
5988
+
5989
+ .wptb-local-dev-modal-footer {
5990
+ justify-content: flex-end;
5991
+ }
5992
+
5993
+ .wptb-local-dev-modal-footer .wptb-settings-button {
5994
+ margin: 0 5px !important;
5995
+ font-size: 90% !important;
5996
+ }
5997
+
5998
+ .wptb-local-dev-image-card {
5999
+ width: 100px;
6000
+ max-width: 100px;
6001
+ display: grid;
6002
+ grid-template-columns: 1fr;
6003
+ grid-template-rows: 1fr minmax(min-content, max-content);
6004
+ grid-auto-flow: row;
6005
+ cursor: pointer;
6006
+ justify-content: center;
6007
+ align-items: center;
6008
+ margin: 5px;
6009
+ border: 2px solid var(--wptb-plugin-gray-300);
6010
+ padding: 5px;
6011
+ border-radius: 5px;
6012
+ transition: all 0.2s ease-out;
6013
+ background-color: var(--wptb-plugin-theme-color-light);
6014
+ }
6015
+
6016
+ .wptb-local-dev-image-card[data-active=true] {
6017
+ border: 2px solid var(--wptb-plugin-logo-color) !important;
6018
+ }
6019
+
6020
+ .wptb-local-dev-image-card:hover {
6021
+ border: 2px solid var(--wptb-plugin-gray-400);
6022
+ transform: scale(1.05);
6023
+ }
6024
+
6025
+ .wptb-local-dev-image-holder {
6026
+ width: 100%;
6027
+ height: 100%
6028
+ }
6029
+
6030
+ .wptb-local-dev-image-holder img {
6031
+ max-width: 100%;
6032
+ max-height: 100%;
6033
+ display: block;
6034
+ }
6035
+
6036
+ .wptb-local-dev-image-name {
6037
+ word-break: break-all;
6038
+ display: flex;
6039
+ justify-content: center;
6040
+ align-items: center;
6041
+ font-style: italic;
6042
+ font-size: 90%;
6043
+ border-top: 1px solid var(--wptb-plugin-gray-300);
6044
+ }
6045
+
6046
+ .wptb-local-dev-modal-close {
6047
+ padding: 0 10px;
6048
+ color: var(--wptb-plugin-red-600);
6049
+ cursor: pointer;
6050
+ font-size: 120% !important;
6051
+ }
6052
+
6053
+ /*endregion*/
6054
+
6055
+ /*region upsells*/
6056
+ .wptb-upsells-wrapper {
6057
+ width: 100%;
6058
+ padding: 15px;
6059
+ color: var(--wptb-plugin-theme-color-light);
6060
+ cursor: pointer;
6061
+ transition: all 0.2s ease-out;
6062
+ animation: wptb-unfold-up 0.3s ease-out forwards;
6063
+ animation-delay: 0.5s;
6064
+ transform: rotateX(-90deg);
6065
+ transform-origin: top;
6066
+ box-sizing: border-box;
6067
+ }
6068
+
6069
+ .wptb-left-panel .wptb-upsells-wrapper {
6070
+ font-size: 90% !important;
6071
+ }
6072
+
6073
+ .wptb-panel-left .wptb-upsells-anchor {
6074
+ font-size: 125%;
6075
+ }
6076
+
6077
+ .wptb-upsells-message-holder {
6078
+ display: flex;
6079
+ flex-direction: column;
6080
+ justify-content: center;
6081
+ align-items: center;
6082
+ width: 100%;
6083
+ margin: 0 !important;
6084
+ border-radius: 5px;
6085
+ padding: 10px 5px;
6086
+ transition: all 0.3s ease-out;
6087
+ text-align: center;
6088
+ background-color: var(--wptb-plugin-theme-color-light) !important;
6089
+ border: 1px solid var(--wptb-plugin-gray-400);
6090
+ color: var(--wptb-plugin-gray-600);
6091
+ font-weight: 500;
6092
+ }
6093
+
6094
+ .wptb-generate-wrapper .wptb-upsells-message-holder {
6095
+ background-color: var(--wptb-plugin-gray-200) !important;
6096
+ padding: 15px;
6097
+ }
6098
+
6099
+ .wptb-upsells-pro-label {
6100
+ background-color: var(--wptb-plugin-cta-button) !important;
6101
+ color: var(--wptb-plugin-black);
6102
+ border-radius: 3px;
6103
+ padding: 5px;
6104
+ font-weight: bold;
6105
+ border: 1px solid var(--wptb-plugin-gray-400) !important;
6106
+ }
6107
+
6108
+ .wptb-upsells-message-holder:hover {
6109
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.3) !important;
6110
+ transform: scale(1.05);
6111
+ }
6112
+
6113
+ .wptb-upsells-anchor {
6114
+ text-decoration: none;
6115
+ }
6116
+
6117
+ .wptb-upsells-wrapper:active {
6118
+ /*animation: wptb-push 0.1s ease-out;*/
6119
+ }
6120
+
6121
+ @keyframes wptb-unfold-up {
6122
+ 0% {
6123
+ transform: perspective(100px) rotateX(-90deg);
6124
+ }
6125
+ 100% {
6126
+ transform: perspective(100px) rotateX(0deg);
6127
+ }
6128
+ }
6129
+
6130
+ /*region notification manager*/
6131
+ .wptb-notification-manager {
6132
+ position: fixed;
6133
+ display: flex;
6134
+ flex-wrap: nowrap;
6135
+ flex-direction: column;
6136
+ height: max-content;
6137
+ top: 50%;
6138
+ right: calc(-1 * var(--wptb-notification-manager-width));
6139
+ width: var(--wptb-notification-manager-width);
6140
+ transition: all 0.2s ease-out;
6141
+ z-index: 99999999999;
6142
+ }
6143
+
6144
+ .wptb-notification-wrapper {
6145
+ width: 100%;
6146
+ display: grid;
6147
+ grid-template-columns: 40px 3px 1fr;
6148
+ justify-content: center;
6149
+ align-items: start;
6150
+ color: var(--wptb-plugin-gray-700);
6151
+ border-radius: 3px 0 0 3px;
6152
+ /*overflow: hidden;*/
6153
+ border-right: 0 !important;
6154
+ margin: 0 0 5px 0;
6155
+ transition: all 0.3s ease-out;
6156
+ cursor: pointer;
6157
+ }
6158
+
6159
+ .wptb-notification-icon {
6160
+ width: 40px;
6161
+ height: 40px;
6162
+ display: flex;
6163
+ justify-content: center;
6164
+ align-items: center;
6165
+ position: relative;
6166
+ }
6167
+
6168
+ .wptb-notification-filler {
6169
+ width: 3px;
6170
+ height: 40px;
6171
+ background-color: var(--wptb-plugin-gray-200);
6172
+ border-width: 1px 0 1px 0;
6173
+ border-style: solid;
6174
+ }
6175
+
6176
+ .wptb-notification-message {
6177
+ width: 100%;
6178
+ height: 100%;
6179
+ display: flex;
6180
+ justify-content: flex-start;
6181
+ align-items: center;
6182
+ padding: 0 15px;
6183
+ text-transform: capitalize;
6184
+ border-width: 1px 0 1px 5px;
6185
+ border-style: solid;
6186
+ background-color: var(--wptb-plugin-gray-200);
6187
+ }
6188
+
6189
+ .wptb-notification-svg-wrapper {
6190
+ display: flex;
6191
+ justify-content: center;
6192
+ align-items: center;
6193
+ width: 100%;
6194
+ height: 100%;
6195
+ }
6196
+
6197
+ .wptb-notification-svg-wrapper svg {
6198
+ width: 25px;
6199
+ height: 25px;
6200
+ fill: currentColor;
6201
+ }
6202
+
6203
+
6204
+ .wptb-notification-manager-dev-tool-wrapper {
6205
+ position: absolute;
6206
+ top: 50%;
6207
+ left: 10px;
6208
+ width: fit-content;
6209
+ display: grid;
6210
+ grid-template-columns: repeat(1, 1fr);
6211
+ grid-template-rows: repeat(4, minmax(min-content, max-content));
6212
+ grid-template-areas: "header" "selection" "message" "submit";
6213
+ border: 1px solid var(--wptb-plugin-gray-400);
6214
+ border-radius: 3px;
6215
+ justify-content: center;
6216
+ align-items: center;
6217
+ background-color: var(--wptb-plugin-gray-100);
6218
+ }
6219
+
6220
+ .wptb-notification-manager-dev-tool-wrapper > div {
6221
+ padding: 10px;
6222
+ border-bottom: 1px solid var(--wptb-plugin-gray-300);
6223
+ }
6224
+
6225
+ .wptb-nm-devtool-header {
6226
+ grid-area: header;
6227
+ font-weight: bold;
6228
+ }
6229
+
6230
+ .wptb-nm-devtool-selection {
6231
+ grid-area: selection;
6232
+ display: flex;
6233
+ justify-content: space-evenly;
6234
+ align-items: center;
6235
+ flex-wrap: nowrap;
6236
+ flex-direction: row;
6237
+ }
6238
+
6239
+ .wptb-nm-devtool-input {
6240
+ display: grid;
6241
+ grid-template-columns: 1fr;
6242
+ grid-template-rows: repeat(2, 1fr);
6243
+ }
6244
+
6245
+ .wptb-nm-devtool-submit {
6246
+ grid-area: submit;
6247
+ justify-self: center;
6248
+ }
6249
+
6250
+ .wptb-nm-devtool-message {
6251
+ grid-area: message;
6252
+ justify-self: center;
6253
+ }
6254
+
6255
+ .wptb-notification-queue-length {
6256
+ position: absolute;
6257
+ width: 20px;
6258
+ height: 20px;
6259
+ left: -10px;
6260
+ top: -10px;
6261
+ display: flex;
6262
+ justify-content: center;
6263
+ align-items: center;
6264
+ border-radius: 100%;
6265
+ color: var(--wptb-plugin-theme-color-light);
6266
+ font-weight: bold;
6267
+ animation: wptb-more-pop 0.2s ease-out;
6268
+ }
6269
+
6270
+ /*endregion*/
6271
+
6272
+ .wptb-builder-panel[data-manage-cells-active='true'] {
6273
+ display: flex;
6274
+ flex-flow: column;
6275
+ height: 100%;
6276
+ overflow: hidden !important;
6277
+ }
6278
+
6279
+ [data-manage-cells-active='true'] .wptb-builder-content {
6280
+ display: flex;
6281
+ flex-flow: column;
6282
+ height: 100%;
6283
+ overflow: hidden !important;
6284
+
6285
+ }
6286
+
6287
+ [data-manage-cells-active='true'] .wptb-management_table_container {
6288
+ width: 100%;
6289
+ height: 100%;
6290
+ display: grid;
6291
+ grid-template-columns: 1fr;
6292
+ grid-template-rows: minmax(min-content, max-content) 1fr minmax(min-content, max-content);
6293
+ overflow: hidden !important;
6294
+ margin: unset;
6295
+ }
6296
+
6297
+ [data-manage-cells-active='true'] .wptb-preview-table-manage-cells {
6298
+ overflow: auto !important;
6299
+ }
6300
+
6301
+ [data-manage-cells-active='true'] .wptb-management_table_container #wptb-bar-top {
6302
+ text-align: center;
6303
+ z-index: 10000;
6304
+ }
6305
+
6306
+ /*region What Is New*/
6307
+ .wptb-what-is-new-container {
6308
+ position: fixed;
6309
+ z-index: 100000000;
6310
+ background-color: rgba(0, 0, 0, 0.3);
6311
+ top: 0;
6312
+ left: 0;
6313
+ width: 100%;
6314
+ height: 100%;
6315
+ display: flex;
6316
+ justify-content: center;
6317
+ align-items: center;
6318
+ }
6319
+
6320
+ .wptb-what-is-new-window {
6321
+ background-color: var(--wptb-plugin-theme-color-light);
6322
+ width: 700px;
6323
+ display: grid;
6324
+ grid-template-columns: 1fr;
6325
+ grid-template-rows: repeat(2, minmax(min-content, max-content));
6326
+ grid-template-areas: 'header' 'content';
6327
+ justify-content: center;
6328
+ align-items: center;
6329
+ border-radius: 3px;
6330
+ font-size: 110% !important;
6331
+ color: var(--wptb-plugin-gray-700) !important;
6332
+ border: 2px solid var(--wptb-plugin-gray-300);
6333
+ }
6334
+
6335
+ .wptb-what-is-new-header {
6336
+ grid-area: header;
6337
+ border-bottom: 2px solid var(--wptb-plugin-gray-300);
6338
+ display: flex;
6339
+ height: 45px;
6340
+ }
6341
+
6342
+ .wptb-what-is-new-header-version {
6343
+ display: flex;
6344
+ width: 100%;
6345
+ height: 100%;
6346
+ justify-content: center;
6347
+ align-items: center;
6348
+ font-weight: bold !important;
6349
+ color: var(--wptb-plugin-logo-color)
6350
+ }
6351
+
6352
+ .wptb-what-is-new-header-text-icon {
6353
+ width: 15px;
6354
+ height: auto;
6355
+ fill: var(--wptb-plugin-yellow-500);
6356
+ margin: 0 10px;
6357
+ }
6358
+
6359
+ .wptb-what-is-new-header-close {
6360
+ width: 45px;
6361
+ height: 45px;
6362
+ display: flex;
6363
+ justify-content: center;
6364
+ align-items: center;
6365
+ border-left: 2px solid var(--wptb-plugin-gray-300);
6366
+ cursor: pointer;
6367
+ transition: all 0.2s ease-out;
6368
+ }
6369
+
6370
+ .wptb-what-is-new-header-close:hover {
6371
+ background-color: var(--wptb-plugin-gray-300);
6372
+ }
6373
+
6374
+
6375
+ .wptb-what-is-new-header-close:hover svg {
6376
+ fill: var(--wptb-plugin-gray-700);
6377
+ }
6378
+
6379
+ .wptb-what-is-new-header-close svg {
6380
+ width: 15px;
6381
+ height: auto;
6382
+ fill: var(--wptb-plugin-gray-500);
6383
+ transition: all 0.2s ease-out;
6384
+ }
6385
+
6386
+
6387
+ .wptb-what-is-new-content {
6388
+ grid-area: content;
6389
+ display: grid;
6390
+ grid-template-columns: 1fr;
6391
+ grid-template-rows: 200px minmax(min-content, max-content) 90px;
6392
+ grid-template-areas: 'imageContainer' 'noteIndex' 'textContainer';
6393
+ justify-content: center;
6394
+ align-items: center;
6395
+ }
6396
+
6397
+ .wptb-what-is-new-note-image-carousel {
6398
+ grid-area: imageContainer;
6399
+ display: grid;
6400
+ grid-template-rows: 1fr;
6401
+ grid-template-columns: minmax(min-content, max-content) 1fr minmax(min-content, max-content);
6402
+ }
6403
+
6404
+ .wptb-what-is-new-note-index {
6405
+ grid-area: noteIndex;
6406
+ display: flex;
6407
+ justify-content: center;
6408
+ align-items: center;
6409
+ color: var(--wptb-plugin-gray-500);
6410
+ font-variant-numeric: tabular-nums;
6411
+ }
6412
+
6413
+ .wptb-what-is-new-note-text-container {
6414
+ grid-area: textContainer;
6415
+ display: grid;
6416
+ grid-template-columns: 1fr;
6417
+ grid-template-rows: 1fr;
6418
+ justify-content: center;
6419
+ align-items: center;
6420
+ }
6421
+
6422
+ .wptb-what-is-new-note-text {
6423
+ grid-column: 1;
6424
+ grid-row: 1;
6425
+ display: flex;
6426
+ justify-content: center;
6427
+ flex-direction: column;
6428
+ align-items: center;
6429
+ text-align: center;
6430
+ margin: 0 20px;
6431
+ }
6432
+
6433
+ .wptb-what-is-new-note-text .wptb-upsells-pro-label {
6434
+ margin: 10px;
6435
+ text-decoration: none;
6436
+ }
6437
+
6438
+ .wptb-what-is-new-carousel-nav-button {
6439
+ display: flex;
6440
+ justify-content: center;
6441
+ align-items: center;
6442
+ height: 100%;
6443
+ margin: 0 20px;
6444
+ color: var(--wptb-plugin-gray-700);
6445
+ cursor: pointer;
6446
+ transition: all 0.2s ease-out;
6447
+ }
6448
+
6449
+ .wptb-what-is-new-carousel-nav-button:active {
6450
+ animation: wptb-pop 0.2s ease-out;
6451
+ }
6452
+
6453
+ .wptb-what-is-new-carousel-nav-button svg {
6454
+ width: 25px;
6455
+ height: auto;
6456
+ fill: currentColor;
6457
+ }
6458
+
6459
+ .wptb-what-is-new-carousel-nav-button[disabled='disabled'] {
6460
+ color: var(--wptb-plugin-gray-400);
6461
+ cursor: default;
6462
+ pointer-events: none;
6463
+ }
6464
+
6465
+ .wptb-what-is-new-images-wrapper {
6466
+ display: grid;
6467
+ grid-template-columns: 1fr;
6468
+ grid-template-rows: 200px;
6469
+ }
6470
+
6471
+ .wptb-what-is-new-image-background {
6472
+ position: relative;
6473
+ margin: 10px;
6474
+ padding: 10px;
6475
+ grid-column: 1;
6476
+ grid-row: 1;
6477
+ background-color: var(--wptb-plugin-gray-200);
6478
+ display: flex;
6479
+ justify-content: center;
6480
+ align-items: center;
6481
+ border: 2px solid var(--wptb-plugin-gray-300);
6482
+ }
6483
+
6484
+ .wptb-what-is-new-pro-indicator {
6485
+ position: absolute;
6486
+ left: -20px;
6487
+ top: 10px;
6488
+ color: var(--wptb-plugin-theme-color-light);
6489
+ z-index: 1;
6490
+ }
6491
+
6492
+ .wptb-what-is-new-pro-indicator-text {
6493
+ padding: 5px 20px;
6494
+ border-radius: 3px 3px 3px 0;
6495
+ background-color: var(--wptb-plugin-logo-color);
6496
+ }
6497
+
6498
+ .wptb-what-is-new-pro-indicator-triangle-end {
6499
+ width: 1px;
6500
+ height: 20px;
6501
+ border-left: 20px solid transparent;
6502
+ border-top: 15px solid var(--wptb-plugin-gray-500);
6503
+ }
6504
+
6505
+ .wptb-what-is-new-image-background:not([data-last="true"]) img {
6506
+ height: 100%;
6507
+ object-fit: contain;
6508
+ border: 2px solid $gray-400;
6509
+ border-radius: 5px;
6510
+ }
6511
+
6512
+ /*endregion*/
6513
+
6514
+ /*region extra styles*/
6515
+ .wptb-css-code-input {
6516
+ position: relative;
6517
+ width: 100% !important;
6518
+ max-width: 100% !important;
6519
+ border: 1px solid #ddd !important;
6520
+ border-radius: 3px;
6521
+ }
6522
+
6523
+ .wptb-css-code-input .wptb-menu-empty-cover {
6524
+ background-color: rgba(0, 0, 0, 0.1) !important;
6525
+ z-index: 10000000;
6526
+ }
6527
+
6528
+ .CodeMirror {
6529
+ max-height: 200px !important;
6530
+ height: 200px !important;
6531
+ }
6532
+
6533
+ .CodeMirror * {
6534
+ font-size: 12px !important;
6535
+ }
6536
+
6537
+ /*endregion*/
6538
+
6539
+ .wptb-plugin-inner-shadow {
6540
+ box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.09) 0px 2px 4px 0px inset;
6541
+ }
6542
+
6543
+ .wptb-panel-plain-message {
6544
+ display: flex;
6545
+ justify-content: center;
6546
+ align-items: center;
6547
+ text-align: center;
6548
+ padding: 20px 10px;
6549
+ font-size: 80% !important;
6550
+ color: var(--wptb-plugin-gray-600) !important;
6551
+ }
6552
+
6553
+ /*region background menu*/
6554
+ .wptb-bg-selection-item {
6555
+ position: absolute;
6556
+ background-color: var(--wptb-plugin-logo-color);
6557
+ width: 30px;
6558
+ transition: all 0.2s ease-out;
6559
+ cursor: pointer;
6560
+ z-index: 10;
6561
+ display: flex;
6562
+ justify-content: center;
6563
+ align-items: center;
6564
+ }
6565
+
6566
+ .wptb-bg-color-selectors[data-visible='false'] {
6567
+ display: none !important;
6568
+
6569
+ }
6570
+
6571
+ .wptb-selector-icon-wrapper {
6572
+ width: 100%;
6573
+ height: 100%;
6574
+ display: flex;
6575
+ justify-content: center;
6576
+ align-items: center;
6577
+ }
6578
+
6579
+ .wptb-selector-icon-wrapper svg {
6580
+ width: 20px;
6581
+ height: auto;
6582
+ fill: var(--wptb-plugin-theme-color-light)
6583
+ }
6584
+
6585
+ .wptb-col-selection {
6586
+ height: 30px;
6587
+ }
6588
+
6589
+ .wptb-bg-column-rail {
6590
+ position: absolute;
6591
+ display: grid;
6592
+ grid-auto-flow: column;
6593
+ justify-content: center;
6594
+ align-items: center;
6595
+ height: 30px;
6596
+ }
6597
+
6598
+ .wptb-bg-row-rail {
6599
+ position: absolute;
6600
+ display: grid;
6601
+ grid-template-columns: 1fr;
6602
+ grid-auto-flow: row;
6603
+ justify-content: center;
6604
+ align-items: center;
6605
+ width: 30px;
6606
+ top: 0;
6607
+ }
6608
+
6609
+ .wptb-bg-rail-mark {
6610
+ border: 2px dashed var(--wptb-plugin-logo-color);
6611
+ height: 100%;
6612
+ opacity: 0;
6613
+ transition: opacity 0.2s ease-out;
6614
+ cursor: pointer;
6615
+ }
6616
+
6617
+ .wptb-bg-rail-mark:hover {
6618
+ opacity: 0.5;
6619
+ }
6620
+
6621
+ /*endregion*/
6622
+
6623
+ /*region general styles settings menu*/
6624
+ .wptb-general-style-settings {
6625
+ width: 100%;
6626
+ height: 100%;
6627
+ display: grid;
6628
+ grid-template-columns: 1fr;
6629
+ grid-template-rows: minmax(min-content, max-content) 1fr;
6630
+ grid-gap: 20px;
6631
+ }
6632
+
6633
+ .wptb-general-style-settings .wptb-menu-empty-cover {
6634
+ color: var(--wptb-plugin-logo-color) !important;
6635
+ }
6636
+
6637
+ .wptb-general-style-settings .wptb-css-code-input {
6638
+ height: 100% !important;
6639
+ }
6640
+
6641
+ .wptb-general-style-settings .CodeMirror {
6642
+ height: 100% !important;
6643
+ max-height: 100% !important;
6644
+ }
6645
+
6646
+ /*endregion*/
6647
+
6648
+ /*region panel message component*/
6649
+ .wptb-panel-message {
6650
+ color: var(--wptb-plugin-gray-600);
6651
+ }
6652
+
6653
+ .wptb-panel-message-icon {
6654
+ margin-right: 10px;
6655
+ }
6656
+
6657
+ .wptb-panel-message-icon svg {
6658
+ width: 20px;
6659
+ height: 20px;
6660
+ fill: var(--wptb-plugin-yellow-500);
6661
+ }
6662
+
6663
+
6664
+ /*endregion*/
6665
+
6666
+ /*region size2 control*/
6667
+ .wptb-size2-control-input-wrapper {
6668
+ display: grid;
6669
+ grid-template-columns: 1.2fr 20px 1.2fr 1fr;
6670
+ grid-template-rows: 1fr auto;
6671
+ justify-content: center;
6672
+ align-content: center;
6673
+ grid-gap: 10px;
6674
+ }
6675
+
6676
+ .wptb-size2-input input {
6677
+ transition: all 0.2s ease-out;
6678
+ width: 100%;
6679
+ border: 1.5px solid var(--wptb-plugin-gray-400);
6680
+ border-radius: 3px !important;
6681
+ text-align: end;
6682
+ }
6683
+
6684
+ .wptb-size2-input input[disabled] {
6685
+ background-color: var(--wptb-plugin-gray-300) !important;
6686
+ cursor: not-allowed;
6687
+ }
6688
+
6689
+ .wptb-size2-control-input-component {
6690
+ display: grid;
6691
+ grid-template-columns: 1fr;
6692
+ grid-template-rows: repeat(2, 1fr);
6693
+ justify-items: center;
6694
+ align-items: center;
6695
+ height: 100%;
6696
+ width: 100%;
6697
+ }
6698
+
6699
+ .wptb-size2-aspect-icon {
6700
+ width: 100%;
6701
+ height: 100%;
6702
+ display: flex;
6703
+ justify-content: center;
6704
+ align-items: center;
6705
+ cursor: pointer;
6706
+ color: var(--wptb-plugin-red-600);
6707
+ }
6708
+
6709
+ .wptb-size2-aspect-icon[data-wptb-linked = 'true'] {
6710
+ color: var(--wptb-plugin-green-500) !important;
6711
+ }
6712
+
6713
+ .wptb-size2-aspect-icon svg {
6714
+ width: 100%;
6715
+ height: 100%;
6716
+ transition: all 0.2s ease-out;
6717
+ }
6718
+
6719
+ .wptb-size2-unit-dropdown {
6720
+ border: 1.5px solid var(--wptb-plugin-gray-400) !important;
6721
+ border-radius: 3px !important;
6722
+ }
6723
+
6724
+ .wptb-size-control-aspect-ratio-info-container {
6725
+ padding: 10px;
6726
+ grid-column: 1/-1;
6727
+ justify-self: center;
6728
+ color: var(--wptb-plugin-gray-500);
6729
+ user-select: none;
6730
+ }
6731
+
6732
+ .wptb-settings-reset-size2-control {
6733
+ transition: all 0.2s ease-out;
6734
+ }
6735
+
6736
+ .wptb-settings-reset-size2-control:active {
6737
+ transform: rotateZ(-180deg);
6738
+ }
6739
+
6740
+ /*endregion*/
6741
+
6742
+ /*region lazy load settings menu*/
6743
+ .wptb-lazy-load-wrapper {
6744
+ max-width: 800px;
6745
+ width: 100%;
6746
+ height: 100%;
6747
+ display: grid;
6748
+ grid-template-columns: repeat(2, 1fr);
6749
+ grid-template-rows: 1fr;
6750
+ gap: 10px;
6751
+ grid-template-areas: 'left right';
6752
+ }
6753
+
6754
+ .wptb-lazy-load-left-column {
6755
+ grid-area: left;
6756
+ display: grid;
6757
+ grid-template-columns: 1fr;
6758
+ grid-template-rows: minmax(min-content, max-content) 1fr minmax(min-content, max-content);
6759
+ grid-template-areas: 'basic' 'preview' 'disclaimer';
6760
+ justify-content: center;
6761
+ align-items: center;
6762
+ gap: 10px;
6763
+ overflow: auto;
6764
+ }
6765
+
6766
+ .wptb-lazy-load-basic-options {
6767
+ grid-area: basic;
6768
+ }
6769
+
6770
+ .wptb-lazy-load-preview-container {
6771
+ grid-area: preview;
6772
+ width: 100%;
6773
+ height: 100%;
6774
+ display: grid;
6775
+ grid-template-columns: minmax(150px, max-content);
6776
+ grid-template-rows: minmax(min-content, max-content) minmax(150px, max-content) minmax(min-content, max-content);
6777
+ justify-content: center;
6778
+ justify-items: center;
6779
+ align-content: center;
6780
+ align-items: center;
6781
+ grid-template-areas: 'header' 'preview' 'footer';
6782
+ gap: 5px;
6783
+ }
6784
+
6785
+ .wptb-lazy-load-preview-header {
6786
+ grid-area: header;
6787
+ text-transform: uppercase;
6788
+ font-weight: bold;
6789
+ }
6790
+
6791
+ .wptb-lazy-load-preview {
6792
+ grid-area: preview;
6793
+ }
6794
+
6795
+ .wptb-lazy-load-preview img {
6796
+ width: 150px;
6797
+ height: 150px;
6798
+ }
6799
+
6800
+ .wptb-lazy-load-preview-button-container {
6801
+ grid-area: footer;
6802
+ }
6803
+
6804
+ .wptb-lazy-load-preview-button-container > div {
6805
+ margin: 10px;
6806
+ }
6807
+
6808
+ .wptb-lazy-load-pro-options {
6809
+ padding: 0 10px;
6810
+ overflow: auto;
6811
+ color: var(--wptb-plugin-gray-500);
6812
+ position: relative;
6813
+ grid-area: right;
6814
+ }
6815
+
6816
+ .wptb-controls-for-settings > div {
6817
+ border: 1px solid var(--wptb-plugin-gray-300);
6818
+ border-bottom: 0;
6819
+ }
6820
+
6821
+ .wptb-lazy-load-pro-options > div:last-of-type {
6822
+ border-bottom: 1px solid var(--wptb-plugin-gray-300);
6823
+ }
6824
+
6825
+ .wptb-lazy-load-pro-disabled-overlay {
6826
+ width: 100%;
6827
+ height: 100%;
6828
+ background-image: repeating-linear-gradient(45deg, transparent, transparent 15px, #3299D132 15px, #3299D132 30px);
6829
+ z-index: 10;
6830
+ display: flex;
6831
+ justify-content: center;
6832
+ align-items: center;
6833
+ }
6834
+
6835
+
6836
+ /*endregion*/
6837
+
6838
+ /*region controls for settings*/
6839
+ .wptb-controls-for-settings * {
6840
+ font-size: inherit !important;
6841
+ color: var(--wptb-plugin-theme-text-color-main);
6842
+ box-sizing: border-box;
6843
+ }
6844
+
6845
+ /*endregion*/
6846
+
6847
+ /*region control tip wrapper*/
6848
+ .wptb-control-tip-wrapper {
6849
+ position: relative;
6850
+ }
6851
+
6852
+ .wptb-control-tip-wrapper[disabled] .wptb-tip-popup {
6853
+ color: var(--wptb-plugin-gray-400);
6854
+ }
6855
+
6856
+ .wptb-control-tip-wrapper[disabled] .wptb-tip-popup:hover {
6857
+ background-color: inherit !important;
6858
+ }
6859
+
6860
+ .wptb-tip-popup {
6861
+ position: absolute;
6862
+ border: 2px solid var(--wptb-plugin-gray-300);
6863
+ border-radius: 100%;
6864
+ width: 20px;
6865
+ height: 20px;
6866
+ display: flex;
6867
+ justify-content: center;
6868
+ align-items: center;
6869
+ cursor: pointer;
6870
+ background-color: var(--wptb-plugin-theme-color-light);
6871
+ transition: background-color 0.2s ease-out;
6872
+ top: 5px;
6873
+ right: 5px;
6874
+ }
6875
+
6876
+ .wptb-tip-popup[data-tip-positon="topRight"] {
6877
+ top: 5px;
6878
+ right: 5px;
6879
+ }
6880
+
6881
+ .wptb-tip-popup:hover {
6882
+ background-color: var(--wptb-plugin-gray-200);
6883
+ }
6884
+
6885
+
6886
+ /*endregion*/
6887
+
6888
+ /*region lazy load frontend styles*/
6889
+ .wptb-lazy-load-img[data-wptb-lazy-load-status='false'] {
6890
+ opacity: 0;
6891
+ }
6892
+
6893
+ .wptb-lazy-load-img[data-wptb-lazy-load-status='true'] {
6894
+ opacity: 1;
6895
+ }
6896
+
6897
+ .wptb-lazy-load-buffer-element-container {
6898
+ position: relative;
6899
+ }
6900
+
6901
+ .wptb-lazy-load-buffer-element {
6902
+ position: absolute;
6903
+ top: 0;
6904
+ left: 0;
6905
+ width: 100%;
6906
+ height: 100%;
6907
+ border-radius: 5px;
6908
+ display: flex;
6909
+ justify-content: center;
6910
+ align-items: center;
6911
+ }
6912
+
6913
+ .wptb-lazy-load-buffer-icon-wrapper {
6914
+ display: flex;
6915
+ justify-content: center;
6916
+ align-items: center;
6917
+ }
6918
+
6919
+ .wptb-lazy-load-buffer-icon-wrapper[data-wptb-lazy-load-icon-animation='heartBeat'] svg {
6920
+ animation: wptb-beat 1.3s ease-out forwards infinite;
6921
+ }
6922
+
6923
+ .wptb-lazy-load-buffer-icon-wrapper[data-wptb-lazy-load-icon-animation='rotate'] svg {
6924
+ animation: wptb-rotate-simple 1s ease-out forwards infinite;
6925
+ }
6926
+
6927
+ .wptb-lazy-load-buffer-icon-wrapper[data-wptb-lazy-load-icon-animation='jump'] svg {
6928
+ animation: wptb-jump 0.5s ease-out alternate infinite;
6929
+ }
6930
+
6931
+ .wptb-lazy-load-buffer-icon-wrapper[data-wptb-lazy-load-icon-animation='flip'] svg {
6932
+ animation: wptb-flip 1s ease-out forwards infinite;
6933
+ }
6934
+
6935
+ @keyframes wptb-flip {
6936
+ 0% {
6937
+ transform: rotateY(0deg);
6938
+ }
6939
+
6940
+ 100% {
6941
+ transform: rotateY(360deg);
6942
+ }
6943
+ }
6944
+
6945
+ @keyframes wptb-jump {
6946
+ 0% {
6947
+ transform: translateY(25%);
6948
+ }
6949
+
6950
+ 100% {
6951
+ transform: translateY(-25%);
6952
+ }
6953
+ }
6954
+
6955
+
6956
+ @keyframes wptb-rotate-simple {
6957
+ 0% {
6958
+ transform: rotateZ(0deg);
6959
+ }
6960
+
6961
+ 100% {
6962
+ transform: rotateZ(360deg);
6963
+ }
6964
+ }
6965
+
6966
+ @keyframes wptb-beat {
6967
+ 0% {
6968
+ transform: scale(1);
6969
+ }
6970
+ 15% {
6971
+ transform: scale(1.5);
6972
+ }
6973
+ 30% {
6974
+ transform: scale(1);
6975
+ }
6976
+ 100% {
6977
+ transform: scale(1);
6978
+ }
6979
+ }
6980
+
6981
+ /*endregion*/
6982
+
6983
+ /*region panel direction control*/
6984
+ .wptb-panel-direction-control-indicators-container {
6985
+ display: grid;
6986
+ grid-template-columns: repeat(3, minmax(min-content, max-content));
6987
+ grid-template-rows: repeat(3, minmax(min-content, max-content));
6988
+ grid-template-areas: 'up up up' 'left static right' 'down down down';
6989
+ grid-gap: 3px;
6990
+ justify-content: center;
6991
+ align-items: center;
6992
+ }
6993
+
6994
+ .wptb-panel-direction-cadet {
6995
+ display: flex;
6996
+ justify-content: center;
6997
+ align-items: center;
6998
+ cursor: pointer;
6999
+ }
7000
+
7001
+ .wptb-panel-direction-cadet svg {
7002
+ width: 25px;
7003
+ height: 25px;
7004
+ fill: var(--wptb-plugin-gray-400);
7005
+ transition: fill 0.2s ease-out;
7006
+ }
7007
+
7008
+ .wptb-panel-direction-cadet:hover svg {
7009
+ fill: var(--wptb-plugin-gray-500);
7010
+ }
7011
+
7012
+ .wptb-panel-direction-cadet[data-wptb-active-direction='true'] svg {
7013
+ fill: var(--wptb-plugin-logo-color);
7014
+ }
7015
+
7016
+ .wptb-panel-direction-cadet[data-wptb-panel-direction='up'] {
7017
+ grid-area: up;
7018
+ }
7019
+
7020
+ .wptb-panel-direction-cadet[data-wptb-panel-direction='left'] {
7021
+ grid-area: left;
7022
+ }
7023
+
7024
+ .wptb-panel-direction-cadet[data-wptb-panel-direction='right'] {
7025
+ grid-area: right;
7026
+ }
7027
+
7028
+ .wptb-panel-direction-cadet[data-wptb-panel-direction='down'] {
7029
+ grid-area: down;
7030
+ }
7031
+
7032
+ .wptb-panel-direction-static {
7033
+ grid-area: static;
7034
+ width: 20px;
7035
+ height: 20px;
7036
+ background-color: var(--wptb-plugin-gray-400);
7037
+ border: 1px solid var(--wptb-plugin-gray-500);
7038
+ border-radius: 3px;
7039
+ }
7040
+
7041
+ [data-wptb-disabled='true'] .wptb-panel-direction-cadet svg {
7042
+ fill: var(--wptb-plugin-gray-300) !important;
7043
+ }
7044
+
7045
+ [data-wptb-disabled='true'] .wptb-panel-direction-static {
7046
+ background-color: var(--wptb-plugin-gray-300);
7047
+ border: 1px solid var(--wptb-plugin-gray-400);
7048
+ }
7049
+
7050
+ [data-wptb-disabled='true'] .wptb-panel-direction-cadet {
7051
+ cursor: pointer;
7052
+ pointer-events: none;
7053
+ }
7054
+
7055
+ /*endregion*/
7056
+
7057
+ /*region disclaimer component*/
7058
+ .wptb-disclaimer-container {
7059
+ width: 100%;
7060
+ display: flex;
7061
+ justify-content: center;
7062
+ padding: 10px 0;
7063
+ flex-direction: column;
7064
+ }
7065
+
7066
+ .wptb-disclaimer-title {
7067
+ color: var(--wptb-plugin-red-600) !important;
7068
+ text-transform: uppercase;
7069
+ font-weight: bold;
7070
+ font-size: 120%;
7071
+ }
7072
+
7073
+ .wptb-disclaimer-message p, .wptb-disclaimer-message span {
7074
+ font-size: 90% !important;
7075
+ }
7076
+
7077
+ /*endregion*/
7078
+
7079
+ .wptb-code {
7080
+ font-family: monospace !important;
7081
+ padding: 0 3px;
7082
+ border-radius: 3px;
7083
+ background-color: #FDE68A;
7084
+ border: 1px solid #FCD34D;
7085
+ font-size: inherit !important;
7086
+ }
7087
+
7088
+ /*region dummy table element*/
7089
+ .wptb-element[data-wptb-dummy="true"] {
7090
+ pointer-events: none;
7091
+ color: var(--wptb-plugin-gray-400) !important;
7092
+ }
7093
+
7094
+ .wptb-element[data-wptb-dummy="true"] svg {
7095
+ fill: currentColor !important;
7096
+ }
7097
+
7098
+ .wptb-element[data-wptb-dummy="true"] .wptb-element-draggable-icon {
7099
+ color: var(--wptb-plugin-gray-400) !important;
7100
+ }
7101
+
7102
+ /*endregion*/
7103
+
7104
+ /*region disabled overlay container*/
7105
+ .wptb-disabled-overlay-container {
7106
+ display: grid;
7107
+ grid-template-columns: 1fr;
7108
+ grid-template-rows: 1fr;
7109
+ justify-content: center;
7110
+ align-items: center;
7111
+ grid-template-areas: 'content';
7112
+ }
7113
+
7114
+ .wptb-disabled-overlay {
7115
+ grid-area: content;
7116
+ width: 100%;
7117
+ height: 100%;
7118
+ z-index: 10;
7119
+ background-image: repeating-linear-gradient(45deg, transparent, transparent 15px, #3299D13C 15px, #3299D13C 30px);
7120
+ cursor: not-allowed;
7121
+ }
7122
+
7123
+ .wptb-disabled-overlay-slot-wrapper {
7124
+ grid-area: content;
7125
+ z-index: 9;
7126
+ }
7127
+
7128
+ /*endregion*/
7129
+
7130
+ .wptb-upsells-pro-overlay {
7131
+ position: absolute;
7132
+ display: flex;
7133
+ justify-content: center;
7134
+ align-items: center;
7135
+ width: 100%;
7136
+ height: 100%;
7137
+ top: 0;
7138
+ left: 0;
7139
+ background-image: repeating-linear-gradient(45deg, transparent, transparent 15px, #3299D13C 15px, #3299D13C 30px);
7140
+ }
7141
+
7142
+ /*region data listing*/
7143
+ .wptb-data-listing-row-search-clause-wrap {
7144
+ color: var(--wptb-plugin-gray-500);
7145
+
7146
+ }
7147
+
7148
+ .wptb-data-listing-row-search-clause {
7149
+ color: var(--wptb-plugin-logo-color) !important;
7150
+ font-weight: bold !important;
7151
+ }
7152
+
7153
+ /*endregion*/
7154
+
7155
+ /*region search input component*/
7156
+ .wptb-search-input-wrapper {
7157
+ position: relative;
7158
+ width: fit-content;
7159
+ }
7160
+
7161
+ .wptb-search-input-element {
7162
+ width: 100% !important;
7163
+ border: 1px solid var(--wptb-plugin-gray-400) !important;
7164
+ text-align: center;
7165
+ color: inherit;
7166
+ border-radius: 999px !important;
7167
+ padding: 0 !important;
7168
+ font-size: inherit !important;
7169
+ }
7170
+
7171
+ .wptb-search-input-element:active, .wptb-search-input-element:focus {
7172
+ border: 1px solid var(--wptb-plugin-gray-500) !important;
7173
+ inset: 0 !important;
7174
+ box-shadow: none !important;
7175
+ }
7176
+
7177
+ .wptb-search-input-clear {
7178
+ position: absolute;
7179
+ top: 0;
7180
+ right: 10px;
7181
+ height: 100%;
7182
+ display: flex;
7183
+ justify-content: center;
7184
+ align-items: center;
7185
+ cursor: pointer;
7186
+ padding: 0 5px;
7187
+ color: var(--wptb-plugin-red-500);
7188
+ font-weight: bold;
7189
+ }
7190
+
7191
+ .wptb-search-input-clear[data-disabled='true'] {
7192
+ color: var(--wptb-plugin-gray-500) !important;
7193
+ }
7194
+
7195
+ /*endregion*/
7196
+
7197
+ .wptb-svg-inherit-color svg {
7198
+ fill: currentColor;
7199
+ }
7200
+
7201
+ .wptb-image-element-dummy {
7202
+ display: none !important;
7203
+ }
7204
+
7205
+ .wptb-settings-generic-icon {
7206
+ width: 16px;
7207
+ height: 16px;
7208
+ cursor: pointer;
7209
+ }
7210
+
7211
+ .wptb-svg-14px svg {
7212
+ width: 14px;
7213
+ }
7214
+
7215
+ /*region multi checkbox control*/
7216
+ .wptb-multi-checkbox-wrapper .wptb-settings-checkbox-row label {
7217
+ transition: all 0.2s ease-out;
7218
+ }
7219
+
7220
+ .wptb-multi-checkbox-wrapper .wptb-settings-checkbox-row[data-wptb-checked="true"] label {
7221
+ /*font-weight: bold;*/
7222
+ color: var(--wptb-plugin-logo-color);
7223
+ }
7224
+
7225
+ /*endregion*/
7226
+
7227
+ /*region range control input*/
7228
+ .wptb-range-input-wrapper[disabled] {
7229
+ pointer-events: none;
7230
+ }
7231
+
7232
+ .wptb-range-input-operation-button {
7233
+ color: var(--wptb-plugin-gray-500) !important;
7234
+ display: flex;
7235
+ width: 100%;
7236
+ justify-content: center;
7237
+ align-items: center;
7238
+ position: absolute;
7239
+ transition: all 0.1s ease-out;
7240
+ opacity: 0;
7241
+ }
7242
+
7243
+ .wptb-range-input-operation-button svg {
7244
+ fill: var(--wptb-plugin-gray-500) !important;
7245
+ }
7246
+
7247
+ .wptb-range-input-operation-button:active {
7248
+ transform: scale(0.8);
7249
+ }
7250
+
7251
+ .wptb-range-input-operation-button[data-wptb-button-position="up"] {
7252
+ top: -50%;
7253
+ }
7254
+
7255
+ .wptb-range-input-operation-button[data-wptb-button-position="down"] {
7256
+ bottom: -18%;
7257
+ }
7258
+
7259
+ .wptb-range-text-input-wrapper:hover .wptb-range-input-operation-button {
7260
+ opacity: 1;
7261
+ }
7262
+
7263
+ /*endregion*/
inc/admin/css/src/base/_colors.scss ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ $gray-100: #F7FAFC;
2
+ $gray-200: #EDF2F7;
3
+ $gray-300: #E2E8F0;
4
+ $gray-400: #CBD5E0;
5
+ $gray-500: #A0AEC0;
6
+ $gray-600: #718096;
7
+ $gray-700: #4A5568;
8
+
9
+ $green-500: #48BB78;
10
+
11
+ $yellow-500: #ECC94B;
12
+
13
+ $red-300: #FCA5A5;
14
+ $red-500: #F56565;
15
+ $red-600: #E53E3E;
16
+ $red-800: #991B1B;
17
+
18
+ $blue-300: #90CDF4;
19
+ $blue-400: #60A5FA;
20
+ $blue-500: #3B82F6;
21
+ $blue-600: #2563EB;
22
+
23
+ $white: #FFF;
24
+ $black: #000;
25
+ $gold: #D4AF37;
26
+ $cta-button: #F7C948;
27
+ $logo-color: #3299D1;
inc/admin/css/src/base/_common.scss ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ $default-transition-time: 0.1s;
2
+
3
+ %default-transition {
4
+ transition: all $default-transition-time ease-out;
5
+ }
6
+
7
+ %size-full {
8
+ width: 100%;
9
+ height: 100%;
10
+ }
11
+
12
+ %height-full {
13
+ height: 100%;
14
+ }
15
+
16
+ %flex-center-all {
17
+ display: flex;
18
+ justify-content: center;
19
+ align-items: center;
20
+ }
inc/admin/css/src/base/_global.scss ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*css constants for plugin styles*/
2
+ :root {
3
+ /*constants*/
4
+ --wptb-plugin-sidebar-size-full: 300px;
5
+ --wptb-plugin-logo-color: #3299D1;
6
+ --wptb-plugin-gray-100: #F7FAFC;
7
+ --wptb-plugin-gray-200: #EDF2F7;
8
+ --wptb-plugin-gray-300: #E2E8F0;
9
+ --wptb-plugin-gray-400: #CBD5E0;
10
+ --wptb-plugin-gray-500: #A0AEC0;
11
+ --wptb-plugin-gray-600: #718096;
12
+ --wptb-plugin-gray-700: #4A5568;
13
+ --wptb-plugin-green-500: #48BB78;
14
+ --wptb-plugin-yellow-500: #ECC94B;
15
+ --wptb-plugin-red-300: #FCA5A5;
16
+ --wptb-plugin-red-500: #F56565;
17
+ --wptb-plugin-red-600: #E53E3E;
18
+ --wptb-plugin-red-800: #991B1B;
19
+ --wptb-plugin-blue-300: #90CDF4;
20
+ --wptb-plugin-blue-400: #60A5FA;
21
+ --wptb-plugin-blue-500: #3B82F6;
22
+ --wptb-plugin-blue-600: #2563EB;
23
+ --wptb-plugin-white: #FFF;
24
+ --wptb-plugin-black: #000;
25
+ --wptb-plugin-gold: #D4AF37;
26
+ --wptb-plugin-cta-button: #F7C948;
27
+
28
+ /*theme*/
29
+ --wptb-plugin-theme-text-color-main: var(--wptb-plugin-gray-700);
30
+ --wptb-plugin-theme-color-light: var(--wptb-plugin-white);
31
+ --wptb-plugin-theme-sidebar-bg: var(--wptb-plugin-gray-300);
32
+ --wptb-plugin-theme-side-bar-font-size-base: 16px;
33
+ --wptb-plugin-theme-header-font-size-base: 16px;
34
+ --wptb-plugin-theme-side-bar-sections-font-base: 80%;
35
+
36
+
37
+ --wptb-plugin-left-panel-constant: 40px;
38
+
39
+ --wptb-prebuilt-card-border-size: 2px;
40
+ --wptb-prebuilt-card-control-size: 30px;
41
+
42
+ --wptb-busy-duration: 0.9s;
43
+ --wptb-notification-manager-width: 300px;
44
+ }
inc/admin/css/src/inc/tableFixerSettings.scss ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import '../base/colors';
2
+ @import '../base/common';
3
+
4
+ $table-listing-header-height: 50px;
5
+
6
+ .wptb-table-fixer-settings {
7
+ @extend %height-full;
8
+ display: grid;
9
+ grid-template-columns: 1fr;
10
+ grid-template-rows: minmax(min-content, max-content) 1fr minmax(min-content, max-content);
11
+ grid-template-areas: 'search' 'listing' 'disclaimer';
12
+ justify-content: center;
13
+ justify-items: center;
14
+ align-items: center;
15
+ grid-gap: 10px;
16
+ min-width: 50%;
17
+
18
+ .wptb-table-fixer-table-filter {
19
+ grid-area: search;
20
+ }
21
+
22
+ .wptb-table-fixer-disclaimer {
23
+ grid-area: disclaimer;
24
+ max-width: 50%;
25
+ }
26
+
27
+ .wptb-table-fixer-listing {
28
+ @extend %height-full;
29
+ grid-area: listing;
30
+ border: 1px solid $gray-400;
31
+ border-radius: 3px;
32
+ min-width: 50%;
33
+ overflow: auto;
34
+
35
+ .wptb-menu-list-table {
36
+ .wptb-list-table-row {
37
+ @extend %default-transition;
38
+
39
+ td:first-child {
40
+ @extend %flex-center-all;
41
+ }
42
+
43
+ &[data-selected="true"] {
44
+ background-color: $logo-color;
45
+ color: $white;
46
+
47
+ & .wptb-data-listing-row-search-clause {
48
+ color: $white !important;
49
+ }
50
+ }
51
+ }
52
+ }
53
+ }
54
+ }
55
+
56
+ .wptb-fix-summary-wrapper {
57
+ width: 100%;
58
+ display: flex;
59
+ justify-content: center;
60
+ align-items: center;
61
+ max-height: 200px;
62
+ overflow: auto;
63
+
64
+ .wptb-fix-summary-list {
65
+
66
+ .wptb-fix-summary-column {
67
+ @extend %flex-center-all;
68
+ background-color: $gray-300;
69
+ padding: 5px;
70
+ font-weight: bold;
71
+
72
+ &[data-fix-status="true"] {
73
+ color: $green-500;
74
+ }
75
+
76
+ &[data-fix-status="false"] {
77
+ color: $red-500;
78
+ }
79
+
80
+ .icon-wrapper-parent {
81
+ @extend %flex-center-all;
82
+ width: 100%;
83
+ height: 100%;
84
+
85
+ .icon-wrapper {
86
+ @extend %flex-center-all;
87
+ width: 15px;
88
+ height: 15px;
89
+
90
+ svg {
91
+ width: 100%;
92
+ height: 100%;
93
+ }
94
+ }
95
+ }
96
+ }
97
+ }
98
+ }
inc/admin/css/src/wptb-overview.scss ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import 'base/colors';
2
+ @import 'base/common';
3
+
4
+ .wptb-main-shortcode-div {
5
+ .wptb-listing-shortcode-inner-wrap {
6
+ display: flex;
7
+ align-items: center;
8
+ flex-direction: row;
9
+ color: $logo-color;
10
+
11
+ &:hover .wptb-listing-shortcode-icon-wrapper {
12
+ opacity: 1;
13
+ }
14
+
15
+ .wptb-listing-shortcode-icon-wrapper {
16
+ @extend %default-transition;
17
+ margin: 0 5px;
18
+ width: 20px;
19
+ height: 20px;
20
+ opacity: 0;
21
+ cursor: pointer;
22
+ color: $logo-color;
23
+
24
+ &:not([data-wptb-copy-status="true"]):hover {
25
+ transform: scale(1.2);
26
+ }
27
+
28
+ &:active {
29
+ transform: scale(0.9);
30
+ color: lighten($logo-color, 10);
31
+ }
32
+
33
+ &[data-wptb-copy-status="true"] {
34
+ color: $green-500;
35
+
36
+ & .wptb-listing-shortcode-copy-icon {
37
+ display: none;
38
+ }
39
+
40
+ & .wptb-listing-shortcode-success-icon {
41
+ display: inherit;
42
+ }
43
+ }
44
+
45
+ &[data-wptb-copy-status='false'] {
46
+ & .wptb-listing-shortcode-copy-icon {
47
+ display: inherit;
48
+ }
49
+
50
+ & .wptb-listing-shortcode-success-icon {
51
+ display: none;
52
+ }
53
+ }
54
+
55
+ svg {
56
+ width: 20px;
57
+ height: 20px;
58
+ fill: currentColor;
59
+ }
60
+ }
61
+ }
62
+ }
inc/admin/css/wptb-overview.css ADDED
@@ -0,0 +1 @@
 
1
+ .wptb-main-shortcode-div .wptb-listing-shortcode-inner-wrap .wptb-listing-shortcode-icon-wrapper{transition:all .1s ease-out}.wptb-main-shortcode-div .wptb-listing-shortcode-inner-wrap{display:flex;align-items:center;flex-direction:row;color:#3299d1}.wptb-main-shortcode-div .wptb-listing-shortcode-inner-wrap:hover .wptb-listing-shortcode-icon-wrapper{opacity:1}.wptb-main-shortcode-div .wptb-listing-shortcode-inner-wrap .wptb-listing-shortcode-icon-wrapper{margin:0 5px;width:20px;height:20px;opacity:0;cursor:pointer;color:#3299d1}.wptb-main-shortcode-div .wptb-listing-shortcode-inner-wrap .wptb-listing-shortcode-icon-wrapper:not([data-wptb-copy-status=true]):hover{transform:scale(1.2)}.wptb-main-shortcode-div .wptb-listing-shortcode-inner-wrap .wptb-listing-shortcode-icon-wrapper:active{transform:scale(0.9);color:#5caeda}.wptb-main-shortcode-div .wptb-listing-shortcode-inner-wrap .wptb-listing-shortcode-icon-wrapper[data-wptb-copy-status=true]{color:#48bb78}.wptb-main-shortcode-div .wptb-listing-shortcode-inner-wrap .wptb-listing-shortcode-icon-wrapper[data-wptb-copy-status=true] .wptb-listing-shortcode-copy-icon{display:none}.wptb-main-shortcode-div .wptb-listing-shortcode-inner-wrap .wptb-listing-shortcode-icon-wrapper[data-wptb-copy-status=true] .wptb-listing-shortcode-success-icon{display:inherit}.wptb-main-shortcode-div .wptb-listing-shortcode-inner-wrap .wptb-listing-shortcode-icon-wrapper[data-wptb-copy-status=false] .wptb-listing-shortcode-copy-icon{display:inherit}.wptb-main-shortcode-div .wptb-listing-shortcode-inner-wrap .wptb-listing-shortcode-icon-wrapper[data-wptb-copy-status=false] .wptb-listing-shortcode-success-icon{display:none}.wptb-main-shortcode-div .wptb-listing-shortcode-inner-wrap .wptb-listing-shortcode-icon-wrapper svg{width:20px;height:20px;fill:currentColor}
inc/admin/data/what-is-new.json CHANGED
@@ -1,8 +1,16 @@
1
  {
2
- "1.3.14": [
3
  [
4
- "Horizontal scrolling support.",
5
- "horizontal_scroll_control.png"
 
 
 
 
 
 
 
 
6
  ]
7
  ]
8
  }
1
  {
2
+ "1.3.16": [
3
  [
4
+ "Table fixer tool for corrupted tables.",
5
+ "table_fixer.png"
6
+ ],
7
+ [
8
+ "Easy shortcode clipboard copy at table listing.",
9
+ "listing_shortcode_clipboard_copy.png"
10
+ ],
11
+ [
12
+ "Revisited embed window.",
13
+ "embed.png"
14
  ]
15
  ]
16
  }
inc/admin/js/WPTB_Admin_Settings.js CHANGED
@@ -102,9 +102,7 @@ var e;!function(t){"object"==typeof exports&&"object"==typeof module?t(require("
102
  },{"@babel/runtime/helpers/defineProperty":"cQfh","codemirror":"L7e6","codemirror/lib/codemirror.css":"S5Yr","codemirror/addon/selection/active-line":"X3fE","codemirror/mode/css/css":"Da5z","./EmptyCover":"BOOO"}],"b8SN":[function(require,module,exports) {
103
  "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var e=require("vue-fragment"),t=i(require("../MenuContent")),n=i(require("./FooterButtons")),o=i(require("../MenuButton")),s=i(require("../CssCodeInput")),r=i(require("../../mixins/SettingsMenuSection")),a=i(require("../../mixins/withMessage")),u=i(require("../BusyRotate"));function i(e){return e&&e.__esModule?e:{default:e}}var d={mixins:[r.default,a.default],components:{BusyRotate:u.default,CssCodeInput:s.default,MenuButton:o.default,FooterButtons:n.default,MenuContent:t.default,Fragment:e.Fragment},data:function(){return{code:"",cachedCode:""}},beforeMount:function(){this.code=this.sectionData.savedStyles,this.updateCachedCode()},computed:{isCodeChanged:function(){return this.code!==this.cachedCode},buttonDisabledState:function(){return!this.isCodeChanged||this.isBusy()}},methods:{updateCachedCode:function(){this.cachedCode=this.code},resetCodeToCached:function(){this.code=this.cachedCode},sendSavedStyles:function(){var e=this;this.setBusy(!0);var t=this.sectionData.security,n=t.ajaxUrl,o=t.nonce,s=t.action,r=new FormData;r.append("action",s),r.append("nonce",o),r.append("styles",this.code),fetch(n,{method:"POST",body:r}).then(function(e){if(e.ok)return e.json();throw new Error("An error occurred while saving CSS code: ".concat(e.statusText))}).then(function(t){if(t.error)throw new Error("An error occurred while saving CSS code: ".concat(t.error));e.setMessage({message:t.message}),e.updateCachedCode()}).catch(function(t){e.setMessage({type:"error",message:t.message})}).finally(function(){e.setBusy(!1)})}}};exports.default=d;
104
  (function(){var e=exports.default||module.exports;"function"==typeof e&&(e=e.options),Object.assign(e,{render:function(){var e=this,t=e.$createElement,s=e._self._c||t;return s("fragment",[s("menu-content",{attrs:{center:!0}},[s("div",{staticClass:"wptb-general-style-settings"},[s("div",[s("div",{staticClass:"wptb-general-style-header"},[e._v(e._s(e.strings.headerText))])]),e._v(" "),s("div",{staticClass:"wptb-general-css-code-input"},[s("css-code-input",{attrs:{disabled:e.isBusy()},scopedSlots:e._u([{key:"disabled",fn:function(){return[s("busy-rotate")]},proxy:!0}]),model:{value:e.code,callback:function(t){e.code=t},expression:"code"}})],1)])]),e._v(" "),s("footer-buttons",[s("menu-button",{attrs:{disabled:e.buttonDisabledState,type:"danger"},on:{click:e.resetCodeToCached}},[e._v(e._s(e.strings.revert)+" ")]),e._v(" "),s("menu-button",{attrs:{disabled:e.buttonDisabledState},on:{click:e.sendSavedStyles}},[e._v(e._s(e.strings.submit))])],1)],1)},staticRenderFns:[],_compiled:!0,_scopeId:null,functional:void 0});})();
105
- },{"vue-fragment":"CDb8","../MenuContent":"vTRD","./FooterButtons":"jkrZ","../MenuButton":"ksMR","../CssCodeInput":"JwAF","../../mixins/SettingsMenuSection":"qeqP","../../mixins/withMessage":"wm3G","../BusyRotate":"SbnK"}],"xMlw":[function(require,module,exports) {
106
- "use strict";var r=function(r){return e(r)&&!t(r)};function e(r){return!!r&&"object"==typeof r}function t(r){var e=Object.prototype.toString.call(r);return"[object RegExp]"===e||"[object Date]"===e||c(r)}var n="function"==typeof Symbol&&Symbol.for,o=n?Symbol.for("react.element"):60103;function c(r){return r.$$typeof===o}function u(r){return Array.isArray(r)?[]:{}}function a(r,e){return!1!==e.clone&&e.isMergeableObject(r)?g(u(r),r,e):r}function i(r,e,t){return r.concat(e).map(function(r){return a(r,t)})}function f(r,e){if(!e.customMerge)return g;var t=e.customMerge(r);return"function"==typeof t?t:g}function y(r){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(r).filter(function(e){return r.propertyIsEnumerable(e)}):[]}function b(r){return Object.keys(r).concat(y(r))}function l(r,e){try{return e in r}catch(t){return!1}}function s(r,e){return l(r,e)&&!(Object.hasOwnProperty.call(r,e)&&Object.propertyIsEnumerable.call(r,e))}function p(r,e,t){var n={};return t.isMergeableObject(r)&&b(r).forEach(function(e){n[e]=a(r[e],t)}),b(e).forEach(function(o){s(r,o)||(l(r,o)&&t.isMergeableObject(e[o])?n[o]=f(o,t)(r[o],e[o],t):n[o]=a(e[o],t))}),n}function g(e,t,n){(n=n||{}).arrayMerge=n.arrayMerge||i,n.isMergeableObject=n.isMergeableObject||r,n.cloneUnlessOtherwiseSpecified=a;var o=Array.isArray(t);return o===Array.isArray(e)?o?n.arrayMerge(e,t,n):p(e,t,n):a(t,n)}g.all=function(r,e){if(!Array.isArray(r))throw new Error("first argument should be an array");return r.reduce(function(r,t){return g(r,t,e)},{})};var O=g;module.exports=O;
107
- },{}],"KwLP":[function(require,module,exports) {
108
  var r=require("./arrayLikeToArray");function a(a){if(Array.isArray(a))return r(a)}module.exports=a;
109
  },{"./arrayLikeToArray":"jEQo"}],"U0SN":[function(require,module,exports) {
110
  function e(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}module.exports=e;
@@ -112,13 +110,44 @@ function e(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return
112
  function e(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}module.exports=e;
113
  },{}],"DJfw":[function(require,module,exports) {
114
  var r=require("./arrayWithoutHoles"),e=require("./iterableToArray"),u=require("./unsupportedIterableToArray"),a=require("./nonIterableSpread");function o(o){return r(o)||e(o)||u(o)||a()}module.exports=o;
115
- },{"./arrayWithoutHoles":"KwLP","./iterableToArray":"U0SN","./unsupportedIterableToArray":"Dbv9","./nonIterableSpread":"o1nV"}],"izJK":[function(require,module,exports) {
116
- var global = arguments[3];
117
- var e=arguments[3],t=o(require("@babel/runtime/helpers/toConsumableArray")),n=o(require("@babel/runtime/helpers/defineProperty")),a=o(require("@babel/runtime/helpers/typeof"));function o(e){return e&&e.__esModule?e:{default:e}}function r(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,a)}return n}function i(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{};t%2?r(Object(a),!0).forEach(function(t){(0,n.default)(e,t,a[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(a)):r(Object(a)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(a,t))})}return e}!function(e,t,n){"object"===("undefined"==typeof exports?"undefined":(0,a.default)(exports))&&"undefined"!=typeof module?module.exports=n():t[e]=n()}("WPTB_LazyLoad",self||e,function(){function e(e){var t=this,n=i(i({},{name:"",speed:8,step:10,hooks:{},direction:"left",perspective:1e3,flashColor:"#FFFFFF"}),e);this.getOptions=function(){return i({},n)},this.calculateDuration=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:.1,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1;return Math.max(e,t)-Math.abs(t-e)/n.step*n.speed},this.calculateAnimationDirection=function(){var e=["X","Y"],t=arguments.length>0&&void 0!==arguments[0]&&arguments[0]?1:0;return["left","right"].includes(n.direction)?e[(0+t)%2]:e[(1+t)%2]},this.calculateDirectionConstant=function(){return(arguments.length>0&&void 0!==arguments[0]&&arguments[0]?-1:1)*(["left","up"].includes(t.getOptions().direction)?1:-1)};var a=function(e){var a=function(e){if(Object.prototype.hasOwnProperty.call(n.hooks,e)){var t=n.hooks[e];if("function"==typeof t)return t}return null}(e);if(a){for(var o=arguments.length,r=new Array(o>1?o-1:0),i=1;i<o;i++)r[i-1]=arguments[i];a.apply(t,r)}};this.getBufferElement=function(e){return e.parentNode.querySelector(".".concat("wptb-lazy-load-buffer-element"))},this.removeBufferElement=function(e){var n=t.getBufferElement(e);if(n){var a=n.parentNode;a.removeChild(n),a.classList.remove("wptb-lazy-load-buffer-element-container")}},this.addStylesheet=function(e,t){var n=t.querySelector('style[id="'.concat("wptb-lazy-load-styles",'"]'));n||((n=t.createElement("style")).id="wptb-lazy-load-styles",n.type="text/css",t.head.appendChild(n));var a=document.createTextNode(e);n.innerHTML="",n.appendChild(a)},this.beforeAnimation=function(e){a("beforeAnimation",e)},this.animate=function(e){a("animate",e)},this.afterAnimation=function(e){a("afterAnimation",e),delete t}}function n(t){this.getAnimation=function(n){var a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return t[n]?new e(i(i({},t[n]),a)):new e({})}}var o={none:{hooks:{animate:function(e){this.removeBufferElement(e)}}},slideIn:{hooks:{beforeAnimation:function(e){e.parentNode.style.overflow="hidden",e.style.transform="translate".concat(this.calculateAnimationDirection(),"(").concat(100*this.calculateDirectionConstant(),"%)")},animate:function(e){this.removeBufferElement(e),e.style.transition="transform ".concat(this.calculateDuration(),"s ease-out"),e.style.transform="translate".concat(this.calculateAnimationDirection(),"(0)")}}},growSling:{hooks:{beforeAnimation:function(e){e.style.transform="scale(0.1)"},animate:function(e){this.removeBufferElement(e),e.style.transition="transform ".concat(this.calculateDuration(),"s cubic-bezier(0.68, -0.55, 0.27, 1.55)"),e.style.transform="scale(1)"}}},flash:{hooks:{beforeAnimation:function(e){var t=document.createElement("div");t.classList.add("wptb-flash-element"),e.parentNode.classList.add("wptb-lazy-load-buffer-element-container"),e.insertAdjacentElement("afterend",t);var n="@keyframes wptb-flash {0% {opacity:1;}100% {opacity: 0;}} .wptb-flash-element {position: absolute; top: 0px; left: 0px; right: 0px; bottom: 0px; background-color: ".concat(this.getOptions().flashColor,"}.wptb-flash-animation {animation: wptb-flash ").concat(this.calculateDuration(),"s forwards ease-out}");this.addStylesheet(n,e.ownerDocument)},animate:function(e){this.removeBufferElement(e);var t=e.parentNode.querySelector(".wptb-flash-element");t&&(e.parentNode.classList.add("wptb-lazy-load-buffer-element-container"),t.addEventListener("animationend",function(n){"wptb-flash"===n.animationName&&(e.parentNode.classList.remove("wptb-lazy-load-buffer-element-container"),t.remove())}),t.classList.add("wptb-flash-animation"))}}},flip:{hooks:{beforeAnimation:function(e){var t,n=e.parentNode;n.classList.add("wptb-lazy-load-card-container"),null===(t=n.parentNode)||void 0===t||t.classList.add("wptb-lazy-load-perspective-base"),e.classList.add("wptb-lazy-load-card-back","wptb-lazy-load-hidden-backface"),this.getBufferElement(e).classList.add("wptb-lazy-load-hidden-backface","wptb-lazy-load-card-front");var a=this.calculateAnimationDirection(!0),o="".concat(180*this.calculateDirectionConstant(!0),"deg"),r=".wptb-lazy-load-perspective-base{perspective: ".concat(this.getOptions().perspective,"px;} .wptb-lazy-load-card-container{ transform-style: preserve-3d; transition: transform ").concat(this.calculateDuration(),"s ease-out; } .wptb-lazy-load-card-container[data-wptb-card-flip='true']{transform: rotate").concat(a,"(").concat(o,")} [data-wptb-card-flip='true'] .wptb-lazy-load-card-front svg{ animation: none !important; opacity: 0.2;} .wptb-lazy-load-card-back { transform: rotate").concat(a,"(").concat(o,")} .wptb-lazy-load-hidden-backface{backface-visibility: hidden;}");this.addStylesheet(r,e.ownerDocument)},animate:function(e){var t=this,n=e.parentNode;n.addEventListener("transitionend",function(a){"transform"===a.propertyName&&t.removeBufferElement(e),n.classList.remove("wptb-lazy-load-card-container","wptb-lazy-load-flip"),n.parentNode.classList.remove("wptb-lazy-load-perspective-base"),e.classList.remove("wptb-lazy-load-card-back","wptb-lazy-load-hidden-backface")}),n.dataset.wptbCardFlip="true"}}}};return new function(){var e={forceMode:!1},r={},l={lastYPosition:0},c=[],s=new n(o),d=null,f=function(e,t){var n=e.parentNode.getBoundingClientRect(),a=n.top,o=n.height,i=n.bottom,c=r.visibilityPercentage,s=a+o*(c/100),d=i-o*(c/100),f=window.scrollY-l.lastYPosition>=0?s:d;return f>=0&&f<=t},u=function e(t){var n=t.target;d.animate(n),n.removeEventListener("load",e),d.afterAnimation(n)},p=function(e,t){var n,a=arguments.length>2&&void 0!==arguments[2]&&arguments[2],o=arguments.length>3&&void 0!==arguments[3]&&arguments[3];e.filter(function(e){return"false"===e.dataset.wptbLazyLoadStatus}).map(function(e){a&&function(e){var t=document.createElement("div");if(t.classList.add("wptb-lazy-load-buffer-element"),t.style.backgroundColor=r.backgroundColor,r.iconSvg){t.innerHTML='<div class="wptb-lazy-load-buffer-icon-wrapper wptb-plugin-filter-box-shadow-md">'.concat(r.iconSvg,"</div>");var n=t.querySelector("svg"),a=t.querySelector(".wptb-lazy-load-buffer-icon-wrapper");a.style.width="".concat(r.iconSize,"px"),a.style.height="".concat(r.iconSize,"px"),a.dataset.wptbLazyLoadIconAnimation=r.iconAnimation,n&&(n.style.fill=r.iconColor)}e.insertAdjacentElement("afterend",t),e.parentNode.classList.add("wptb-lazy-load-buffer-element-container"),d.beforeAnimation(e)}(e),r.forceMode&&!o||function(e,t){(r.forceMode||f(e,t))&&(e.dataset.wptbLazyLoadStatus="true",e.addEventListener("load",r.delay?function(){setTimeout(function(){u({target:e})},1e3*r.delay)}:u),e.src=e.dataset.wptbLazyLoadTarget)}(e,t)}),n=window.scrollY,l.lastYPosition=n},m=function(){return window.innerHeight},b=function(){var e=Array.from(document.querySelectorAll(".wptb-preview-table")),n=Array.from(document.querySelectorAll(".wptb-shadow-root-container")).reduce(function(e,t){var n=t.shadowRoot.querySelector(".wptb-preview-table");return n&&e.push(n),e},[]),a=[].concat((0,t.default)(e),(0,t.default)(n));c.push.apply(c,(0,t.default)(function(e){return e.reduce(function(e,n){var a=Array.from(n.querySelectorAll(".wptb-lazy-load-img"));return e.push.apply(e,(0,t.default)(a)),e},[])}(a))),p(c,m(),!0),r.forceMode||window.addEventListener("scroll",function(){p(c,m())},{passive:!0})};this.forceLoadImages=function(){p(c,null,!1,!0)},this.init=function(t){t&&"object"===(0,a.default)(t)&&(r=i(i({},e),t)).enabled&&(d=s.getAnimation(r.imageLoadAnimation,i({speed:r.imageLoadAnimationSpeed,direction:r.imageLoadAnimationDirection,perspective:r.imageLoadAnimationPerspective},r)),b())}}});
118
- },{"@babel/runtime/helpers/toConsumableArray":"DJfw","@babel/runtime/helpers/defineProperty":"cQfh","@babel/runtime/helpers/typeof":"xOn8"}],"ATQh":[function(require,module,exports) {
 
 
 
 
 
 
 
 
 
 
 
119
  "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var t={props:{click:{type:Function,default:function(){console.log("Material button clicked")}},size:{type:String,default:"fit-content"},disabled:{type:Boolean,default:!1}},computed:{buttonClass:function(){return["wptb-plugin-button-material-".concat(this.size)]}},methods:{handleClick:function(){this.disabled||this.click()}}};exports.default=t;
120
  (function(){var t=exports.default||module.exports;"function"==typeof t&&(t=t.options),Object.assign(t,{render:function(){var t=this,e=t.$createElement;return(t._self._c||e)("div",{staticClass:"wptb-plugin-button-material",class:t.buttonClass,attrs:{disabled:t.disabled},on:{click:function(e){return e.preventDefault(),t.handleClick(e)}}},[t._t("default")],2)},staticRenderFns:[],_compiled:!0,_scopeId:null,functional:void 0});})();
121
- },{}],"YDlH":[function(require,module,exports) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
122
  "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var e={props:{gridArea:{type:String,required:!0},visibility:{type:Boolean,default:!0}},computed:{style:function(){return{gridArea:this.gridArea}}}};exports.default=e;
123
  (function(){var t=exports.default||module.exports;"function"==typeof t&&(t=t.options),Object.assign(t,{render:function(){var t=this.$createElement,e=this._self._c||t;return this.visibility?e("div",{staticClass:"wptb-lazy-load-pro-disabled-overlay",style:this.style},[this._t("default")],2):this._e()},staticRenderFns:[],_compiled:!0,_scopeId:null,functional:void 0});})();
124
  },{}],"vlDi":[function(require,module,exports) {
@@ -146,9 +175,6 @@ var e=arguments[3],t=o(require("@babel/runtime/helpers/toConsumableArray")),n=o(
146
  },{"@babel/runtime/helpers/toConsumableArray":"DJfw","$Mixins/PanelControlBase":"vpWQ","$LeftPanel/Panel2ColumnTemplate":"B40R","$LeftPanel/PanelDirectionCadet":"GUbL"}],"h0P7":[function(require,module,exports) {
147
  "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var t={inheritAttrs:!1,props:{postFix:{type:String,default:""},value:{type:null,default:0},enableDynamicWidth:{type:Boolean,default:!1},dynamicWidthPadding:{type:Number,default:3},onlyEnter:{type:Boolean,default:!1},min:{type:Number,default:0},max:{type:Number,default:1e3},step:{type:Number,default:1},enableLimit:{type:Boolean,default:!1}},model:{prop:"value",event:"valueChanged"},watch:{value:function(t){this.innerValue=t}},data:function(){return{innerValue:0}},mounted:function(){this.innerValue=this.value},computed:{postFixIt:function(){return"".concat(this.innerValue).concat(this.postFix)},dynamicWidth:function(){return this.enableDynamicWidth?{width:"calc(".concat(this.innerValue.toString().length+this.postFix.length+this.dynamicWidthPadding,"ch) !important")}:{}}},methods:{getValue:function(t){var e=Number.parseFloat(t),i=new RegExp(/^([0-9]+)\.([0-9]+)/,"g").exec(this.step.toString());if(i){var n=i[2].length;e=Number.parseFloat(e.toFixed(n))}return e=isNaN(e)?0:e,this.enableLimit?this.limitValue(e):e},limitValue:function(t){return t<this.min?this.min:t>this.max?this.max:t},handleOnInput:function(t){this.onlyEnter||this.$emit("valueChanged",this.getValue(t.target.value))},handleEnterInput:function(t){this.onlyEnter&&this.$emit("valueChanged",this.getValue(t.target.value))},handleKeyPress:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"up",e=this.getValue(this.innerValue);switch(t){case"up":e+=this.step;break;case"down":e-=this.step;break;default:e+=this.step}e=this.getValue(e),this.$emit("valueChanged",e)}}};exports.default=t;
148
  (function(){var e=exports.default||module.exports;"function"==typeof e&&(e=e.options),Object.assign(e,{render:function(){var e=this,t=e.$createElement;return(e._self._c||t)("input",{style:e.dynamicWidth,attrs:{"data-wptb-text-disabled":e.$attrs.disabled,type:"text",disabled:e.$attrs.disabled},domProps:{value:e.postFixIt},on:{input:e.handleOnInput,keydown:[function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])?null:(t.preventDefault(),e.handleKeyPress("up"))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])?null:(t.preventDefault(),e.handleKeyPress("down"))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:(t.preventDefault(),e.handleEnterInput(t))}]}})},staticRenderFns:[],_compiled:!0,_scopeId:null,functional:void 0});})();
149
- },{}],"IY2J":[function(require,module,exports) {
150
- "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var t={props:{name:{type:String,default:""},extraClasses:{type:Array,default:function(){return["wptb-svg-inherit-color"]}}},watch:{name:function(t){var e=this;WPTB_IconManager.getIcon(t,this.extraClasses,!0).then(function(t){e.iconFragment=t})}},data:function(){return{iconFragment:""}},mounted:function(){var t=this;WPTB_IconManager.getIcon(this.name,this.extraClasses,!0).then(function(e){t.iconFragment=e})}};exports.default=t;
151
- (function(){var e=exports.default||module.exports;"function"==typeof e&&(e=e.options),Object.assign(e,{render:function(){var e=this.$createElement;return(this._self._c||e)("div",{domProps:{innerHTML:this._s(this.iconFragment)}})},staticRenderFns:[],_compiled:!0,_scopeId:null,functional:void 0});})();
152
  },{}],"DAVl":[function(require,module,exports) {
153
  "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var t=e(require("$Components/Icon"));function e(t){return t&&t.__esModule?t:{default:t}}var o={props:{position:{type:String,default:"up"}},components:{Icon:t.default},data:function(){return{positionMap:{up:"caret-up",down:"caret-down"}}},computed:{iconName:function(){return this.positionMap[this.position]}},methods:{handleIncrementDecrement:function(){this.$emit("click",this.position)}}};exports.default=o;
154
  (function(){var t=exports.default||module.exports;"function"==typeof t&&(t=t.options),Object.assign(t,{render:function(){var t=this,e=t.$createElement;return(t._self._c||e)("icon",{staticClass:"wptb-range-input-operation-button",attrs:{"extra-classes":["wptb-svg-inherit-color","wptb-settings-generic-icon"],name:t.iconName,"data-wptb-button-position":t.position},nativeOn:{click:function(e){return e.preventDefault(),t.handleIncrementDecrement(e)}}})},staticRenderFns:[],_compiled:!0,_scopeId:null,functional:void 0});})();
@@ -206,9 +232,9 @@ var e,t=arguments[3];!function(t,n){"object"==typeof exports&&"object"==typeof m
206
  "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var t=require("vue-fragment"),e=f(require("deepmerge")),i=f(require("$Components/MenuContent")),n=f(require("$Mixins/SettingsMenuSection")),s=f(require("$Components/Settings/FooterButtons")),a=f(require("$Components/MenuButton")),o=f(require("$Mixins/withMessage")),r=f(require("$LazyLoadSettings/LazyLoadPreview")),u=f(require("$LazyLoadSettings/LazyLoadProOptions")),d=f(require("$LazyLoadSettings/LazyLoadBasicOptions")),g=f(require("$Settings/Disclaimer")),l=f(require("$Settings/CollapsedVisibility"));function f(t){return t&&t.__esModule?t:{default:t}}var c={components:{CollapsedVisibility:l.default,Disclaimer:g.default,LazyLoadBasicOptions:d.default,LazyLoadProOptions:u.default,LazyLoadPreview:r.default,MenuButton:a.default,FooterButtons:s.default,MenuContent:i.default,Fragment:t.Fragment},mixins:[n.default,o.default],mounted:function(){this.settings=(0,e.default)({},this.sectionData.settings),this.settings.iconName.url=WPTB_IconManager.getIconUrl(this.settings.iconName.name),this.updateInitialSettings()},data:function(){return{settings:{},initialSettings:{}}},computed:{settingsDirtyStatus:function(){return JSON.stringify(this.settings)!==JSON.stringify(this.initialSettings)}},methods:{revertLazyLoadSettings:function(){this.$set(this,"settings",(0,e.default)({},this.initialSettings)),this.$set(this.templateData,"settings",(0,e.default)({},this.initialSettings))},updateInitialSettings:function(){this.initialSettings=(0,e.default)({},this.settings)},updateLazyLoadSettings:function(){var t=this;if(this.settingsDirtyStatus){var i=this.sectionData.security,n=i.action,s=i.nonce,a=i.ajaxUrl,o=new FormData,r=(0,e.default)({},this.settings);r.iconSvg=null,o.append("settings",JSON.stringify(r)),o.append("action",n),o.append("nonce",s),this.setBusy(!0),fetch(a,{method:"POST",body:o}).then(function(t){if(t.ok)return t.json();throw new Error(t.statusText)}).then(function(e){t.setMessage({message:e.message}),t.updateInitialSettings()}).catch(function(e){t.setMessage({message:e.message,type:"error"})}).finally(function(){t.setBusy(!1)})}}}};exports.default=c;
207
  (function(){var t=exports.default||module.exports;"function"==typeof t&&(t=t.options),Object.assign(t,{render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("fragment",[s("menu-content",{attrs:{center:!0}},[s("div",{staticClass:"wptb-lazy-load-wrapper"},[s("div",{staticClass:"wptb-lazy-load-left-column"},[s("lazy-load-basic-options",{attrs:{"template-data":t.templateData,settings:t.settings}}),t._v(" "),s("lazy-load-preview",{attrs:{"template-data":t.templateData,"default-html":t.sectionData.previewTable,settings:t.settings}}),t._v(" "),s("collapsed-visibility",{attrs:{visible:t.settings.enabled}},[s("disclaimer",{attrs:{title:t.strings.important,message:t.strings.importantMessage}})],1)],1),t._v(" "),s("lazy-load-pro-options",{attrs:{settings:t.settings,"template-data":t.templateData}})],1)]),t._v(" "),s("footer-buttons",[s("menu-button",{attrs:{type:"danger",disabled:!t.settingsDirtyStatus},on:{click:t.revertLazyLoadSettings}},[t._v(t._s(t.strings.revert)+" ")]),t._v(" "),s("menu-button",{attrs:{disabled:!t.settingsDirtyStatus},on:{click:t.updateLazyLoadSettings}},[t._v(t._s(t.strings.submit)+" ")])],1)],1)},staticRenderFns:[],_compiled:!0,_scopeId:null,functional:void 0});})();
208
  },{"vue-fragment":"CDb8","deepmerge":"xMlw","$Components/MenuContent":"vTRD","$Mixins/SettingsMenuSection":"qeqP","$Components/Settings/FooterButtons":"jkrZ","$Components/MenuButton":"ksMR","$Mixins/withMessage":"wm3G","$LazyLoadSettings/LazyLoadPreview":"vlDi","$LazyLoadSettings/LazyLoadProOptions":"j8St","$LazyLoadSettings/LazyLoadBasicOptions":"QK2a","$Settings/Disclaimer":"ZYQN","$Settings/CollapsedVisibility":"oUAl"}],"pZ9N":[function(require,module,exports) {
209
- "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var e=d(require("@babel/runtime/helpers/slicedToArray")),t=d(require("@babel/runtime/helpers/defineProperty")),n=d(require("@babel/runtime/helpers/typeof")),r=d(require("$Mixins/withStore")),s=d(require("$Mixins/withMessage")),i=d(require("$Components/MenuHeader.vue")),o=d(require("$Components/Sections.vue")),a=d(require("$Components/MenuFooter.vue")),c=d(require("$Components/MenuButton.vue")),u=d(require("$Containers/GeneralSettings")),l=d(require("$Components/VersionControlSettings")),p=d(require("$Components/Settings/GeneralStylesSettings")),f=d(require("$LazyLoadSettings/LazyLoadSettings"));function d(e){return e&&e.__esModule?e:{default:e}}function h(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function g(e){for(var n=1;n<arguments.length;n++){var r=null!=arguments[n]?arguments[n]:{};n%2?h(Object(r),!0).forEach(function(n){(0,t.default)(e,n,r[n])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):h(Object(r)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))})}return e}var b={props:["sectionsData","settings","pluginInfo"],components:{MenuButton:c.default,MenuHeader:i.default,Sections:o.default,MenuFooter:a.default,GeneralSettings:u.default,VersionControlSettings:l.default,GeneralStylesSettings:p.default,LazyLoadSettings:f.default},mixins:[r.default,s.default],data:function(){return{sections:{},currentSection:"",parsedFields:{},resetActive:!1,canSubmit:!1,fetching:!1}},watch:{store:{handler:function(){this.resetActive?(this.canSubmit=!1,this.resetActive=!1):this.canSubmit=!0},deep:!0},fetching:function(e){this.setBusy(e)}},beforeMount:function(){var t=this;Object.keys(this.sectionsData).map(function(e){t.sections[e]=t.sectionsData[e],Object.prototype.hasOwnProperty.call(t.sectionsData,e)&&(void 0===t.parsedFields[e]&&(t.parsedFields[e]=[]),void 0!==t.sectionsData[e].fields&&"object"===(0,n.default)(t.sectionsData[e].fields)&&Object.keys(t.sectionsData[e].fields).map(function(n){Object.prototype.hasOwnProperty.call(t.sectionsData[e].fields,n)&&t.parsedFields[e].push(g(g({},t.sectionsData[e].fields[n]),{},{id:n}))}))});var r=Object.keys(this.parsedFields).map(function(e){if(Object.prototype.hasOwnProperty.call(t.parsedFields,e))return e}),s=(0,e.default)(r,1);this.currentSection=s[0]},computed:{sectionData:function(){return this.settings[this.currentSection]||{}},currentFields:function(){return this.parsedFields[this.currentSection]},currentTemplate:function(){return"".concat(this.currentSection[0].toUpperCase()+this.currentSection.slice(1),"Settings")}},methods:{resetStore:function(){this.canSubmit&&(this.revertStore(),this.resetActive=!0,this.setMessage({message:this.strings.revertMessage}))},submitSettings:function(){var e=this;if(this.canSubmit){var t=new FormData;t.append("nonce",this.settings.nonce),t.append("action",this.settings.action),t.append("options",JSON.stringify(this.store)),this.canSubmit=!1,this.fetching=!0,fetch(this.settings.ajaxUrl,{method:"POST",body:t}).then(function(e){if(e.ok)return e.json();throw new Error(e.statusText)}).then(function(t){if(t.error)throw new Error(t.error);e.setMessage({message:t.message})}).catch(function(t){console.error(t),e.setMessage({type:"error",message:t})}).finally(function(){e.fetching=!1})}}}};exports.default=b;
210
  (function(){var t=exports.default||module.exports;"function"==typeof t&&(t=t.options),Object.assign(t,{render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"wptb-settings-wrapper"},[n("menu-header",{attrs:{"logo-src":t.pluginInfo.logo,"logo-alt":t.strings.logoAlt,"plugin-name":t.pluginInfo.pluginName}},[n("a",{attrs:{href:t.pluginInfo.pluginHomepage}},[t._v(t._s(t.strings.homepage))])]),t._v(" "),n("sections",{attrs:{items:t.sections,disabled:t.isBusy()},model:{value:t.currentSection,callback:function(e){t.currentSection=e},expression:"currentSection"}}),t._v(" "),n(t.currentTemplate,{tag:"component",attrs:{"current-fields":t.currentFields,store:t.store,disabled:!t.canSubmit,"template-data":t.sectionData},on:{resetStore:t.resetStore,submitSettings:t.submitSettings}}),t._v(" "),n("menu-footer",[n("portal-target",{attrs:{name:"footerButtons"}})],1)],1)},staticRenderFns:[],_compiled:!0,_scopeId:null,functional:void 0});})();
211
- },{"@babel/runtime/helpers/slicedToArray":"DERy","@babel/runtime/helpers/defineProperty":"cQfh","@babel/runtime/helpers/typeof":"xOn8","$Mixins/withStore":"D1kn","$Mixins/withMessage":"wm3G","$Components/MenuHeader.vue":"vi91","$Components/Sections.vue":"yPIx","$Components/MenuFooter.vue":"nwtb","$Components/MenuButton.vue":"ksMR","$Containers/GeneralSettings":"fmPj","$Components/VersionControlSettings":"V4Tn","$Components/Settings/GeneralStylesSettings":"b8SN","$LazyLoadSettings/LazyLoadSettings":"qXUf"}],"yEip":[function(require,module,exports) {
212
  "use strict";function t(t,e){t.mixin({data:function(){return{strings:e.strings}}})}Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var e={install:t};exports.default=e;
213
  },{}],"yv7g":[function(require,module,exports) {
214
  var global = arguments[3];
@@ -221,16 +247,18 @@ var t=arguments[3];function e(t){if(Number(t.version.split(".")[0])>=2)t.mixin({
221
  "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var e={"--wptb-plugin-theme-color-light":"#A0AEC0","--wptb-plugin-theme-text-color-main":"#E2E8F0","--wptb-plugin-gray-100":"#718096","--wptb-plugin-theme-sidebar-bg":"#CBD5E0","--wptb-plugin-logo-color":"#4A5568"},t=e;exports.default=t;
222
  },{}],"WQ0b":[function(require,module,exports) {
223
  "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var e=t(require("$Stores/builderStore/modules/nightMode/state/cssVariableMaps"));function t(e){return e&&e.__esModule?e:{default:e}}var a={namespaced:!0,state:function(){return{activated:{value:!1,_persistent:!0},cssVariableMaps:e.default}},getters:{isActive:function(e){return e.activated.value}},mutations:{setNightMode:function(e,t){e.activated.value=t}}},s=a;exports.default=s;
224
- },{"$Stores/builderStore/modules/nightMode/state/cssVariableMaps":"h7JB"}],"s0Fm":[function(require,module,exports) {
225
- "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var e=o(require("$Stores/builderStore/modules/colorPicker")),r=o(require("$Stores/builderStore/modules/nightMode"));function o(e){return e&&e.__esModule?e:{default:e}}var t={colorPicker:e.default,nightMode:r.default},u=t;exports.default=u;
226
- },{"$Stores/builderStore/modules/colorPicker":"fJD7","$Stores/builderStore/modules/nightMode":"WQ0b"}],"Px6E":[function(require,module,exports) {
 
 
227
  var define;
228
  var global = arguments[3];
229
  var e,t=arguments[3];function n(e){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}!function(t,o){"object"===("undefined"==typeof exports?"undefined":n(exports))&&"undefined"!=typeof module?module.exports=o():"function"==typeof e&&e.amd?e(o):(t=t||self,function(){var e=t.Cookies,n=t.Cookies=o();n.noConflict=function(){return t.Cookies=e,n}}())}(this,function(){"use strict";function e(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var o in n)e[o]=n[o]}return e}return function t(n,o){function r(t,r,i){if("undefined"!=typeof document){"number"==typeof(i=e({},o,i)).expires&&(i.expires=new Date(Date.now()+864e5*i.expires)),i.expires&&(i.expires=i.expires.toUTCString()),t=encodeURIComponent(t).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var c="";for(var u in i)i[u]&&(c+="; "+u,!0!==i[u]&&(c+="="+i[u].split(";")[0]));return document.cookie=t+"="+n.write(r,t)+c}}return Object.create({set:r,get:function(e){if("undefined"!=typeof document&&(!arguments.length||e)){for(var t=document.cookie?document.cookie.split("; "):[],o={},r=0;r<t.length;r++){var i=t[r].split("="),c=i.slice(1).join("=");try{var u=decodeURIComponent(i[0]);if(o[u]=n.read(c,u),e===u)break}catch(f){}}return e?o[e]:o}},remove:function(t,n){r(t,"",e({},n,{expires:-1}))},withAttributes:function(n){return t(this.converter,e({},this.attributes,n))},withConverter:function(n){return t(e({},this.converter,n),this.attributes)}},{attributes:{value:Object.freeze(o)},converter:{value:Object.freeze(n)}})}({read:function(e){return'"'===e[0]&&(e=e.slice(1,-1)),e.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent)},write:function(e){return encodeURIComponent(e).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)}},{path:"/"})});
230
  },{}],"yIey":[function(require,module,exports) {
231
  "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=exports.getPersistentState=void 0;var t=a(require("@babel/runtime/helpers/typeof")),e=a(require("js-cookie")),r=require("$Stores/general"),n=require("$Functions/index");function a(t){return t&&t.__esModule?t:{default:t}}var o={proStatus:{watch:"pro",callBack:function(t,e,r){e&&!r&&(t.state.pro=!1)}}},c=function(){var t=e.default.get("wptb");if(t)try{t=JSON.parse(atob(t))}catch(r){}return t};exports.getPersistentState=c;var u=function(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],a={};r.map(function(e){var r=e.split(".");r.reduce(function(a,o,c){return c<r.length-1?a[o]||(a[o]={}):a[o]=(0,n.objectPropertyFromString)(e,t),a[o]},a)}),e.default.set("wptb",btoa(JSON.stringify(a)))},i=function(e){var r=[];return function e(n){var a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";"object"===(0,t.default)(n)&&null!==n&&(Object.prototype.hasOwnProperty.call(n,"_persistent")?r.push(a):Object.keys(n).map(function(t){Object.prototype.hasOwnProperty.call(n,t)&&e(n[t],"".concat(a).concat(""===a?"":".").concat(t))}))}(e),r},s=function(t){var e=i(t.state);o.stateWrite={watch:e,callBack:function(t){u(t.state,e)}},(0,r.stateWatchFunction)(t,o)},l=s;exports.default=l;
232
  },{"@babel/runtime/helpers/typeof":"xOn8","js-cookie":"Px6E","$Stores/general":"FSzv","$Functions/index":"HlPv"}],"McNG":[function(require,module,exports) {
233
- "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var e=f(require("@babel/runtime/helpers/defineProperty")),t=f(require("vue")),r=f(require("vuex")),n=f(require("deepmerge")),u=require("$Stores/general"),o=f(require("./modules")),i=a(require("$Stores/builderStore/plugin"));function c(){if("function"!=typeof WeakMap)return null;var e=new WeakMap;return c=function(){return e},e}function a(e){if(e&&e.__esModule)return e;if(null===e||"object"!=typeof e&&"function"!=typeof e)return{default:e};var t=c();if(t&&t.has(e))return t.get(e);var r={},n=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var u in e)if(Object.prototype.hasOwnProperty.call(e,u)){var o=n?Object.getOwnPropertyDescriptor(e,u):null;o&&(o.get||o.set)?Object.defineProperty(r,u,o):r[u]=e[u]}return r.default=e,t&&t.set(e,r),r}function f(e){return e&&e.__esModule?e:{default:e}}function p(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),r.push.apply(r,n)}return r}function s(t){for(var r=1;r<arguments.length;r++){var n=null!=arguments[r]?arguments[r]:{};r%2?p(Object(n),!0).forEach(function(r){(0,e.default)(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):p(Object(n)).forEach(function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))})}return t}var l={strict:!0,modules:o.default,plugins:[i.default]},b=function(e){return(0,u.createBasicStore)(l,e)};function d(){t.default.use(r.default);var e={state:s({},wptb_admin_object.store),getters:{proStatus:function(e){return e.pro}}},u=b(e),o=(0,i.getPersistentState)();return o&&u.replaceState((0,n.default)(u.state,o)),u.get=function(e){return u.getters[e]},u}var O=new d;exports.default=O;
234
  },{"@babel/runtime/helpers/defineProperty":"cQfh","vue":"HYXJ","vuex":"yv7g","deepmerge":"xMlw","$Stores/general":"FSzv","./modules":"s0Fm","$Stores/builderStore/plugin":"yIey"}],"vg0W":[function(require,module,exports) {
235
  var global = arguments[3];
236
  var e=arguments[3];Object.defineProperty(exports,"__esModule",{value:!0}),exports.setupGlobalStore=void 0;var r=t(require("$Stores/builderStore"));function t(e){return e&&e.__esModule?e:{default:e}}var o=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"WPTB_Store";(self||e)[t]=r.default};exports.setupGlobalStore=o;
102
  },{"@babel/runtime/helpers/defineProperty":"cQfh","codemirror":"L7e6","codemirror/lib/codemirror.css":"S5Yr","codemirror/addon/selection/active-line":"X3fE","codemirror/mode/css/css":"Da5z","./EmptyCover":"BOOO"}],"b8SN":[function(require,module,exports) {
103
  "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var e=require("vue-fragment"),t=i(require("../MenuContent")),n=i(require("./FooterButtons")),o=i(require("../MenuButton")),s=i(require("../CssCodeInput")),r=i(require("../../mixins/SettingsMenuSection")),a=i(require("../../mixins/withMessage")),u=i(require("../BusyRotate"));function i(e){return e&&e.__esModule?e:{default:e}}var d={mixins:[r.default,a.default],components:{BusyRotate:u.default,CssCodeInput:s.default,MenuButton:o.default,FooterButtons:n.default,MenuContent:t.default,Fragment:e.Fragment},data:function(){return{code:"",cachedCode:""}},beforeMount:function(){this.code=this.sectionData.savedStyles,this.updateCachedCode()},computed:{isCodeChanged:function(){return this.code!==this.cachedCode},buttonDisabledState:function(){return!this.isCodeChanged||this.isBusy()}},methods:{updateCachedCode:function(){this.cachedCode=this.code},resetCodeToCached:function(){this.code=this.cachedCode},sendSavedStyles:function(){var e=this;this.setBusy(!0);var t=this.sectionData.security,n=t.ajaxUrl,o=t.nonce,s=t.action,r=new FormData;r.append("action",s),r.append("nonce",o),r.append("styles",this.code),fetch(n,{method:"POST",body:r}).then(function(e){if(e.ok)return e.json();throw new Error("An error occurred while saving CSS code: ".concat(e.statusText))}).then(function(t){if(t.error)throw new Error("An error occurred while saving CSS code: ".concat(t.error));e.setMessage({message:t.message}),e.updateCachedCode()}).catch(function(t){e.setMessage({type:"error",message:t.message})}).finally(function(){e.setBusy(!1)})}}};exports.default=d;
104
  (function(){var e=exports.default||module.exports;"function"==typeof e&&(e=e.options),Object.assign(e,{render:function(){var e=this,t=e.$createElement,s=e._self._c||t;return s("fragment",[s("menu-content",{attrs:{center:!0}},[s("div",{staticClass:"wptb-general-style-settings"},[s("div",[s("div",{staticClass:"wptb-general-style-header"},[e._v(e._s(e.strings.headerText))])]),e._v(" "),s("div",{staticClass:"wptb-general-css-code-input"},[s("css-code-input",{attrs:{disabled:e.isBusy()},scopedSlots:e._u([{key:"disabled",fn:function(){return[s("busy-rotate")]},proxy:!0}]),model:{value:e.code,callback:function(t){e.code=t},expression:"code"}})],1)])]),e._v(" "),s("footer-buttons",[s("menu-button",{attrs:{disabled:e.buttonDisabledState,type:"danger"},on:{click:e.resetCodeToCached}},[e._v(e._s(e.strings.revert)+" ")]),e._v(" "),s("menu-button",{attrs:{disabled:e.buttonDisabledState},on:{click:e.sendSavedStyles}},[e._v(e._s(e.strings.submit))])],1)],1)},staticRenderFns:[],_compiled:!0,_scopeId:null,functional:void 0});})();
105
+ },{"vue-fragment":"CDb8","../MenuContent":"vTRD","./FooterButtons":"jkrZ","../MenuButton":"ksMR","../CssCodeInput":"JwAF","../../mixins/SettingsMenuSection":"qeqP","../../mixins/withMessage":"wm3G","../BusyRotate":"SbnK"}],"KwLP":[function(require,module,exports) {
 
 
106
  var r=require("./arrayLikeToArray");function a(a){if(Array.isArray(a))return r(a)}module.exports=a;
107
  },{"./arrayLikeToArray":"jEQo"}],"U0SN":[function(require,module,exports) {
108
  function e(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}module.exports=e;
110
  function e(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}module.exports=e;
111
  },{}],"DJfw":[function(require,module,exports) {
112
  var r=require("./arrayWithoutHoles"),e=require("./iterableToArray"),u=require("./unsupportedIterableToArray"),a=require("./nonIterableSpread");function o(o){return r(o)||e(o)||u(o)||a()}module.exports=o;
113
+ },{"./arrayWithoutHoles":"KwLP","./iterableToArray":"U0SN","./unsupportedIterableToArray":"Dbv9","./nonIterableSpread":"o1nV"}],"hl0g":[function(require,module,exports) {
114
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var t={props:["label","index"],data:function(){return{currentDirection:1}},methods:{sort:function(){this.currentDirection*=-1,this.$emit("sort",this.index,this.currentDirection)}}};exports.default=t;
115
+ (function(){var e=exports.default||module.exports;"function"==typeof e&&(e=e.options),Object.assign(e,{render:function(){var e=this,t=e.$createElement;return(e._self._c||t)("td",{on:{click:function(t){return t.preventDefault(),e.sort(t)}}},[e._v(" "+e._s(e.label)+" ")])},staticRenderFns:[],_compiled:!0,_scopeId:null,functional:void 0});})();
116
+ },{}],"SKWk":[function(require,module,exports) {
117
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var e=function(e){return{props:{searchClause:{type:String,default:""}},computed:{searchClauseFilteredValue:function(){var a=this[e];if(""===this.searchClause)return a;var s=new RegExp("(".concat(this.searchClause,")"),"gi");return'<span class="wptb-data-listing-row-search-clause-wrap">'.concat(a.replaceAll(s,'<span class="wptb-data-listing-row-search-clause">$&</span>'),"</span>")}}}},a=e;exports.default=a;
118
+ },{}],"jGkl":[function(require,module,exports) {
119
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var e=t(require("../mixins/withSearchClause"));function t(e){return e&&e.__esModule?e:{default:e}}var r={props:{modelBind:{type:Object,default:function(){return{}}},row:{type:Object,default:function(){return{}}},searchIndex:{type:Number,default:0}},mixins:[(0,e.default)("rowTitle")],data:function(){return{selected:!1}},computed:{rowTitle:function(){return this.row.fieldDatas[this.searchIndex]},rowVisibility:function(){var e=new RegExp("(".concat(this.searchClause,")"),"gi"),t=this.row.fieldDatas[this.searchIndex];return"string"!=typeof t&&(t=t.toString()),t.match(e)}}};exports.default=r;
120
+ (function(){var e=exports.default||module.exports;"function"==typeof e&&(e=e.options),Object.assign(e,{render:function(){var e=this,r=e.$createElement,t=e._self._c||r;return t("transition",{attrs:{name:"wptb-fade",mode:"out-in"}},[e.rowVisibility?t("tr",{staticClass:"wptb-list-table-row",attrs:{"data-selected":e.modelBind[e.row.ID]}},[t("td",[t("input",{directives:[{name:"model",rawName:"v-model",value:e.modelBind[e.row.ID],expression:"modelBind[row.ID]"}],attrs:{id:e.row.ID,type:"checkbox"},domProps:{checked:Array.isArray(e.modelBind[e.row.ID])?e._i(e.modelBind[e.row.ID],null)>-1:e.modelBind[e.row.ID]},on:{change:function(r){var t=e.modelBind[e.row.ID],o=r.target,n=!!o.checked;if(Array.isArray(t)){var d=e._i(t,null);o.checked?d<0&&e.$set(e.modelBind,e.row.ID,t.concat([null])):d>-1&&e.$set(e.modelBind,e.row.ID,t.slice(0,d).concat(t.slice(d+1)))}else e.$set(e.modelBind,e.row.ID,n)}}})]),e._v(" "),e._l(e.row.fieldDatas,function(r,o){return t("td",{key:r},[t("label",{class:o===e.searchIndex?"title-label":"",attrs:{for:e.row.ID},domProps:{innerHTML:e._s(o===e.searchIndex?e.searchClauseFilteredValue:r)}})])})],2):e._e()])},staticRenderFns:[],_compiled:!0,_scopeId:null,functional:void 0});})();
121
+ },{"../mixins/withSearchClause":"SKWk"}],"AF9R":[function(require,module,exports) {
122
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var t=o(require("$Components/ColumnSort")),e=o(require("$Components/ListTableRow"));function o(t){return t&&t.__esModule?t:{default:t}}var r={props:{rowLabels:Array,rowData:Array,modelBind:Object,sortType:Object,searchClause:String,searchDataIndex:{type:Number,default:0}},components:{ListTableRow:e.default,ColumnSort:t.default},data:function(){return{innerRowData:[],sortOptions:{index:null,direction:null}}},watch:{rowData:function(t){this.innerRowData=t,this.sortOptions&&this.sortOptions.index&&this.sortOptions.direction&&this.sort(this.sortOptions.index,this.sortOptions.direction)}},methods:{sort:function(t,e){this.sortOptions.index=t,this.sortOptions.direction=e;var o,r={dateSort:function(o,r){var n=0,s=new Date(o.fieldDatas[t].toLowerCase()).getTime(),a=new Date(r.fieldDatas[t].toLowerCase()).getTime();return s<a&&(n=1),s>a&&(n=-1),n*e},numberSort:function(o,r){return(Number.parseInt(o.fieldDatas[t],10)-Number.parseInt(r.fieldDatas[t],10))*e},defaultSort:function(o,r){var n=0,s=o.fieldDatas[t].toLowerCase(),a=r.fieldDatas[t].toLowerCase();return s<a&&(n=1),s>a&&(n=-1),n*e}},n=this.sortType[t];o=n&&r["".concat(n,"Sort")]?r["".concat(n,"Sort")]:r.defaultSort,this.innerRowData.sort(o)}}};exports.default=r;
123
+ (function(){var t=exports.default||module.exports;"function"==typeof t&&(t=t.options),Object.assign(t,{render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("table",{staticClass:"wptb-menu-list-table"},[n("thead",[n("tr",[t._m(0),t._v(" "),t._l(t.rowLabels,function(e,r){return n("column-sort",{key:e,attrs:{label:e,index:r},on:{sort:t.sort}})})],2)]),t._v(" "),n("tbody",t._l(t.innerRowData,function(e){return n("list-table-row",{key:e.ID,attrs:{"model-bind":t.modelBind,row:e,"search-clause":t.searchClause,"search-index":t.searchDataIndex}})}),1)])])},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("td",[e("input",{attrs:{type:"checkbox"}})])}],_compiled:!0,_scopeId:null,functional:void 0});})();
124
+ },{"$Components/ColumnSort":"hl0g","$Components/ListTableRow":"jGkl"}],"L1FW":[function(require,module,exports) {
125
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var e={props:{placeholder:{type:String,default:""},value:{type:String,default:""},disabled:{type:Boolean,default:!1}},model:{prop:"value",event:"valueChanged"},data:function(){return{searchTerm:this.value}},mounted:function(){},watch:{searchTerm:function(e){this.$emit("valueChanged",e.trim())},value:function(e){this.searchTerm=e.trim()}},computed:{clearButtonVisibility:function(){return""!==this.searchTerm}},methods:{clearSearch:function(){this.disabled||(this.searchTerm="")}}};exports.default=e;
126
+ (function(){var e=exports.default||module.exports;"function"==typeof e&&(e=e.options),Object.assign(e,{render:function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"wptb-search-input-wrapper"},[a("input",{directives:[{name:"model",rawName:"v-model",value:e.searchTerm,expression:"searchTerm"}],staticClass:"wptb-search-input-element",attrs:{disabled:e.disabled,type:"text",placeholder:e.placeholder},domProps:{value:e.searchTerm},on:{input:function(t){t.target.composing||(e.searchTerm=t.target.value)}}}),e._v(" "),e.clearButtonVisibility?a("div",{staticClass:"wptb-search-input-clear",attrs:{"data-disabled":e.disabled},on:{click:function(t){return t.preventDefault(),e.clearSearch(t)}}},[e._v(" X ")]):e._e()])},staticRenderFns:[],_compiled:!0,_scopeId:null,functional:void 0});})();
127
+ },{}],"ATQh":[function(require,module,exports) {
128
  "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var t={props:{click:{type:Function,default:function(){console.log("Material button clicked")}},size:{type:String,default:"fit-content"},disabled:{type:Boolean,default:!1}},computed:{buttonClass:function(){return["wptb-plugin-button-material-".concat(this.size)]}},methods:{handleClick:function(){this.disabled||this.click()}}};exports.default=t;
129
  (function(){var t=exports.default||module.exports;"function"==typeof t&&(t=t.options),Object.assign(t,{render:function(){var t=this,e=t.$createElement;return(t._self._c||e)("div",{staticClass:"wptb-plugin-button-material",class:t.buttonClass,attrs:{disabled:t.disabled},on:{click:function(e){return e.preventDefault(),t.handleClick(e)}}},[t._t("default")],2)},staticRenderFns:[],_compiled:!0,_scopeId:null,functional:void 0});})();
130
+ },{}],"IY2J":[function(require,module,exports) {
131
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var e=t(require("@babel/runtime/helpers/toConsumableArray"));function t(e){return e&&e.__esModule?e:{default:e}}var r=["wptb-svg-inherit-color"],n={props:{name:{type:String,default:""},extraClasses:{type:Array,default:function(){return r}}},watch:{extraClasses:function(){this.prepareClasses(),this.prepareIcon()},name:function(){this.prepareIcon()}},data:function(){return{iconFragment:"",innerExtraClasses:[]}},mounted:function(){var e=this;this.$nextTick(function(){e.prepareClasses(e.extraClasses),e.prepareIcon()})},methods:{prepareIcon:function(){var e=this;WPTB_IconManager.getIcon(this.name,this.innerExtraClasses,!0).then(function(t){e.iconFragment=t})},prepareClasses:function(){this.innerExtraClasses=Array.from(new Set([].concat((0,e.default)(this.extraClasses),r)))}}};exports.default=n;
132
+ (function(){var e=exports.default||module.exports;"function"==typeof e&&(e=e.options),Object.assign(e,{render:function(){var e=this.$createElement;return(this._self._c||e)("div",{domProps:{innerHTML:this._s(this.iconFragment)}})},staticRenderFns:[],_compiled:!0,_scopeId:null,functional:void 0});})();
133
+ },{"@babel/runtime/helpers/toConsumableArray":"DJfw"}],"vCKs":[function(require,module,exports) {
134
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var e=a(require("@babel/runtime/helpers/toConsumableArray")),t=a(require("$Components/MaterialButton")),n=a(require("$Components/Icon"));function a(e){return e&&e.__esModule?e:{default:e}}var i={props:{isFixed:{type:Boolean,default:!1},buttonExtraClasses:{type:Array,default:function(){return[]}},windowTitle:{type:null,default:null},message:{type:String,default:"This is a default message for modal window."},iconName:{type:String,default:"exclamation-circle"},iconClasses:{type:Array,default:function(){return[]}},buttonLabel:{type:String,default:"Okay"},visible:{type:Boolean,default:!1},relativeRef:{type:HTMLElement,required:!1},callback:{type:Function,default:function(){console.log("modal button clicked")}},closeCallback:{type:Function,default:function(){console.log("modal window close")}}},components:{Icon:n.default,MaterialButton:t.default},data:function(){return{iconFinalClasses:[]}},mounted:function(){var e=this;this.$nextTick(function(){e.isFixed||e.relativeRef.appendChild(e.$refs.mainWrapper),e.prepareFinalClasses(e.iconClasses)})},watch:{iconClasses:function(){this.prepareFinalClasses()}},methods:{prepareFinalClasses:function(){this.iconFinalClasses=Array.from(new Set([].concat((0,e.default)(this.iconClasses),["wptb-plugin-modal-icon-inner-wrapper"])))}},beforeDestroy:function(){this.isFixed||this.$refs.mainWrapper.parentNode.removeChild(this.$refs.mainWrapper)}};exports.default=i;
135
+ (function(){var t=exports.default||module.exports;"function"==typeof t&&(t=t.options),Object.assign(t,{render:function(){var t=this,a=t.$createElement,s=t._self._c||a;return s("div",{directives:[{name:"show",rawName:"v-show",value:t.visible,expression:"visible"}],ref:"mainWrapper",staticClass:"wptb-plugin-modal-window",attrs:{"data-is-fixed":t.isFixed}},[s("div",{staticClass:"wptb-plugin-modal-inner-window"},[t.windowTitle?s("div",{staticClass:"wptb-plugin-modal-header"},[s("div",{staticClass:"wptb-plugin-modal-header-title"},[t._v(t._s(t._f("cap")(t.windowTitle)))]),t._v(" "),s("div",{staticClass:"wptb-plugin-modal-header-close",on:{click:function(a){return a.preventDefault(),t.closeCallback(a)}}},[s("div",{staticClass:"wptb-plugin-modal-close-wrapper"},[t._v("X")])])]):t._e(),t._v(" "),s("div",{staticClass:"wptb-plugin-modal-content-container"},[s("div",{staticClass:"wptb-plugin-modal-icon"},[s("icon",{staticClass:"wptb-plugin-modal-icon-parent-wrapper",attrs:{name:t.iconName,"extra-classes":t.iconFinalClasses}})],1),t._v(" "),s("div",{staticClass:"wptb-plugin-modal-message"},[t._v(t._s(t.message))]),t._v(" "),s("div",{staticClass:"wptb-plugin-modal-slot-container"},[t._t("default")],2),t._v(" "),s("div",{staticClass:"wptb-plugin-modal-button-container"},[s("material-button",{class:t.buttonExtraClasses,attrs:{size:"full-size",click:t.callback}},[t._v(t._s(t._f("cap")(t.buttonLabel)))])],1)])])])},staticRenderFns:[],_compiled:!0,_scopeId:null,functional:void 0});})();
136
+ },{"@babel/runtime/helpers/toConsumableArray":"DJfw","$Components/MaterialButton":"ATQh","$Components/Icon":"IY2J"}],"DIVF":[function(require,module,exports) {
137
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var t=e(require("$Components/Icon"));function e(t){return t&&t.__esModule?t:{default:t}}var r={props:{id:{type:String,required:!0},status:{type:Boolean,required:!0}},components:{Icon:t.default},computed:{fixStatus:function(){return JSON.stringify(this.status)},tableTitle:function(){return"".concat(this.strings.table,"#").concat(this.id)},iconName:function(){return this.status?"check-circle":"times-circle"}}};exports.default=r;
138
+ (function(){var t=exports.default||module.exports;"function"==typeof t&&(t=t.options),Object.assign(t,{render:function(){var t=this,a=t.$createElement,s=t._self._c||a;return s("tr",[s("td",[s("div",{staticClass:"wptb-fix-summary-column",attrs:{"data-fix-status":t.fixStatus}},[t._v(" "+t._s(t._f("cap")(t.tableTitle))+" ")])]),t._v(" "),s("td",[s("div",{key:t.id,staticClass:"wptb-fix-summary-column",attrs:{"data-fix-status":t.fixStatus}},[s("icon",{staticClass:"icon-wrapper-parent",attrs:{"extra-classes":["icon-wrapper"],name:t.iconName}})],1)])])},staticRenderFns:[],_compiled:!0,_scopeId:"data-v-69d1e9",functional:void 0});})();
139
+ },{"$Components/Icon":"IY2J"}],"pigW":[function(require,module,exports) {
140
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var e=t(require("$Components/TableFixer/SummaryRow"));function t(e){return e&&e.__esModule?e:{default:e}}var r={components:{SummaryRow:e.default},props:{summaryData:{type:Object,default:function(){return{}}}},methods:{tableTitle:function(e){return"".concat(this.strings.table,"#").concat(e)},fixStatus:function(e){return JSON.stringify(e)},iconName:function(e){return e?"check-circle":"times-circle"}}};exports.default=r;
141
+ (function(){var t=exports.default||module.exports;"function"==typeof t&&(t=t.options),Object.assign(t,{render:function(){var t=this.$createElement,s=this._self._c||t;return s("div",{staticClass:"wptb-fix-summary-wrapper"},[s("div",{staticClass:"wptb-fix-summary-list"},[s("table",[s("tbody",this._l(this.summaryData,function(t,e){return s("summary-row",{key:e,attrs:{id:e,status:t}})}),1)])])])},staticRenderFns:[],_compiled:!0,_scopeId:null,functional:void 0});})();
142
+ },{"$Components/TableFixer/SummaryRow":"DIVF"}],"RpBt":[function(require,module,exports) {
143
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var e=m(require("@babel/runtime/helpers/slicedToArray")),t=m(require("@babel/runtime/helpers/toConsumableArray")),s=require("vue-fragment"),n=m(require("$Settings/FooterButtons")),r=m(require("$Components/MenuContent")),a=m(require("$Components/MenuButton")),i=m(require("$Mixins/SettingsMenuSection")),u=m(require("$Mixins/withMessage")),o=m(require("$Components/ListTable")),l=m(require("$Components/SearchInput")),c=m(require("$Settings/Disclaimer")),d=m(require("$Components/ModalWindow")),f=m(require("$Components/TableFixer/FixSummary"));function m(e){return e&&e.__esModule?e:{default:e}}function h(e){for(var t=[],s=Object.keys(e),n=0;n<s.length;n++)t.push([s[n],e[s[n]]]);return t}var p={components:{FixSummary:f.default,ModalWindow:d.default,Disclaimer:c.default,SearchInput:l.default,ListTable:o.default,MenuButton:a.default,MenuContent:r.default,FooterButtons:n.default,Fragment:s.Fragment},mixins:[i.default,u.default],data:function(){return{selectedTables:{},tables:[],searchClause:"",summaryVisibility:!1,summaryMessage:"",summaryData:{}}},mounted:function(){var e=this;this.$nextTick(function(){e.getTables()})},computed:{selectedTableIds:function(){var e=this;return Object.keys(this.selectedTables).filter(function(t){return Object.prototype.hasOwnProperty.call(e.selectedTables,t)&&e.selectedTables[t]})},tableFixButtonLabel:function(){var e=this.selectedTableIds.length>1?"fixTables":"fixTable";return this.strings[e]},fixTableButtonDisabledStatus:function(){return this.isBusy()||0===this.selectedTableIds.length},userTables:function(){return(0,t.default)(this.tables)}},methods:{resetSelections:function(){this.selectedTables={}},showSummary:function(t){var s=h(t).every(function(t){var s=(0,e.default)(t,2);s[0];return s[1]});this.summaryMessage=s?this.strings.summaryMessageAllFixed:this.strings.summaryMessageNotAllFixed,this.summaryData=t,this.summaryVisibility=!0},hideSummary:function(){this.summaryVisibility=!1},parseFetchedTables:function(e){return e.reduce(function(e,t){var s=new Intl.DateTimeFormat("default",{year:"numeric",day:"numeric",month:"long"}).format(new Date(t.modified)),n=t.title,r=t.id,a={ID:r=r.toString(),fieldDatas:[r,n.rendered,s]};return e.push(a),e},[])},getTables:function(){var e=this,t=this.sectionData.tableGet.getUrl,s=this.sectionData.rest.restNonce,n=new URL(t);return n.searchParams.append("status","draft"),n.searchParams.append("per_page","100"),n.searchParams.append("_fields","id,title,modified"),n.searchParams.append("orderby","id"),this.setBusy(),fetch(n.toString(),{method:"GET",headers:{"X-WP-Nonce":s}}).then(function(e){if(e.ok)return e.json();throw new Error(e.statusText)}).then(function(t){e.tables=e.parseFetchedTables(t),e.setMessage({message:e.strings.tablesFetched})}).catch(function(t){e.setMessage({type:"error",message:t})}).finally(function(){e.setBusy(!1)})},fixTables:function(){var t=this,s=this.sectionData.fixPost,n=s.fixUrl,r=s.fixAction,a=s.fixNonce,i=this.sectionData.rest.restNonce,u=new URL(n);return u.searchParams.append("action",r),u.searchParams.append("nonce",a),this.setBusy(),fetch(u.toString(),{method:"POST",headers:{"X-WP-NONCE":i,"Content-Type":"application/json",Accept:"application/json"},body:JSON.stringify({tableIds:h(this.selectedTableIds).map(function(t){var s=(0,e.default)(t,2);s[0];return s[1]})})}).then(function(e){return e.ok?e.json():e.json().then(function(e){throw new Error(e.message)})}).then(function(e){t.resetSelections(),t.showSummary(e.data.response)}).catch(function(e){t.setMessage({message:e,type:"error"})}).finally(function(){t.setBusy(!1)})}}};exports.default=p;
144
+ (function(){var e=exports.default||module.exports;"function"==typeof e&&(e=e.options),Object.assign(e,{render:function(){var e=this,s=e.$createElement,t=e._self._c||s;return t("fragment",[t("menu-content",{attrs:{center:!0}},[t("div",{staticClass:"wptb-table-fixer-settings"},[t("search-input",{staticClass:"wptb-table-fixer-table-filter",attrs:{placeholder:e._f("cap")(e.strings.search)},model:{value:e.searchClause,callback:function(s){e.searchClause=s},expression:"searchClause"}}),e._v(" "),t("div",{staticClass:"wptb-table-fixer-listing"},[t("list-table",{attrs:{"model-bind":e.selectedTables,"row-data":e.userTables,"row-labels":["ID",e.strings.title,e.strings.modified],"sort-type":{0:"number",1:"default",2:"date"},"search-clause":e.searchClause,"search-data-index":1}})],1),e._v(" "),t("div",{staticClass:"wptb-table-fixer-disclaimer"},[t("disclaimer",{attrs:{title:e.strings.disclaimerTitle,message:e.strings.disclaimerMessage}})],1)],1)]),e._v(" "),t("modal-window",{attrs:{"close-callback":e.hideSummary,"is-fixed":!0,callback:e.hideSummary,visible:e.summaryVisibility,"window-title":e.strings.summary,message:e.summaryMessage}},[t("fix-summary",{attrs:{"summary-data":e.summaryData}})],1),e._v(" "),t("footer-buttons",[t("menu-button",{attrs:{disabled:e.fixTableButtonDisabledStatus},on:{click:e.fixTables}},[e._v(e._s(e.tableFixButtonLabel)+" ")])],1)],1)},staticRenderFns:[],_compiled:!0,_scopeId:null,functional:void 0});})();
145
+ },{"@babel/runtime/helpers/slicedToArray":"DERy","@babel/runtime/helpers/toConsumableArray":"DJfw","vue-fragment":"CDb8","$Settings/FooterButtons":"jkrZ","$Components/MenuContent":"vTRD","$Components/MenuButton":"ksMR","$Mixins/SettingsMenuSection":"qeqP","$Mixins/withMessage":"wm3G","$Components/ListTable":"AF9R","$Components/SearchInput":"L1FW","$Settings/Disclaimer":"ZYQN","$Components/ModalWindow":"vCKs","$Components/TableFixer/FixSummary":"pigW"}],"xMlw":[function(require,module,exports) {
146
+ "use strict";var r=function(r){return e(r)&&!t(r)};function e(r){return!!r&&"object"==typeof r}function t(r){var e=Object.prototype.toString.call(r);return"[object RegExp]"===e||"[object Date]"===e||c(r)}var n="function"==typeof Symbol&&Symbol.for,o=n?Symbol.for("react.element"):60103;function c(r){return r.$$typeof===o}function u(r){return Array.isArray(r)?[]:{}}function a(r,e){return!1!==e.clone&&e.isMergeableObject(r)?g(u(r),r,e):r}function i(r,e,t){return r.concat(e).map(function(r){return a(r,t)})}function f(r,e){if(!e.customMerge)return g;var t=e.customMerge(r);return"function"==typeof t?t:g}function y(r){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(r).filter(function(e){return r.propertyIsEnumerable(e)}):[]}function b(r){return Object.keys(r).concat(y(r))}function l(r,e){try{return e in r}catch(t){return!1}}function s(r,e){return l(r,e)&&!(Object.hasOwnProperty.call(r,e)&&Object.propertyIsEnumerable.call(r,e))}function p(r,e,t){var n={};return t.isMergeableObject(r)&&b(r).forEach(function(e){n[e]=a(r[e],t)}),b(e).forEach(function(o){s(r,o)||(l(r,o)&&t.isMergeableObject(e[o])?n[o]=f(o,t)(r[o],e[o],t):n[o]=a(e[o],t))}),n}function g(e,t,n){(n=n||{}).arrayMerge=n.arrayMerge||i,n.isMergeableObject=n.isMergeableObject||r,n.cloneUnlessOtherwiseSpecified=a;var o=Array.isArray(t);return o===Array.isArray(e)?o?n.arrayMerge(e,t,n):p(e,t,n):a(t,n)}g.all=function(r,e){if(!Array.isArray(r))throw new Error("first argument should be an array");return r.reduce(function(r,t){return g(r,t,e)},{})};var O=g;module.exports=O;
147
+ },{}],"izJK":[function(require,module,exports) {
148
+ var global = arguments[3];
149
+ var e=arguments[3],t=o(require("@babel/runtime/helpers/toConsumableArray")),n=o(require("@babel/runtime/helpers/defineProperty")),a=o(require("@babel/runtime/helpers/typeof"));function o(e){return e&&e.__esModule?e:{default:e}}function r(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,a)}return n}function i(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{};t%2?r(Object(a),!0).forEach(function(t){(0,n.default)(e,t,a[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(a)):r(Object(a)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(a,t))})}return e}!function(e,t,n){"object"===("undefined"==typeof exports?"undefined":(0,a.default)(exports))&&"undefined"!=typeof module?module.exports=n():t[e]=n()}("WPTB_LazyLoad",self||e,function(){function e(e){var t=this,n=i(i({},{name:"",speed:8,step:10,hooks:{},direction:"left",perspective:1e3,flashColor:"#FFFFFF"}),e);this.getOptions=function(){return i({},n)},this.calculateDuration=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:.1,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1;return Math.max(e,t)-Math.abs(t-e)/n.step*n.speed},this.calculateAnimationDirection=function(){var e=["X","Y"],t=arguments.length>0&&void 0!==arguments[0]&&arguments[0]?1:0;return["left","right"].includes(n.direction)?e[(0+t)%2]:e[(1+t)%2]},this.calculateDirectionConstant=function(){return(arguments.length>0&&void 0!==arguments[0]&&arguments[0]?-1:1)*(["left","up"].includes(t.getOptions().direction)?1:-1)};var a=function(e){var a=function(e){if(Object.prototype.hasOwnProperty.call(n.hooks,e)){var t=n.hooks[e];if("function"==typeof t)return t}return null}(e);if(a){for(var o=arguments.length,r=new Array(o>1?o-1:0),i=1;i<o;i++)r[i-1]=arguments[i];a.apply(t,r)}};this.getBufferElement=function(e){return e.parentNode.querySelector(".".concat("wptb-lazy-load-buffer-element"))},this.removeBufferElement=function(e){var n=t.getBufferElement(e);if(n){var a=n.parentNode;a.removeChild(n),a.classList.remove("wptb-lazy-load-buffer-element-container")}},this.addStylesheet=function(e,t){var n=t.querySelector('style[id="'.concat("wptb-lazy-load-styles",'"]'));n||((n=t.createElement("style")).id="wptb-lazy-load-styles",n.type="text/css",t.head.appendChild(n));var a=document.createTextNode(e);n.innerHTML="",n.appendChild(a)},this.beforeAnimation=function(e){a("beforeAnimation",e)},this.animate=function(e){a("animate",e)},this.afterAnimation=function(e){a("afterAnimation",e),delete t}}function n(t){this.getAnimation=function(n){var a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return t[n]?new e(i(i({},t[n]),a)):new e({})}}var o={none:{hooks:{animate:function(e){this.removeBufferElement(e)}}},slideIn:{hooks:{beforeAnimation:function(e){e.parentNode.style.overflow="hidden",e.style.transform="translate".concat(this.calculateAnimationDirection(),"(").concat(100*this.calculateDirectionConstant(),"%)")},animate:function(e){this.removeBufferElement(e),e.style.transition="transform ".concat(this.calculateDuration(),"s ease-out"),e.style.transform="translate".concat(this.calculateAnimationDirection(),"(0)")}}},growSling:{hooks:{beforeAnimation:function(e){e.style.transform="scale(0.1)"},animate:function(e){this.removeBufferElement(e),e.style.transition="transform ".concat(this.calculateDuration(),"s cubic-bezier(0.68, -0.55, 0.27, 1.55)"),e.style.transform="scale(1)"}}},flash:{hooks:{beforeAnimation:function(e){var t=document.createElement("div");t.classList.add("wptb-flash-element"),e.parentNode.classList.add("wptb-lazy-load-buffer-element-container"),e.insertAdjacentElement("afterend",t);var n="@keyframes wptb-flash {0% {opacity:1;}100% {opacity: 0;}} .wptb-flash-element {position: absolute; top: 0px; left: 0px; right: 0px; bottom: 0px; background-color: ".concat(this.getOptions().flashColor,"}.wptb-flash-animation {animation: wptb-flash ").concat(this.calculateDuration(),"s forwards ease-out}");this.addStylesheet(n,e.ownerDocument)},animate:function(e){this.removeBufferElement(e);var t=e.parentNode.querySelector(".wptb-flash-element");t&&(e.parentNode.classList.add("wptb-lazy-load-buffer-element-container"),t.addEventListener("animationend",function(n){"wptb-flash"===n.animationName&&(e.parentNode.classList.remove("wptb-lazy-load-buffer-element-container"),t.remove())}),t.classList.add("wptb-flash-animation"))}}},flip:{hooks:{beforeAnimation:function(e){var t,n=e.parentNode;n.classList.add("wptb-lazy-load-card-container"),null===(t=n.parentNode)||void 0===t||t.classList.add("wptb-lazy-load-perspective-base"),e.classList.add("wptb-lazy-load-card-back","wptb-lazy-load-hidden-backface"),this.getBufferElement(e).classList.add("wptb-lazy-load-hidden-backface","wptb-lazy-load-card-front");var a=this.calculateAnimationDirection(!0),o="".concat(180*this.calculateDirectionConstant(!0),"deg"),r=".wptb-lazy-load-perspective-base{perspective: ".concat(this.getOptions().perspective,"px;} .wptb-lazy-load-card-container{ transform-style: preserve-3d; transition: transform ").concat(this.calculateDuration(),"s ease-out; } .wptb-lazy-load-card-container[data-wptb-card-flip='true']{transform: rotate").concat(a,"(").concat(o,")} [data-wptb-card-flip='true'] .wptb-lazy-load-card-front svg{ animation: none !important; opacity: 0.2;} .wptb-lazy-load-card-back { transform: rotate").concat(a,"(").concat(o,")} .wptb-lazy-load-hidden-backface{backface-visibility: hidden;}");this.addStylesheet(r,e.ownerDocument)},animate:function(e){var t=this,n=e.parentNode;n.addEventListener("transitionend",function(a){"transform"===a.propertyName&&t.removeBufferElement(e),n.classList.remove("wptb-lazy-load-card-container","wptb-lazy-load-flip"),n.parentNode.classList.remove("wptb-lazy-load-perspective-base"),e.classList.remove("wptb-lazy-load-card-back","wptb-lazy-load-hidden-backface")}),n.dataset.wptbCardFlip="true"}}}};return new function(){var e={forceMode:!1},r={},l={lastYPosition:0},c=[],s=new n(o),d=null,f=function(e,t){var n=e.parentNode.getBoundingClientRect(),a=n.top,o=n.height,i=n.bottom,c=r.visibilityPercentage,s=a+o*(c/100),d=i-o*(c/100),f=window.scrollY-l.lastYPosition>=0?s:d;return f>=0&&f<=t},u=function e(t){var n=t.target;d.animate(n),n.removeEventListener("load",e),d.afterAnimation(n)},p=function(e,t){var n,a=arguments.length>2&&void 0!==arguments[2]&&arguments[2],o=arguments.length>3&&void 0!==arguments[3]&&arguments[3];e.filter(function(e){return"false"===e.dataset.wptbLazyLoadStatus}).map(function(e){a&&function(e){var t=document.createElement("div");if(t.classList.add("wptb-lazy-load-buffer-element"),t.style.backgroundColor=r.backgroundColor,r.iconSvg){t.innerHTML='<div class="wptb-lazy-load-buffer-icon-wrapper wptb-plugin-filter-box-shadow-md">'.concat(r.iconSvg,"</div>");var n=t.querySelector("svg"),a=t.querySelector(".wptb-lazy-load-buffer-icon-wrapper");a.style.width="".concat(r.iconSize,"px"),a.style.height="".concat(r.iconSize,"px"),a.dataset.wptbLazyLoadIconAnimation=r.iconAnimation,n&&(n.style.fill=r.iconColor)}e.insertAdjacentElement("afterend",t),e.parentNode.classList.add("wptb-lazy-load-buffer-element-container"),d.beforeAnimation(e)}(e),r.forceMode&&!o||function(e,t){(r.forceMode||f(e,t))&&(e.dataset.wptbLazyLoadStatus="true",e.addEventListener("load",r.delay?function(){setTimeout(function(){u({target:e})},1e3*r.delay)}:u),e.src=e.dataset.wptbLazyLoadTarget)}(e,t)}),n=window.scrollY,l.lastYPosition=n},m=function(){return window.innerHeight},b=function(){var e=Array.from(document.querySelectorAll(".wptb-preview-table")),n=Array.from(document.querySelectorAll(".wptb-shadow-root-container")).reduce(function(e,t){var n=t.shadowRoot.querySelector(".wptb-preview-table");return n&&e.push(n),e},[]),a=[].concat((0,t.default)(e),(0,t.default)(n));c.push.apply(c,(0,t.default)(function(e){return e.reduce(function(e,n){var a=Array.from(n.querySelectorAll(".wptb-lazy-load-img"));return e.push.apply(e,(0,t.default)(a)),e},[])}(a))),p(c,m(),!0),r.forceMode||window.addEventListener("scroll",function(){p(c,m())},{passive:!0})};this.forceLoadImages=function(){p(c,null,!1,!0)},this.init=function(t){t&&"object"===(0,a.default)(t)&&(r=i(i({},e),t)).enabled&&(d=s.getAnimation(r.imageLoadAnimation,i({speed:r.imageLoadAnimationSpeed,direction:r.imageLoadAnimationDirection,perspective:r.imageLoadAnimationPerspective},r)),b())}}});
150
+ },{"@babel/runtime/helpers/toConsumableArray":"DJfw","@babel/runtime/helpers/defineProperty":"cQfh","@babel/runtime/helpers/typeof":"xOn8"}],"YDlH":[function(require,module,exports) {
151
  "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var e={props:{gridArea:{type:String,required:!0},visibility:{type:Boolean,default:!0}},computed:{style:function(){return{gridArea:this.gridArea}}}};exports.default=e;
152
  (function(){var t=exports.default||module.exports;"function"==typeof t&&(t=t.options),Object.assign(t,{render:function(){var t=this.$createElement,e=this._self._c||t;return this.visibility?e("div",{staticClass:"wptb-lazy-load-pro-disabled-overlay",style:this.style},[this._t("default")],2):this._e()},staticRenderFns:[],_compiled:!0,_scopeId:null,functional:void 0});})();
153
  },{}],"vlDi":[function(require,module,exports) {
175
  },{"@babel/runtime/helpers/toConsumableArray":"DJfw","$Mixins/PanelControlBase":"vpWQ","$LeftPanel/Panel2ColumnTemplate":"B40R","$LeftPanel/PanelDirectionCadet":"GUbL"}],"h0P7":[function(require,module,exports) {
176
  "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var t={inheritAttrs:!1,props:{postFix:{type:String,default:""},value:{type:null,default:0},enableDynamicWidth:{type:Boolean,default:!1},dynamicWidthPadding:{type:Number,default:3},onlyEnter:{type:Boolean,default:!1},min:{type:Number,default:0},max:{type:Number,default:1e3},step:{type:Number,default:1},enableLimit:{type:Boolean,default:!1}},model:{prop:"value",event:"valueChanged"},watch:{value:function(t){this.innerValue=t}},data:function(){return{innerValue:0}},mounted:function(){this.innerValue=this.value},computed:{postFixIt:function(){return"".concat(this.innerValue).concat(this.postFix)},dynamicWidth:function(){return this.enableDynamicWidth?{width:"calc(".concat(this.innerValue.toString().length+this.postFix.length+this.dynamicWidthPadding,"ch) !important")}:{}}},methods:{getValue:function(t){var e=Number.parseFloat(t),i=new RegExp(/^([0-9]+)\.([0-9]+)/,"g").exec(this.step.toString());if(i){var n=i[2].length;e=Number.parseFloat(e.toFixed(n))}return e=isNaN(e)?0:e,this.enableLimit?this.limitValue(e):e},limitValue:function(t){return t<this.min?this.min:t>this.max?this.max:t},handleOnInput:function(t){this.onlyEnter||this.$emit("valueChanged",this.getValue(t.target.value))},handleEnterInput:function(t){this.onlyEnter&&this.$emit("valueChanged",this.getValue(t.target.value))},handleKeyPress:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"up",e=this.getValue(this.innerValue);switch(t){case"up":e+=this.step;break;case"down":e-=this.step;break;default:e+=this.step}e=this.getValue(e),this.$emit("valueChanged",e)}}};exports.default=t;
177
  (function(){var e=exports.default||module.exports;"function"==typeof e&&(e=e.options),Object.assign(e,{render:function(){var e=this,t=e.$createElement;return(e._self._c||t)("input",{style:e.dynamicWidth,attrs:{"data-wptb-text-disabled":e.$attrs.disabled,type:"text",disabled:e.$attrs.disabled},domProps:{value:e.postFixIt},on:{input:e.handleOnInput,keydown:[function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])?null:(t.preventDefault(),e.handleKeyPress("up"))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])?null:(t.preventDefault(),e.handleKeyPress("down"))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:(t.preventDefault(),e.handleEnterInput(t))}]}})},staticRenderFns:[],_compiled:!0,_scopeId:null,functional:void 0});})();
 
 
 
178
  },{}],"DAVl":[function(require,module,exports) {
179
  "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var t=e(require("$Components/Icon"));function e(t){return t&&t.__esModule?t:{default:t}}var o={props:{position:{type:String,default:"up"}},components:{Icon:t.default},data:function(){return{positionMap:{up:"caret-up",down:"caret-down"}}},computed:{iconName:function(){return this.positionMap[this.position]}},methods:{handleIncrementDecrement:function(){this.$emit("click",this.position)}}};exports.default=o;
180
  (function(){var t=exports.default||module.exports;"function"==typeof t&&(t=t.options),Object.assign(t,{render:function(){var t=this,e=t.$createElement;return(t._self._c||e)("icon",{staticClass:"wptb-range-input-operation-button",attrs:{"extra-classes":["wptb-svg-inherit-color","wptb-settings-generic-icon"],name:t.iconName,"data-wptb-button-position":t.position},nativeOn:{click:function(e){return e.preventDefault(),t.handleIncrementDecrement(e)}}})},staticRenderFns:[],_compiled:!0,_scopeId:null,functional:void 0});})();
232
  "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var t=require("vue-fragment"),e=f(require("deepmerge")),i=f(require("$Components/MenuContent")),n=f(require("$Mixins/SettingsMenuSection")),s=f(require("$Components/Settings/FooterButtons")),a=f(require("$Components/MenuButton")),o=f(require("$Mixins/withMessage")),r=f(require("$LazyLoadSettings/LazyLoadPreview")),u=f(require("$LazyLoadSettings/LazyLoadProOptions")),d=f(require("$LazyLoadSettings/LazyLoadBasicOptions")),g=f(require("$Settings/Disclaimer")),l=f(require("$Settings/CollapsedVisibility"));function f(t){return t&&t.__esModule?t:{default:t}}var c={components:{CollapsedVisibility:l.default,Disclaimer:g.default,LazyLoadBasicOptions:d.default,LazyLoadProOptions:u.default,LazyLoadPreview:r.default,MenuButton:a.default,FooterButtons:s.default,MenuContent:i.default,Fragment:t.Fragment},mixins:[n.default,o.default],mounted:function(){this.settings=(0,e.default)({},this.sectionData.settings),this.settings.iconName.url=WPTB_IconManager.getIconUrl(this.settings.iconName.name),this.updateInitialSettings()},data:function(){return{settings:{},initialSettings:{}}},computed:{settingsDirtyStatus:function(){return JSON.stringify(this.settings)!==JSON.stringify(this.initialSettings)}},methods:{revertLazyLoadSettings:function(){this.$set(this,"settings",(0,e.default)({},this.initialSettings)),this.$set(this.templateData,"settings",(0,e.default)({},this.initialSettings))},updateInitialSettings:function(){this.initialSettings=(0,e.default)({},this.settings)},updateLazyLoadSettings:function(){var t=this;if(this.settingsDirtyStatus){var i=this.sectionData.security,n=i.action,s=i.nonce,a=i.ajaxUrl,o=new FormData,r=(0,e.default)({},this.settings);r.iconSvg=null,o.append("settings",JSON.stringify(r)),o.append("action",n),o.append("nonce",s),this.setBusy(!0),fetch(a,{method:"POST",body:o}).then(function(t){if(t.ok)return t.json();throw new Error(t.statusText)}).then(function(e){t.setMessage({message:e.message}),t.updateInitialSettings()}).catch(function(e){t.setMessage({message:e.message,type:"error"})}).finally(function(){t.setBusy(!1)})}}}};exports.default=c;
233
  (function(){var t=exports.default||module.exports;"function"==typeof t&&(t=t.options),Object.assign(t,{render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("fragment",[s("menu-content",{attrs:{center:!0}},[s("div",{staticClass:"wptb-lazy-load-wrapper"},[s("div",{staticClass:"wptb-lazy-load-left-column"},[s("lazy-load-basic-options",{attrs:{"template-data":t.templateData,settings:t.settings}}),t._v(" "),s("lazy-load-preview",{attrs:{"template-data":t.templateData,"default-html":t.sectionData.previewTable,settings:t.settings}}),t._v(" "),s("collapsed-visibility",{attrs:{visible:t.settings.enabled}},[s("disclaimer",{attrs:{title:t.strings.important,message:t.strings.importantMessage}})],1)],1),t._v(" "),s("lazy-load-pro-options",{attrs:{settings:t.settings,"template-data":t.templateData}})],1)]),t._v(" "),s("footer-buttons",[s("menu-button",{attrs:{type:"danger",disabled:!t.settingsDirtyStatus},on:{click:t.revertLazyLoadSettings}},[t._v(t._s(t.strings.revert)+" ")]),t._v(" "),s("menu-button",{attrs:{disabled:!t.settingsDirtyStatus},on:{click:t.updateLazyLoadSettings}},[t._v(t._s(t.strings.submit)+" ")])],1)],1)},staticRenderFns:[],_compiled:!0,_scopeId:null,functional:void 0});})();
234
  },{"vue-fragment":"CDb8","deepmerge":"xMlw","$Components/MenuContent":"vTRD","$Mixins/SettingsMenuSection":"qeqP","$Components/Settings/FooterButtons":"jkrZ","$Components/MenuButton":"ksMR","$Mixins/withMessage":"wm3G","$LazyLoadSettings/LazyLoadPreview":"vlDi","$LazyLoadSettings/LazyLoadProOptions":"j8St","$LazyLoadSettings/LazyLoadBasicOptions":"QK2a","$Settings/Disclaimer":"ZYQN","$Settings/CollapsedVisibility":"oUAl"}],"pZ9N":[function(require,module,exports) {
235
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var e=h(require("@babel/runtime/helpers/slicedToArray")),t=h(require("@babel/runtime/helpers/defineProperty")),r=h(require("@babel/runtime/helpers/typeof")),n=h(require("$Mixins/withStore")),s=h(require("$Mixins/withMessage")),i=h(require("$Components/MenuHeader.vue")),o=h(require("$Components/Sections.vue")),a=h(require("$Components/MenuFooter.vue")),c=h(require("$Components/MenuButton.vue")),u=h(require("$Containers/GeneralSettings")),l=h(require("$Components/VersionControlSettings")),p=h(require("$Components/Settings/GeneralStylesSettings")),f=h(require("$Components/TableFixer/TableFixerSettings")),d=h(require("$LazyLoadSettings/LazyLoadSettings"));function h(e){return e&&e.__esModule?e:{default:e}}function g(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),r.push.apply(r,n)}return r}function b(e){for(var r=1;r<arguments.length;r++){var n=null!=arguments[r]?arguments[r]:{};r%2?g(Object(n),!0).forEach(function(r){(0,t.default)(e,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):g(Object(n)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))})}return e}var S={props:["sectionsData","settings","pluginInfo"],components:{MenuButton:c.default,MenuHeader:i.default,Sections:o.default,MenuFooter:a.default,GeneralSettings:u.default,VersionControlSettings:l.default,GeneralStylesSettings:p.default,LazyLoadSettings:d.default,TableFixerSettings:f.default},mixins:[n.default,s.default],data:function(){return{sections:{},currentSection:"",parsedFields:{},resetActive:!1,canSubmit:!1,fetching:!1}},watch:{store:{handler:function(){this.resetActive?(this.canSubmit=!1,this.resetActive=!1):this.canSubmit=!0},deep:!0},fetching:function(e){this.setBusy(e)}},beforeMount:function(){var t=this;Object.keys(this.sectionsData).map(function(e){t.sections[e]=t.sectionsData[e],Object.prototype.hasOwnProperty.call(t.sectionsData,e)&&(void 0===t.parsedFields[e]&&(t.parsedFields[e]=[]),void 0!==t.sectionsData[e].fields&&"object"===(0,r.default)(t.sectionsData[e].fields)&&Object.keys(t.sectionsData[e].fields).map(function(r){Object.prototype.hasOwnProperty.call(t.sectionsData[e].fields,r)&&t.parsedFields[e].push(b(b({},t.sectionsData[e].fields[r]),{},{id:r}))}))});var n=Object.keys(this.parsedFields).map(function(e){if(Object.prototype.hasOwnProperty.call(t.parsedFields,e))return e}),s=(0,e.default)(n,1);this.currentSection=s[0]},computed:{sectionData:function(){return this.settings[this.currentSection]||{}},currentFields:function(){return this.parsedFields[this.currentSection]},currentTemplate:function(){return"".concat(this.currentSection[0].toUpperCase()+this.currentSection.slice(1),"Settings")}},methods:{resetStore:function(){this.canSubmit&&(this.revertStore(),this.resetActive=!0,this.setMessage({message:this.strings.revertMessage}))},submitSettings:function(){var e=this;if(this.canSubmit){var t=new FormData;t.append("nonce",this.settings.nonce),t.append("action",this.settings.action),t.append("options",JSON.stringify(this.store)),this.canSubmit=!1,this.fetching=!0,fetch(this.settings.ajaxUrl,{method:"POST",body:t}).then(function(e){if(e.ok)return e.json();throw new Error(e.statusText)}).then(function(t){if(t.error)throw new Error(t.error);e.setMessage({message:t.message})}).catch(function(t){console.error(t),e.setMessage({type:"error",message:t})}).finally(function(){e.fetching=!1})}}}};exports.default=S;
236
  (function(){var t=exports.default||module.exports;"function"==typeof t&&(t=t.options),Object.assign(t,{render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"wptb-settings-wrapper"},[n("menu-header",{attrs:{"logo-src":t.pluginInfo.logo,"logo-alt":t.strings.logoAlt,"plugin-name":t.pluginInfo.pluginName}},[n("a",{attrs:{href:t.pluginInfo.pluginHomepage}},[t._v(t._s(t.strings.homepage))])]),t._v(" "),n("sections",{attrs:{items:t.sections,disabled:t.isBusy()},model:{value:t.currentSection,callback:function(e){t.currentSection=e},expression:"currentSection"}}),t._v(" "),n(t.currentTemplate,{tag:"component",attrs:{"current-fields":t.currentFields,store:t.store,disabled:!t.canSubmit,"template-data":t.sectionData},on:{resetStore:t.resetStore,submitSettings:t.submitSettings}}),t._v(" "),n("menu-footer",[n("portal-target",{attrs:{name:"footerButtons"}})],1)],1)},staticRenderFns:[],_compiled:!0,_scopeId:null,functional:void 0});})();
237
+ },{"@babel/runtime/helpers/slicedToArray":"DERy","@babel/runtime/helpers/defineProperty":"cQfh","@babel/runtime/helpers/typeof":"xOn8","$Mixins/withStore":"D1kn","$Mixins/withMessage":"wm3G","$Components/MenuHeader.vue":"vi91","$Components/Sections.vue":"yPIx","$Components/MenuFooter.vue":"nwtb","$Components/MenuButton.vue":"ksMR","$Containers/GeneralSettings":"fmPj","$Components/VersionControlSettings":"V4Tn","$Components/Settings/GeneralStylesSettings":"b8SN","$Components/TableFixer/TableFixerSettings":"RpBt","$LazyLoadSettings/LazyLoadSettings":"qXUf"}],"yEip":[function(require,module,exports) {
238
  "use strict";function t(t,e){t.mixin({data:function(){return{strings:e.strings}}})}Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var e={install:t};exports.default=e;
239
  },{}],"yv7g":[function(require,module,exports) {
240
  var global = arguments[3];
247
  "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var e={"--wptb-plugin-theme-color-light":"#A0AEC0","--wptb-plugin-theme-text-color-main":"#E2E8F0","--wptb-plugin-gray-100":"#718096","--wptb-plugin-theme-sidebar-bg":"#CBD5E0","--wptb-plugin-logo-color":"#4A5568"},t=e;exports.default=t;
248
  },{}],"WQ0b":[function(require,module,exports) {
249
  "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var e=t(require("$Stores/builderStore/modules/nightMode/state/cssVariableMaps"));function t(e){return e&&e.__esModule?e:{default:e}}var a={namespaced:!0,state:function(){return{activated:{value:!1,_persistent:!0},cssVariableMaps:e.default}},getters:{isActive:function(e){return e.activated.value}},mutations:{setNightMode:function(e,t){e.activated.value=t}}},s=a;exports.default=s;
250
+ },{"$Stores/builderStore/modules/nightMode/state/cssVariableMaps":"h7JB"}],"NhLp":[function(require,module,exports) {
251
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var i={namespaced:!0,state:function(){return{modalVisibility:!1}},getters:{visibility:function(i){return i.modalVisibility}},mutations:{showModal:function(i){i.modalVisibility=!0},hideModal:function(i){i.modalVisibility=!1}}},t=i;exports.default=t;
252
+ },{}],"s0Fm":[function(require,module,exports) {
253
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var e=t(require("$Stores/builderStore/modules/colorPicker")),r=t(require("$Stores/builderStore/modules/nightMode")),o=t(require("$Stores/builderStore/modules/embed"));function t(e){return e&&e.__esModule?e:{default:e}}var u={colorPicker:e.default,nightMode:r.default,embed:o.default},d=u;exports.default=d;
254
+ },{"$Stores/builderStore/modules/colorPicker":"fJD7","$Stores/builderStore/modules/nightMode":"WQ0b","$Stores/builderStore/modules/embed":"NhLp"}],"Px6E":[function(require,module,exports) {
255
  var define;
256
  var global = arguments[3];
257
  var e,t=arguments[3];function n(e){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}!function(t,o){"object"===("undefined"==typeof exports?"undefined":n(exports))&&"undefined"!=typeof module?module.exports=o():"function"==typeof e&&e.amd?e(o):(t=t||self,function(){var e=t.Cookies,n=t.Cookies=o();n.noConflict=function(){return t.Cookies=e,n}}())}(this,function(){"use strict";function e(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var o in n)e[o]=n[o]}return e}return function t(n,o){function r(t,r,i){if("undefined"!=typeof document){"number"==typeof(i=e({},o,i)).expires&&(i.expires=new Date(Date.now()+864e5*i.expires)),i.expires&&(i.expires=i.expires.toUTCString()),t=encodeURIComponent(t).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var c="";for(var u in i)i[u]&&(c+="; "+u,!0!==i[u]&&(c+="="+i[u].split(";")[0]));return document.cookie=t+"="+n.write(r,t)+c}}return Object.create({set:r,get:function(e){if("undefined"!=typeof document&&(!arguments.length||e)){for(var t=document.cookie?document.cookie.split("; "):[],o={},r=0;r<t.length;r++){var i=t[r].split("="),c=i.slice(1).join("=");try{var u=decodeURIComponent(i[0]);if(o[u]=n.read(c,u),e===u)break}catch(f){}}return e?o[e]:o}},remove:function(t,n){r(t,"",e({},n,{expires:-1}))},withAttributes:function(n){return t(this.converter,e({},this.attributes,n))},withConverter:function(n){return t(e({},this.converter,n),this.attributes)}},{attributes:{value:Object.freeze(o)},converter:{value:Object.freeze(n)}})}({read:function(e){return'"'===e[0]&&(e=e.slice(1,-1)),e.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent)},write:function(e){return encodeURIComponent(e).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)}},{path:"/"})});
258
  },{}],"yIey":[function(require,module,exports) {
259
  "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=exports.getPersistentState=void 0;var t=a(require("@babel/runtime/helpers/typeof")),e=a(require("js-cookie")),r=require("$Stores/general"),n=require("$Functions/index");function a(t){return t&&t.__esModule?t:{default:t}}var o={proStatus:{watch:"pro",callBack:function(t,e,r){e&&!r&&(t.state.pro=!1)}}},c=function(){var t=e.default.get("wptb");if(t)try{t=JSON.parse(atob(t))}catch(r){}return t};exports.getPersistentState=c;var u=function(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],a={};r.map(function(e){var r=e.split(".");r.reduce(function(a,o,c){return c<r.length-1?a[o]||(a[o]={}):a[o]=(0,n.objectPropertyFromString)(e,t),a[o]},a)}),e.default.set("wptb",btoa(JSON.stringify(a)))},i=function(e){var r=[];return function e(n){var a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";"object"===(0,t.default)(n)&&null!==n&&(Object.prototype.hasOwnProperty.call(n,"_persistent")?r.push(a):Object.keys(n).map(function(t){Object.prototype.hasOwnProperty.call(n,t)&&e(n[t],"".concat(a).concat(""===a?"":".").concat(t))}))}(e),r},s=function(t){var e=i(t.state);o.stateWrite={watch:e,callBack:function(t){u(t.state,e)}},(0,r.stateWatchFunction)(t,o)},l=s;exports.default=l;
260
  },{"@babel/runtime/helpers/typeof":"xOn8","js-cookie":"Px6E","$Stores/general":"FSzv","$Functions/index":"HlPv"}],"McNG":[function(require,module,exports) {
261
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var e=f(require("@babel/runtime/helpers/defineProperty")),t=f(require("vue")),r=f(require("vuex")),n=f(require("deepmerge")),u=require("$Stores/general"),o=f(require("./modules")),i=c(require("$Stores/builderStore/plugin"));function a(){if("function"!=typeof WeakMap)return null;var e=new WeakMap;return a=function(){return e},e}function c(e){if(e&&e.__esModule)return e;if(null===e||"object"!=typeof e&&"function"!=typeof e)return{default:e};var t=a();if(t&&t.has(e))return t.get(e);var r={},n=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var u in e)if(Object.prototype.hasOwnProperty.call(e,u)){var o=n?Object.getOwnPropertyDescriptor(e,u):null;o&&(o.get||o.set)?Object.defineProperty(r,u,o):r[u]=e[u]}return r.default=e,t&&t.set(e,r),r}function f(e){return e&&e.__esModule?e:{default:e}}function s(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),r.push.apply(r,n)}return r}function l(t){for(var r=1;r<arguments.length;r++){var n=null!=arguments[r]?arguments[r]:{};r%2?s(Object(n),!0).forEach(function(r){(0,e.default)(t,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):s(Object(n)).forEach(function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))})}return t}var p={strict:!0,modules:o.default,plugins:[i.default]},b=function(e){return(0,u.createBasicStore)(p,e)};function d(){t.default.use(r.default);var e={state:l({},wptb_admin_object.store),getters:{proStatus:function(e){return e.pro},getTranslation:function(e){return function(t){return e.translations[t]}},tableId:function(e){return e.tableId}},mutations:{setTableId:function(e,t){e.tableId=t}}},u=b(e),o=(0,i.getPersistentState)();return o&&u.replaceState((0,n.default)(u.state,o)),u.get=function(e){return u.getters[e]},u.getTranslation=function(e){return u.getters.getTranslation(e)},u}var O=new d;exports.default=O;
262
  },{"@babel/runtime/helpers/defineProperty":"cQfh","vue":"HYXJ","vuex":"yv7g","deepmerge":"xMlw","$Stores/general":"FSzv","./modules":"s0Fm","$Stores/builderStore/plugin":"yIey"}],"vg0W":[function(require,module,exports) {
263
  var global = arguments[3];
264
  var e=arguments[3];Object.defineProperty(exports,"__esModule",{value:!0}),exports.setupGlobalStore=void 0;var r=t(require("$Stores/builderStore"));function t(e){return e&&e.__esModule?e:{default:e}}var o=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"WPTB_Store";(self||e)[t]=r.default};exports.setupGlobalStore=o;
inc/admin/js/WPTB_Admin_Settings.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../../node_modules/@babel/runtime/helpers/defineProperty.js","../../../../../node_modules/vue/dist/vue.esm.js","../src/utils/index.ts","../src/components/wormhole.ts","../src/components/portal.tsx","../src/components/portal-target.tsx","../src/components/mounting-portal.tsx","../src/index.ts","../../../../../node_modules/vue-fragment/dist/vue-fragment.esm.js","../../../../../node_modules/@babel/runtime/helpers/arrayWithHoles.js","../../../../../node_modules/@babel/runtime/helpers/iterableToArrayLimit.js","../../../../../node_modules/@babel/runtime/helpers/arrayLikeToArray.js","../../../../../node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js","../../../../../node_modules/@babel/runtime/helpers/nonIterableRest.js","../../../../../node_modules/@babel/runtime/helpers/slicedToArray.js","../../../../../node_modules/@babel/runtime/helpers/typeof.js","mixins/withStore.js","mixins/withMessage.js","components/MenuHeader.vue","components/SectionItem.vue","components/ActiveSectionIndicator.vue","components/Sections.vue","components/MessageDisplay.vue","components/MenuButton.vue","components/MenuFooter.vue","components/SettingCard.vue","components/ControlItem.vue","components/MenuContent.vue","containers/GeneralSettings.vue","components/VersionControlRow.vue","components/VersionIndicator.vue","components/Changelog.vue","mixins/SettingsMenuSection.js","components/Settings/Disclaimer.vue","components/VersionControlSettings.vue","../../../../../node_modules/codemirror/lib/codemirror.js","../../../../../node_modules/codemirror/addon/selection/active-line.js","../../../../../node_modules/codemirror/mode/css/css.js","components/CssCodeInput.vue","components/Settings/GeneralStylesSettings.vue","../../../../../node_modules/deepmerge/dist/cjs.js","../../../../../node_modules/@babel/runtime/helpers/arrayWithoutHoles.js","../../../../../node_modules/@babel/runtime/helpers/iterableToArray.js","../../../../../node_modules/@babel/runtime/helpers/nonIterableSpread.js","../../../../../node_modules/@babel/runtime/helpers/toConsumableArray.js","../../../../frontend/js/frontend-only/WPTB_LazyLoad.js","components/MaterialButton.vue","components/lazyLoadSettings/LazyLoadProDisabledOverlay.vue","components/lazyLoadSettings/LazyLoadPreview.vue","components/leftPanel/SectionGroupCollapse.vue","mixins/PanelControlBase.js","components/leftPanel/Panel2ColumnTemplate.vue","plugins/filters.js","components/PanelDropdownControl.vue","components/leftPanel/PanelDirectionCadet.vue","components/leftPanel/PanelDirectionControl.vue","components/NumberPostfixInput.vue","components/Icon.vue","components/RangeInputButton.vue","components/RangeInput.vue","mixins/SectionGroup.js","../../../../../node_modules/vue-color/dist/vue-color.min.js","functions/index.js","components/ColorPicker.vue","components/lazyLoadSettings/ImageLoadOptions.vue","components/TipPopup.vue","components/ControlTipWrapper.vue","components/lazyLoadSettings/LazyLoadGeneralOptions.vue","components/IntersectionObserver.vue","components/leftPanel/PanelIconSelect.vue","components/lazyLoadSettings/LazyLoadIconOptions.vue","components/lazyLoadSettings/LazyLoadProOptions.vue","components/PanelToggleControl.vue","components/lazyLoadSettings/LazyLoadBasicOptions.vue","components/Settings/CollapsedVisibility.vue","components/lazyLoadSettings/LazyLoadSettings.vue","containers/SettingsApp.vue","plugins/strings.js","../../../../../node_modules/vuex/dist/vuex.esm.js","stores/general.js","stores/builderStore/modules/colorPicker/index.js","stores/builderStore/modules/nightMode/state/cssVariableMaps.js","stores/builderStore/modules/nightMode/index.js","stores/builderStore/modules/index.js","../../../../../node_modules/js-cookie/dist/js.cookie.js","stores/builderStore/plugin.js","stores/builderStore/index.js","functions/globalStore.js","WPTB_Admin_Settings.js"],"names":["emptyObject","Object","freeze","isUndef","v","undefined","isDef","isTrue","isFalse","isPrimitive","value","isObject","obj","_toString","prototype","toString","toRawType","call","slice","isPlainObject","isRegExp","isValidArrayIndex","val","n","parseFloat","String","Math","floor","isFinite","isPromise","then","catch","Array","isArray","JSON","stringify","toNumber","isNaN","makeMap","str","expectsLowerCase","map","create","list","split","i","length","toLowerCase","isBuiltInTag","isReservedAttribute","remove","arr","item","index","indexOf","splice","hasOwnProperty","hasOwn","key","cached","fn","cache","cachedFn","hit","camelizeRE","camelize","replace","_","c","toUpperCase","capitalize","charAt","hyphenateRE","hyphenate","polyfillBind","ctx","boundFn","a","l","arguments","apply","_length","nativeBind","bind","Function","toArray","start","ret","extend","to","_from","toObject","res","noop","b","no","identity","genStaticKeys","modules","reduce","keys","m","concat","staticKeys","join","looseEqual","isObjectA","isObjectB","isArrayA","isArrayB","every","e","Date","getTime","keysA","keysB","looseIndexOf","once","called","SSR_ATTR","ASSET_TYPES","LIFECYCLE_HOOKS","config","optionMergeStrategies","silent","productionTip","devtools","performance","errorHandler","warnHandler","ignoredElements","keyCodes","isReservedTag","isReservedAttr","isUnknownElement","getTagNamespace","parsePlatformTagName","mustUseProp","async","_lifecycleHooks","unicodeRegExp","isReserved","charCodeAt","def","enumerable","defineProperty","writable","configurable","bailRE","RegExp","source","parsePath","path","test","segments","hasProto","inBrowser","window","inWeex","WXEnvironment","platform","weexPlatform","UA","navigator","userAgent","isIE","isIE9","isEdge","isAndroid","isIOS","isChrome","isPhantomJS","isFF","match","nativeWatch","watch","supportsPassive","opts","get","addEventListener","_isServer","isServerRendering","global","env","VUE_ENV","__VUE_DEVTOOLS_GLOBAL_HOOK__","isNative","Ctor","hasSymbol","Symbol","Reflect","ownKeys","_Set","Set","set","has","add","clear","warn","tip","generateComponentTrace","formatComponentName","hasConsole","console","classifyRE","classify","msg","vm","trace","error","includeFile","$root","options","cid","_isVue","$options","constructor","name","_componentTag","file","__file","repeat","$parent","tree","currentRecursiveSequence","last","push","uid","Dep","id","subs","addSub","sub","removeSub","depend","target","addDep","notify","sort","update","targetStack","pushTarget","popTarget","pop","VNode","tag","data","children","text","elm","context","componentOptions","asyncFactory","ns","fnContext","fnOptions","fnScopeId","componentInstance","parent","raw","isStatic","isRootInsert","isComment","isCloned","isOnce","asyncMeta","isAsyncPlaceholder","prototypeAccessors","child","defineProperties","createEmptyVNode","node","createTextVNode","cloneVNode","vnode","cloned","arrayProto","arrayMethods","methodsToPatch","forEach","method","original","mutator","args","len","result","ob","__ob__","inserted","observeArray","dep","arrayKeys","getOwnPropertyNames","shouldObserve","toggleObserving","Observer","vmCount","protoAugment","copyAugment","walk","defineReactive$$1","items","observe","src","__proto__","asRootData","isExtensible","customSetter","shallow","property","getOwnPropertyDescriptor","getter","setter","childOb","reactiveGetter","dependArray","reactiveSetter","newVal","max","del","strats","el","propsData","defaultStrat","mergeData","from","toVal","fromVal","mergeDataOrFn","parentVal","childVal","mergedDataFn","mergedInstanceDataFn","instanceData","defaultData","mergeHook","dedupeHooks","hooks","hook","mergeAssets","assertObjectType","type","key$1","props","methods","inject","computed","provide","checkComponents","components","validateComponentName","normalizeProps","normalizeInject","normalized","normalizeDirectives","dirs","directives","def$$1","mergeOptions","_base","extends","mixins","mergeField","strat","resolveAsset","warnMissing","assets","camelizedId","PascalCaseId","validateProp","propOptions","prop","absent","booleanIndex","getTypeIndex","Boolean","stringIndex","getPropDefaultValue","prevShouldObserve","assertProp","default","_props","getType","required","valid","expectedTypes","assertedType","assertType","expectedType","getInvalidTypeMessage","validator","simpleCheckRE","t","isSameType","message","receivedType","expectedValue","styleValue","receivedValue","isExplicable","isBoolean","Number","explicitTypes","some","elem","handleError","err","info","cur","errorCaptured","capture","globalHandleError","invokeWithErrorHandling","handler","_handled","logError","isUsingMicroTask","callbacks","pending","flushCallbacks","copies","timerFunc","Promise","p","resolve","setTimeout","MutationObserver","counter","observer","textNode","document","createTextNode","characterData","setImmediate","nextTick","cb","_resolve","mark","measure","perf","clearMarks","clearMeasures","startTag","endTag","initProxy","allowedGlobals","warnNonPresent","warnReservedPrefix","hasProxy","Proxy","isBuiltInModifier","hasHandler","isAllowed","$data","getHandler","handlers","render","_withStripped","_renderProxy","seenObjects","traverse","_traverse","seen","isA","isFrozen","depId","normalizeEvent","passive","once$$1","createFnInvoker","fns","invoker","arguments$1","updateListeners","on","oldOn","remove$$1","createOnceHandler","old","event","params","mergeVNodeHook","hookKey","oldHook","wrappedHook","merged","extractPropsFromVNodeData","attrs","altKey","keyInLowerCase","checkProp","hash","preserve","simpleNormalizeChildren","normalizeChildren","normalizeArrayChildren","isTextNode","nestedIndex","lastIndex","shift","_isVList","initProvide","_provided","initInjections","resolveInject","provideKey","provideDefault","resolveSlots","slots","slot","name$1","isWhitespace","normalizeScopedSlots","normalSlots","prevSlots","hasNormalSlots","isStable","$stable","$key","_normalized","$hasNormal","normalizeScopedSlot","key$2","proxyNormalSlot","proxy","renderList","iterator","next","done","renderSlot","fallback","bindObject","scopedSlotFn","$scopedSlots","nodes","$slots","$createElement","resolveFilter","isKeyNotMatch","expect","actual","checkKeyCodes","eventKeyCode","builtInKeyCode","eventKeyName","builtInKeyName","mappedKeyCode","bindObjectProps","asProp","isSync","loop","domProps","camelizedKey","hyphenatedKey","$event","renderStatic","isInFor","_staticTrees","staticRenderFns","markStatic","markOnce","markStaticNode","bindObjectListeners","existing","ours","resolveScopedSlots","hasDynamicKeys","contentHashKey","bindDynamicKeys","baseObj","values","prependModifier","symbol","installRenderHelpers","_o","_n","_s","_l","_t","_q","_i","_m","_f","_k","_b","_v","_e","_u","_g","_d","_p","FunctionalRenderContext","this$1","contextVm","_original","isCompiled","_compiled","needNormalization","listeners","injections","scopedSlots","_scopeId","_c","d","createElement","createFunctionalComponent","mergeProps","renderContext","cloneAndMarkFunctionalResult","vnodes","clone","devtoolsMeta","componentVNodeHooks","init","hydrating","_isDestroyed","keepAlive","mountedNode","prepatch","createComponentInstanceForVnode","activeInstance","$mount","oldVnode","updateChildComponent","insert","_isMounted","callHook","queueActivatedComponent","activateChildComponent","destroy","$destroy","deactivateChildComponent","hooksToMerge","createComponent","baseCtor","resolveAsyncComponent","createAsyncPlaceholder","resolveConstructorOptions","model","transformModel","functional","nativeOn","abstract","installComponentHooks","_isComponent","_parentVnode","inlineTemplate","toMerge","_merged","mergeHook$1","f1","f2","callback","SIMPLE_NORMALIZE","ALWAYS_NORMALIZE","normalizationType","alwaysNormalize","_createElement","is","$vnode","pre","applyNS","registerDeepBindings","force","style","class","initRender","_vnode","parentVnode","_renderChildren","parentData","isUpdatingChildComponent","_parentListeners","currentRenderingInstance","renderMixin","Vue","$nextTick","_render","ref","renderError","ensureCtor","comp","base","__esModule","toStringTag","factory","errorComp","resolved","owner","owners","loading","loadingComp","sync","timerLoading","timerTimeout","$on","forceRender","renderCompleted","$forceUpdate","clearTimeout","reject","reason","component","delay","timeout","getFirstComponentChild","initEvents","_events","_hasHookEvent","updateComponentListeners","remove$1","$off","_target","onceHandler","oldListeners","eventsMixin","hookRE","$once","i$1","cbs","$emit","lowerCaseEvent","setActiveInstance","prevActiveInstance","initLifecycle","$children","$refs","_watcher","_inactive","_directInactive","_isBeingDestroyed","lifecycleMixin","_update","prevEl","$el","prevVnode","restoreActiveInstance","__patch__","__vue__","teardown","_watchers","_data","mountComponent","template","updateComponent","_name","_uid","Watcher","before","renderChildren","newScopedSlots","oldScopedSlots","hasDynamicScopedSlot","needsForceUpdate","$attrs","$listeners","propKeys","_propKeys","isInInactiveTree","direct","j","MAX_UPDATE_COUNT","queue","activatedChildren","circular","waiting","flushing","resetSchedulerState","currentFlushTimestamp","getNow","now","createEvent","timeStamp","flushSchedulerQueue","watcher","run","user","expression","activatedQueue","updatedQueue","callActivatedHooks","callUpdatedHooks","emit","queueWatcher","uid$2","expOrFn","isRenderWatcher","deep","lazy","active","dirty","deps","newDeps","depIds","newDepIds","cleanupDeps","tmp","oldValue","evaluate","sharedPropertyDefinition","sourceKey","proxyGetter","proxySetter","initState","initProps","initMethods","initData","initComputed","initWatch","propsOptions","isRoot","getData","computedWatcherOptions","watchers","_computedWatchers","isSSR","userDef","defineComputed","shouldCache","createComputedGetter","createGetterInvoker","computedGetter","createWatcher","$watch","stateMixin","dataDef","propsDef","$set","$delete","immediate","unwatchFn","uid$3","initMixin","_init","initInternalComponent","_self","vnodeComponentOptions","super","superOptions","cachedSuperOptions","modifiedOptions","resolveModifiedOptions","extendOptions","modified","latest","sealed","sealedOptions","initUse","use","plugin","installedPlugins","_installedPlugins","unshift","install","initMixin$1","mixin","initExtend","Super","SuperId","cachedCtors","_Ctor","Sub","VueComponent","initProps$1","initComputed$1","Comp","initAssetRegisters","definition","getComponentName","matches","pattern","pruneCache","keepAliveInstance","filter","cachedNode","pruneCacheEntry","current","cached$$1","patternTypes","KeepAlive","include","exclude","created","destroyed","mounted","ref$1","parseInt","builtInComponents","initGlobalAPI","configDef","util","defineReactive","delete","observable","ssrContext","version","acceptValue","attr","isEnumeratedAttr","isValidContentEditableValue","convertEnumeratedValue","isFalsyAttrValue","isBooleanAttr","xlinkNS","isXlink","getXlinkProp","genClassForVnode","parentNode","childNode","mergeClassData","renderClass","staticClass","dynamicClass","stringifyClass","stringifyArray","stringifyObject","stringified","namespaceMap","svg","math","isHTMLTag","isSVG","isPreTag","unknownElementCache","HTMLUnknownElement","HTMLElement","isTextInputType","query","selected","querySelector","createElement$1","tagName","multiple","setAttribute","createElementNS","namespace","createComment","insertBefore","newNode","referenceNode","removeChild","appendChild","nextSibling","setTextContent","textContent","setStyleScope","scopeId","nodeOps","registerRef","isRemoval","refs","refInFor","emptyNode","sameVnode","sameInputType","typeA","typeB","createKeyToOldIdx","beginIdx","endIdx","createPatchFunction","backend","emptyNodeAt","createRmCb","childElm","removeNode","isUnknownElement$$1","inVPre","ignore","creatingElmInVPre","createElm","insertedVnodeQueue","parentElm","refElm","nested","ownerArray","setScope","createChildren","invokeCreateHooks","isReactivated","initComponent","reactivateComponent","pendingInsert","isPatchable","innerNode","transition","activate","ref$$1","checkDuplicateKeys","ancestor","addVnodes","startIdx","invokeDestroyHook","removeVnodes","ch","removeAndInvokeRemoveHook","rm","updateChildren","oldCh","newCh","removeOnly","oldStartIdx","newStartIdx","oldEndIdx","oldStartVnode","oldEndVnode","newEndIdx","newStartVnode","newEndVnode","oldKeyToIdx","idxInOld","vnodeToMove","canMove","patchVnode","findIdxInOld","seenKeys","end","hydrate","postpatch","invokeInsertHook","initial","hydrationBailed","isRenderedModule","assertNodeMatch","hasChildNodes","innerHTML","childrenMatch","firstChild","childNodes","fullInvoke","nodeType","patch","isInitialPatch","isRealElement","hasAttribute","removeAttribute","oldElm","_leaveCb","patchable","i$2","updateDirectives","unbindDirectives","isCreate","isDestroy","oldDirs","normalizeDirectives$1","newDirs","dirsWithInsert","dirsWithPostpatch","oldDir","dir","callHook$1","oldArg","arg","componentUpdated","callInsert","emptyModifiers","modifiers","getRawDirName","rawName","baseModules","updateAttrs","inheritAttrs","oldAttrs","setAttr","removeAttributeNS","baseSetAttr","setAttributeNS","__ieph","blocker","stopImmediatePropagation","removeEventListener","updateClass","oldData","cls","transitionClass","_transitionClasses","_prevClass","klass","validDivisionCharRE","parseFilters","exp","inSingle","inDouble","inTemplateString","inRegex","curly","square","paren","lastFilterIndex","prev","filters","trim","pushFilter","wrapFilter","baseWarn","range","pluckModuleFunction","addProp","dynamic","rangeSetItem","plain","addAttr","dynamicAttrs","addRawAttr","attrsMap","attrsList","addDirective","isDynamicArg","prependModifierMarker","addHandler","important","prevent","right","middle","events","native","nativeEvents","newHandler","getRawBindingAttr","rawAttrsMap","getBindingAttr","getStatic","dynamicValue","getAndRemoveAttr","staticValue","removeFromMap","getAndRemoveAttrByRegex","genComponentModel","number","baseValueExpression","valueExpression","assignment","genAssignmentCode","parseModel","chr","index$1","expressionPos","expressionEndPos","lastIndexOf","eof","isStringStart","parseString","parseBracket","inBracket","stringQuote","warn$1","RANGE_TOKEN","CHECKBOX_RADIO_TOKEN","_warn","genSelect","genCheckboxModel","genRadioModel","genDefaultModel","valueBinding","trueValueBinding","falseValueBinding","selectedVal","code","value$1","typeBinding","binding","needCompositionGuard","normalizeEvents","change","target$1","createOnceHandler$1","remove$2","useMicrotaskFix","add$1","attachedTimestamp","_wrapper","currentTarget","ownerDocument","updateDOMListeners","svgContainer","updateDOMProps","oldProps","_value","strCur","shouldUpdateValue","checkVal","composing","isNotInFocusAndDirty","isDirtyWithModifiers","notInFocus","activeElement","_vModifiers","parseStyleText","cssText","listDelimiter","propertyDelimiter","normalizeStyleData","normalizeStyleBinding","staticStyle","bindingStyle","getStyle","checkChild","styleData","cssVarRE","importantRE","setProp","setProperty","normalizedName","normalize","vendorNames","emptyStyle","capName","updateStyle","oldStaticStyle","oldStyleBinding","normalizedStyle","oldStyle","newStyle","whitespaceRE","addClass","classList","getAttribute","removeClass","tar","resolveTransition","css","autoCssTransition","enterClass","enterToClass","enterActiveClass","leaveClass","leaveToClass","leaveActiveClass","hasTransition","TRANSITION","ANIMATION","transitionProp","transitionEndEvent","animationProp","animationEndEvent","ontransitionend","onwebkittransitionend","onanimationend","onwebkitanimationend","raf","requestAnimationFrame","nextFrame","addTransitionClass","transitionClasses","removeTransitionClass","whenTransitionEnds","getTransitionInfo","propCount","ended","onEnd","transformRE","styles","getComputedStyle","transitionDelays","transitionDurations","transitionTimeout","getTimeout","animationDelays","animationDurations","animationTimeout","hasTransform","delays","durations","toMs","s","enter","toggleDisplay","cancelled","_enterCb","appearClass","appearToClass","appearActiveClass","beforeEnter","afterEnter","enterCancelled","beforeAppear","appear","afterAppear","appearCancelled","duration","transitionNode","isAppear","startClass","activeClass","toClass","beforeEnterHook","enterHook","afterEnterHook","enterCancelledHook","explicitEnterDuration","checkDuration","expectsCSS","userWantsControl","getHookArgumentsLength","show","pendingNode","_pending","isValidDuration","leave","beforeLeave","afterLeave","leaveCancelled","delayLeave","explicitLeaveDuration","performLeave","invokerFns","_enter","platformModules","vmodel","trigger","directive","_vOptions","setSelected","getValue","onCompositionStart","onCompositionEnd","prevOptions","curOptions","o","needReset","hasNoMatchingOption","actuallySetSelected","isMultiple","option","selectedIndex","initEvent","dispatchEvent","locateNode","transition$$1","originalDisplay","__vOriginalDisplay","display","unbind","platformDirectives","transitionProps","mode","getRealChild","compOptions","extractTransitionData","placeholder","h","rawChild","hasParentTransition","isSameChild","oldChild","isNotTextNode","isVShowDirective","Transition","_leaving","oldRawChild","delayedLeave","moveClass","TransitionGroup","beforeMount","kept","prevChildren","rawChildren","transitionData","removed","c$1","pos","getBoundingClientRect","updated","hasMove","callPendingCbs","recordPosition","applyTranslation","_reflow","body","offsetHeight","moved","transform","WebkitTransform","transitionDuration","_moveCb","propertyName","_hasMove","cloneNode","newPos","oldPos","dx","left","dy","top","platformComponents","defaultTagRE","regexEscapeRE","buildRegex","delimiters","open","close","parseText","tagRE","tokens","rawTokens","tokenValue","exec","transformNode","classBinding","genData","klass$1","transformNode$1","styleBinding","genData$1","style$1","decoder","he","decode","html","isUnaryTag","canBeLeftOpenTag","isNonPhrasingTag","attribute","dynamicArgAttribute","ncname","qnameCapture","startTagOpen","startTagClose","doctype","comment","conditionalComment","isPlainTextElement","reCache","decodingMap","encodedAttr","encodedAttrWithNewLines","isIgnoreNewlineTag","shouldIgnoreFirstNewline","decodeAttr","shouldDecodeNewlines","re","parseHTML","stack","expectHTML","isUnaryTag$$1","canBeLeftOpenTag$$1","lastTag","textEnd","commentEnd","shouldKeepComment","substring","advance","conditionalEnd","doctypeMatch","endTagMatch","curIndex","parseEndTag","startTagMatch","parseStartTag","handleStartTag","rest","chars","endTagLength","stackedTag","reStackedTag","rest$1","all","unarySlash","unary","shouldDecodeNewlinesForHref","outputSourceRange","lowerCasedTag","lowerCasedTagName","onRE","dirRE","forAliasRE","forIteratorRE","stripParensRE","dynamicArgRE","argRE","bindRE","modifierRE","slotRE","lineBreakRE","whitespaceRE$1","invalidAttributeRE","decodeHTMLCached","emptySlotScopeToken","warn$2","transforms","preTransforms","postTransforms","platformIsPreTag","platformMustUseProp","platformGetTagNamespace","maybeComponent","createASTElement","makeAttrsMap","parse","preserveWhitespace","whitespaceOption","whitespace","root","currentParent","inPre","warned","warnOnce","closeElement","element","trimEndingWhitespace","processed","processElement","if","elseif","else","checkRootConstraints","addIfCondition","block","forbidden","processIfConditions","slotScope","slotTarget","lastNode","comments","start$1","guardIESVGBug","cumulated","isForbiddenTag","processPre","processRawAttrs","processFor","processIf","processOnce","end$1","isTextTag","processKey","processRef","processSlotContent","processSlotOutlet","processComponent","processAttrs","for","iterator2","iterator1","checkInFor","parseFor","inMatch","alias","iteratorMatch","findPrevElement","condition","ifConditions","slotTargetDynamic","slotBinding","getSlotName","slotBinding$1","dynamic$1","slotContainer","slotName","syncGen","isDynamic","hasBindings","parseModifiers","camel","argMatch","checkForAliasModel","ieNSBug","ieNSPrefix","_el","preTransformNode","ifCondition","ifConditionExtra","hasElse","elseIfCondition","branch0","cloneASTElement","branch1","branch2","model$1","modules$1","directives$1","baseOptions","isStaticKey","isPlatformReservedTag","genStaticKeysCached","genStaticKeys$1","optimize","markStatic$1","markStaticRoots","static","l$1","staticInFor","staticRoot","isDirectChildOfTemplateFor","fnExpRE","fnInvokeRE","simplePathRE","esc","tab","space","up","down","keyNames","genGuard","modifierCode","stop","self","ctrl","alt","meta","genHandlers","prefix","staticHandlers","dynamicHandlers","handlerCode","genHandler","isMethodPath","isFunctionExpression","isFunctionInvocation","genModifierCode","keyModifier","genKeyFilter","genFilterCode","keyVal","keyCode","keyName","wrapListeners","bind$1","wrapData","baseDirectives","cloak","CodegenState","dataGenFns","onceId","generate","ast","state","genElement","staticProcessed","genStatic","onceProcessed","genOnce","forProcessed","genFor","ifProcessed","genIf","genChildren","genSlot","genComponent","genData$2","originalPreState","altGen","altEmpty","genIfConditions","conditions","genTernaryExp","altHelper","genDirectives","genProps","genScopedSlots","genInlineTemplate","hasRuntime","needRuntime","gen","inlineRenderFns","containsSlotChild","needsKey","generatedSlots","genScopedSlot","isLegacySyntax","reverseProxy","checkSkip","altGenElement","altGenNode","el$1","normalizationType$1","getNormalizationType","genNode","needsNormalization","genComment","genText","transformSpecialNewlines","bind$$1","componentName","staticProps","dynamicProps","prohibitedKeywordRE","unaryOperatorsRE","stripStringRE","detectErrors","checkNode","checkFor","checkFunctionParameterExpression","checkEvent","checkExpression","stripped","keywordMatch","checkIdentifier","ident","generateCodeFrame","lines","count","repeat$1","lineLength","pad","length$1","min","createFunction","errors","createCompileToFunctionFn","compile","compileToFunctions","warn$$1","compiled","tips","fnGenErrors","createCompilerCreator","baseCompile","createCompiler","finalOptions","leadingSpaceLength","div","getShouldDecode","href","idToTemplate","mount","documentElement","getOuterHTML","outerHTML","container","combinePassengers","transports","slotProps","passengers","transport","temp","newPassengers","stableSort","array","compareFn","idx","pick","acc","targets","sources","Wormhole","trackInstances","order","Infinity","newTransport","currentIndex","$_getTransportIndex","newTransports","registerTarget","unregisterTarget","registerSource","unregisterSource","hasTarget","hasSource","hasContentFor","wormhole","_id","disabled","slim","round","random","sendUpdate","beforeDestroy","newValue","closer","normalizeSlots","normalizeOwnChildren","slotContent","Tag","firstRender","ownTransports","oldVal","noWrapper","portalProps","targetProps","append","bail","mountTo","targetSlim","targetSlotProps","targetTag","$props","portalTarget","mountEl","PortalTarget","manual","Portal","content","portalName","portalTargetName","MountingPortalName","MountingPortal","_defineProperty","_objectSpread","r","getOwnPropertySymbols","unfreeze","fragment","ssr","Fragment","SSR","Plugin","store","wptbAdminSettingsData","rawStore","withStore","revertStore","k","messageData","withMessageData","busy","intervalId","intervalTime","defaults","withMessage","isBusy","setMessage","mergedOptions","clearInterval","setInterval","setBusy","templateData","sectionData","isMergeableObject","isNonNullObject","isSpecial","stringValue","isReactElement","canUseSymbol","REACT_ELEMENT_TYPE","$$typeof","emptyTarget","cloneUnlessOtherwiseSpecified","deepmerge","defaultArrayMerge","getMergeFunction","customMerge","getEnumerableOwnPropertySymbols","propertyIsEnumerable","getKeys","propertyIsOnObject","object","propertyIsUnsafe","mergeObject","destination","arrayMerge","sourceIsArray","targetIsArray","sourceAndTargetTypesMatch","deepmergeAll","Error","deepmerge_1","module","exports","assignToGlobal","LazyLoadAnimation","speed","step","direction","perspective","flashColor","instanceOptions","styleId","bufferElementClass","bufferElementContainerClass","getOptions","calculateDuration","abs","calculateAnimationDirection","invert","xAxis","names","indexConstant","includes","calculateDirectionConstant","positiveConstant","getHook","userHook","hookName","cleanUp","getBufferElement","imgElement","removeBufferElement","bufferElement","addStylesheet","contentRoot","lazyloadStyleSheet","head","styleRules","beforeAnimation","animate","afterAnimation","LazyLoadAnimationFactory","getAnimation","animationName","extraOptions","factoryOptions","none","imageElement","slideIn","overflow","growSling","flash","flashElement","insertAdjacentElement","flashStyle","flip","parentWrapper","animationDirection","rotationAmount","dataset","wptbCardFlip","WPTB_LazyLoad","defaultOptions","forceMode","cachedScrollData","lastYPosition","allImages","animationFactory","isGoingDown","scrollY","animation","isElementVisible","currentYPos","height","bottom","visibilityPercentage","visibilityRangeTop","visibilityRangeBottom","visibilityVariable","addBufferElement","backgroundColor","iconSvg","svgIcon","iconWrapper","width","iconSize","wptbLazyLoadIconAnimation","iconAnimation","fill","iconColor","imageElementLoadCallback","processIndividualImageElement","delayCallback","wptbLazyLoadStatus","wptbLazyLoadTarget","updateLastScrollY","position","processImageElements","imgElements","firstTimeProcess","forceLoad","img","windowCurrentYPosition","innerHeight","getAllTableImages","allTables","carry","tableElement","images","querySelectorAll","assignLazyLoadToElements","tables","shadowTables","shadowRootContainer","table","shadowRoot","forceLoadImages","initOptions","enabled","imageLoadAnimation","imageLoadAnimationSpeed","imageLoadAnimationDirection","imageLoadAnimationPerspective","PanelControlBase","label","dependsValue","dependsCallback","uniqueId","innerValue","setInnerValue","cap","settings","generalDisabledStatus","generateUniqueId","variables","getMainBuilderTable","objectPropertyFromString","stringKey","splitKey","strings","applyMixin","beforeCreate","vuexInit","$store","devtoolHook","devtoolPlugin","_devtoolHook","targetState","replaceState","subscribe","mutation","prepend","subscribeAction","action","find","f","deepCopy","copy","forEachValue","assert","partial","Module","rawModule","runtime","_children","_rawModule","rawState","namespaced","addChild","getChild","hasChild","actions","mutations","getters","forEachChild","forEachGetter","forEachAction","forEachMutation","ModuleCollection","rawRootModule","register","getNamespace","update$1","assertRawModule","newModule","rawChildModule","unregister","isRegistered","targetModule","functionAssert","expected","objectAssert","assertTypes","assertOptions","makeAssertionMessage","buf","Store","plugins","strict","_committing","_actions","_actionSubscribers","_mutations","_wrappedGetters","_modules","_modulesNamespaceMap","_subscribers","_watcherVM","_makeLocalGettersCache","dispatch","commit","boundDispatch","payload","boundCommit","installModule","resetStoreVM","useDevtools","prototypeAccessors$1","_vm","$$state","_type","_payload","_options","unifyObjectStyle","entry","_withCommit","commitIterator","after","genericSubscribe","registerModule","preserveState","unregisterModule","parentState","getNestedState","resetStore","hasModule","hotUpdate","newOptions","committing","hot","oldVm","wrappedGetters","enableStrictMode","rootState","moduleName","local","makeLocalContext","namespacedType","registerMutation","registerAction","registerGetter","noNamespace","makeLocalGetters","gettersProxy","splitPos","localType","wrappedMutationHandler","wrappedActionHandler","rootGetters","rawGetter","wrappedGetter","_Vue","mapState","normalizeNamespace","states","isValidMap","normalizeMap","mappedState","getModuleByNamespace","vuex","mapMutations","mappedMutation","mapGetters","mappedGetter","mapActions","mappedAction","createNamespacedHelpers","helper","createLogger","collapsed","stateBefore","stateAfter","transformer","mutationTransformer","mut","actionFilter","actionTransformer","act","logMutations","logActions","logger","prevState","nextState","formattedTime","getFormattedTime","formattedMutation","startMessage","log","endMessage","formattedAction","groupCollapsed","group","groupEnd","time","getHours","getMinutes","getSeconds","getMilliseconds","times","num","maxLength","objectDeepMerge","createBasicStore","defaultStore","extraStore","Vuex","mutationWatchFunction","watchList","stateWatchFunction","callBack","callAtStart","stateGetter","keyString","storeObject","w","colorPickerModule","activeId","getActiveColorPickerId","setActiveColorPicker","cssVariableMaps","nightMode","activated","_persistent","isActive","setNightMode","status","colorPicker","define","amd","Cookies","noConflict","assign","defaultConverter","read","decodeURIComponent","write","encodeURIComponent","converter","defaultAttributes","attributes","expires","toUTCString","escape","stringifiedAttributes","attributeName","cookie","cookies","jar","parts","foundKey","withAttributes","withConverter","api","stateWatchList","proStatus","pro","getPersistentState","wptbCookie","atob","writePersistentState","addresses","dataToWrite","addr","btoa","preparePersistentMap","getPersistentAddr","storeVal","carryAddr","subscriptions","persistentMap","stateWrite","currentStore","createStore","extraStoreOptions","BuilderStore","wptb_admin_object","storeData","builderStore","savedState","getterId","setupGlobalStore","frontendData","withStrings","PortalVue","SettingsApp","sectionsData","pluginInfo","mountId"],"mappings":"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