Version Description
Download this release
Release Info
Developer | automattic |
Plugin | Full Site Editing |
Version | 3.28666 |
Comparing to | |
See all releases |
Code changes from version 3.28276 to 3.28666
- dotcom-fse/lib/seller-celebration-modal/use-has-seen-seller-celebration-modal.js +31 -0
- dotcom-fse/lib/site-intent/use-site-intent.js +18 -0
- full-site-editing-plugin.php +2 -2
- readme.txt +1 -1
- wpcom-block-editor-nux/class-wp-rest-wpcom-block-editor-seller-celebration-modal-controller.php +102 -0
- wpcom-block-editor-nux/class-wpcom-block-editor-nux.php +4 -0
- wpcom-block-editor-nux/dist/images/product-published-f8461fe85ee7eb5713c8.svg +37 -0
- wpcom-block-editor-nux/dist/wpcom-block-editor-nux.asset.php +1 -1
- wpcom-block-editor-nux/dist/wpcom-block-editor-nux.css +1 -1
- wpcom-block-editor-nux/dist/wpcom-block-editor-nux.js +2 -2
- wpcom-block-editor-nux/dist/wpcom-block-editor-nux.rtl.css +1 -1
- wpcom-block-editor-nux/src/block-editor-nux.js +2 -0
- wpcom-block-editor-nux/src/seller-celebration-modal/images/product-published.svg +37 -0
- wpcom-block-editor-nux/src/seller-celebration-modal/index.jsx +131 -0
- wpcom-block-editor-nux/src/seller-celebration-modal/style.scss +27 -0
- wpcom-block-editor-nux/src/welcome-tour/hooks/index.ts +0 -1
- wpcom-block-editor-nux/src/welcome-tour/hooks/use-prefetch-tour-assets.tsx +0 -15
- wpcom-block-editor-nux/src/welcome-tour/icons/maximize.js +0 -13
- wpcom-block-editor-nux/src/welcome-tour/icons/minimize.js +0 -14
- wpcom-block-editor-nux/src/welcome-tour/icons/thumbs_down.js +0 -14
- wpcom-block-editor-nux/src/welcome-tour/icons/thumbs_up.js +0 -14
- wpcom-block-editor-nux/src/welcome-tour/style-tour.scss +15 -201
- wpcom-block-editor-nux/src/welcome-tour/tour-card.js +0 -221
- wpcom-block-editor-nux/src/welcome-tour/{tour-launch.js → tour-launch.tsx} +30 -27
- wpcom-block-editor-nux/src/welcome-tour/tour-minimized-renderer.tsx +0 -48
- wpcom-block-editor-nux/src/welcome-tour/tour-step-renderer.tsx +0 -33
- wpcom-block-editor-nux/src/welcome-tour/{tour-steps.js → tour-steps.tsx} +78 -65
- wpcom-block-editor-nux/src/welcome-tour/types.ts +0 -4
dotcom-fse/lib/seller-celebration-modal/use-has-seen-seller-celebration-modal.js
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import apiFetch from '@wordpress/api-fetch';
|
2 |
+
import { useState, useEffect } from '@wordpress/element';
|
3 |
+
|
4 |
+
const useHasSeenSellerCelebrationModal = () => {
|
5 |
+
const [ hasSeenSellerCelebrationModal, setHasSeenSellerCelebrationModal ] = useState( '' );
|
6 |
+
|
7 |
+
useEffect( () => {
|
8 |
+
fetchHasSeenSellerCelebrationModal();
|
9 |
+
} );
|
10 |
+
|
11 |
+
function fetchHasSeenSellerCelebrationModal() {
|
12 |
+
apiFetch( { path: '/wpcom/v2/block-editor/has-seen-seller-celebration-modal' } )
|
13 |
+
.then( ( result ) =>
|
14 |
+
setHasSeenSellerCelebrationModal( result.has_seen_seller_celebration_modal )
|
15 |
+
)
|
16 |
+
.catch( () => setHasSeenSellerCelebrationModal( false ) );
|
17 |
+
}
|
18 |
+
|
19 |
+
function updateHasSeenSellerCelebrationModal( value ) {
|
20 |
+
apiFetch( {
|
21 |
+
method: 'PUT',
|
22 |
+
path: '/wpcom/v2/block-editor/has-seen-seller-celebration-modal',
|
23 |
+
data: { has_seen_seller_celebration_modal: value },
|
24 |
+
} ).finally( () => {
|
25 |
+
setHasSeenSellerCelebrationModal( value );
|
26 |
+
} );
|
27 |
+
}
|
28 |
+
|
29 |
+
return { hasSeenSellerCelebrationModal, updateHasSeenSellerCelebrationModal };
|
30 |
+
};
|
31 |
+
export default useHasSeenSellerCelebrationModal;
|
dotcom-fse/lib/site-intent/use-site-intent.js
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import apiFetch from '@wordpress/api-fetch';
|
2 |
+
import { useState, useEffect, useCallback } from '@wordpress/element';
|
3 |
+
|
4 |
+
const useSiteIntent = () => {
|
5 |
+
const [ siteIntent, setSiteIntent ] = useState( '' );
|
6 |
+
|
7 |
+
const fetchSiteIntent = useCallback( () => {
|
8 |
+
apiFetch( { path: '/wpcom/v2/site-intent' } )
|
9 |
+
.then( ( result ) => setSiteIntent( result.site_intent ) )
|
10 |
+
.catch( () => setSiteIntent( '' ) );
|
11 |
+
}, [] );
|
12 |
+
|
13 |
+
useEffect( () => {
|
14 |
+
fetchSiteIntent();
|
15 |
+
}, [ fetchSiteIntent ] );
|
16 |
+
return siteIntent;
|
17 |
+
};
|
18 |
+
export default useSiteIntent;
|
full-site-editing-plugin.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Plugin Name: WordPress.com Editing Toolkit
|
4 |
* Description: Enhances your page creation workflow within the Block Editor.
|
5 |
-
* Version: 3.
|
6 |
* Author: Automattic
|
7 |
* Author URI: https://automattic.com/wordpress-plugins/
|
8 |
* License: GPLv2 or later
|
@@ -42,7 +42,7 @@ namespace A8C\FSE;
|
|
42 |
*
|
43 |
* @var string
|
44 |
*/
|
45 |
-
define( 'A8C_ETK_PLUGIN_VERSION', '3.
|
46 |
|
47 |
// Always include these helper files for dotcom FSE.
|
48 |
require_once __DIR__ . '/dotcom-fse/helpers.php';
|
2 |
/**
|
3 |
* Plugin Name: WordPress.com Editing Toolkit
|
4 |
* Description: Enhances your page creation workflow within the Block Editor.
|
5 |
+
* Version: 3.28666
|
6 |
* Author: Automattic
|
7 |
* Author URI: https://automattic.com/wordpress-plugins/
|
8 |
* License: GPLv2 or later
|
42 |
*
|
43 |
* @var string
|
44 |
*/
|
45 |
+
define( 'A8C_ETK_PLUGIN_VERSION', '3.28666' );
|
46 |
|
47 |
// Always include these helper files for dotcom FSE.
|
48 |
require_once __DIR__ . '/dotcom-fse/helpers.php';
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: automattic
|
|
3 |
Tags: block, blocks, editor, gutenberg, page
|
4 |
Requires at least: 5.5
|
5 |
Tested up to: 5.6
|
6 |
-
Stable tag: 3.
|
7 |
Requires PHP: 5.6.20
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
3 |
Tags: block, blocks, editor, gutenberg, page
|
4 |
Requires at least: 5.5
|
5 |
Tested up to: 5.6
|
6 |
+
Stable tag: 3.28666
|
7 |
Requires PHP: 5.6.20
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
wpcom-block-editor-nux/class-wp-rest-wpcom-block-editor-seller-celebration-modal-controller.php
ADDED
@@ -0,0 +1,102 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* WP_REST_WPCOM_Block_Editor_Seller_Celebration_Modal_Controller file.
|
4 |
+
*
|
5 |
+
* @package A8C\FSE
|
6 |
+
*/
|
7 |
+
|
8 |
+
namespace A8C\FSE;
|
9 |
+
|
10 |
+
/**
|
11 |
+
* Class WP_REST_WPCOM_Block_Editor_Seller_Celebration_Modal_Controller.
|
12 |
+
*/
|
13 |
+
class WP_REST_WPCOM_Block_Editor_Seller_Celebration_Modal_Controller extends \WP_REST_Controller {
|
14 |
+
/**
|
15 |
+
* WP_REST_WPCOM_Block_Editor_Seller_Celebration_Modal_Controller constructor.
|
16 |
+
*/
|
17 |
+
public function __construct() {
|
18 |
+
$this->namespace = 'wpcom/v2';
|
19 |
+
$this->rest_base = 'block-editor/has-seen-seller-celebration-modal';
|
20 |
+
$this->wpcom_is_site_specific_endpoint = true;
|
21 |
+
$this->wpcom_is_wpcom_only_endpoint = true;
|
22 |
+
}
|
23 |
+
|
24 |
+
/**
|
25 |
+
* Register available routes.
|
26 |
+
*/
|
27 |
+
public function register_rest_route() {
|
28 |
+
register_rest_route(
|
29 |
+
$this->namespace,
|
30 |
+
$this->rest_base,
|
31 |
+
array(
|
32 |
+
array(
|
33 |
+
'methods' => \WP_REST_Server::READABLE,
|
34 |
+
'callback' => array( $this, 'has_seen_seller_celebration_modal' ),
|
35 |
+
'permission_callback' => array( $this, 'permission_callback' ),
|
36 |
+
),
|
37 |
+
)
|
38 |
+
);
|
39 |
+
register_rest_route(
|
40 |
+
$this->namespace,
|
41 |
+
$this->rest_base,
|
42 |
+
array(
|
43 |
+
array(
|
44 |
+
'methods' => \WP_REST_Server::EDITABLE,
|
45 |
+
'callback' => array( $this, 'set_has_seen_seller_celebration_modal' ),
|
46 |
+
'permission_callback' => array( $this, 'permission_callback' ),
|
47 |
+
'args' => array(
|
48 |
+
'has_seen_seller_celebration_modal' => array(
|
49 |
+
'required' => true,
|
50 |
+
'type' => 'boolean',
|
51 |
+
),
|
52 |
+
),
|
53 |
+
),
|
54 |
+
)
|
55 |
+
);
|
56 |
+
|
57 |
+
}
|
58 |
+
|
59 |
+
/**
|
60 |
+
* Callback to determine whether the request can proceed.
|
61 |
+
*
|
62 |
+
* @return boolean
|
63 |
+
*/
|
64 |
+
public function permission_callback() {
|
65 |
+
return current_user_can( 'read' );
|
66 |
+
}
|
67 |
+
|
68 |
+
/**
|
69 |
+
* Whether the user has seen the seller celebration modal
|
70 |
+
*
|
71 |
+
* @return WP_REST_Response
|
72 |
+
*/
|
73 |
+
public function has_seen_seller_celebration_modal() {
|
74 |
+
// See D69932-code and apps/editing-toolkit/editing-toolkit-plugin/wpcom-block-editor-nux/class-wp-rest-wpcom-block-editor-first-post-published-modal-controller.php.
|
75 |
+
if ( defined( 'IS_ATOMIC' ) && IS_ATOMIC ) {
|
76 |
+
return rest_ensure_response(
|
77 |
+
array(
|
78 |
+
'has_seen_seller_celebration_modal' => false,
|
79 |
+
)
|
80 |
+
);
|
81 |
+
}
|
82 |
+
$has_seen_seller_celebration_modal = (bool) get_option( 'has_seen_seller_celebration_modal', false );
|
83 |
+
|
84 |
+
return rest_ensure_response(
|
85 |
+
array(
|
86 |
+
'has_seen_seller_celebration_modal' => $has_seen_seller_celebration_modal,
|
87 |
+
)
|
88 |
+
);
|
89 |
+
}
|
90 |
+
|
91 |
+
/**
|
92 |
+
* Update the option for whether the user has seen the seller celebration modal.
|
93 |
+
*
|
94 |
+
* @param WP_REST_Request $request Request object.
|
95 |
+
* @return WP_REST_Response
|
96 |
+
*/
|
97 |
+
public function set_has_seen_seller_celebration_modal( $request ) {
|
98 |
+
$params = $request->get_json_params();
|
99 |
+
update_option( 'has_seen_seller_celebration_modal', $params['has_seen_seller_celebration_modal'] );
|
100 |
+
return rest_ensure_response( array( 'has_seen_seller_celebration_modal' => $params['has_seen_seller_celebration_modal'] ) );
|
101 |
+
}
|
102 |
+
}
|
wpcom-block-editor-nux/class-wpcom-block-editor-nux.php
CHANGED
@@ -87,6 +87,10 @@ class WPCOM_Block_Editor_NUX {
|
|
87 |
require_once __DIR__ . '/class-wp-rest-wpcom-block-editor-first-post-published-modal-controller.php';
|
88 |
$first_post_published_modal_controller = new WP_REST_WPCOM_Block_Editor_First_Post_Published_Modal_Controller();
|
89 |
$first_post_published_modal_controller->register_rest_route();
|
|
|
|
|
|
|
|
|
90 |
}
|
91 |
}
|
92 |
add_action( 'init', array( __NAMESPACE__ . '\WPCOM_Block_Editor_NUX', 'init' ) );
|
87 |
require_once __DIR__ . '/class-wp-rest-wpcom-block-editor-first-post-published-modal-controller.php';
|
88 |
$first_post_published_modal_controller = new WP_REST_WPCOM_Block_Editor_First_Post_Published_Modal_Controller();
|
89 |
$first_post_published_modal_controller->register_rest_route();
|
90 |
+
|
91 |
+
require_once __DIR__ . '/class-wp-rest-wpcom-block-editor-seller-celebration-modal-controller.php';
|
92 |
+
$seller_celebration_modal_controller = new WP_REST_WPCOM_Block_Editor_Seller_Celebration_Modal_Controller();
|
93 |
+
$seller_celebration_modal_controller->register_rest_route();
|
94 |
}
|
95 |
}
|
96 |
add_action( 'init', array( __NAMESPACE__ . '\WPCOM_Block_Editor_NUX', 'init' ) );
|
wpcom-block-editor-nux/dist/images/product-published-f8461fe85ee7eb5713c8.svg
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<svg width="93" height="109" viewBox="0 0 93 109" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<g clip-path="url(#clip0_1242_7300)">
|
3 |
+
<path d="M8.30613 31.4346C8.16674 33.9662 5.65765 78.7617 5.10007 89.0288C5.03038 89.943 6.00613 90.7868 7.19098 90.7868H67.3395L8.30613 31.4346Z" fill="url(#paint0_linear_1242_7300)"/>
|
4 |
+
<path d="M23.6394 35.7236C23.6394 35.7236 23.8485 41.4198 35.2788 41.7714C46.7091 42.123 57.7909 42.1933 57.7909 42.1933L57.6515 36.4972C57.6515 36.4972 56.8849 36.0752 54.0273 36.1456C51.1697 36.2159 23.6394 35.7236 23.6394 35.7236Z" fill="#8BBECE"/>
|
5 |
+
<path d="M79.6062 23.0661L58.0001 22.5738V18.3545L87.2031 18.7764L79.6062 23.0661Z" fill="#003B62"/>
|
6 |
+
<path d="M53.1213 22.5738L30.6788 22.2222V18.3545H53.1213V22.5738Z" fill="#003B62"/>
|
7 |
+
<path d="M18.1334 17.7217C18.2031 18.2139 26.0092 22.2223 26.0092 22.2223V17.9326L18.1334 17.7217Z" fill="#003B62"/>
|
8 |
+
<path d="M31.9333 8.93101C32.1424 8.79036 35 7.0323 38.9727 6.75101C38.9727 6.75101 42.1091 4.07875 47.8243 4.99294C53.5394 5.90714 58.6273 10.1265 57.7212 17.5807V18.4246L61.6243 18.4949C61.6243 18.4949 62.3212 5.4852 48.5212 3.86778C35.9061 2.25036 31.9333 8.93101 31.9333 8.93101Z" fill="#003B62"/>
|
9 |
+
<path d="M31.585 15.0493C31.585 15.0493 34.2334 17.7216 35.2789 18.0029V11.6035L31.585 15.0493Z" fill="#003B62"/>
|
10 |
+
<path d="M77.0273 94.654C77.0273 94.654 77.794 94.865 80.791 93.1069C83.7183 91.3489 88.1789 88.8173 88.1789 88.8173L82.4637 21.4482L77.794 24.1205L77.9334 93.0366C77.9334 92.9663 78.0728 94.1618 77.0273 94.654Z" fill="#8BBECE"/>
|
11 |
+
<path d="M85.9486 89.9428L83.6486 38.959" stroke="#003B62" stroke-width="1.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
12 |
+
<path d="M91.8728 86.1444C91.8728 86.4257 91.7334 86.707 91.4546 86.8477L78.9788 94.0909C78.2818 94.5128 77.4455 94.7238 76.6091 94.7238H73.194H76.2606C77.1667 94.7238 77.8637 94.1612 77.8637 93.458L77.7243 24.0496L87.1334 18.7051L91.8728 86.1444Z" stroke="#003B62" stroke-width="1.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
13 |
+
<path d="M77.794 24.1203L77.9334 93.5286C77.9334 94.2319 77.1667 94.7945 76.3303 94.7945H73.2637L3.28791 93.9506C2.45154 93.9506 1.75457 93.388 1.82427 92.6848L6.70306 23.0654L77.794 24.1203Z" stroke="#003B62" stroke-width="1.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
14 |
+
<path d="M26.0788 17.9317C26.0788 18.0723 26.0788 18.2833 26.0788 18.4239V23.3465L6.703 23.0652L18.1333 17.7207L26.0788 17.9317Z" stroke="#003B62" stroke-width="1.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
15 |
+
<path d="M52.9819 18.2832C53.1213 18.7755 53.1213 19.2678 53.1213 19.8303V23.7684L30.6091 23.4871V18.6349C30.6091 18.4239 30.6091 18.2129 30.6091 18.002L52.9819 18.2832Z" stroke="#003B62" stroke-width="1.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
16 |
+
<path d="M87.203 18.7754L77.7939 24.12L57.7212 23.8387V20.1819C57.7212 19.549 57.6515 18.9864 57.5818 18.4238L87.203 18.7754Z" stroke="#003B62" stroke-width="1.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
17 |
+
<path d="M57.7213 20.1121V23.7689L53.1213 23.6986V19.7605C53.1213 19.2682 53.0516 18.7057 52.9819 18.2134C52.0758 13.9237 47.4758 10.4779 41.9001 10.1966C39.5304 10.056 37.3001 10.5482 35.488 11.4624C32.7698 12.7986 30.9577 15.1895 30.7486 17.9321C30.7486 18.1431 30.7486 18.354 30.7486 18.565V23.4173L26.1486 23.3469V18.4244C26.1486 18.2837 26.1486 18.0728 26.1486 17.9321C26.288 14.416 28.3092 11.3218 31.4455 9.28243C33.5364 7.87598 36.1849 6.96179 39.0425 6.75082C39.9486 6.6805 40.9243 6.61017 41.9001 6.6805C49.9152 7.10243 56.5364 12.1657 57.5819 18.354C57.6516 18.9166 57.7213 19.5495 57.7213 20.1121Z" stroke="#003B62" stroke-width="1.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
18 |
+
<path d="M35.4182 11.5322C35.3485 11.8838 35.2788 12.2355 35.2091 12.5871C35.2091 12.798 35.2091 13.009 35.2091 13.22V18.0722L30.6788 18.0019C30.8879 15.189 32.7 12.8684 35.4182 11.5322Z" stroke="#003B62" stroke-width="1.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
19 |
+
<path d="M62.3212 14.697V18.3538L57.7212 18.2835V14.3454C57.7212 13.8531 57.6515 13.2905 57.5818 12.7983C56.6757 8.50861 52.0757 5.06281 46.5 4.78152C43.6424 4.64087 40.9939 5.3441 39.0424 6.68023C36.1151 6.96152 33.5363 7.87571 31.4454 9.21184C33.4666 4.21894 39.4606 0.773129 46.5697 1.19506C54.5848 1.617 61.206 6.68022 62.2515 12.8686C62.2515 13.5015 62.3212 14.1344 62.3212 14.697Z" stroke="#003B62" stroke-width="1.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
20 |
+
<path d="M56.397 44.2327L23.7789 43.6701C23.2213 43.6701 22.8031 43.3185 22.8031 42.8262L23.1516 36.3566C23.1516 35.9346 23.6395 35.583 24.197 35.583L56.8152 36.1456C57.3728 36.1456 57.791 36.4972 57.791 36.9895L57.4425 43.4591C57.4425 43.8811 56.9546 44.2327 56.397 44.2327Z" stroke="#003B62" stroke-width="1.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
21 |
+
<path d="M88.9455 91.2779L62.0425 73.627L67.4091 105.553L74.3091 97.607L80.9304 107.804L85.6001 104.639L78.9788 94.5128L88.9455 91.2779Z" fill="white" stroke="#003C65" stroke-width="1.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
22 |
+
<path d="M85.2516 90.5046L64.2031 76.4401C63.9941 76.2994 63.7153 76.5104 63.785 76.7214L68.1759 101.756C68.2456 101.967 68.5244 102.037 68.6638 101.897L74.2395 95.7085L80.9304 106.046C81.0001 106.187 81.2092 106.187 81.2789 106.116L83.9971 104.358C84.1365 104.288 84.1365 104.077 84.0668 104.007L77.3759 93.6691L85.1819 90.9968C85.391 90.9265 85.4607 90.6452 85.2516 90.5046Z" fill="url(#paint1_linear_1242_7300)"/>
|
23 |
+
</g>
|
24 |
+
<defs>
|
25 |
+
<linearGradient id="paint0_linear_1242_7300" x1="5.04633" y1="61.0719" x2="67.2737" y2="60.9564" gradientUnits="userSpaceOnUse">
|
26 |
+
<stop stop-color="#E9E9E9"/>
|
27 |
+
<stop offset="1" stop-color="#EFEFEF"/>
|
28 |
+
</linearGradient>
|
29 |
+
<linearGradient id="paint1_linear_1242_7300" x1="64.7084" y1="96.5632" x2="81.9054" y2="85.3644" gradientUnits="userSpaceOnUse">
|
30 |
+
<stop stop-color="#E9E9E9"/>
|
31 |
+
<stop offset="1" stop-color="#EFEFEF"/>
|
32 |
+
</linearGradient>
|
33 |
+
<clipPath id="clip0_1242_7300">
|
34 |
+
<rect width="92" height="109" fill="white" transform="translate(0.5)"/>
|
35 |
+
</clipPath>
|
36 |
+
</defs>
|
37 |
+
</svg>
|
wpcom-block-editor-nux/dist/wpcom-block-editor-nux.asset.php
CHANGED
@@ -1 +1 @@
|
|
1 |
-
<?php return array('dependencies' => array('a8c-fse-common-data-stores', 'lodash', 'react', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-data', 'wp-data-controls', 'wp-dom', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-nux', 'wp-plugins', 'wp-polyfill', 'wp-primitives', 'wp-url'), 'version' => '
|
1 |
+
<?php return array('dependencies' => array('a8c-fse-common-data-stores', 'lodash', 'react', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-data', 'wp-data-controls', 'wp-dom', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-nux', 'wp-plugins', 'wp-polyfill', 'wp-primitives', 'wp-url'), 'version' => 'ba774243743aa0ced9a5860ce5b8f384');
|
wpcom-block-editor-nux/dist/wpcom-block-editor-nux.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.wpcom-block-editor-nux-modal .components-modal__header{background-color:transparent;border-bottom:0;height:auto;left:0;margin:0;padding:10px;position:absolute;right:0}.wpcom-block-editor-nux-modal .components-modal__header button{left:unset}.wpcom-block-editor-nux-modal .components-modal__header button svg path{transform:scale(1.4);transform-origin:center}.wpcom-block-editor-nux-modal .components-modal__content{margin-top:0;padding:84px 20px 20px}.wpcom-block-editor-nux-modal .components-modal__content:before{margin:0}@media(min-width:480px){.wpcom-block-editor-nux-modal .components-modal__content{text-align:center}}.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__image-container{display:flex;justify-content:center}.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__title{font-size:2.25rem;font-weight:500;line-height:1.2;margin:34px 0 0}@media(min-width:480px){.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__title{margin-top:24px}}.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__description{font-size:1rem;margin:16px 0 0;max-width:352px}@media(min-width:480px){.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__description{font-size:1.125rem;margin:20px auto 0}}.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__buttons{display:flex;flex-direction:column;justify-content:center;margin-top:24px}.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__buttons .components-button{border-radius:3px;font-size:.875rem;height:40px;justify-content:center;min-width:130px}.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__buttons .components-button+.components-button{margin-top:12px}@media(min-width:480px){.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__buttons{flex-direction:row;margin-top:28px}.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__buttons .components-button+.components-button{margin-left:16px;margin-top:0}}@media(min-width:600px){.wpcom-block-editor-draft-post-modal .components-modal__content{padding:48px 128px}}.wpcom-block-editor-draft-post-modal .wpcom-block-editor-nux-modal__image-container img{height:95px;width:209px}@media(min-width:600px){.wpcom-block-editor-post-published-modal .components-modal__content{padding:48px 90px}}.wpcom-block-editor-post-published-modal .wpcom-block-editor-nux-modal__image-container img{height:85px;width:158px}.wpcom-block-editor-post-published-modal .wpcom-block-editor-nux-modal__buttons .components-button{min-width:113px}@font-face{font-display:swap;font-family:Recoleta;font-weight:400;src:url(https://s1.wp.com/i/fonts/recoleta/400.woff2) format("woff2"),url(https://s1.wp.com/i/fonts/recoleta/400.woff) format("woff")}.wp-brand-font{font-family:"Noto Serif",Georgia,Times New Roman,Times,serif;font-weight:400}[lang*=af] .wp-brand-font,[lang*=ca] .wp-brand-font,[lang*=cs] .wp-brand-font,[lang*=da] .wp-brand-font,[lang*=de] .wp-brand-font,[lang*=en] .wp-brand-font,[lang*=es] .wp-brand-font,[lang*=eu] .wp-brand-font,[lang*=fi] .wp-brand-font,[lang*=fr] .wp-brand-font,[lang*=gl] .wp-brand-font,[lang*=hr] .wp-brand-font,[lang*=hu] .wp-brand-font,[lang*=id] .wp-brand-font,[lang*=is] .wp-brand-font,[lang*=it] .wp-brand-font,[lang*=lv] .wp-brand-font,[lang*=mt] .wp-brand-font,[lang*=nb] .wp-brand-font,[lang*=nl] .wp-brand-font,[lang*=pl] .wp-brand-font,[lang*=pt] .wp-brand-font,[lang*=ro] .wp-brand-font,[lang*=ru] .wp-brand-font,[lang*=sk] .wp-brand-font,[lang*=sl] .wp-brand-font,[lang*=sq] .wp-brand-font,[lang*=sr] .wp-brand-font,[lang*=sv] .wp-brand-font,[lang*=sw] .wp-brand-font,[lang*=tr] .wp-brand-font,[lang*=uz] .wp-brand-font{font-family:Recoleta,"Noto Serif",Georgia,Times New Roman,Times,serif}@keyframes onboarding-loading-pulse{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}.wpcom-block-editor-nux.components-modal__frame{height:65vh;overflow:visible;top:calc(17.5vh - 35px)}@media(max-width:660px){.wpcom-block-editor-nux.components-modal__frame{left:5vw;min-width:90vw;right:5vw;width:90vw}}@media(min-width:660px){.wpcom-block-editor-nux.components-modal__frame{height:350px;top:calc(50% - 35px);width:720px}}.wpcom-block-editor-nux .components-modal__header{left:5%;max-width:90%;position:absolute}@media(min-width:660px){.wpcom-block-editor-nux .components-modal__header{display:none}}.wpcom-block-editor-nux .components-guide__container{margin-top:0}.wpcom-block-editor-nux .components-guide__footer{background:#fff;border-top:1px solid #dcdcde;bottom:-70px;display:flex;height:70px;justify-content:center;left:0;margin:0;padding:20px 0;position:absolute;width:100%}@media(min-width:660px){.wpcom-block-editor-nux .components-guide__footer{border-top:none}}.wpcom-block-editor-nux .components-guide__page{height:100%;justify-content:start;max-width:90vw;position:absolute;width:100%}@media(min-width:660px){.wpcom-block-editor-nux .components-guide__page{max-width:100%}}.wpcom-block-editor-nux .components-guide__page-control{display:none;height:0;margin:0 auto;overflow:visible;position:relative;top:100%;z-index:2}.wpcom-block-editor-nux .components-guide__page-control:before{content:"";display:inline-block;height:70px;vertical-align:middle}.wpcom-block-editor-nux .components-guide__page-control li{margin-bottom:0;vertical-align:middle}@media(min-width:660px){.wpcom-block-editor-nux .components-guide__page-control{display:block}}.wpcom-block-editor-nux__page{background:#fff;display:flex;flex-direction:column-reverse;height:90%;justify-content:flex-end;max-width:90vw;width:100%}@media(min-width:660px){.wpcom-block-editor-nux__page{bottom:0;flex-direction:row;justify-content:flex-start;max-width:100%;min-height:350px;position:absolute}.wpcom-block-editor-nux__text,.wpcom-block-editor-nux__visual{flex:1 0 50%;min-width:290px}}.wpcom-block-editor-nux__text{height:60%;padding:0 25px 25px}@media(min-width:660px){.wpcom-block-editor-nux__text{height:auto;padding:40px 50px}}.wpcom-block-editor-nux__visual{background:#1381d8;height:40%;text-align:center}@media(min-width:660px){.wpcom-block-editor-nux__visual{height:auto}}.wpcom-block-editor-nux__heading{color:#1d2327;font-family:Recoleta,"Noto Serif",Georgia,Times New Roman,Times,serif;font-size:32px;font-weight:400;letter-spacing:-.4px;line-height:1.19}@media(min-width:660px){.wpcom-block-editor-nux__heading{font-size:42px}}body.locale-de .wpcom-block-editor-nux__heading{font-size:24px}@media(min-width:660px){body.locale-de .wpcom-block-editor-nux__heading{font-size:28px}}.wpcom-block-editor-nux__description{color:#50575e;font-size:15px;line-height:22px}@media(min-width:660px){.wpcom-block-editor-nux__description{font-size:17px;line-height:26px}}.wpcom-block-editor-nux__image{align-self:center;flex:1;height:auto;max-height:100%;max-width:100%}.wpcom-block-editor-nux__image.align-bottom{align-self:flex-end}@media(min-width:660px){.wpcom-block-editor-nux__image{max-height:none}}.welcome-tour-card__heading{font-size:1.125rem;margin:.5rem 0}.welcome-tour-card__description{font-size:.875rem;line-height:1.5rem;margin:0}.welcome-tour-card__description .components-button{height:auto;line-height:1;padding:0 0 0 4px;text-decoration:underline}.wpcom-editor-welcome-tour__minimized{background-color:#fff;border-radius:2px;box-shadow:0 2px 6px rgba(60,66,87,.08),0 0 0 1px rgba(60,66,87,.16),0 1px 1px rgba(0,0,0,.08);color:#000}.wpcom-editor-welcome-tour__minimized .components-button{height:44px}.wpcom-editor-welcome-tour__minimized .components-button .wpcom-editor-welcome-tour__minimized-tour-index{color:#949494}.wpcom-editor-welcome-tour__minimized .components-button svg{color:#50575e}.wpcom-editor-welcome-tour__minimized .components-button:hover .wpcom-editor-welcome-tour__minimized-tour-index,.wpcom-editor-welcome-tour__minimized .components-button:hover svg{color:inherit}.wpcom-editor-welcome-tour-card-frame{position:relative}.wpcom-editor-welcome-tour-card-frame .components-guide__page-control{bottom:0;left:16px;margin:0;position:absolute}.wpcom-editor-welcome-tour-card-frame .components-guide__page-control li{margin-bottom:0}.wpcom-editor-welcome-tour>.tour-kit-frame__container{box-shadow:none}.welcome-tour-card{max-width:92vw;width:400px}.welcome-tour-card.welcome-tour-card.is-elevated{box-shadow:none;box-shadow:0 0 0 1px rgba(0,0,0,.1),0 2px 4px 0 rgba(0,0,0,.1)}.welcome-tour-card.components-card{border:none;border-radius:4px;box-shadow:none}.welcome-tour-card .components-card__body{min-height:114px}.welcome-tour-card .components-card__body,.welcome-tour-card .components-card__footer{border-top:none;padding:16px!important}.welcome-tour-card .components-card__footer .welcome-tour__end-text{color:#949494;font-size:.875rem;font-style:italic}.welcome-tour-card .components-card__footer .welcome-tour__end-icon.components-button.has-icon{background-color:#f6f7f7;border-radius:50%;color:#949494;margin-left:8px}.welcome-tour-card .components-card__footer .welcome-tour__end-icon.components-button.has-icon path{fill:#949494}.welcome-tour-card .components-card__footer .welcome-tour__end-icon.components-button.has-icon.active{background-color:#000;opacity:1}.welcome-tour-card .components-card__footer .welcome-tour__end-icon.components-button.has-icon.active path{fill:#fff}.welcome-tour-card .components-card__media{background-color:#e7eaeb;height:0;padding-top:66%;position:relative;width:100%}.welcome-tour-card .components-card__media img{left:0;position:absolute;top:0;width:100%}.welcome-tour-card .components-guide__page-control{margin:0}.welcome-tour-card .components-guide__page-control .components-button{min-width:auto}.welcome-tour-card .components-guide__page-control .components-button.has-icon{padding:3px}.welcome-tour-card .components-guide__page-control li{margin-bottom:0}.welcome-tour-card__minimize-icon svg{left:-2px;position:relative}.welcome-tour-card__overlay-controls{left:0;padding:12px;position:absolute;right:0;z-index:1}.welcome-tour-card__overlay-controls .components-button{background:#32373c;height:32px;min-width:32px;opacity:.7;transition:opacity .2s;width:32px}.welcome-tour-card__overlay-controls .components-button:active{opacity:.9}@media(hover:hover)and (pointer:fine){.welcome-tour-card__overlay-controls .components-button{opacity:0}.tour-kit-frame__container:focus-within .welcome-tour-card__overlay-controls .components-button,.tour-kit-frame__container:hover .welcome-tour-card__overlay-controls .components-button{opacity:.7}.tour-kit-frame__container:focus-within .welcome-tour-card__overlay-controls .components-button:focus,.tour-kit-frame__container:focus-within .welcome-tour-card__overlay-controls .components-button:hover,.tour-kit-frame__container:hover .welcome-tour-card__overlay-controls .components-button:focus,.tour-kit-frame__container:hover .welcome-tour-card__overlay-controls .components-button:hover{opacity:.9}}.welcome-tour-card__next-btn{justify-content:center;margin-left:12px;min-width:85px}.welcome-tour-card__media img{display:block;height:auto;max-width:100%;width:100%}.wpcom-editor-welcome-tour .wpcom-editor-welcome-tour__step.is-with-extra-padding .components-card__media img{left:14%;top:14%;width:86%}:root{--studio-white:#fff;--studio-black:#000;--studio-gray-0:#f6f7f7;--studio-gray-5:#dcdcde;--studio-gray-10:#c3c4c7;--studio-gray-20:#a7aaad;--studio-gray-30:#8c8f94;--studio-gray-40:#787c82;--studio-gray-50:#646970;--studio-gray-60:#50575e;--studio-gray-70:#3c434a;--studio-gray-80:#2c3338;--studio-gray-90:#1d2327;--studio-gray-100:#101517;--studio-gray:#646970;--studio-blue-0:#e9f0f5;--studio-blue-5:#bbe0fa;--studio-blue-10:#91caf2;--studio-blue-20:#68b3e8;--studio-blue-30:#399ce3;--studio-blue-40:#1689db;--studio-blue-50:#0675c4;--studio-blue-60:#055d9c;--studio-blue-70:#044b7a;--studio-blue-80:#02395c;--studio-blue-90:#01283d;--studio-blue-100:#001621;--studio-blue:#0675c4;--studio-purple-0:#f2e9ed;--studio-purple-5:#ebcee0;--studio-purple-10:#e3afd5;--studio-purple-20:#d48fc8;--studio-purple-30:#c475bd;--studio-purple-40:#b35eb1;--studio-purple-50:#984a9c;--studio-purple-60:#7c3982;--studio-purple-70:#662c6e;--studio-purple-80:#4d2054;--studio-purple-90:#35163b;--studio-purple-100:#1e0c21;--studio-purple:#984a9c;--studio-pink-0:#f5e9ed;--studio-pink-5:#f2ceda;--studio-pink-10:#f7a8c3;--studio-pink-20:#f283aa;--studio-pink-30:#eb6594;--studio-pink-40:#e34c84;--studio-pink-50:#c9356e;--studio-pink-60:#ab235a;--studio-pink-70:#8c1749;--studio-pink-80:#700f3b;--studio-pink-90:#4f092a;--studio-pink-100:#260415;--studio-pink:#c9356e;--studio-red-0:#f7ebec;--studio-red-5:#facfd2;--studio-red-10:#ffabaf;--studio-red-20:#ff8085;--studio-red-30:#f86368;--studio-red-40:#e65054;--studio-red-50:#d63638;--studio-red-60:#b32d2e;--studio-red-70:#8a2424;--studio-red-80:#691c1c;--studio-red-90:#451313;--studio-red-100:#240a0a;--studio-red:#d63638;--studio-orange-0:#f5ece6;--studio-orange-5:#f7dcc6;--studio-orange-10:#ffbf86;--studio-orange-20:#faa754;--studio-orange-30:#e68b28;--studio-orange-40:#d67709;--studio-orange-50:#b26200;--studio-orange-60:#8a4d00;--studio-orange-70:#704000;--studio-orange-80:#543100;--studio-orange-90:#361f00;--studio-orange-100:#1f1200;--studio-orange:#b26200;--studio-yellow-0:#f5f1e1;--studio-yellow-5:#f5e6b3;--studio-yellow-10:#f2d76b;--studio-yellow-20:#f0c930;--studio-yellow-30:#deb100;--studio-yellow-40:#c08c00;--studio-yellow-50:#9d6e00;--studio-yellow-60:#7d5600;--studio-yellow-70:#674600;--studio-yellow-80:#4f3500;--studio-yellow-90:#320;--studio-yellow-100:#1c1300;--studio-yellow:#9d6e00;--studio-green-0:#e6f2e8;--studio-green-5:#b8e6bf;--studio-green-10:#68de86;--studio-green-20:#1ed15a;--studio-green-30:#00ba37;--studio-green-40:#00a32a;--studio-green-50:#008a20;--studio-green-60:#007017;--studio-green-70:#005c12;--studio-green-80:#00450c;--studio-green-90:#003008;--studio-green-100:#001c05;--studio-green:#008a20;--studio-celadon-0:#e4f2ed;--studio-celadon-5:#a7e8d3;--studio-celadon-10:#66deb9;--studio-celadon-20:#31cc9f;--studio-celadon-30:#09b585;--studio-celadon-40:#009e73;--studio-celadon-50:#008763;--studio-celadon-60:#007053;--studio-celadon-70:#005c44;--studio-celadon-80:#004533;--studio-celadon-90:#003024;--studio-celadon-100:#001c15;--studio-celadon:#008763;--studio-wordpress-blue-0:#e6f1f5;--studio-wordpress-blue-5:#bedae6;--studio-wordpress-blue-10:#98c6d9;--studio-wordpress-blue-20:#6ab3d0;--studio-wordpress-blue-30:#3895ba;--studio-wordpress-blue-40:#187aa2;--studio-wordpress-blue-50:#006088;--studio-wordpress-blue-60:#004e6e;--studio-wordpress-blue-70:#003c56;--studio-wordpress-blue-80:#002c40;--studio-wordpress-blue-90:#001d2d;--studio-wordpress-blue-100:#00101c;--studio-wordpress-blue:#006088;--studio-simplenote-blue-0:#e9ecf5;--studio-simplenote-blue-5:#ced9f2;--studio-simplenote-blue-10:#abc1f5;--studio-simplenote-blue-20:#84a4f0;--studio-simplenote-blue-30:#618df2;--studio-simplenote-blue-40:#4678eb;--studio-simplenote-blue-50:#3361cc;--studio-simplenote-blue-60:#1d4fc4;--studio-simplenote-blue-70:#113ead;--studio-simplenote-blue-80:#0d2f85;--studio-simplenote-blue-90:#09205c;--studio-simplenote-blue-100:#05102e;--studio-simplenote-blue:#3361cc;--studio-woocommerce-purple-0:#f7edf7;--studio-woocommerce-purple-5:#e5cfe8;--studio-woocommerce-purple-10:#d6b4e0;--studio-woocommerce-purple-20:#c792e0;--studio-woocommerce-purple-30:#af7dd1;--studio-woocommerce-purple-40:#9a69c7;--studio-woocommerce-purple-50:#7f54b3;--studio-woocommerce-purple-60:#674399;--studio-woocommerce-purple-70:#533582;--studio-woocommerce-purple-80:#3c2861;--studio-woocommerce-purple-90:#271b3d;--studio-woocommerce-purple-100:#140e1f;--studio-woocommerce-purple:#7f54b3;--studio-jetpack-green-0:#f0f2eb;--studio-jetpack-green-5:#d0e6b8;--studio-jetpack-green-10:#9dd977;--studio-jetpack-green-20:#64ca43;--studio-jetpack-green-30:#2fb41f;--studio-jetpack-green-40:#069e08;--studio-jetpack-green-50:#008710;--studio-jetpack-green-60:#007117;--studio-jetpack-green-70:#005b18;--studio-jetpack-green-80:#004515;--studio-jetpack-green-90:#003010;--studio-jetpack-green-100:#001c09;--studio-jetpack-green:#069e08;--studio-white-rgb:255,255,255;--studio-black-rgb:0,0,0;--studio-gray-0-rgb:246,247,247;--studio-gray-5-rgb:220,220,222;--studio-gray-10-rgb:195,196,199;--studio-gray-20-rgb:167,170,173;--studio-gray-30-rgb:140,143,148;--studio-gray-40-rgb:120,124,130;--studio-gray-50-rgb:100,105,112;--studio-gray-60-rgb:80,87,94;--studio-gray-70-rgb:60,67,74;--studio-gray-80-rgb:44,51,56;--studio-gray-90-rgb:29,35,39;--studio-gray-100-rgb:16,21,23;--studio-gray-rgb:100,105,112;--studio-blue-0-rgb:233,240,245;--studio-blue-5-rgb:187,224,250;--studio-blue-10-rgb:145,202,242;--studio-blue-20-rgb:104,179,232;--studio-blue-30-rgb:57,156,227;--studio-blue-40-rgb:22,137,219;--studio-blue-50-rgb:6,117,196;--studio-blue-60-rgb:5,93,156;--studio-blue-70-rgb:4,75,122;--studio-blue-80-rgb:2,57,92;--studio-blue-90-rgb:1,40,61;--studio-blue-100-rgb:0,22,33;--studio-blue-rgb:6,117,196;--studio-purple-0-rgb:242,233,237;--studio-purple-5-rgb:235,206,224;--studio-purple-10-rgb:227,175,213;--studio-purple-20-rgb:212,143,200;--studio-purple-30-rgb:196,117,189;--studio-purple-40-rgb:179,94,177;--studio-purple-50-rgb:152,74,156;--studio-purple-60-rgb:124,57,130;--studio-purple-70-rgb:102,44,110;--studio-purple-80-rgb:77,32,84;--studio-purple-90-rgb:53,22,59;--studio-purple-100-rgb:30,12,33;--studio-purple-rgb:152,74,156;--studio-pink-0-rgb:245,233,237;--studio-pink-5-rgb:242,206,218;--studio-pink-10-rgb:247,168,195;--studio-pink-20-rgb:242,131,170;--studio-pink-30-rgb:235,101,148;--studio-pink-40-rgb:227,76,132;--studio-pink-50-rgb:201,53,110;--studio-pink-60-rgb:171,35,90;--studio-pink-70-rgb:140,23,73;--studio-pink-80-rgb:112,15,59;--studio-pink-90-rgb:79,9,42;--studio-pink-100-rgb:38,4,21;--studio-pink-rgb:201,53,110;--studio-red-0-rgb:247,235,236;--studio-red-5-rgb:250,207,210;--studio-red-10-rgb:255,171,175;--studio-red-20-rgb:255,128,133;--studio-red-30-rgb:248,99,104;--studio-red-40-rgb:230,80,84;--studio-red-50-rgb:214,54,56;--studio-red-60-rgb:179,45,46;--studio-red-70-rgb:138,36,36;--studio-red-80-rgb:105,28,28;--studio-red-90-rgb:69,19,19;--studio-red-100-rgb:36,10,10;--studio-red-rgb:214,54,56;--studio-orange-0-rgb:245,236,230;--studio-orange-5-rgb:247,220,198;--studio-orange-10-rgb:255,191,134;--studio-orange-20-rgb:250,167,84;--studio-orange-30-rgb:230,139,40;--studio-orange-40-rgb:214,119,9;--studio-orange-50-rgb:178,98,0;--studio-orange-60-rgb:138,77,0;--studio-orange-70-rgb:112,64,0;--studio-orange-80-rgb:84,49,0;--studio-orange-90-rgb:54,31,0;--studio-orange-100-rgb:31,18,0;--studio-orange-rgb:178,98,0;--studio-yellow-0-rgb:245,241,225;--studio-yellow-5-rgb:245,230,179;--studio-yellow-10-rgb:242,215,107;--studio-yellow-20-rgb:240,201,48;--studio-yellow-30-rgb:222,177,0;--studio-yellow-40-rgb:192,140,0;--studio-yellow-50-rgb:157,110,0;--studio-yellow-60-rgb:125,86,0;--studio-yellow-70-rgb:103,70,0;--studio-yellow-80-rgb:79,53,0;--studio-yellow-90-rgb:51,34,0;--studio-yellow-100-rgb:28,19,0;--studio-yellow-rgb:157,110,0;--studio-green-0-rgb:230,242,232;--studio-green-5-rgb:184,230,191;--studio-green-10-rgb:104,222,134;--studio-green-20-rgb:30,209,90;--studio-green-30-rgb:0,186,55;--studio-green-40-rgb:0,163,42;--studio-green-50-rgb:0,138,32;--studio-green-60-rgb:0,112,23;--studio-green-70-rgb:0,92,18;--studio-green-80-rgb:0,69,12;--studio-green-90-rgb:0,48,8;--studio-green-100-rgb:0,28,5;--studio-green-rgb:0,138,32;--studio-celadon-0-rgb:228,242,237;--studio-celadon-5-rgb:167,232,211;--studio-celadon-10-rgb:102,222,185;--studio-celadon-20-rgb:49,204,159;--studio-celadon-30-rgb:9,181,133;--studio-celadon-40-rgb:0,158,115;--studio-celadon-50-rgb:0,135,99;--studio-celadon-60-rgb:0,112,83;--studio-celadon-70-rgb:0,92,68;--studio-celadon-80-rgb:0,69,51;--studio-celadon-90-rgb:0,48,36;--studio-celadon-100-rgb:0,28,21;--studio-celadon-rgb:0,135,99;--studio-wordpress-blue-0-rgb:230,241,245;--studio-wordpress-blue-5-rgb:190,218,230;--studio-wordpress-blue-10-rgb:152,198,217;--studio-wordpress-blue-20-rgb:106,179,208;--studio-wordpress-blue-30-rgb:56,149,186;--studio-wordpress-blue-40-rgb:24,122,162;--studio-wordpress-blue-50-rgb:0,96,136;--studio-wordpress-blue-60-rgb:0,78,110;--studio-wordpress-blue-70-rgb:0,60,86;--studio-wordpress-blue-80-rgb:0,44,64;--studio-wordpress-blue-90-rgb:0,29,45;--studio-wordpress-blue-100-rgb:0,16,28;--studio-wordpress-blue-rgb:0,96,136;--studio-simplenote-blue-0-rgb:233,236,245;--studio-simplenote-blue-5-rgb:206,217,242;--studio-simplenote-blue-10-rgb:171,193,245;--studio-simplenote-blue-20-rgb:132,164,240;--studio-simplenote-blue-30-rgb:97,141,242;--studio-simplenote-blue-40-rgb:70,120,235;--studio-simplenote-blue-50-rgb:51,97,204;--studio-simplenote-blue-60-rgb:29,79,196;--studio-simplenote-blue-70-rgb:17,62,173;--studio-simplenote-blue-80-rgb:13,47,133;--studio-simplenote-blue-90-rgb:9,32,92;--studio-simplenote-blue-100-rgb:5,16,46;--studio-simplenote-blue-rgb:51,97,204;--studio-woocommerce-purple-0-rgb:247,237,247;--studio-woocommerce-purple-5-rgb:229,207,232;--studio-woocommerce-purple-10-rgb:214,180,224;--studio-woocommerce-purple-20-rgb:199,146,224;--studio-woocommerce-purple-30-rgb:175,125,209;--studio-woocommerce-purple-40-rgb:154,105,199;--studio-woocommerce-purple-50-rgb:127,84,179;--studio-woocommerce-purple-60-rgb:103,67,153;--studio-woocommerce-purple-70-rgb:83,53,130;--studio-woocommerce-purple-80-rgb:60,40,97;--studio-woocommerce-purple-90-rgb:39,27,61;--studio-woocommerce-purple-100-rgb:20,14,31;--studio-woocommerce-purple-rgb:127,84,179;--studio-jetpack-green-0-rgb:240,242,235;--studio-jetpack-green-5-rgb:208,230,184;--studio-jetpack-green-10-rgb:157,217,119;--studio-jetpack-green-20-rgb:100,202,67;--studio-jetpack-green-30-rgb:47,180,31;--studio-jetpack-green-40-rgb:6,158,8;--studio-jetpack-green-50-rgb:0,135,16;--studio-jetpack-green-60-rgb:0,113,23;--studio-jetpack-green-70-rgb:0,91,24;--studio-jetpack-green-80-rgb:0,69,21;--studio-jetpack-green-90-rgb:0,48,16;--studio-jetpack-green-100-rgb:0,28,9;--studio-jetpack-green-rgb:6,158,8}.color-scheme.is-classic-bright.is-nav-unification,:root{--color-primary:var( --studio-blue-50 );--color-primary-rgb:var( --studio-blue-50-rgb );--color-primary-dark:var( --studio-blue-70 );--color-primary-dark-rgb:var( --studio-blue-70-rgb );--color-primary-light:var( --studio-blue-30 );--color-primary-light-rgb:var( --studio-blue-30-rgb );--color-primary-0:var( --studio-blue-0 );--color-primary-0-rgb:var( --studio-blue-0-rgb );--color-primary-5:var( --studio-blue-5 );--color-primary-5-rgb:var( --studio-blue-5-rgb );--color-primary-10:var( --studio-blue-10 );--color-primary-10-rgb:var( --studio-blue-10-rgb );--color-primary-20:var( --studio-blue-20 );--color-primary-20-rgb:var( --studio-blue-20-rgb );--color-primary-30:var( --studio-blue-30 );--color-primary-30-rgb:var( --studio-blue-30-rgb );--color-primary-40:var( --studio-blue-40 );--color-primary-40-rgb:var( --studio-blue-40-rgb );--color-primary-50:var( --studio-blue-50 );--color-primary-50-rgb:var( --studio-blue-50-rgb );--color-primary-60:var( --studio-blue-60 );--color-primary-60-rgb:var( --studio-blue-60-rgb );--color-primary-70:var( --studio-blue-70 );--color-primary-70-rgb:var( --studio-blue-70-rgb );--color-primary-80:var( --studio-blue-80 );--color-primary-80-rgb:var( --studio-blue-80-rgb );--color-primary-90:var( --studio-blue-90 );--color-primary-90-rgb:var( --studio-blue-90-rgb );--color-primary-100:var( --studio-blue-100 );--color-primary-100-rgb:var( --studio-blue-100-rgb );--color-accent:var( --studio-pink-50 );--color-accent-rgb:var( --studio-pink-50-rgb );--color-accent-dark:var( --studio-pink-70 );--color-accent-dark-rgb:var( --studio-pink-70-rgb );--color-accent-light:var( --studio-pink-30 );--color-accent-light-rgb:var( --studio-pink-30-rgb );--color-accent-0:var( --studio-pink-0 );--color-accent-0-rgb:var( --studio-pink-0-rgb );--color-accent-5:var( --studio-pink-5 );--color-accent-5-rgb:var( --studio-pink-5-rgb );--color-accent-10:var( --studio-pink-10 );--color-accent-10-rgb:var( --studio-pink-10-rgb );--color-accent-20:var( --studio-pink-20 );--color-accent-20-rgb:var( --studio-pink-20-rgb );--color-accent-30:var( --studio-pink-30 );--color-accent-30-rgb:var( --studio-pink-30-rgb );--color-accent-40:var( --studio-pink-40 );--color-accent-40-rgb:var( --studio-pink-40-rgb );--color-accent-50:var( --studio-pink-50 );--color-accent-50-rgb:var( --studio-pink-50-rgb );--color-accent-60:var( --studio-pink-60 );--color-accent-60-rgb:var( --studio-pink-60-rgb );--color-accent-70:var( --studio-pink-70 );--color-accent-70-rgb:var( --studio-pink-70-rgb );--color-accent-80:var( --studio-pink-80 );--color-accent-80-rgb:var( --studio-pink-80-rgb );--color-accent-90:var( --studio-pink-90 );--color-accent-90-rgb:var( --studio-pink-90-rgb );--color-accent-100:var( --studio-pink-100 );--color-accent-100-rgb:var( --studio-pink-100-rgb );--color-neutral:var( --studio-gray-50 );--color-neutral-rgb:var( --studio-gray-50-rgb );--color-neutral-dark:var( --studio-gray-70 );--color-neutral-dark-rgb:var( --studio-gray-70-rgb );--color-neutral-light:var( --studio-gray-30 );--color-neutral-light-rgb:var( --studio-gray-30-rgb );--color-neutral-0:var( --studio-gray-0 );--color-neutral-0-rgb:var( --studio-gray-0-rgb );--color-neutral-5:var( --studio-gray-5 );--color-neutral-5-rgb:var( --studio-gray-5-rgb );--color-neutral-10:var( --studio-gray-10 );--color-neutral-10-rgb:var( --studio-gray-10-rgb );--color-neutral-20:var( --studio-gray-20 );--color-neutral-20-rgb:var( --studio-gray-20-rgb );--color-neutral-30:var( --studio-gray-30 );--color-neutral-30-rgb:var( --studio-gray-30-rgb );--color-neutral-40:var( --studio-gray-40 );--color-neutral-40-rgb:var( --studio-gray-40-rgb );--color-neutral-50:var( --studio-gray-50 );--color-neutral-50-rgb:var( --studio-gray-50-rgb );--color-neutral-60:var( --studio-gray-60 );--color-neutral-60-rgb:var( --studio-gray-60-rgb );--color-neutral-70:var( --studio-gray-70 );--color-neutral-70-rgb:var( --studio-gray-70-rgb );--color-neutral-80:var( --studio-gray-80 );--color-neutral-80-rgb:var( --studio-gray-80-rgb );--color-neutral-90:var( --studio-gray-90 );--color-neutral-90-rgb:var( --studio-gray-90-rgb );--color-neutral-100:var( --studio-gray-100 );--color-neutral-100-rgb:var( --studio-gray-100-rgb );--color-success:var( --studio-green-50 );--color-success-rgb:var( --studio-green-50-rgb );--color-success-dark:var( --studio-green-70 );--color-success-dark-rgb:var( --studio-green-70-rgb );--color-success-light:var( --studio-green-30 );--color-success-light-rgb:var( --studio-green-30-rgb );--color-success-0:var( --studio-green-0 );--color-success-0-rgb:var( --studio-green-0-rgb );--color-success-5:var( --studio-green-5 );--color-success-5-rgb:var( --studio-green-5-rgb );--color-success-10:var( --studio-green-10 );--color-success-10-rgb:var( --studio-green-10-rgb );--color-success-20:var( --studio-green-20 );--color-success-20-rgb:var( --studio-green-20-rgb );--color-success-30:var( --studio-green-30 );--color-success-30-rgb:var( --studio-green-30-rgb );--color-success-40:var( --studio-green-40 );--color-success-40-rgb:var( --studio-green-40-rgb );--color-success-50:var( --studio-green-50 );--color-success-50-rgb:var( --studio-green-50-rgb );--color-success-60:var( --studio-green-60 );--color-success-60-rgb:var( --studio-green-60-rgb );--color-success-70:var( --studio-green-70 );--color-success-70-rgb:var( --studio-green-70-rgb );--color-success-80:var( --studio-green-80 );--color-success-80-rgb:var( --studio-green-80-rgb );--color-success-90:var( --studio-green-90 );--color-success-90-rgb:var( --studio-green-90-rgb );--color-success-100:var( --studio-green-100 );--color-success-100-rgb:var( --studio-green-100-rgb );--color-warning:var( --studio-yellow-50 );--color-warning-rgb:var( --studio-yellow-50-rgb );--color-warning-dark:var( --studio-yellow-70 );--color-warning-dark-rgb:var( --studio-yellow-70-rgb );--color-warning-light:var( --studio-yellow-30 );--color-warning-light-rgb:var( --studio-yellow-30-rgb );--color-warning-0:var( --studio-yellow-0 );--color-warning-0-rgb:var( --studio-yellow-0-rgb );--color-warning-5:var( --studio-yellow-5 );--color-warning-5-rgb:var( --studio-yellow-5-rgb );--color-warning-10:var( --studio-yellow-10 );--color-warning-10-rgb:var( --studio-yellow-10-rgb );--color-warning-20:var( --studio-yellow-20 );--color-warning-20-rgb:var( --studio-yellow-20-rgb );--color-warning-30:var( --studio-yellow-30 );--color-warning-30-rgb:var( --studio-yellow-30-rgb );--color-warning-40:var( --studio-yellow-40 );--color-warning-40-rgb:var( --studio-yellow-40-rgb );--color-warning-50:var( --studio-yellow-50 );--color-warning-50-rgb:var( --studio-yellow-50-rgb );--color-warning-60:var( --studio-yellow-60 );--color-warning-60-rgb:var( --studio-yellow-60-rgb );--color-warning-70:var( --studio-yellow-70 );--color-warning-70-rgb:var( --studio-yellow-70-rgb );--color-warning-80:var( --studio-yellow-80 );--color-warning-80-rgb:var( --studio-yellow-80-rgb );--color-warning-90:var( --studio-yellow-90 );--color-warning-90-rgb:var( --studio-yellow-90-rgb );--color-warning-100:var( --studio-yellow-100 );--color-warning-100-rgb:var( --studio-yellow-100-rgb );--color-error:var( --studio-red-50 );--color-error-rgb:var( --studio-red-50-rgb );--color-error-dark:var( --studio-red-70 );--color-error-dark-rgb:var( --studio-red-70-rgb );--color-error-light:var( --studio-red-30 );--color-error-light-rgb:var( --studio-red-30-rgb );--color-error-0:var( --studio-red-0 );--color-error-0-rgb:var( --studio-red-0-rgb );--color-error-5:var( --studio-red-5 );--color-error-5-rgb:var( --studio-red-5-rgb );--color-error-10:var( --studio-red-10 );--color-error-10-rgb:var( --studio-red-10-rgb );--color-error-20:var( --studio-red-20 );--color-error-20-rgb:var( --studio-red-20-rgb );--color-error-30:var( --studio-red-30 );--color-error-30-rgb:var( --studio-red-30-rgb );--color-error-40:var( --studio-red-40 );--color-error-40-rgb:var( --studio-red-40-rgb );--color-error-50:var( --studio-red-50 );--color-error-50-rgb:var( --studio-red-50-rgb );--color-error-60:var( --studio-red-60 );--color-error-60-rgb:var( --studio-red-60-rgb );--color-error-70:var( --studio-red-70 );--color-error-70-rgb:var( --studio-red-70-rgb );--color-error-80:var( --studio-red-80 );--color-error-80-rgb:var( --studio-red-80-rgb );--color-error-90:var( --studio-red-90 );--color-error-90-rgb:var( --studio-red-90-rgb );--color-error-100:var( --studio-red-100 );--color-error-100-rgb:var( --studio-red-100-rgb );--color-surface:var( --studio-white );--color-surface-rgb:var( --studio-white-rgb );--color-surface-backdrop:var( --studio-gray-0 );--color-surface-backdrop-rgb:var( --studio-gray-0-rgb );--color-text:var( --studio-gray-80 );--color-text-rgb:var( --studio-gray-80-rgb );--color-text-subtle:var( --studio-gray-50 );--color-text-subtle-rgb:var( --studio-gray-50-rgb );--color-text-inverted:var( --studio-white );--color-text-inverted-rgb:var( --studio-white-rgb );--color-border:var( --color-neutral-20 );--color-border-rgb:var( --color-neutral-20-rgb );--color-border-subtle:var( --color-neutral-5 );--color-border-subtle-rgb:var( --color-neutral-5-rgb );--color-border-shadow:var( --color-neutral-0 );--color-border-shadow-rgb:var( --color-neutral-0-rgb );--color-border-inverted:var( --studio-white );--color-border-inverted-rgb:var( --studio-white-rgb );--color-link:var( --studio-blue-50 );--color-link-rgb:var( --studio-blue-50-rgb );--color-link-dark:var( --studio-blue-70 );--color-link-dark-rgb:var( --studio-blue-70-rgb );--color-link-light:var( --studio-blue-30 );--color-link-light-rgb:var( --studio-blue-30-rgb );--color-link-0:var( --studio-blue-0 );--color-link-0-rgb:var( --studio-blue-0-rgb );--color-link-5:var( --studio-blue-5 );--color-link-5-rgb:var( --studio-blue-5-rgb );--color-link-10:var( --studio-blue-10 );--color-link-10-rgb:var( --studio-blue-10-rgb );--color-link-20:var( --studio-blue-20 );--color-link-20-rgb:var( --studio-blue-20-rgb );--color-link-30:var( --studio-blue-30 );--color-link-30-rgb:var( --studio-blue-30-rgb );--color-link-40:var( --studio-blue-40 );--color-link-40-rgb:var( --studio-blue-40-rgb );--color-link-50:var( --studio-blue-50 );--color-link-50-rgb:var( --studio-blue-50-rgb );--color-link-60:var( --studio-blue-60 );--color-link-60-rgb:var( --studio-blue-60-rgb );--color-link-70:var( --studio-blue-70 );--color-link-70-rgb:var( --studio-blue-70-rgb );--color-link-80:var( --studio-blue-80 );--color-link-80-rgb:var( --studio-blue-80-rgb );--color-link-90:var( --studio-blue-90 );--color-link-90-rgb:var( --studio-blue-90-rgb );--color-link-100:var( --studio-blue-100 );--color-link-100-rgb:var( --studio-blue-100-rgb );--color-plan-free:var( --studio-gray-30 );--color-plan-blogger:var( --studio-celadon-30 );--color-plan-personal:var( --studio-blue-30 );--color-plan-premium:var( --studio-yellow-30 );--color-plan-business:var( --studio-orange-30 );--color-plan-ecommerce:var( --studio-purple-30 );--color-premium-domain:var( --studio-wordpress-blue-60 );--color-jetpack-plan-free:var( --studio-blue-30 );--color-jetpack-plan-personal:var( --studio-yellow-30 );--color-jetpack-plan-premium:var( --studio-jetpack-green-30 );--color-jetpack-plan-professional:var( --studio-purple-30 );--color-masterbar-background:var( --studio-blue-60 );--color-masterbar-border:var( --studio-blue-70 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-blue-70 );--color-masterbar-item-active-background:var( --studio-blue-90 );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-40 );--color-masterbar-unread-dot-background:var( --color-accent-20 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-jetpack-masterbar-background:var( --studio-white );--color-jetpack-masterbar-border:var( --studio-gray-5 );--color-jetpack-masterbar-text:var( --studio-gray-50 );--color-jetpack-masterbar-item-hover-background:var( --studio-gray-5 );--color-jetpack-masterbar-item-active-background:var( --studio-gray-20 );--color-sidebar-background:var( --color-surface );--color-sidebar-background-rgb:var( --studio-white-rgb );--color-sidebar-border:var( --studio-gray-5 );--color-sidebar-text:var( --studio-gray-80 );--color-sidebar-text-rgb:var( --studio-gray-80-rgb );--color-sidebar-text-alternative:var( --studio-gray-50 );--color-sidebar-gridicon-fill:var( --studio-gray-50 );--color-sidebar-menu-selected-background:var( --studio-blue-5 );--color-sidebar-menu-selected-background-rgb:var( --studio-blue-5-rgb );--color-sidebar-menu-selected-text:var( --studio-blue-70 );--color-sidebar-menu-selected-text-rgb:var( --studio-blue-70-rgb );--color-sidebar-menu-hover-background:var( --studio-gray-5 );--color-sidebar-menu-hover-background-rgb:var( --studio-gray-5-rgb );--color-sidebar-menu-hover-text:var( --studio-gray-90 );--color-jetpack-onboarding-text:var( --studio-white );--color-jetpack-onboarding-text-rgb:var( --studio-white-rgb );--color-jetpack-onboarding-background:var( --studio-blue-100 );--color-jetpack-onboarding-background-rgb:var( --studio-blue-100-rgb );--color-automattic:var( --studio-blue-40 );--color-jetpack:var( --studio-jetpack-green );--color-simplenote:var( --studio-simplenote-blue );--color-woocommerce:var( --studio-woocommerce-purple );--color-wordpress-com:var( --studio-wordpress-blue );--color-wordpress-org:#585c60;--color-blogger:#ff5722;--color-eventbrite:#ff8000;--color-facebook:#39579a;--color-godaddy:#5ea95a;--color-google-plus:#df4a32;--color-instagram:#d93174;--color-linkedin:#0976b4;--color-medium:#12100e;--color-pinterest:#cc2127;--color-pocket:#ee4256;--color-print:#f8f8f8;--color-reddit:#5f99cf;--color-skype:#00aff0;--color-stumbleupon:#eb4924;--color-substack:#ff6719;--color-squarespace:#222;--color-telegram:#08c;--color-tumblr:#35465c;--color-twitter:#55acee;--color-whatsapp:#43d854;--color-wix:#faad4d;--color-email:var( --studio-gray-0 );--color-podcasting:#9b4dd5;--color-wp-admin-button-background:#008ec2;--color-wp-admin-button-border:#006799;--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#23282d;--theme-base-color-rgb:35,40,45;--theme-submenu-background-color:#131619;--theme-icon-color:#e1eaf2;--theme-highlight-color:#0073aa;--theme-highlight-color-rgb:0,115,170;--theme-notification-color:#d54e21;--color-sidebar-submenu-background:var( --studio-blue-0 );--color-sidebar-submenu-text:var( --studio-blue-70 );--color-sidebar-submenu-hover-text:var( --color-accent );--color-sidebar-submenu-selected-text:var( --color-accent )}.color-scheme.is-aquatic,.color-scheme.is-aquatic.is-nav-unification{--color-primary:var( --studio-blue-50 );--color-primary-rgb:var( --studio-blue-50-rgb );--color-primary-dark:var( --studio-blue-70 );--color-primary-dark-rgb:var( --studio-blue-70-rgb );--color-primary-light:var( --studio-blue-30 );--color-primary-light-rgb:var( --studio-blue-30-rgb );--color-primary-0:var( --studio-blue-0 );--color-primary-0-rgb:var( --studio-blue-0-rgb );--color-primary-5:var( --studio-blue-5 );--color-primary-5-rgb:var( --studio-blue-5-rgb );--color-primary-10:var( --studio-blue-10 );--color-primary-10-rgb:var( --studio-blue-10-rgb );--color-primary-20:var( --studio-blue-20 );--color-primary-20-rgb:var( --studio-blue-20-rgb );--color-primary-30:var( --studio-blue-30 );--color-primary-30-rgb:var( --studio-blue-30-rgb );--color-primary-40:var( --studio-blue-40 );--color-primary-40-rgb:var( --studio-blue-40-rgb );--color-primary-50:var( --studio-blue-50 );--color-primary-50-rgb:var( --studio-blue-50-rgb );--color-primary-60:var( --studio-blue-60 );--color-primary-60-rgb:var( --studio-blue-60-rgb );--color-primary-70:var( --studio-blue-70 );--color-primary-70-rgb:var( --studio-blue-70-rgb );--color-primary-80:var( --studio-blue-80 );--color-primary-80-rgb:var( --studio-blue-80-rgb );--color-primary-90:var( --studio-blue-90 );--color-primary-90-rgb:var( --studio-blue-90-rgb );--color-primary-100:var( --studio-blue-100 );--color-primary-100-rgb:var( --studio-blue-100-rgb );--color-accent:var( --studio-celadon-50 );--color-accent-rgb:var( --studio-celadon-50-rgb );--color-accent-dark:var( --studio-celadon-70 );--color-accent-dark-rgb:var( --studio-celadon-70-rgb );--color-accent-light:var( --studio-celadon-30 );--color-accent-light-rgb:var( --studio-celadon-30-rgb );--color-accent-0:var( --studio-celadon-0 );--color-accent-0-rgb:var( --studio-celadon-0-rgb );--color-accent-5:var( --studio-celadon-5 );--color-accent-5-rgb:var( --studio-celadon-5-rgb );--color-accent-10:var( --studio-celadon-10 );--color-accent-10-rgb:var( --studio-celadon-10-rgb );--color-accent-20:var( --studio-celadon-20 );--color-accent-20-rgb:var( --studio-celadon-20-rgb );--color-accent-30:var( --studio-celadon-30 );--color-accent-30-rgb:var( --studio-celadon-30-rgb );--color-accent-40:var( --studio-celadon-40 );--color-accent-40-rgb:var( --studio-celadon-40-rgb );--color-accent-50:var( --studio-celadon-50 );--color-accent-50-rgb:var( --studio-celadon-50-rgb );--color-accent-60:var( --studio-celadon-60 );--color-accent-60-rgb:var( --studio-celadon-60-rgb );--color-accent-70:var( --studio-celadon-70 );--color-accent-70-rgb:var( --studio-celadon-70-rgb );--color-accent-80:var( --studio-celadon-80 );--color-accent-80-rgb:var( --studio-celadon-80-rgb );--color-accent-90:var( --studio-celadon-90 );--color-accent-90-rgb:var( --studio-celadon-90-rgb );--color-accent-100:var( --studio-celadon-100 );--color-accent-100-rgb:var( --studio-celadon-100-rgb );--color-link:var( --studio-celadon-50 );--color-link-rgb:var( --studio-celadon-50-rgb );--color-link-dark:var( --studio-celadon-70 );--color-link-dark-rgb:var( --studio-celadon-70-rgb );--color-link-light:var( --studio-celadon-30 );--color-link-light-rgb:var( --studio-celadon-30-rgb );--color-link-0:var( --studio-celadon-0 );--color-link-0-rgb:var( --studio-celadon-0-rgb );--color-link-5:var( --studio-celadon-5 );--color-link-5-rgb:var( --studio-celadon-5-rgb );--color-link-10:var( --studio-celadon-10 );--color-link-10-rgb:var( --studio-celadon-10-rgb );--color-link-20:var( --studio-celadon-20 );--color-link-20-rgb:var( --studio-celadon-20-rgb );--color-link-30:var( --studio-celadon-30 );--color-link-30-rgb:var( --studio-celadon-30-rgb );--color-link-40:var( --studio-celadon-40 );--color-link-40-rgb:var( --studio-celadon-40-rgb );--color-link-50:var( --studio-celadon-50 );--color-link-50-rgb:var( --studio-celadon-50-rgb );--color-link-60:var( --studio-celadon-60 );--color-link-60-rgb:var( --studio-celadon-60-rgb );--color-link-70:var( --studio-celadon-70 );--color-link-70-rgb:var( --studio-celadon-70-rgb );--color-link-80:var( --studio-celadon-80 );--color-link-80-rgb:var( --studio-celadon-80-rgb );--color-link-90:var( --studio-celadon-90 );--color-link-90-rgb:var( --studio-celadon-90-rgb );--color-link-100:var( --studio-celadon-100 );--color-link-100-rgb:var( --studio-celadon-100-rgb );--color-masterbar-background:var( --studio-blue-80 );--color-masterbar-border:var( --studio-blue-80 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-blue-90 );--color-masterbar-item-active-background:var( --studio-blue-100 );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-unread-dot-background:var( --color-accent-30 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --studio-blue-60 );--color-sidebar-background-rgb:var( --studio-blue-60-rgb );--color-sidebar-border:var( --studio-blue-70 );--color-sidebar-text:var( --studio-white );--color-sidebar-text-rgb:var( --studio-white-rgb );--color-sidebar-text-alternative:var( --studio-blue-5 );--color-sidebar-gridicon-fill:var( --studio-blue-5 );--color-sidebar-menu-selected-background:var( --studio-yellow-20 );--color-sidebar-menu-selected-background-rgb:var( --studio-yellow-20-rgb );--color-sidebar-menu-selected-text:var( --studio-blue-90 );--color-sidebar-menu-selected-text-rgb:var( --studio-blue-90-rgb );--color-sidebar-menu-hover-background:var( --studio-blue-50 );--color-sidebar-menu-hover-background-rgb:var( --studio-blue-50-rgb );--color-sidebar-menu-hover-text:var( --studio-white );--color-sidebar-submenu-background:var( --studio-blue-80 );--color-sidebar-submenu-text:var( --studio-white );--color-sidebar-submenu-hover-text:var( --studio-yellow-20 )}.color-scheme.is-blue,.color-scheme.is-blue.is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#52accc;--theme-base-color-rgb:82,172,204;--theme-submenu-text-color:#cbe6f0;--theme-submenu-background-color:#4796b3;--theme-icon-color:#e5f8ff;--theme-highlight-color:#096484;--theme-highlight-color-rgb:9,100,132;--theme-notification-color:#e1a948;--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --studio-blue-70 );--color-primary-dark-rgb:var( --studio-blue-70-rgb );--color-primary-light:var( --studio-blue-30 );--color-primary-light-rgb:var( --studio-blue-30-rgb );--color-primary-0:var( --studio-blue-0 );--color-primary-0-rgb:var( --studio-blue-0-rgb );--color-primary-5:var( --studio-blue-5 );--color-primary-5-rgb:var( --studio-blue-5-rgb );--color-primary-10:var( --studio-blue-10 );--color-primary-10-rgb:var( --studio-blue-10-rgb );--color-primary-20:var( --studio-blue-20 );--color-primary-20-rgb:var( --studio-blue-20-rgb );--color-primary-30:var( --studio-blue-30 );--color-primary-30-rgb:var( --studio-blue-30-rgb );--color-primary-40:var( --studio-blue-40 );--color-primary-40-rgb:var( --studio-blue-40-rgb );--color-primary-50:var( --studio-blue-50 );--color-primary-50-rgb:var( --studio-blue-50-rgb );--color-primary-60:var( --studio-blue-60 );--color-primary-60-rgb:var( --studio-blue-60-rgb );--color-primary-70:var( --studio-blue-70 );--color-primary-70-rgb:var( --studio-blue-70-rgb );--color-primary-80:var( --studio-blue-80 );--color-primary-80-rgb:var( --studio-blue-80-rgb );--color-primary-90:var( --studio-blue-90 );--color-primary-90-rgb:var( --studio-blue-90-rgb );--color-primary-100:var( --studio-blue-100 );--color-primary-100-rgb:var( --studio-blue-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --studio-blue-70 );--color-accent-dark-rgb:var( --studio-blue-70-rgb );--color-accent-light:var( --studio-blue-30 );--color-accent-light-rgb:var( --studio-blue-30-rgb );--color-accent-0:var( --studio-blue-0 );--color-accent-0-rgb:var( --studio-blue-0-rgb );--color-accent-5:var( --studio-blue-5 );--color-accent-5-rgb:var( --studio-blue-5-rgb );--color-accent-10:var( --studio-blue-10 );--color-accent-10-rgb:var( --studio-blue-10-rgb );--color-accent-20:var( --studio-blue-20 );--color-accent-20-rgb:var( --studio-blue-20-rgb );--color-accent-30:var( --studio-blue-30 );--color-accent-30-rgb:var( --studio-blue-30-rgb );--color-accent-40:var( --studio-blue-40 );--color-accent-40-rgb:var( --studio-blue-40-rgb );--color-accent-50:var( --studio-blue-50 );--color-accent-50-rgb:var( --studio-blue-50-rgb );--color-accent-60:var( --studio-blue-60 );--color-accent-60-rgb:var( --studio-blue-60-rgb );--color-accent-70:var( --studio-blue-70 );--color-accent-70-rgb:var( --studio-blue-70-rgb );--color-accent-80:var( --studio-blue-80 );--color-accent-80-rgb:var( --studio-blue-80-rgb );--color-accent-90:var( --studio-blue-90 );--color-accent-90-rgb:var( --studio-blue-90-rgb );--color-accent-100:var( --studio-blue-100 );--color-accent-100-rgb:var( --studio-blue-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-white );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:#e2ecf1;--color-sidebar-gridicon-fill:var( --theme-icon-color );--color-sidebar-menu-selected-background:var( --theme-highlight-color );--color-sidebar-menu-selected-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-selected-text:var( --theme-text-color );--color-sidebar-menu-selected-text-rgb:var( --theme-text-color-rgb );--color-sidebar-menu-hover-background:var( --theme-highlight-color );--color-sidebar-menu-hover-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-hover-text:var( --theme-text-color );--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var( --theme-text-color )}.color-scheme.is-classic-blue,.color-scheme.is-classic-blue.is-nav-unification{--color-primary:var( --studio-blue-50 );--color-primary-rgb:var( --studio-blue-50-rgb );--color-primary-dark:var( --studio-blue-70 );--color-primary-dark-rgb:var( --studio-blue-70-rgb );--color-primary-light:var( --studio-blue-30 );--color-primary-light-rgb:var( --studio-blue-30-rgb );--color-primary-0:var( --studio-blue-0 );--color-primary-0-rgb:var( --studio-blue-0-rgb );--color-primary-5:var( --studio-blue-5 );--color-primary-5-rgb:var( --studio-blue-5-rgb );--color-primary-10:var( --studio-blue-10 );--color-primary-10-rgb:var( --studio-blue-10-rgb );--color-primary-20:var( --studio-blue-20 );--color-primary-20-rgb:var( --studio-blue-20-rgb );--color-primary-30:var( --studio-blue-30 );--color-primary-30-rgb:var( --studio-blue-30-rgb );--color-primary-40:var( --studio-blue-40 );--color-primary-40-rgb:var( --studio-blue-40-rgb );--color-primary-50:var( --studio-blue-50 );--color-primary-50-rgb:var( --studio-blue-50-rgb );--color-primary-60:var( --studio-blue-60 );--color-primary-60-rgb:var( --studio-blue-60-rgb );--color-primary-70:var( --studio-blue-70 );--color-primary-70-rgb:var( --studio-blue-70-rgb );--color-primary-80:var( --studio-blue-80 );--color-primary-80-rgb:var( --studio-blue-80-rgb );--color-primary-90:var( --studio-blue-90 );--color-primary-90-rgb:var( --studio-blue-90-rgb );--color-primary-100:var( --studio-blue-100 );--color-primary-100-rgb:var( --studio-blue-100-rgb );--color-accent:var( --studio-orange-50 );--color-accent-rgb:var( --studio-orange-50-rgb );--color-accent-dark:var( --studio-orange-70 );--color-accent-dark-rgb:var( --studio-orange-70-rgb );--color-accent-light:var( --studio-orange-30 );--color-accent-light-rgb:var( --studio-orange-30-rgb );--color-accent-0:var( --studio-orange-0 );--color-accent-0-rgb:var( --studio-orange-0-rgb );--color-accent-5:var( --studio-orange-5 );--color-accent-5-rgb:var( --studio-orange-5-rgb );--color-accent-10:var( --studio-orange-10 );--color-accent-10-rgb:var( --studio-orange-10-rgb );--color-accent-20:var( --studio-orange-20 );--color-accent-20-rgb:var( --studio-orange-20-rgb );--color-accent-30:var( --studio-orange-30 );--color-accent-30-rgb:var( --studio-orange-30-rgb );--color-accent-40:var( --studio-orange-40 );--color-accent-40-rgb:var( --studio-orange-40-rgb );--color-accent-50:var( --studio-orange-50 );--color-accent-50-rgb:var( --studio-orange-50-rgb );--color-accent-60:var( --studio-orange-60 );--color-accent-60-rgb:var( --studio-orange-60-rgb );--color-accent-70:var( --studio-orange-70 );--color-accent-70-rgb:var( --studio-orange-70-rgb );--color-accent-80:var( --studio-orange-80 );--color-accent-80-rgb:var( --studio-orange-80-rgb );--color-accent-90:var( --studio-orange-90 );--color-accent-90-rgb:var( --studio-orange-90-rgb );--color-accent-100:var( --studio-orange-100 );--color-accent-100-rgb:var( --studio-orange-100-rgb );--color-masterbar-background:var( --studio-blue-60 );--color-masterbar-border:var( --studio-blue-70 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-blue-70 );--color-masterbar-item-active-background:var( --studio-blue-90 );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-40 );--color-masterbar-unread-dot-background:var( --color-accent-30 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --studio-gray-5 );--color-sidebar-background-rgb:var( --studio-gray-5-rgb );--color-sidebar-border:var( --studio-gray-10 );--color-sidebar-text:var( --studio-gray-80 );--color-sidebar-text-alternative:var( --studio-gray-50 );--color-sidebar-gridicon-fill:var( --studio-gray-50 );--color-sidebar-menu-selected-background:var( --studio-gray-60 );--color-sidebar-menu-selected-background-rgb:var( --studio-gray-60-rgb );--color-sidebar-menu-selected-text:var( --studio-white );--color-sidebar-menu-selected-text-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-background:var( --color-surface );--color-sidebar-menu-hover-background-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-text:var( --studio-blue-50 );--color-sidebar-submenu-background:var( --studio-blue-60 );--color-sidebar-submenu-text:var( --studio-white );--color-sidebar-submenu-hover-text:var( --studio-orange-30 )}.color-scheme.is-classic-dark,.color-scheme.is-classic-dark.is-nav-unification{--color-primary:var( --studio-gray-90 );--color-primary-rgb:var( --studio-gray-90-rgb );--color-primary-dark:var( --studio-gray-70 );--color-primary-dark-rgb:var( --studio-gray-70-rgb );--color-primary-light:var( --studio-gray-30 );--color-primary-light-rgb:var( --studio-gray-30-rgb );--color-primary-0:var( --studio-gray-0 );--color-primary-0-rgb:var( --studio-gray-0-rgb );--color-primary-5:var( --studio-gray-5 );--color-primary-5-rgb:var( --studio-gray-5-rgb );--color-primary-10:var( --studio-gray-10 );--color-primary-10-rgb:var( --studio-gray-10-rgb );--color-primary-20:var( --studio-gray-20 );--color-primary-20-rgb:var( --studio-gray-20-rgb );--color-primary-30:var( --studio-gray-30 );--color-primary-30-rgb:var( --studio-gray-30-rgb );--color-primary-40:var( --studio-gray-40 );--color-primary-40-rgb:var( --studio-gray-40-rgb );--color-primary-50:var( --studio-gray-50 );--color-primary-50-rgb:var( --studio-gray-50-rgb );--color-primary-60:var( --studio-gray-60 );--color-primary-60-rgb:var( --studio-gray-60-rgb );--color-primary-70:var( --studio-gray-70 );--color-primary-70-rgb:var( --studio-gray-70-rgb );--color-primary-80:var( --studio-gray-80 );--color-primary-80-rgb:var( --studio-gray-80-rgb );--color-primary-90:var( --studio-gray-90 );--color-primary-90-rgb:var( --studio-gray-90-rgb );--color-primary-100:var( --studio-gray-100 );--color-primary-100-rgb:var( --studio-gray-100-rgb );--color-accent:var( --studio-pink-50 );--color-accent-rgb:var( --studio-pink-50-rgb );--color-accent-dark:var( --studio-pink-70 );--color-accent-dark-rgb:var( --studio-pink-70-rgb );--color-accent-light:var( --studio-pink-30 );--color-accent-light-rgb:var( --studio-pink-30-rgb );--color-accent-0:var( --studio-pink-0 );--color-accent-0-rgb:var( --studio-pink-0-rgb );--color-accent-5:var( --studio-pink-5 );--color-accent-5-rgb:var( --studio-pink-5-rgb );--color-accent-10:var( --studio-pink-10 );--color-accent-10-rgb:var( --studio-pink-10-rgb );--color-accent-20:var( --studio-pink-20 );--color-accent-20-rgb:var( --studio-pink-20-rgb );--color-accent-30:var( --studio-pink-30 );--color-accent-30-rgb:var( --studio-pink-30-rgb );--color-accent-40:var( --studio-pink-40 );--color-accent-40-rgb:var( --studio-pink-40-rgb );--color-accent-50:var( --studio-pink-50 );--color-accent-50-rgb:var( --studio-pink-50-rgb );--color-accent-60:var( --studio-pink-60 );--color-accent-60-rgb:var( --studio-pink-60-rgb );--color-accent-70:var( --studio-pink-70 );--color-accent-70-rgb:var( --studio-pink-70-rgb );--color-accent-80:var( --studio-pink-80 );--color-accent-80-rgb:var( --studio-pink-80-rgb );--color-accent-90:var( --studio-pink-90 );--color-accent-90-rgb:var( --studio-pink-90-rgb );--color-accent-100:var( --studio-pink-100 );--color-accent-100-rgb:var( --studio-pink-100-rgb );--color-neutral:var( --studio-gray-50 );--color-neutral-rgb:var( --studio-gray-50-rgb );--color-neutral-dark:var( --studio-gray-70 );--color-neutral-dark-rgb:var( --studio-gray-70-rgb );--color-neutral-light:var( --studio-gray-30 );--color-neutral-light-rgb:var( --studio-gray-30-rgb );--color-neutral-0:var( --studio-gray-0 );--color-neutral-0-rgb:var( --studio-gray-0-rgb );--color-neutral-5:var( --studio-gray-5 );--color-neutral-5-rgb:var( --studio-gray-5-rgb );--color-neutral-10:var( --studio-gray-10 );--color-neutral-10-rgb:var( --studio-gray-10-rgb );--color-neutral-20:var( --studio-gray-20 );--color-neutral-20-rgb:var( --studio-gray-20-rgb );--color-neutral-30:var( --studio-gray-30 );--color-neutral-30-rgb:var( --studio-gray-30-rgb );--color-neutral-40:var( --studio-gray-40 );--color-neutral-40-rgb:var( --studio-gray-40-rgb );--color-neutral-50:var( --studio-gray-50 );--color-neutral-50-rgb:var( --studio-gray-50-rgb );--color-neutral-60:var( --studio-gray-60 );--color-neutral-60-rgb:var( --studio-gray-60-rgb );--color-neutral-70:var( --studio-gray-70 );--color-neutral-70-rgb:var( --studio-gray-70-rgb );--color-neutral-80:var( --studio-gray-80 );--color-neutral-80-rgb:var( --studio-gray-80-rgb );--color-neutral-90:var( --studio-gray-90 );--color-neutral-90-rgb:var( --studio-gray-90-rgb );--color-neutral-100:var( --studio-gray-100 );--color-neutral-100-rgb:var( --studio-gray-100-rgb );--color-success:var( --studio-green-50 );--color-success-rgb:var( --studio-green-50-rgb );--color-success-dark:var( --studio-green-70 );--color-success-dark-rgb:var( --studio-green-70-rgb );--color-success-light:var( --studio-green-30 );--color-success-light-rgb:var( --studio-green-30-rgb );--color-success-0:var( --studio-green-0 );--color-success-0-rgb:var( --studio-green-0-rgb );--color-success-5:var( --studio-green-5 );--color-success-5-rgb:var( --studio-green-5-rgb );--color-success-10:var( --studio-green-10 );--color-success-10-rgb:var( --studio-green-10-rgb );--color-success-20:var( --studio-green-20 );--color-success-20-rgb:var( --studio-green-20-rgb );--color-success-30:var( --studio-green-30 );--color-success-30-rgb:var( --studio-green-30-rgb );--color-success-40:var( --studio-green-40 );--color-success-40-rgb:var( --studio-green-40-rgb );--color-success-50:var( --studio-green-50 );--color-success-50-rgb:var( --studio-green-50-rgb );--color-success-60:var( --studio-green-60 );--color-success-60-rgb:var( --studio-green-60-rgb );--color-success-70:var( --studio-green-70 );--color-success-70-rgb:var( --studio-green-70-rgb );--color-success-80:var( --studio-green-80 );--color-success-80-rgb:var( --studio-green-80-rgb );--color-success-90:var( --studio-green-90 );--color-success-90-rgb:var( --studio-green-90-rgb );--color-success-100:var( --studio-green-100 );--color-success-100-rgb:var( --studio-green-100-rgb );--color-warning:var( --studio-yellow-50 );--color-warning-rgb:var( --studio-yellow-50-rgb );--color-warning-dark:var( --studio-yellow-70 );--color-warning-dark-rgb:var( --studio-yellow-70-rgb );--color-warning-light:var( --studio-yellow-30 );--color-warning-light-rgb:var( --studio-yellow-30-rgb );--color-warning-0:var( --studio-yellow-0 );--color-warning-0-rgb:var( --studio-yellow-0-rgb );--color-warning-5:var( --studio-yellow-5 );--color-warning-5-rgb:var( --studio-yellow-5-rgb );--color-warning-10:var( --studio-yellow-10 );--color-warning-10-rgb:var( --studio-yellow-10-rgb );--color-warning-20:var( --studio-yellow-20 );--color-warning-20-rgb:var( --studio-yellow-20-rgb );--color-warning-30:var( --studio-yellow-30 );--color-warning-30-rgb:var( --studio-yellow-30-rgb );--color-warning-40:var( --studio-yellow-40 );--color-warning-40-rgb:var( --studio-yellow-40-rgb );--color-warning-50:var( --studio-yellow-50 );--color-warning-50-rgb:var( --studio-yellow-50-rgb );--color-warning-60:var( --studio-yellow-60 );--color-warning-60-rgb:var( --studio-yellow-60-rgb );--color-warning-70:var( --studio-yellow-70 );--color-warning-70-rgb:var( --studio-yellow-70-rgb );--color-warning-80:var( --studio-yellow-80 );--color-warning-80-rgb:var( --studio-yellow-80-rgb );--color-warning-90:var( --studio-yellow-90 );--color-warning-90-rgb:var( --studio-yellow-90-rgb );--color-warning-100:var( --studio-yellow-100 );--color-warning-100-rgb:var( --studio-yellow-100-rgb );--color-error:var( --studio-red-50 );--color-error-rgb:var( --studio-red-50-rgb );--color-error-dark:var( --studio-red-70 );--color-error-dark-rgb:var( --studio-red-70-rgb );--color-error-light:var( --studio-red-30 );--color-error-light-rgb:var( --studio-red-30-rgb );--color-error-0:var( --studio-red-0 );--color-error-0-rgb:var( --studio-red-0-rgb );--color-error-5:var( --studio-red-5 );--color-error-5-rgb:var( --studio-red-5-rgb );--color-error-10:var( --studio-red-10 );--color-error-10-rgb:var( --studio-red-10-rgb );--color-error-20:var( --studio-red-20 );--color-error-20-rgb:var( --studio-red-20-rgb );--color-error-30:var( --studio-red-30 );--color-error-30-rgb:var( --studio-red-30-rgb );--color-error-40:var( --studio-red-40 );--color-error-40-rgb:var( --studio-red-40-rgb );--color-error-50:var( --studio-red-50 );--color-error-50-rgb:var( --studio-red-50-rgb );--color-error-60:var( --studio-red-60 );--color-error-60-rgb:var( --studio-red-60-rgb );--color-error-70:var( --studio-red-70 );--color-error-70-rgb:var( --studio-red-70-rgb );--color-error-80:var( --studio-red-80 );--color-error-80-rgb:var( --studio-red-80-rgb );--color-error-90:var( --studio-red-90 );--color-error-90-rgb:var( --studio-red-90-rgb );--color-error-100:var( --studio-red-100 );--color-error-100-rgb:var( --studio-red-100-rgb );--color-surface:var( --studio-white );--color-surface-rgb:var( --studio-white-rgb );--color-surface-backdrop:var( --studio-gray-0 );--color-surface-backdrop-rgb:var( --studio-gray-0-rgb );--color-text:var( --studio-gray-80 );--color-text-rgb:var( --studio-gray-80-rgb );--color-text-subtle:var( --studio-gray-50 );--color-text-subtle-rgb:var( --studio-gray-50-rgb );--color-text-inverted:var( --studio-white );--color-text-inverted-rgb:var( --studio-white-rgb );--color-border:var( --color-neutral-20 );--color-border-rgb:var( --color-neutral-20-rgb );--color-border-subtle:var( --color-neutral-5 );--color-border-subtle-rgb:var( --color-neutral-5-rgb );--color-border-shadow:var( --color-neutral-0 );--color-border-shadow-rgb:var( --color-neutral-0-rgb );--color-border-inverted:var( --studio-white );--color-border-inverted-rgb:var( --studio-white-rgb );--color-link:var( --studio-blue-50 );--color-link-rgb:var( --studio-blue-50-rgb );--color-link-dark:var( --studio-blue-70 );--color-link-dark-rgb:var( --studio-blue-70-rgb );--color-link-light:var( --studio-blue-30 );--color-link-light-rgb:var( --studio-blue-30-rgb );--color-link-0:var( --studio-blue-0 );--color-link-0-rgb:var( --studio-blue-0-rgb );--color-link-5:var( --studio-blue-5 );--color-link-5-rgb:var( --studio-blue-5-rgb );--color-link-10:var( --studio-blue-10 );--color-link-10-rgb:var( --studio-blue-10-rgb );--color-link-20:var( --studio-blue-20 );--color-link-20-rgb:var( --studio-blue-20-rgb );--color-link-30:var( --studio-blue-30 );--color-link-30-rgb:var( --studio-blue-30-rgb );--color-link-40:var( --studio-blue-40 );--color-link-40-rgb:var( --studio-blue-40-rgb );--color-link-50:var( --studio-blue-50 );--color-link-50-rgb:var( --studio-blue-50-rgb );--color-link-60:var( --studio-blue-60 );--color-link-60-rgb:var( --studio-blue-60-rgb );--color-link-70:var( --studio-blue-70 );--color-link-70-rgb:var( --studio-blue-70-rgb );--color-link-80:var( --studio-blue-80 );--color-link-80-rgb:var( --studio-blue-80-rgb );--color-link-90:var( --studio-blue-90 );--color-link-90-rgb:var( --studio-blue-90-rgb );--color-link-100:var( --studio-blue-100 );--color-link-100-rgb:var( --studio-blue-100-rgb );--color-plan-free:var( --studio-gray-30 );--color-plan-blogger:var( --studio-celadon-30 );--color-plan-personal:var( --studio-blue-30 );--color-plan-premium:var( --studio-yellow-30 );--color-plan-business:var( --studio-orange-30 );--color-plan-ecommerce:var( --studio-purple-30 );--color-premium-domain:var( --studio-wordpress-blue-60 );--color-jetpack-plan-free:var( --studio-blue-30 );--color-jetpack-plan-personal:var( --studio-yellow-30 );--color-jetpack-plan-premium:var( --studio-jetpack-green-30 );--color-jetpack-plan-professional:var( --studio-purple-30 );--color-masterbar-background:#101517;--color-masterbar-border:#333;--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:#333;--color-masterbar-item-active-background:#23282d;--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-40 );--color-masterbar-unread-dot-background:var( --color-accent-20 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-jetpack-masterbar-background:var( --studio-white );--color-jetpack-masterbar-border:var( --studio-gray-5 );--color-jetpack-masterbar-text:var( --studio-gray-50 );--color-jetpack-masterbar-item-hover-background:var( --studio-gray-5 );--color-jetpack-masterbar-item-active-background:var( --studio-gray-20 );--color-sidebar-background:#23282d;--color-sidebar-background-rgb:35,40,45;--color-sidebar-border:#333;--color-sidebar-text:#eee;--color-sidebar-text-rgb:238,238,238;--color-sidebar-text-alternative:#a2aab2;--color-sidebar-gridicon-fill:#a2aab2;--color-sidebar-menu-selected-background:#0073aa;--color-sidebar-menu-selected-background-rgb:0,115,170;--color-sidebar-menu-selected-text:var( --studio-white );--color-sidebar-menu-selected-text-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-background:#1a1e23;--color-sidebar-menu-hover-background-rgb:26,30,35;--color-sidebar-menu-hover-text:#00b9eb;--color-jetpack-onboarding-text:var( --studio-white );--color-jetpack-onboarding-text-rgb:var( --studio-white-rgb );--color-jetpack-onboarding-background:var( --studio-blue-100 );--color-jetpack-onboarding-background-rgb:var( --studio-blue-100-rgb );--color-automattic:var( --studio-blue-40 );--color-jetpack:var( --studio-jetpack-green );--color-simplenote:var( --studio-simplenote-blue );--color-woocommerce:var( --studio-woocommerce-purple );--color-wordpress-com:var( --studio-wordpress-blue );--color-wordpress-org:#585c60;--color-blogger:#ff5722;--color-eventbrite:#ff8000;--color-facebook:#39579a;--color-godaddy:#5ea95a;--color-google-plus:#df4a32;--color-instagram:#d93174;--color-linkedin:#0976b4;--color-medium:#12100e;--color-pinterest:#cc2127;--color-pocket:#ee4256;--color-print:#f8f8f8;--color-reddit:#5f99cf;--color-skype:#00aff0;--color-stumbleupon:#eb4924;--color-substack:#ff6719;--color-squarespace:#222;--color-telegram:#08c;--color-tumblr:#35465c;--color-twitter:#55acee;--color-whatsapp:#43d854;--color-wix:#faad4d;--color-email:var( --studio-gray-0 );--color-podcasting:#9b4dd5;--color-wp-admin-button-background:#008ec2;--color-wp-admin-button-border:#006799;--color-sidebar-submenu-background:#32373c;--color-sidebar-submenu-text:#b4b9be;--color-sidebar-submenu-hover-text:#00b9eb;--color-sidebar-submenu-selected-text:var( --studio-white )}.color-scheme.is-coffee,.color-scheme.is-coffee.is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#59524c;--theme-base-color-rgb:89,82,76;--theme-submenu-text-color:#cdcbc9;--theme-submenu-background-color:#46403c;--theme-icon-color:#ece6f6;--theme-highlight-color:#c7a589;--theme-highlight-color-rgb:199,165,137;--theme-notification-color:#9ea476;--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --studio-orange-70 );--color-primary-dark-rgb:var( --studio-orange-70-rgb );--color-primary-light:var( --studio-orange-30 );--color-primary-light-rgb:var( --studio-orange-30-rgb );--color-primary-0:var( --studio-orange-0 );--color-primary-0-rgb:var( --studio-orange-0-rgb );--color-primary-5:var( --studio-orange-5 );--color-primary-5-rgb:var( --studio-orange-5-rgb );--color-primary-10:var( --studio-orange-10 );--color-primary-10-rgb:var( --studio-orange-10-rgb );--color-primary-20:var( --studio-orange-20 );--color-primary-20-rgb:var( --studio-orange-20-rgb );--color-primary-30:var( --studio-orange-30 );--color-primary-30-rgb:var( --studio-orange-30-rgb );--color-primary-40:var( --studio-orange-40 );--color-primary-40-rgb:var( --studio-orange-40-rgb );--color-primary-50:var( --studio-orange-50 );--color-primary-50-rgb:var( --studio-orange-50-rgb );--color-primary-60:var( --studio-orange-60 );--color-primary-60-rgb:var( --studio-orange-60-rgb );--color-primary-70:var( --studio-orange-70 );--color-primary-70-rgb:var( --studio-orange-70-rgb );--color-primary-80:var( --studio-orange-80 );--color-primary-80-rgb:var( --studio-orange-80-rgb );--color-primary-90:var( --studio-orange-90 );--color-primary-90-rgb:var( --studio-orange-90-rgb );--color-primary-100:var( --studio-orange-100 );--color-primary-100-rgb:var( --studio-orange-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --studio-orange-70 );--color-accent-dark-rgb:var( --studio-orange-70-rgb );--color-accent-light:var( --studio-orange-30 );--color-accent-light-rgb:var( --studio-orange-30-rgb );--color-accent-0:var( --studio-orange-0 );--color-accent-0-rgb:var( --studio-orange-0-rgb );--color-accent-5:var( --studio-orange-5 );--color-accent-5-rgb:var( --studio-orange-5-rgb );--color-accent-10:var( --studio-orange-10 );--color-accent-10-rgb:var( --studio-orange-10-rgb );--color-accent-20:var( --studio-orange-20 );--color-accent-20-rgb:var( --studio-orange-20-rgb );--color-accent-30:var( --studio-orange-30 );--color-accent-30-rgb:var( --studio-orange-30-rgb );--color-accent-40:var( --studio-orange-40 );--color-accent-40-rgb:var( --studio-orange-40-rgb );--color-accent-50:var( --studio-orange-50 );--color-accent-50-rgb:var( --studio-orange-50-rgb );--color-accent-60:var( --studio-orange-60 );--color-accent-60-rgb:var( --studio-orange-60-rgb );--color-accent-70:var( --studio-orange-70 );--color-accent-70-rgb:var( --studio-orange-70-rgb );--color-accent-80:var( --studio-orange-80 );--color-accent-80-rgb:var( --studio-orange-80-rgb );--color-accent-90:var( --studio-orange-90 );--color-accent-90-rgb:var( --studio-orange-90-rgb );--color-accent-100:var( --studio-orange-100 );--color-accent-100-rgb:var( --studio-orange-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-white );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:var( --studio-gray-0 );--color-sidebar-gridicon-fill:var( --studio-gray-0 );--color-sidebar-menu-selected-background:var( --theme-highlight-color );--color-sidebar-menu-selected-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-selected-text:var( --theme-text-color );--color-sidebar-menu-selected-text-rgb:var( --theme-text-color-rgb );--color-sidebar-menu-hover-background:var( --theme-highlight-color );--color-sidebar-menu-hover-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-hover-text:var( --theme-text-color );--color-sidebar-menu-hover:var( --theme-text-color );--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var( --theme-highlight-color )}.color-scheme.is-contrast,.color-scheme.is-contrast.is-nav-unification{--color-primary:var( --studio-gray-80 );--color-primary-rgb:var( --studio-gray-80-rgb );--color-primary-dark:var( --studio-gray-100 );--color-primary-dark-rgb:var( --studio-gray-100-rgb );--color-primary-light:var( --studio-gray-60 );--color-primary-light-rgb:var( --studio-gray-60-rgb );--color-primary-0:var( --studio-gray-0 );--color-primary-0-rgb:var( --studio-gray-0-rgb );--color-primary-5:var( --studio-gray-5 );--color-primary-5-rgb:var( --studio-gray-5-rgb );--color-primary-10:var( --studio-gray-10 );--color-primary-10-rgb:var( --studio-gray-10-rgb );--color-primary-20:var( --studio-gray-20 );--color-primary-20-rgb:var( --studio-gray-20-rgb );--color-primary-30:var( --studio-gray-30 );--color-primary-30-rgb:var( --studio-gray-30-rgb );--color-primary-40:var( --studio-gray-40 );--color-primary-40-rgb:var( --studio-gray-40-rgb );--color-primary-50:var( --studio-gray-50 );--color-primary-50-rgb:var( --studio-gray-50-rgb );--color-primary-60:var( --studio-gray-60 );--color-primary-60-rgb:var( --studio-gray-60-rgb );--color-primary-70:var( --studio-gray-70 );--color-primary-70-rgb:var( --studio-gray-70-rgb );--color-primary-80:var( --studio-gray-80 );--color-primary-80-rgb:var( --studio-gray-80-rgb );--color-primary-90:var( --studio-gray-90 );--color-primary-90-rgb:var( --studio-gray-90-rgb );--color-primary-100:var( --studio-gray-100 );--color-primary-100-rgb:var( --studio-gray-100-rgb );--color-accent:var( --studio-blue-70 );--color-accent-rgb:var( --studio-blue-70-rgb );--color-accent-dark:var( --studio-blue-90 );--color-accent-dark-rgb:var( --studio-blue-90-rgb );--color-accent-light:var( --studio-blue-50 );--color-accent-light-rgb:var( --studio-blue-50-rgb );--color-accent-0:var( --studio-blue-0 );--color-accent-0-rgb:var( --studio-blue-0-rgb );--color-accent-5:var( --studio-blue-5 );--color-accent-5-rgb:var( --studio-blue-5-rgb );--color-accent-10:var( --studio-blue-10 );--color-accent-10-rgb:var( --studio-blue-10-rgb );--color-accent-20:var( --studio-blue-20 );--color-accent-20-rgb:var( --studio-blue-20-rgb );--color-accent-30:var( --studio-blue-30 );--color-accent-30-rgb:var( --studio-blue-30-rgb );--color-accent-40:var( --studio-blue-40 );--color-accent-40-rgb:var( --studio-blue-40-rgb );--color-accent-50:var( --studio-blue-50 );--color-accent-50-rgb:var( --studio-blue-50-rgb );--color-accent-60:var( --studio-blue-60 );--color-accent-60-rgb:var( --studio-blue-60-rgb );--color-accent-70:var( --studio-blue-70 );--color-accent-70-rgb:var( --studio-blue-70-rgb );--color-accent-80:var( --studio-blue-80 );--color-accent-80-rgb:var( --studio-blue-80-rgb );--color-accent-90:var( --studio-blue-90 );--color-accent-90-rgb:var( --studio-blue-90-rgb );--color-accent-100:var( --studio-blue-100 );--color-accent-100-rgb:var( --studio-blue-100-rgb );--color-surface-backdrop:var( --studio-white );--color-surface-backdrop-rgb:var( --studio-white-rgb );--color-text:var( --studio-gray-100 );--color-text-rgb:var( --studio-gray-100-rgb );--color-text-subtle:var( --studio-gray-70 );--color-text-subtle-rgb:var( --studio-gray-70-rgb );--color-link:var( --studio-blue-70 );--color-link-rgb:var( --studio-blue-70-rgb );--color-link-dark:var( --studio-blue-100 );--color-link-dark-rgb:var( --studio-blue-100-rgb );--color-link-light:var( --studio-blue-50 );--color-link-light-rgb:var( --studio-blue-50-rgb );--color-link-0:var( --studio-blue-0 );--color-link-0-rgb:var( --studio-blue-0-rgb );--color-link-5:var( --studio-blue-5 );--color-link-5-rgb:var( --studio-blue-5-rgb );--color-link-10:var( --studio-blue-10 );--color-link-10-rgb:var( --studio-blue-10-rgb );--color-link-20:var( --studio-blue-20 );--color-link-20-rgb:var( --studio-blue-20-rgb );--color-link-30:var( --studio-blue-30 );--color-link-30-rgb:var( --studio-blue-30-rgb );--color-link-40:var( --studio-blue-40 );--color-link-40-rgb:var( --studio-blue-40-rgb );--color-link-50:var( --studio-blue-50 );--color-link-50-rgb:var( --studio-blue-50-rgb );--color-link-60:var( --studio-blue-60 );--color-link-60-rgb:var( --studio-blue-60-rgb );--color-link-70:var( --studio-blue-70 );--color-link-70-rgb:var( --studio-blue-70-rgb );--color-link-80:var( --studio-blue-80 );--color-link-80-rgb:var( --studio-blue-80-rgb );--color-link-90:var( --studio-blue-90 );--color-link-90-rgb:var( --studio-blue-90-rgb );--color-link-100:var( --studio-blue-100 );--color-link-100-rgb:var( --studio-blue-100-rgb );--color-premium-domain:var( --studio-gray-100 );--color-masterbar-background:var( --studio-gray-100 );--color-masterbar-border:var( --studio-gray-90 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-gray-80 );--color-masterbar-item-active-background:var( --studio-gray-60 );--color-masterbar-item-new-editor-background:var( --studio-gray-70 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-90 );--color-masterbar-unread-dot-background:var( --studio-yellow-20 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-70 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-70 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --color-surface );--color-sidebar-background-rgb:var( --studio-white-rgb );--color-sidebar-border:var( --studio-gray-5 );--color-sidebar-text:var( --studio-gray-90 );--color-sidebar-text-rgb:var( --studio-gray-90-rgb );--color-sidebar-text-alternative:var( --studio-gray-90 );--color-sidebar-gridicon-fill:var( --studio-gray-90 );--color-sidebar-menu-selected-background:var( --studio-gray-100 );--color-sidebar-menu-selected-background-rgb:var( --studio-gray-100-rgb );--color-sidebar-menu-selected-text:var( --studio-white );--color-sidebar-menu-selected-text-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-background:var( --studio-gray-60 );--color-sidebar-menu-hover-background-rgb:var( --studio-gray-60-rgb );--color-sidebar-menu-hover-text:var( --studio-white );--color-sidebar-submenu-background:var( --studio-gray-90 );--color-sidebar-submenu-text:var( --studio-gray-10 );--color-sidebar-submenu-hover-text:var( --color-masterbar-unread-dot-background );--color-sidebar-submenu-selected-text:var( --studio-white )}.color-scheme.is-ectoplasm,.color-scheme.is-ectoplasm.is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#523f6d;--theme-base-color-rgb:82,63,109;--theme-submenu-text-color:#cbc5d3;--theme-submenu-background-color:#413256;--theme-icon-color:#ece6f6;--theme-highlight-color:#a3b745;--theme-highlight-color-rgb:163,183,69;--theme-notification-color:#d46f15;--ectoplasm-green-0:#f2f5e1;--ectoplasm-green-5:#e9f5b3;--ectoplasm-green-10:#daf26b;--ectoplasm-green-20:#cdf030;--ectoplasm-green-30:#b5de00;--ectoplasm-green-40:#9bc000;--ectoplasm-green-50:#7f9d00;--ectoplasm-green-60:#647d00;--ectoplasm-green-70:#536700;--ectoplasm-green-80:#3f4f00;--ectoplasm-green-90:#293300;--ectoplasm-green-100:#161c00;--ectoplasm-green:#7f9d00;--ectoplasm-green-0-rgb:242,245,225;--ectoplasm-green-5-rgb:233,245,179;--ectoplasm-green-10-rgb:218,242,107;--ectoplasm-green-20-rgb:205,240,48;--ectoplasm-green-30-rgb:181,222,0;--ectoplasm-green-40-rgb:155,192,0;--ectoplasm-green-50-rgb:127,157,0;--ectoplasm-green-60-rgb:100,125,0;--ectoplasm-green-70-rgb:83,103,0;--ectoplasm-green-80-rgb:63,79,0;--ectoplasm-green-90-rgb:41,51,0;--ectoplasm-green-100-rgb:22,28,0;--ectoplasm-green-rgb:127,157,0;--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --ectoplasm-green-70 );--color-primary-dark-rgb:var( --ectoplasm-green-70-rgb );--color-primary-light:var( --ectoplasm-green-30 );--color-primary-light-rgb:var( --ectoplasm-green-30-rgb );--color-primary-0:var( --ectoplasm-green-0 );--color-primary-0-rgb:var( --ectoplasm-green-0-rgb );--color-primary-5:var( --ectoplasm-green-5 );--color-primary-5-rgb:var( --ectoplasm-green-5-rgb );--color-primary-10:var( --ectoplasm-green-10 );--color-primary-10-rgb:var( --ectoplasm-green-10-rgb );--color-primary-20:var( --ectoplasm-green-20 );--color-primary-20-rgb:var( --ectoplasm-green-20-rgb );--color-primary-30:var( --ectoplasm-green-30 );--color-primary-30-rgb:var( --ectoplasm-green-30-rgb );--color-primary-40:var( --ectoplasm-green-40 );--color-primary-40-rgb:var( --ectoplasm-green-40-rgb );--color-primary-50:var( --ectoplasm-green-50 );--color-primary-50-rgb:var( --ectoplasm-green-50-rgb );--color-primary-60:var( --ectoplasm-green-60 );--color-primary-60-rgb:var( --ectoplasm-green-60-rgb );--color-primary-70:var( --ectoplasm-green-70 );--color-primary-70-rgb:var( --ectoplasm-green-70-rgb );--color-primary-80:var( --ectoplasm-green-80 );--color-primary-80-rgb:var( --ectoplasm-green-80-rgb );--color-primary-90:var( --ectoplasm-green-90 );--color-primary-90-rgb:var( --ectoplasm-green-90-rgb );--color-primary-100:var( --ectoplasm-green-100 );--color-primary-100-rgb:var( --ectoplasm-green-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --ectoplasm-green-70 );--color-accent-dark-rgb:var( --ectoplasm-green-70-rgb );--color-accent-light:var( --ectoplasm-green-30 );--color-accent-light-rgb:var( --ectoplasm-green-30-rgb );--color-accent-0:var( --ectoplasm-green-0 );--color-accent-0-rgb:var( --ectoplasm-green-0-rgb );--color-accent-5:var( --ectoplasm-green-5 );--color-accent-5-rgb:var( --ectoplasm-green-5-rgb );--color-accent-10:var( --ectoplasm-green-10 );--color-accent-10-rgb:var( --ectoplasm-green-10-rgb );--color-accent-20:var( --ectoplasm-green-20 );--color-accent-20-rgb:var( --ectoplasm-green-20-rgb );--color-accent-30:var( --ectoplasm-green-30 );--color-accent-30-rgb:var( --ectoplasm-green-30-rgb );--color-accent-40:var( --ectoplasm-green-40 );--color-accent-40-rgb:var( --ectoplasm-green-40-rgb );--color-accent-50:var( --ectoplasm-green-50 );--color-accent-50-rgb:var( --ectoplasm-green-50-rgb );--color-accent-60:var( --ectoplasm-green-60 );--color-accent-60-rgb:var( --ectoplasm-green-60-rgb );--color-accent-70:var( --ectoplasm-green-70 );--color-accent-70-rgb:var( --ectoplasm-green-70-rgb );--color-accent-80:var( --ectoplasm-green-80 );--color-accent-80-rgb:var( --ectoplasm-green-80-rgb );--color-accent-90:var( --ectoplasm-green-90 );--color-accent-90-rgb:var( --ectoplasm-green-90-rgb );--color-accent-100:var( --ectoplasm-green-100 );--color-accent-100-rgb:var( --ectoplasm-green-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-white );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:var( --theme-text-color );--color-sidebar-gridicon-fill:var( --theme-icon-color );--color-sidebar-menu-selected-background:var( --theme-highlight-color );--color-sidebar-menu-selected-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-selected-text:var( --theme-text-color );--color-sidebar-menu-selected-text-rgb:var( --theme-text-color-rgb );--color-sidebar-menu-hover-background:var( --theme-highlight-color );--color-sidebar-menu-hover-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-hover-text:var( --theme-text-color );--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var( --theme-highlight-color )}.color-scheme.is-light,.color-scheme.is-light.is-nav-unification{--theme-text-color:#333;--theme-text-color-rgb:51,51,51;--theme-base-color:#e5e5e5;--theme-base-color-rgb:229,229,229;--theme-submenu-text-color:#686868;--theme-submenu-background-color:#fff;--theme-icon-color:#999;--theme-highlight-color:#04a4cc;--theme-highlight-color-rgb:4,164,204;--theme-notification-color:#d64e07;--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --studio-blue-70 );--color-primary-dark-rgb:var( --studio-blue-70-rgb );--color-primary-light:var( --studio-blue-30 );--color-primary-light-rgb:var( --studio-blue-30-rgb );--color-primary-0:var( --studio-blue-0 );--color-primary-0-rgb:var( --studio-blue-0-rgb );--color-primary-5:var( --studio-blue-5 );--color-primary-5-rgb:var( --studio-blue-5-rgb );--color-primary-10:var( --studio-blue-10 );--color-primary-10-rgb:var( --studio-blue-10-rgb );--color-primary-20:var( --studio-blue-20 );--color-primary-20-rgb:var( --studio-blue-20-rgb );--color-primary-30:var( --studio-blue-30 );--color-primary-30-rgb:var( --studio-blue-30-rgb );--color-primary-40:var( --studio-blue-40 );--color-primary-40-rgb:var( --studio-blue-40-rgb );--color-primary-50:var( --studio-blue-50 );--color-primary-50-rgb:var( --studio-blue-50-rgb );--color-primary-60:var( --studio-blue-60 );--color-primary-60-rgb:var( --studio-blue-60-rgb );--color-primary-70:var( --studio-blue-70 );--color-primary-70-rgb:var( --studio-blue-70-rgb );--color-primary-80:var( --studio-blue-80 );--color-primary-80-rgb:var( --studio-blue-80-rgb );--color-primary-90:var( --studio-blue-90 );--color-primary-90-rgb:var( --studio-blue-90-rgb );--color-primary-100:var( --studio-blue-100 );--color-primary-100-rgb:var( --studio-blue-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --studio-blue-70 );--color-accent-dark-rgb:var( --studio-blue-70-rgb );--color-accent-light:var( --studio-blue-30 );--color-accent-light-rgb:var( --studio-blue-30-rgb );--color-accent-0:var( --studio-blue-0 );--color-accent-0-rgb:var( --studio-blue-0-rgb );--color-accent-5:var( --studio-blue-5 );--color-accent-5-rgb:var( --studio-blue-5-rgb );--color-accent-10:var( --studio-blue-10 );--color-accent-10-rgb:var( --studio-blue-10-rgb );--color-accent-20:var( --studio-blue-20 );--color-accent-20-rgb:var( --studio-blue-20-rgb );--color-accent-30:var( --studio-blue-30 );--color-accent-30-rgb:var( --studio-blue-30-rgb );--color-accent-40:var( --studio-blue-40 );--color-accent-40-rgb:var( --studio-blue-40-rgb );--color-accent-50:var( --studio-blue-50 );--color-accent-50-rgb:var( --studio-blue-50-rgb );--color-accent-60:var( --studio-blue-60 );--color-accent-60-rgb:var( --studio-blue-60-rgb );--color-accent-70:var( --studio-blue-70 );--color-accent-70-rgb:var( --studio-blue-70-rgb );--color-accent-80:var( --studio-blue-80 );--color-accent-80-rgb:var( --studio-blue-80-rgb );--color-accent-90:var( --studio-blue-90 );--color-accent-90-rgb:var( --studio-blue-90-rgb );--color-accent-100:var( --studio-blue-100 );--color-accent-100-rgb:var( --studio-blue-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-black );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-90 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:var( --studio-gray-90 );--color-sidebar-gridicon-fill:var( --theme-icon-color );--color-sidebar-menu-selected-background:#888;--color-sidebar-menu-selected-background-rgb:136,136,136;--color-sidebar-menu-selected-text:#fff;--color-sidebar-menu-selected-text-rgb:255,255,255;--color-sidebar-menu-hover-background:#888;--color-sidebar-menu-hover-background-rgb:136,136,136;--color-sidebar-menu-hover-text:#fff;--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var( --theme-highlight-color );--color-sidebar-submenu-selected-text:#333}.color-scheme.is-light.is-nav-unification .masterbar__item-notifications .gridicon,.color-scheme.is-light .masterbar__item-notifications .gridicon{fill:#000}.color-scheme.is-midnight,.color-scheme.is-midnight.is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#363b3f;--theme-base-color-rgb:54,59,63;--theme-submenu-text-color:#c3c4c5;--theme-submenu-background-color:#26292c;--theme-icon-color:#ece6f6;--theme-highlight-color:#e14d43;--theme-highlight-color-rgb:225,77,67;--theme-notification-color:#69a8bb;--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --studio-red-70 );--color-primary-dark-rgb:var( --studio-red-70-rgb );--color-primary-light:var( --studio-red-30 );--color-primary-light-rgb:var( --studio-red-30-rgb );--color-primary-0:var( --studio-red-0 );--color-primary-0-rgb:var( --studio-red-0-rgb );--color-primary-5:var( --studio-red-5 );--color-primary-5-rgb:var( --studio-red-5-rgb );--color-primary-10:var( --studio-red-10 );--color-primary-10-rgb:var( --studio-red-10-rgb );--color-primary-20:var( --studio-red-20 );--color-primary-20-rgb:var( --studio-red-20-rgb );--color-primary-30:var( --studio-red-30 );--color-primary-30-rgb:var( --studio-red-30-rgb );--color-primary-40:var( --studio-red-40 );--color-primary-40-rgb:var( --studio-red-40-rgb );--color-primary-50:var( --studio-red-50 );--color-primary-50-rgb:var( --studio-red-50-rgb );--color-primary-60:var( --studio-red-60 );--color-primary-60-rgb:var( --studio-red-60-rgb );--color-primary-70:var( --studio-red-70 );--color-primary-70-rgb:var( --studio-red-70-rgb );--color-primary-80:var( --studio-red-80 );--color-primary-80-rgb:var( --studio-red-80-rgb );--color-primary-90:var( --studio-red-90 );--color-primary-90-rgb:var( --studio-red-90-rgb );--color-primary-100:var( --studio-red-100 );--color-primary-100-rgb:var( --studio-red-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --studio-red-70 );--color-accent-dark-rgb:var( --studio-red-70-rgb );--color-accent-light:var( --studio-red-30 );--color-accent-light-rgb:var( --studio-red-30-rgb );--color-accent-0:var( --studio-red-0 );--color-accent-0-rgb:var( --studio-red-0-rgb );--color-accent-5:var( --studio-red-5 );--color-accent-5-rgb:var( --studio-red-5-rgb );--color-accent-10:var( --studio-red-10 );--color-accent-10-rgb:var( --studio-red-10-rgb );--color-accent-20:var( --studio-red-20 );--color-accent-20-rgb:var( --studio-red-20-rgb );--color-accent-30:var( --studio-red-30 );--color-accent-30-rgb:var( --studio-red-30-rgb );--color-accent-40:var( --studio-red-40 );--color-accent-40-rgb:var( --studio-red-40-rgb );--color-accent-50:var( --studio-red-50 );--color-accent-50-rgb:var( --studio-red-50-rgb );--color-accent-60:var( --studio-red-60 );--color-accent-60-rgb:var( --studio-red-60-rgb );--color-accent-70:var( --studio-red-70 );--color-accent-70-rgb:var( --studio-red-70-rgb );--color-accent-80:var( --studio-red-80 );--color-accent-80-rgb:var( --studio-red-80-rgb );--color-accent-90:var( --studio-red-90 );--color-accent-90-rgb:var( --studio-red-90-rgb );--color-accent-100:var( --studio-red-100 );--color-accent-100-rgb:var( --studio-red-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-white );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:var( --theme-text-color );--color-sidebar-gridicon-fill:var( --theme-icon-color );--color-sidebar-menu-selected-background:var( --theme-highlight-color );--color-sidebar-menu-selected-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-selected-text:var( --theme-text-color );--color-sidebar-menu-selected-text-rgb:var( --theme-text-color-rgb );--color-sidebar-menu-hover-background:var( --theme-highlight-color );--color-sidebar-menu-hover-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-hover-text:var( --theme-text-color );--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var( --theme-highlight-color )}.color-scheme.is-modern,.color-scheme.is-modern.is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#1e1e1e;--theme-base-color-rgb:30,30,30;--theme-submenu-text-color:#bcbcbc;--theme-submenu-background-color:#0c0c0c;--theme-icon-color:#ece6f6;--theme-highlight-color:#3858e9;--theme-highlight-color-rgb:56,88,233;--theme-notification-color:#3858e9;--theme-highlight-color-0:#d5dffa;--theme-highlight-color-0-rgb:213,223,250;--theme-highlight-color-10:#abc0f5;--theme-highlight-color-10-rgb:171,192,245;--theme-highlight-color-20:#82a1f0;--theme-highlight-color-20-rgb:130,161,240;--theme-highlight-color-30:#5882eb;--theme-highlight-color-30-rgb:88,130,235;--theme-highlight-color-40:#2f63e6;--theme-highlight-color-40-rgb:47,99,230;--theme-highlight-color-50:var( --theme-highlight-color );--theme-highlight-color-50-rgb:var( --theme-highlight-color-rgb );--theme-highlight-color-60:#2145e6;--theme-highlight-color-60-rgb:33,69,230;--theme-highlight-color-70:#133ca6;--theme-highlight-color-70-rgb:19,60,166;--theme-highlight-color-80:#0e2d7c;--theme-highlight-color-80-rgb:14,45,124;--theme-highlight-color-90:#091e53;--theme-highlight-color-90-rgb:9,30,83;--theme-highlight-color-100:#040f29;--theme-highlight-color-100-rgb:4,15,41;--color-link:var( --theme-highlight-color );--color-link-dark:var( --theme-highlight-color-70 );--color-link-light:var( --theme-highlight-color-30 );--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --theme-highlight-color-70 );--color-primary-dark-rgb:var( --theme-highlight-color-70-rgb );--color-primary-light:var( --theme-highlight-color-30 );--color-primary-light-rgb:var( --theme-highlight-color-30-rgb );--color-primary-0:var( --theme-highlight-color-0 );--color-primary-0-rgb:var( --theme-highlight-color-0-rgb );--color-primary-5:var( --theme-highlight-color-5 );--color-primary-5-rgb:var( --theme-highlight-color-5-rgb );--color-primary-10:var( --theme-highlight-color-10 );--color-primary-10-rgb:var( --theme-highlight-color-10-rgb );--color-primary-20:var( --theme-highlight-color-20 );--color-primary-20-rgb:var( --theme-highlight-color-20-rgb );--color-primary-30:var( --theme-highlight-color-30 );--color-primary-30-rgb:var( --theme-highlight-color-30-rgb );--color-primary-40:var( --theme-highlight-color-40 );--color-primary-40-rgb:var( --theme-highlight-color-40-rgb );--color-primary-50:var( --theme-highlight-color-50 );--color-primary-50-rgb:var( --theme-highlight-color-50-rgb );--color-primary-60:var( --theme-highlight-color-60 );--color-primary-60-rgb:var( --theme-highlight-color-60-rgb );--color-primary-70:var( --theme-highlight-color-70 );--color-primary-70-rgb:var( --theme-highlight-color-70-rgb );--color-primary-80:var( --theme-highlight-color-80 );--color-primary-80-rgb:var( --theme-highlight-color-80-rgb );--color-primary-90:var( --theme-highlight-color-90 );--color-primary-90-rgb:var( --theme-highlight-color-90-rgb );--color-primary-100:var( --theme-highlight-color-100 );--color-primary-100-rgb:var( --theme-highlight-color-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --theme-highlight-color-70 );--color-accent-dark-rgb:var( --theme-highlight-color-70-rgb );--color-accent-light:var( --theme-highlight-color-30 );--color-accent-light-rgb:var( --theme-highlight-color-30-rgb );--color-accent-0:var( --theme-highlight-color-0 );--color-accent-0-rgb:var( --theme-highlight-color-0-rgb );--color-accent-5:var( --theme-highlight-color-5 );--color-accent-5-rgb:var( --theme-highlight-color-5-rgb );--color-accent-10:var( --theme-highlight-color-10 );--color-accent-10-rgb:var( --theme-highlight-color-10-rgb );--color-accent-20:var( --theme-highlight-color-20 );--color-accent-20-rgb:var( --theme-highlight-color-20-rgb );--color-accent-30:var( --theme-highlight-color-30 );--color-accent-30-rgb:var( --theme-highlight-color-30-rgb );--color-accent-40:var( --theme-highlight-color-40 );--color-accent-40-rgb:var( --theme-highlight-color-40-rgb );--color-accent-50:var( --theme-highlight-color-50 );--color-accent-50-rgb:var( --theme-highlight-color-50-rgb );--color-accent-60:var( --theme-highlight-color-60 );--color-accent-60-rgb:var( --theme-highlight-color-60-rgb );--color-accent-70:var( --theme-highlight-color-70 );--color-accent-70-rgb:var( --theme-highlight-color-70-rgb );--color-accent-80:var( --theme-highlight-color-80 );--color-accent-80-rgb:var( --theme-highlight-color-80-rgb );--color-accent-90:var( --theme-highlight-color-90 );--color-accent-90-rgb:var( --theme-highlight-color-90-rgb );--color-accent-100:var( --theme-highlight-color-100 );--color-accent-100-rgb:var( --theme-highlight-color-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-white );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:var( --studio-gray-10 );--color-sidebar-gridicon-fill:var( --studio-gray-0 );--color-sidebar-menu-selected-background:var( --theme-highlight-color );--color-sidebar-menu-selected-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-selected-text:var( --theme-text-color );--color-sidebar-menu-selected-text-rgb:var( --theme-text-color-rgb );--color-sidebar-menu-hover-background:var( --theme-highlight-color );--color-sidebar-menu-hover-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-hover-text:var( --theme-text-color );--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:#33f078}.color-scheme.is-nightfall,.color-scheme.is-nightfall.is-nav-unification{--color-primary:var( --studio-gray-90 );--color-primary-rgb:var( --studio-gray-90-rgb );--color-primary-dark:var( --studio-gray-70 );--color-primary-dark-rgb:var( --studio-gray-70-rgb );--color-primary-light:var( --studio-gray-30 );--color-primary-light-rgb:var( --studio-gray-30-rgb );--color-primary-0:var( --studio-gray-0 );--color-primary-0-rgb:var( --studio-gray-0-rgb );--color-primary-5:var( --studio-gray-5 );--color-primary-5-rgb:var( --studio-gray-5-rgb );--color-primary-10:var( --studio-gray-10 );--color-primary-10-rgb:var( --studio-gray-10-rgb );--color-primary-20:var( --studio-gray-20 );--color-primary-20-rgb:var( --studio-gray-20-rgb );--color-primary-30:var( --studio-gray-30 );--color-primary-30-rgb:var( --studio-gray-30-rgb );--color-primary-40:var( --studio-gray-40 );--color-primary-40-rgb:var( --studio-gray-40-rgb );--color-primary-50:var( --studio-gray-50 );--color-primary-50-rgb:var( --studio-gray-50-rgb );--color-primary-60:var( --studio-gray-60 );--color-primary-60-rgb:var( --studio-gray-60-rgb );--color-primary-70:var( --studio-gray-70 );--color-primary-70-rgb:var( --studio-gray-70-rgb );--color-primary-80:var( --studio-gray-80 );--color-primary-80-rgb:var( --studio-gray-80-rgb );--color-primary-90:var( --studio-gray-90 );--color-primary-90-rgb:var( --studio-gray-90-rgb );--color-primary-100:var( --studio-gray-100 );--color-primary-100-rgb:var( --studio-gray-100-rgb );--color-accent:var( --studio-blue-50 );--color-accent-rgb:var( --studio-blue-50-rgb );--color-accent-dark:var( --studio-blue-70 );--color-accent-dark-rgb:var( --studio-blue-70-rgb );--color-accent-light:var( --studio-blue-30 );--color-accent-light-rgb:var( --studio-blue-30-rgb );--color-accent-0:var( --studio-blue-0 );--color-accent-0-rgb:var( --studio-blue-0-rgb );--color-accent-5:var( --studio-blue-5 );--color-accent-5-rgb:var( --studio-blue-5-rgb );--color-accent-10:var( --studio-blue-10 );--color-accent-10-rgb:var( --studio-blue-10-rgb );--color-accent-20:var( --studio-blue-20 );--color-accent-20-rgb:var( --studio-blue-20-rgb );--color-accent-30:var( --studio-blue-30 );--color-accent-30-rgb:var( --studio-blue-30-rgb );--color-accent-40:var( --studio-blue-40 );--color-accent-40-rgb:var( --studio-blue-40-rgb );--color-accent-50:var( --studio-blue-50 );--color-accent-50-rgb:var( --studio-blue-50-rgb );--color-accent-60:var( --studio-blue-60 );--color-accent-60-rgb:var( --studio-blue-60-rgb );--color-accent-70:var( --studio-blue-70 );--color-accent-70-rgb:var( --studio-blue-70-rgb );--color-accent-80:var( --studio-blue-80 );--color-accent-80-rgb:var( --studio-blue-80-rgb );--color-accent-90:var( --studio-blue-90 );--color-accent-90-rgb:var( --studio-blue-90-rgb );--color-accent-100:var( --studio-blue-100 );--color-accent-100-rgb:var( --studio-blue-100-rgb );--color-link:var( --studio-blue-50 );--color-link-rgb:var( --studio-blue-50-rgb );--color-link-dark:var( --studio-blue-70 );--color-link-dark-rgb:var( --studio-blue-70-rgb );--color-link-light:var( --studio-blue-30 );--color-link-light-rgb:var( --studio-blue-30-rgb );--color-link-0:var( --studio-blue-0 );--color-link-0-rgb:var( --studio-blue-0-rgb );--color-link-5:var( --studio-blue-5 );--color-link-5-rgb:var( --studio-blue-5-rgb );--color-link-10:var( --studio-blue-10 );--color-link-10-rgb:var( --studio-blue-10-rgb );--color-link-20:var( --studio-blue-20 );--color-link-20-rgb:var( --studio-blue-20-rgb );--color-link-30:var( --studio-blue-30 );--color-link-30-rgb:var( --studio-blue-30-rgb );--color-link-40:var( --studio-blue-40 );--color-link-40-rgb:var( --studio-blue-40-rgb );--color-link-50:var( --studio-blue-50 );--color-link-50-rgb:var( --studio-blue-50-rgb );--color-link-60:var( --studio-blue-60 );--color-link-60-rgb:var( --studio-blue-60-rgb );--color-link-70:var( --studio-blue-70 );--color-link-70-rgb:var( --studio-blue-70-rgb );--color-link-80:var( --studio-blue-80 );--color-link-80-rgb:var( --studio-blue-80-rgb );--color-link-90:var( --studio-blue-90 );--color-link-90-rgb:var( --studio-blue-90-rgb );--color-link-100:var( --studio-blue-100 );--color-link-100-rgb:var( --studio-blue-100-rgb );--color-masterbar-background:var( --studio-blue-100 );--color-masterbar-border:var( --studio-blue-100 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-blue-90 );--color-masterbar-item-active-background:var( --studio-blue-80 );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-40 );--color-masterbar-unread-dot-background:var( --color-accent-30 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --studio-blue-80 );--color-sidebar-background-rgb:var( --studio-blue-80-rgb );--color-sidebar-border:var( --studio-blue-90 );--color-sidebar-text:var( --studio-blue-5 );--color-sidebar-text-rgb:var( --studio-blue-5-rgb );--color-sidebar-text-alternative:var( --studio-blue-20 );--color-sidebar-gridicon-fill:var( --studio-blue-10 );--color-sidebar-menu-selected-background:var( --studio-blue-100 );--color-sidebar-menu-selected-background-rgb:var( --studio-blue-100-rgb );--color-sidebar-menu-selected-text:var( --studio-white );--color-sidebar-menu-selected-text-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-background:var( --studio-blue-70 );--color-sidebar-menu-hover-background-rgb:var( --studio-blue-70-rgb );--color-sidebar-menu-hover-text:var( --studio-white );--color-sidebar-submenu-background:var( --studio-blue-90 );--color-sidebar-submenu-text:var( --studio-white );--color-sidebar-submenu-hover-text:var( --studio-blue-20 );--color-sidebar-submenu-selected-text:var( --studio-white )}.color-scheme.is-ocean,.color-scheme.is-ocean.is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#738e96;--theme-base-color-rgb:115,142,150;--theme-submenu-text-color:#d5dde0;--theme-submenu-background-color:#627c83;--theme-icon-color:#f2fcff;--theme-highlight-color:#9ebaa0;--theme-highlight-color-rgb:158,186,160;--theme-notification-color:#aa9d88;--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --studio-celadon-70 );--color-primary-dark-rgb:var( --studio-celadon-70-rgb );--color-primary-light:var( --studio-celadon-30 );--color-primary-light-rgb:var( --studio-celadon-30-rgb );--color-primary-0:var( --studio-celadon-0 );--color-primary-0-rgb:var( --studio-celadon-0-rgb );--color-primary-5:var( --studio-celadon-5 );--color-primary-5-rgb:var( --studio-celadon-5-rgb );--color-primary-10:var( --studio-celadon-10 );--color-primary-10-rgb:var( --studio-celadon-10-rgb );--color-primary-20:var( --studio-celadon-20 );--color-primary-20-rgb:var( --studio-celadon-20-rgb );--color-primary-30:var( --studio-celadon-30 );--color-primary-30-rgb:var( --studio-celadon-30-rgb );--color-primary-40:var( --studio-celadon-40 );--color-primary-40-rgb:var( --studio-celadon-40-rgb );--color-primary-50:var( --studio-celadon-50 );--color-primary-50-rgb:var( --studio-celadon-50-rgb );--color-primary-60:var( --studio-celadon-60 );--color-primary-60-rgb:var( --studio-celadon-60-rgb );--color-primary-70:var( --studio-celadon-70 );--color-primary-70-rgb:var( --studio-celadon-70-rgb );--color-primary-80:var( --studio-celadon-80 );--color-primary-80-rgb:var( --studio-celadon-80-rgb );--color-primary-90:var( --studio-celadon-90 );--color-primary-90-rgb:var( --studio-celadon-90-rgb );--color-primary-100:var( --studio-celadon-100 );--color-primary-100-rgb:var( --studio-celadon-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --studio-celadon-70 );--color-accent-dark-rgb:var( --studio-celadon-70-rgb );--color-accent-light:var( --studio-celadon-30 );--color-accent-light-rgb:var( --studio-celadon-30-rgb );--color-accent-0:var( --studio-celadon-0 );--color-accent-0-rgb:var( --studio-celadon-0-rgb );--color-accent-5:var( --studio-celadon-5 );--color-accent-5-rgb:var( --studio-celadon-5-rgb );--color-accent-10:var( --studio-celadon-10 );--color-accent-10-rgb:var( --studio-celadon-10-rgb );--color-accent-20:var( --studio-celadon-20 );--color-accent-20-rgb:var( --studio-celadon-20-rgb );--color-accent-30:var( --studio-celadon-30 );--color-accent-30-rgb:var( --studio-celadon-30-rgb );--color-accent-40:var( --studio-celadon-40 );--color-accent-40-rgb:var( --studio-celadon-40-rgb );--color-accent-50:var( --studio-celadon-50 );--color-accent-50-rgb:var( --studio-celadon-50-rgb );--color-accent-60:var( --studio-celadon-60 );--color-accent-60-rgb:var( --studio-celadon-60-rgb );--color-accent-70:var( --studio-celadon-70 );--color-accent-70-rgb:var( --studio-celadon-70-rgb );--color-accent-80:var( --studio-celadon-80 );--color-accent-80-rgb:var( --studio-celadon-80-rgb );--color-accent-90:var( --studio-celadon-90 );--color-accent-90-rgb:var( --studio-celadon-90-rgb );--color-accent-100:var( --studio-celadon-100 );--color-accent-100-rgb:var( --studio-celadon-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-white );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:var( --theme-text-color );--color-sidebar-gridicon-fill:var( --theme-icon-color );--color-sidebar-menu-selected-background:var( --theme-highlight-color );--color-sidebar-menu-selected-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-selected-text:var( --theme-text-color );--color-sidebar-menu-selected-text-rgb:var( --theme-text-color-rgb );--color-sidebar-menu-hover-background:var( --theme-highlight-color );--color-sidebar-menu-hover-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-hover-text:var( --theme-text-color );--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var( --theme-highlight-color )}.color-scheme.is-powder-snow,.color-scheme.is-powder-snow.is-nav-unification{--color-primary:var( --studio-gray-90 );--color-primary-rgb:var( --studio-gray-90-rgb );--color-primary-dark:var( --studio-gray-70 );--color-primary-dark-rgb:var( --studio-gray-70-rgb );--color-primary-light:var( --studio-gray-30 );--color-primary-light-rgb:var( --studio-gray-30-rgb );--color-primary-0:var( --studio-gray-0 );--color-primary-0-rgb:var( --studio-gray-0-rgb );--color-primary-5:var( --studio-gray-5 );--color-primary-5-rgb:var( --studio-gray-5-rgb );--color-primary-10:var( --studio-gray-10 );--color-primary-10-rgb:var( --studio-gray-10-rgb );--color-primary-20:var( --studio-gray-20 );--color-primary-20-rgb:var( --studio-gray-20-rgb );--color-primary-30:var( --studio-gray-30 );--color-primary-30-rgb:var( --studio-gray-30-rgb );--color-primary-40:var( --studio-gray-40 );--color-primary-40-rgb:var( --studio-gray-40-rgb );--color-primary-50:var( --studio-gray-50 );--color-primary-50-rgb:var( --studio-gray-50-rgb );--color-primary-60:var( --studio-gray-60 );--color-primary-60-rgb:var( --studio-gray-60-rgb );--color-primary-70:var( --studio-gray-70 );--color-primary-70-rgb:var( --studio-gray-70-rgb );--color-primary-80:var( --studio-gray-80 );--color-primary-80-rgb:var( --studio-gray-80-rgb );--color-primary-90:var( --studio-gray-90 );--color-primary-90-rgb:var( --studio-gray-90-rgb );--color-primary-100:var( --studio-gray-100 );--color-primary-100-rgb:var( --studio-gray-100-rgb );--color-accent:var( --studio-blue-50 );--color-accent-rgb:var( --studio-blue-50-rgb );--color-accent-dark:var( --studio-blue-70 );--color-accent-dark-rgb:var( --studio-blue-70-rgb );--color-accent-light:var( --studio-blue-30 );--color-accent-light-rgb:var( --studio-blue-30-rgb );--color-accent-0:var( --studio-blue-0 );--color-accent-0-rgb:var( --studio-blue-0-rgb );--color-accent-5:var( --studio-blue-5 );--color-accent-5-rgb:var( --studio-blue-5-rgb );--color-accent-10:var( --studio-blue-10 );--color-accent-10-rgb:var( --studio-blue-10-rgb );--color-accent-20:var( --studio-blue-20 );--color-accent-20-rgb:var( --studio-blue-20-rgb );--color-accent-30:var( --studio-blue-30 );--color-accent-30-rgb:var( --studio-blue-30-rgb );--color-accent-40:var( --studio-blue-40 );--color-accent-40-rgb:var( --studio-blue-40-rgb );--color-accent-50:var( --studio-blue-50 );--color-accent-50-rgb:var( --studio-blue-50-rgb );--color-accent-60:var( --studio-blue-60 );--color-accent-60-rgb:var( --studio-blue-60-rgb );--color-accent-70:var( --studio-blue-70 );--color-accent-70-rgb:var( --studio-blue-70-rgb );--color-accent-80:var( --studio-blue-80 );--color-accent-80-rgb:var( --studio-blue-80-rgb );--color-accent-90:var( --studio-blue-90 );--color-accent-90-rgb:var( --studio-blue-90-rgb );--color-accent-100:var( --studio-blue-100 );--color-accent-100-rgb:var( --studio-blue-100-rgb );--color-link:var( --studio-blue-50 );--color-link-rgb:var( --studio-blue-50-rgb );--color-link-dark:var( --studio-blue-70 );--color-link-dark-rgb:var( --studio-blue-70-rgb );--color-link-light:var( --studio-blue-30 );--color-link-light-rgb:var( --studio-blue-30-rgb );--color-link-0:var( --studio-blue-0 );--color-link-0-rgb:var( --studio-blue-0-rgb );--color-link-5:var( --studio-blue-5 );--color-link-5-rgb:var( --studio-blue-5-rgb );--color-link-10:var( --studio-blue-10 );--color-link-10-rgb:var( --studio-blue-10-rgb );--color-link-20:var( --studio-blue-20 );--color-link-20-rgb:var( --studio-blue-20-rgb );--color-link-30:var( --studio-blue-30 );--color-link-30-rgb:var( --studio-blue-30-rgb );--color-link-40:var( --studio-blue-40 );--color-link-40-rgb:var( --studio-blue-40-rgb );--color-link-50:var( --studio-blue-50 );--color-link-50-rgb:var( --studio-blue-50-rgb );--color-link-60:var( --studio-blue-60 );--color-link-60-rgb:var( --studio-blue-60-rgb );--color-link-70:var( --studio-blue-70 );--color-link-70-rgb:var( --studio-blue-70-rgb );--color-link-80:var( --studio-blue-80 );--color-link-80-rgb:var( --studio-blue-80-rgb );--color-link-90:var( --studio-blue-90 );--color-link-90-rgb:var( --studio-blue-90-rgb );--color-link-100:var( --studio-blue-100 );--color-link-100-rgb:var( --studio-blue-100-rgb );--color-masterbar-background:var( --studio-gray-100 );--color-masterbar-border:var( --studio-gray-90 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-gray-80 );--color-masterbar-item-active-background:var( --studio-gray-70 );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-40 );--color-masterbar-unread-dot-background:var( --color-accent-30 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --studio-gray-5 );--color-sidebar-background-rgb:var( --studio-gray-5-rgb );--color-sidebar-border:var( --studio-gray-10 );--color-sidebar-text:var( --studio-gray-80 );--color-sidebar-text-rgb:var( --studio-gray-80-rgb );--color-sidebar-text-alternative:var( --studio-gray-60 );--color-sidebar-gridicon-fill:var( --studio-gray-50 );--color-sidebar-menu-selected-background:var( --studio-gray-60 );--color-sidebar-menu-selected-background-rgb:var( --studio-gray-60-rgb );--color-sidebar-menu-selected-text:var( --studio-white );--color-sidebar-menu-selected-text-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-background:var( --color-surface );--color-sidebar-menu-hover-background-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-text:var( --studio-blue-60 );--color-sidebar-submenu-background:var( --studio-gray-10 );--color-sidebar-submenu-text:var( --studio-gray-80 );--color-sidebar-submenu-hover-text:var( --studio-blue-60 );--color-sidebar-submenu-selected-text:var( --studio-gray-80 )}.color-scheme.is-sakura,.color-scheme.is-sakura.is-nav-unification{--color-primary:var( --studio-celadon-50 );--color-primary-rgb:var( --studio-celadon-50-rgb );--color-primary-dark:var( --studio-celadon-70 );--color-primary-dark-rgb:var( --studio-celadon-70-rgb );--color-primary-light:var( --studio-celadon-30 );--color-primary-light-rgb:var( --studio-celadon-30-rgb );--color-primary-0:var( --studio-celadon-0 );--color-primary-0-rgb:var( --studio-celadon-0-rgb );--color-primary-5:var( --studio-celadon-5 );--color-primary-5-rgb:var( --studio-celadon-5-rgb );--color-primary-10:var( --studio-celadon-10 );--color-primary-10-rgb:var( --studio-celadon-10-rgb );--color-primary-20:var( --studio-celadon-20 );--color-primary-20-rgb:var( --studio-celadon-20-rgb );--color-primary-30:var( --studio-celadon-30 );--color-primary-30-rgb:var( --studio-celadon-30-rgb );--color-primary-40:var( --studio-celadon-40 );--color-primary-40-rgb:var( --studio-celadon-40-rgb );--color-primary-50:var( --studio-celadon-50 );--color-primary-50-rgb:var( --studio-celadon-50-rgb );--color-primary-60:var( --studio-celadon-60 );--color-primary-60-rgb:var( --studio-celadon-60-rgb );--color-primary-70:var( --studio-celadon-70 );--color-primary-70-rgb:var( --studio-celadon-70-rgb );--color-primary-80:var( --studio-celadon-80 );--color-primary-80-rgb:var( --studio-celadon-80-rgb );--color-primary-90:var( --studio-celadon-90 );--color-primary-90-rgb:var( --studio-celadon-90-rgb );--color-primary-100:var( --studio-celadon-100 );--color-primary-100-rgb:var( --studio-celadon-100-rgb );--color-accent:var( --studio-blue-50 );--color-accent-rgb:var( --studio-blue-50-rgb );--color-accent-dark:var( --studio-blue-70 );--color-accent-dark-rgb:var( --studio-blue-70-rgb );--color-accent-light:var( --studio-blue-30 );--color-accent-light-rgb:var( --studio-blue-30-rgb );--color-accent-0:var( --studio-blue-0 );--color-accent-0-rgb:var( --studio-blue-0-rgb );--color-accent-5:var( --studio-blue-5 );--color-accent-5-rgb:var( --studio-blue-5-rgb );--color-accent-10:var( --studio-blue-10 );--color-accent-10-rgb:var( --studio-blue-10-rgb );--color-accent-20:var( --studio-blue-20 );--color-accent-20-rgb:var( --studio-blue-20-rgb );--color-accent-30:var( --studio-blue-30 );--color-accent-30-rgb:var( --studio-blue-30-rgb );--color-accent-40:var( --studio-blue-40 );--color-accent-40-rgb:var( --studio-blue-40-rgb );--color-accent-50:var( --studio-blue-50 );--color-accent-50-rgb:var( --studio-blue-50-rgb );--color-accent-60:var( --studio-blue-60 );--color-accent-60-rgb:var( --studio-blue-60-rgb );--color-accent-70:var( --studio-blue-70 );--color-accent-70-rgb:var( --studio-blue-70-rgb );--color-accent-80:var( --studio-blue-80 );--color-accent-80-rgb:var( --studio-blue-80-rgb );--color-accent-90:var( --studio-blue-90 );--color-accent-90-rgb:var( --studio-blue-90-rgb );--color-accent-100:var( --studio-blue-100 );--color-accent-100-rgb:var( --studio-blue-100-rgb );--color-link:var( --studio-celadon-50 );--color-link-rgb:var( --studio-celadon-50-rgb );--color-link-dark:var( --studio-celadon-70 );--color-link-dark-rgb:var( --studio-celadon-70-rgb );--color-link-light:var( --studio-celadon-30 );--color-link-light-rgb:var( --studio-celadon-30-rgb );--color-link-0:var( --studio-celadon-0 );--color-link-0-rgb:var( --studio-celadon-0-rgb );--color-link-5:var( --studio-celadon-5 );--color-link-5-rgb:var( --studio-celadon-5-rgb );--color-link-10:var( --studio-celadon-10 );--color-link-10-rgb:var( --studio-celadon-10-rgb );--color-link-20:var( --studio-celadon-20 );--color-link-20-rgb:var( --studio-celadon-20-rgb );--color-link-30:var( --studio-celadon-30 );--color-link-30-rgb:var( --studio-celadon-30-rgb );--color-link-40:var( --studio-celadon-40 );--color-link-40-rgb:var( --studio-celadon-40-rgb );--color-link-50:var( --studio-celadon-50 );--color-link-50-rgb:var( --studio-celadon-50-rgb );--color-link-60:var( --studio-celadon-60 );--color-link-60-rgb:var( --studio-celadon-60-rgb );--color-link-70:var( --studio-celadon-70 );--color-link-70-rgb:var( --studio-celadon-70-rgb );--color-link-80:var( --studio-celadon-80 );--color-link-80-rgb:var( --studio-celadon-80-rgb );--color-link-90:var( --studio-celadon-90 );--color-link-90-rgb:var( --studio-celadon-90-rgb );--color-link-100:var( --studio-celadon-100 );--color-link-100-rgb:var( --studio-celadon-100-rgb );--color-masterbar-background:var( --studio-celadon-70 );--color-masterbar-border:var( --studio-celadon-80 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-celadon-80 );--color-masterbar-item-active-background:var( --studio-celadon-90 );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --studio-pink-5 );--color-sidebar-background-rgb:var( --studio-pink-5-rgb );--color-sidebar-border:var( --studio-pink-10 );--color-sidebar-text:var( --studio-pink-80 );--color-sidebar-text-rgb:var( --studio-pink-80-rgb );--color-sidebar-text-alternative:var( --studio-pink-60 );--color-sidebar-gridicon-fill:var( --studio-pink-70 );--color-sidebar-menu-selected-background:var( --studio-blue-50 );--color-sidebar-menu-selected-background-rgb:var( --studio-blue-50-rgb );--color-sidebar-menu-selected-text:var( --studio-white );--color-sidebar-menu-selected-text-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-background:var( --studio-pink-10 );--color-sidebar-menu-hover-background-rgb:var( --studio-pink-10-rgb );--color-sidebar-menu-hover-text:var( --studio-pink-90 );--color-sidebar-submenu-background:var( --studio-pink-90 );--color-sidebar-submenu-text:var( --studio-pink-0 );--color-sidebar-submenu-hover-text:var( --studio-blue-20 );--color-sidebar-submenu-selected-text:var( --studio-pink-0 )}.color-scheme.is-sunrise,.color-scheme.is-sunrise.is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#cf4944;--theme-base-color-rgb:207,73,68;--theme-submenu-text-color:#f1c8c7;--theme-submenu-background-color:#be3631;--theme-submenu-hover-text-color:#f7e3d3;--theme-icon-color:#f3f1f1;--theme-highlight-color:#dd823b;--theme-highlight-color-rgb:221,130,59;--theme-notification-color:#ccaf0b;--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --studio-orange-70 );--color-primary-dark-rgb:var( --studio-orange-70-rgb );--color-primary-light:var( --studio-orange-30 );--color-primary-light-rgb:var( --studio-orange-30-rgb );--color-primary-0:var( --studio-orange-0 );--color-primary-0-rgb:var( --studio-orange-0-rgb );--color-primary-5:var( --studio-orange-5 );--color-primary-5-rgb:var( --studio-orange-5-rgb );--color-primary-10:var( --studio-orange-10 );--color-primary-10-rgb:var( --studio-orange-10-rgb );--color-primary-20:var( --studio-orange-20 );--color-primary-20-rgb:var( --studio-orange-20-rgb );--color-primary-30:var( --studio-orange-30 );--color-primary-30-rgb:var( --studio-orange-30-rgb );--color-primary-40:var( --studio-orange-40 );--color-primary-40-rgb:var( --studio-orange-40-rgb );--color-primary-50:var( --studio-orange-50 );--color-primary-50-rgb:var( --studio-orange-50-rgb );--color-primary-60:var( --studio-orange-60 );--color-primary-60-rgb:var( --studio-orange-60-rgb );--color-primary-70:var( --studio-orange-70 );--color-primary-70-rgb:var( --studio-orange-70-rgb );--color-primary-80:var( --studio-orange-80 );--color-primary-80-rgb:var( --studio-orange-80-rgb );--color-primary-90:var( --studio-orange-90 );--color-primary-90-rgb:var( --studio-orange-90-rgb );--color-primary-100:var( --studio-orange-100 );--color-primary-100-rgb:var( --studio-orange-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --studio-orange-70 );--color-accent-dark-rgb:var( --studio-orange-70-rgb );--color-accent-light:var( --studio-orange-30 );--color-accent-light-rgb:var( --studio-orange-30-rgb );--color-accent-0:var( --studio-orange-0 );--color-accent-0-rgb:var( --studio-orange-0-rgb );--color-accent-5:var( --studio-orange-5 );--color-accent-5-rgb:var( --studio-orange-5-rgb );--color-accent-10:var( --studio-orange-10 );--color-accent-10-rgb:var( --studio-orange-10-rgb );--color-accent-20:var( --studio-orange-20 );--color-accent-20-rgb:var( --studio-orange-20-rgb );--color-accent-30:var( --studio-orange-30 );--color-accent-30-rgb:var( --studio-orange-30-rgb );--color-accent-40:var( --studio-orange-40 );--color-accent-40-rgb:var( --studio-orange-40-rgb );--color-accent-50:var( --studio-orange-50 );--color-accent-50-rgb:var( --studio-orange-50-rgb );--color-accent-60:var( --studio-orange-60 );--color-accent-60-rgb:var( --studio-orange-60-rgb );--color-accent-70:var( --studio-orange-70 );--color-accent-70-rgb:var( --studio-orange-70-rgb );--color-accent-80:var( --studio-orange-80 );--color-accent-80-rgb:var( --studio-orange-80-rgb );--color-accent-90:var( --studio-orange-90 );--color-accent-90-rgb:var( --studio-orange-90-rgb );--color-accent-100:var( --studio-orange-100 );--color-accent-100-rgb:var( --studio-orange-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-white );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:var( --studio-gray-0 );--color-sidebar-gridicon-fill:var( --theme-icon-color );--color-sidebar-menu-selected-background:var( --theme-highlight-color );--color-sidebar-menu-selected-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-selected-text:var( --theme-text-color );--color-sidebar-menu-selected-text-rgb:var( --theme-text-color-rgb );--color-sidebar-menu-hover-background:var( --theme-highlight-color );--color-sidebar-menu-hover-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-hover-text:var( --theme-text-color );--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var( --theme-submenu-hover-text-color )}.color-scheme.is-sunset,.color-scheme.is-sunset.is-nav-unification{--color-primary:var( --studio-red-50 );--color-primary-rgb:var( --studio-red-50-rgb );--color-primary-dark:var( --studio-red-70 );--color-primary-dark-rgb:var( --studio-red-70-rgb );--color-primary-light:var( --studio-red-30 );--color-primary-light-rgb:var( --studio-red-30-rgb );--color-primary-0:var( --studio-red-0 );--color-primary-0-rgb:var( --studio-red-0-rgb );--color-primary-5:var( --studio-red-5 );--color-primary-5-rgb:var( --studio-red-5-rgb );--color-primary-10:var( --studio-red-10 );--color-primary-10-rgb:var( --studio-red-10-rgb );--color-primary-20:var( --studio-red-20 );--color-primary-20-rgb:var( --studio-red-20-rgb );--color-primary-30:var( --studio-red-30 );--color-primary-30-rgb:var( --studio-red-30-rgb );--color-primary-40:var( --studio-red-40 );--color-primary-40-rgb:var( --studio-red-40-rgb );--color-primary-50:var( --studio-red-50 );--color-primary-50-rgb:var( --studio-red-50-rgb );--color-primary-60:var( --studio-red-60 );--color-primary-60-rgb:var( --studio-red-60-rgb );--color-primary-70:var( --studio-red-70 );--color-primary-70-rgb:var( --studio-red-70-rgb );--color-primary-80:var( --studio-red-80 );--color-primary-80-rgb:var( --studio-red-80-rgb );--color-primary-90:var( --studio-red-90 );--color-primary-90-rgb:var( --studio-red-90-rgb );--color-primary-100:var( --studio-red-100 );--color-primary-100-rgb:var( --studio-red-100-rgb );--color-accent:var( --studio-orange-50 );--color-accent-rgb:var( --studio-orange-50-rgb );--color-accent-dark:var( --studio-orange-70 );--color-accent-dark-rgb:var( --studio-orange-70-rgb );--color-accent-light:var( --studio-orange-30 );--color-accent-light-rgb:var( --studio-orange-30-rgb );--color-accent-0:var( --studio-orange-0 );--color-accent-0-rgb:var( --studio-orange-0-rgb );--color-accent-5:var( --studio-orange-5 );--color-accent-5-rgb:var( --studio-orange-5-rgb );--color-accent-10:var( --studio-orange-10 );--color-accent-10-rgb:var( --studio-orange-10-rgb );--color-accent-20:var( --studio-orange-20 );--color-accent-20-rgb:var( --studio-orange-20-rgb );--color-accent-30:var( --studio-orange-30 );--color-accent-30-rgb:var( --studio-orange-30-rgb );--color-accent-40:var( --studio-orange-40 );--color-accent-40-rgb:var( --studio-orange-40-rgb );--color-accent-50:var( --studio-orange-50 );--color-accent-50-rgb:var( --studio-orange-50-rgb );--color-accent-60:var( --studio-orange-60 );--color-accent-60-rgb:var( --studio-orange-60-rgb );--color-accent-70:var( --studio-orange-70 );--color-accent-70-rgb:var( --studio-orange-70-rgb );--color-accent-80:var( --studio-orange-80 );--color-accent-80-rgb:var( --studio-orange-80-rgb );--color-accent-90:var( --studio-orange-90 );--color-accent-90-rgb:var( --studio-orange-90-rgb );--color-accent-100:var( --studio-orange-100 );--color-accent-100-rgb:var( --studio-orange-100-rgb );--color-link:var( --studio-orange-50 );--color-link-rgb:var( --studio-orange-50-rgb );--color-link-dark:var( --studio-orange-70 );--color-link-dark-rgb:var( --studio-orange-70-rgb );--color-link-light:var( --studio-orange-30 );--color-link-light-rgb:var( --studio-orange-30-rgb );--color-link-0:var( --studio-orange-0 );--color-link-0-rgb:var( --studio-orange-0-rgb );--color-link-5:var( --studio-orange-5 );--color-link-5-rgb:var( --studio-orange-5-rgb );--color-link-10:var( --studio-orange-10 );--color-link-10-rgb:var( --studio-orange-10-rgb );--color-link-20:var( --studio-orange-20 );--color-link-20-rgb:var( --studio-orange-20-rgb );--color-link-30:var( --studio-orange-30 );--color-link-30-rgb:var( --studio-orange-30-rgb );--color-link-40:var( --studio-orange-40 );--color-link-40-rgb:var( --studio-orange-40-rgb );--color-link-50:var( --studio-orange-50 );--color-link-50-rgb:var( --studio-orange-50-rgb );--color-link-60:var( --studio-orange-60 );--color-link-60-rgb:var( --studio-orange-60-rgb );--color-link-70:var( --studio-orange-70 );--color-link-70-rgb:var( --studio-orange-70-rgb );--color-link-80:var( --studio-orange-80 );--color-link-80-rgb:var( --studio-orange-80-rgb );--color-link-90:var( --studio-orange-90 );--color-link-90-rgb:var( --studio-orange-90-rgb );--color-link-100:var( --studio-orange-100 );--color-link-100-rgb:var( --studio-orange-100-rgb );--color-masterbar-background:var( --studio-red-80 );--color-masterbar-border:var( --studio-red-80 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-red-90 );--color-masterbar-item-active-background:var( --studio-red-100 );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --studio-red-70 );--color-sidebar-background-rgb:var( --studio-red-70-rgb );--color-sidebar-border:var( --studio-red-80 );--color-sidebar-text:var( --studio-white );--color-sidebar-text-rgb:var( --studio-white-rgb );--color-sidebar-text-alternative:var( --studio-red-10 );--color-sidebar-gridicon-fill:var( --studio-red-5 );--color-sidebar-menu-selected-background:var( --studio-yellow-20 );--color-sidebar-menu-selected-background-rgb:var( --studio-yellow-20-rgb );--color-sidebar-menu-selected-text:var( --studio-yellow-80 );--color-sidebar-menu-selected-text-rgb:var( --studio-yellow-80-rgb );--color-sidebar-menu-hover-background:var( --studio-red-80 );--color-sidebar-menu-hover-background-rgb:var( --studio-red-80-rgb );--color-sidebar-menu-hover-text:var( --studio-white );--color-sidebar-submenu-background:var( --studio-red-60 );--color-sidebar-submenu-text:var( --studio-white );--color-sidebar-submenu-hover-text:var( --studio-yellow-20 );--color-sidebar-submenu-selected-text:var( --studio-white )}.color-scheme.is-jetpack-cloud,.theme-jetpack-cloud{--color-primary:var( --studio-black );--color-primary-rgb:var( --studio-black-rgb );--color-primary-dark:var( --studio-gray-70 );--color-primary-dark-rgb:var( --studio-gray-70-rgb );--color-primary-light:var( --studio-gray-30 );--color-primary-light-rgb:var( --studio-gray-30-rgb );--color-primary-0:var( --studio-gray-0 );--color-primary-0-rgb:var( --studio-gray-0-rgb );--color-primary-5:var( --studio-gray-5 );--color-primary-5-rgb:var( --studio-gray-5-rgb );--color-primary-10:var( --studio-gray-10 );--color-primary-10-rgb:var( --studio-gray-10-rgb );--color-primary-20:var( --studio-gray-20 );--color-primary-20-rgb:var( --studio-gray-20-rgb );--color-primary-30:var( --studio-gray-30 );--color-primary-30-rgb:var( --studio-gray-30-rgb );--color-primary-40:var( --studio-gray-40 );--color-primary-40-rgb:var( --studio-gray-40-rgb );--color-primary-50:var( --studio-gray-50 );--color-primary-50-rgb:var( --studio-gray-rgb );--color-primary-60:var( --studio-gray-60 );--color-primary-60-rgb:var( --studio-gray-60-rgb );--color-primary-70:var( --studio-gray-70 );--color-primary-70-rgb:var( --studio-gray-70-rgb );--color-primary-80:var( --studio-gray-80 );--color-primary-80-rgb:var( --studio-gray-80-rgb );--color-primary-90:var( --studio-gray-90 );--color-primary-90-rgb:var( --studio-gray-90-rgb );--color-primary-100:var( --studio-gray-100 );--color-primary-100-rgb:var( --studio-gray-100-rgb );--color-accent:var( --studio-black );--color-accent-rgb:var( --studio-black-rgb );--color-accent-dark:var( --studio-gray-70 );--color-accent-dark-rgb:var( --studio-gray-70-rgb );--color-accent-light:var( --studio-gray-30 );--color-accent-light-rgb:var( --studio-gray-30-rgb );--color-accent-0:var( --studio-gray-0 );--color-accent-0-rgb:var( --studio-gray-0-rgb );--color-accent-5:var( --studio-gray-5 );--color-accent-5-rgb:var( --studio-gray-5-rgb );--color-accent-10:var( --studio-gray-10 );--color-accent-10-rgb:var( --studio-gray-10-rgb );--color-accent-20:var( --studio-gray-20 );--color-accent-20-rgb:var( --studio-gray-20-rgb );--color-accent-30:var( --studio-gray-30 );--color-accent-30-rgb:var( --studio-gray-30-rgb );--color-accent-40:var( --studio-gray-40 );--color-accent-40-rgb:var( --studio-gray-40-rgb );--color-accent-50:var( --studio-gray-50 );--color-accent-50-rgb:var( --studio-gray-50-rgb );--color-accent-60:var( --studio-gray-60 );--color-accent-60-rgb:var( --studio-gray-60-rgb );--color-accent-70:var( --studio-gray-70 );--color-accent-70-rgb:var( --studio-gray-70-rgb );--color-accent-80:var( --studio-gray-80 );--color-accent-80-rgb:var( --studio-gray-80-rgb );--color-accent-90:var( --studio-gray-90 );--color-accent-90-rgb:var( --studio-gray-90-rgb );--color-accent-100:var( --studio-gray-100 );--color-accent-100-rgb:var( --studio-gray-100-rgb );--color-link:var( --studio-jetpack-green-50 );--color-link-rgb:var( --studio-jetpack-green-50-rgb );--color-link-dark:var( --studio-jetpack-green-70 );--color-link-dark-rgb:var( --studio-jetpack-green-70-rgb );--color-link-light:var( --studio-jetpack-green-30 );--color-link-light-rgb:var( --studio-jetpack-green-30-rgb );--color-link-0:var( --studio-jetpack-green-0 );--color-link-0-rgb:var( --studio-jetpack-green-0-rgb );--color-link-5:var( --studio-jetpack-green-5 );--color-link-5-rgb:var( --studio-jetpack-green-5-rgb );--color-link-10:var( --studio-jetpack-green-10 );--color-link-10-rgb:var( --studio-jetpack-green-10-rgb );--color-link-20:var( --studio-jetpack-green-20 );--color-link-20-rgb:var( --studio-jetpack-green-20-rgb );--color-link-30:var( --studio-jetpack-green-30 );--color-link-30-rgb:var( --studio-jetpack-green-30-rgb );--color-link-40:var( --studio-jetpack-green-40 );--color-link-40-rgb:var( --studio-jetpack-green-40-rgb );--color-link-50:var( --studio-gray-50 );--color-link-50-rgb:var( --studio-gray-50-rgb );--color-link-60:var( --studio-jetpack-green-60 );--color-link-60-rgb:var( --studio-jetpack-green-60-rgb );--color-link-70:var( --studio-jetpack-green-70 );--color-link-70-rgb:var( --studio-jetpack-green-70-rgb );--color-link-80:var( --studio-jetpack-green-80 );--color-link-80-rgb:var( --studio-jetpack-green-80-rgb );--color-link-90:var( --studio-jetpack-green-90 );--color-link-90-rgb:var( --studio-jetpack-green-90-rgb );--color-link-100:var( --studio-jetpack-green-100 );--color-link-100-rgb:var( --studio-jetpack-green-100-rgb );--color-masterbar-background:var( --studio-white );--color-masterbar-border:var( --studio-gray-5 );--color-masterbar-text:var( --studio-gray-50 );--color-masterbar-item-hover-background:var( --studio-white );--color-masterbar-item-active-background:var( --studio-white );--color-masterbar-item-new-editor-background:var( --studio-white );--color-masterbar-item-new-editor-hover-background:var( --studio-white );--color-masterbar-unread-dot-background:var( --color-accent-30 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --studio-white );--color-sidebar-background-rgb:var( --studio-white-rgb );--color-sidebar-border:var( --studio-gray-5 );--color-sidebar-text:var( --studio-gray-60 );--color-sidebar-text-rgb:var( --studio-gray-60-rgb );--color-sidebar-text-alternative:var( --studio-gray-60 );--color-sidebar-gridicon-fill:var( --studio-gray-60 );--color-sidebar-menu-selected-text:var( --studio-gray-90 );--color-sidebar-menu-selected-text-rgb:var( --studio-gray-90-rgb );--color-sidebar-menu-selected-background:var( --studio-gray-0 );--color-sidebar-menu-selected-background-rgb:var( --studio-gray-0-rgb );--color-sidebar-menu-selected-gridicon-fill:var( --studio-jetpack-green-50 );--color-sidebar-menu-hover-text:var( --studio-gray-90 );--color-sidebar-menu-hover-background:var( --studio-gray-0 );--color-sidebar-menu-hover-background-rgb:var( --studio-gray-0-rgb );--color-scary-0:var( --studio-red-0 );--color-scary-5:var( --studio-red-5 );--color-scary-40:var( --studio-red-40 );--color-scary-50:var( --studio-red-50 );--color-scary-60:var( --studio-red-60 );--color-scary-70:var( --studio-red-70 )}.pagination-control{display:flex;justify-content:center;margin:0;width:100%}.pagination-control li{align-items:center;border:none;display:inline-flex;height:18px;margin:auto 4px}.pagination-control li.pagination-control__last-item{height:32px;margin-left:auto}.pagination-control button.pagination-control__page{background-color:#c3c4c7;background-color:var(--color-neutral-10);border:none;border-radius:50%;cursor:pointer;height:6px;padding:0;transition:all .2s ease-in-out;width:6px}.pagination-control button.pagination-control__page:hover{background-color:#787c82;background-color:var(--color-neutral-40)}.pagination-control button.pagination-control__page:disabled{cursor:default}.pagination-control button.pagination-control__page.is-current{background-color:var(--wp-admin-theme-color)}.tour-kit-frame{visibility:hidden}.tour-kit-frame.is-visible{visibility:visible}.tour-kit-frame__container{background:#fff;border-radius:2px;bottom:44px;box-shadow:0 0 3px 0 rgba(0,0,0,.25);cursor:default;display:inline;left:16px;position:fixed;z-index:9999}.tour-kit-overlay{background:#000;height:100vh;left:0;opacity:0;position:fixed;top:0;width:100vw}.tour-kit-overlay.is-visible{opacity:.5}.tour-kit-spotlight.is-visible{outline:99999px solid rgba(0,0,0,.5);overflow:hidden;position:fixed;z-index:1}.tour-kit-frame__arrow{visibility:hidden}.tour-kit-frame__arrow,.tour-kit-frame__arrow:before{background:inherit;height:12px;position:absolute;width:12px;z-index:-1}.tour-kit-frame__arrow:before{content:"";transform:rotate(45deg);visibility:visible}.tour-kit-frame__container[data-popper-placement^=top]>.tour-kit-frame__arrow{bottom:-6px}.tour-kit-frame__container[data-popper-placement^=top]>.tour-kit-frame__arrow:before{box-shadow:1px 1px 2px -1px rgba(0,0,0,.25)}.tour-kit-frame__container[data-popper-placement^=bottom]>.tour-kit-frame__arrow{top:-6px}.tour-kit-frame__container[data-popper-placement^=bottom]>.tour-kit-frame__arrow:before{box-shadow:-1px -1px 2px -1px rgba(0,0,0,.25)}.tour-kit-frame__container[data-popper-placement^=left]>.tour-kit-frame__arrow{right:-6px}.tour-kit-frame__container[data-popper-placement^=left]>.tour-kit-frame__arrow:before{box-shadow:1px -1px 2px -1px rgba(0,0,0,.25)}.tour-kit-frame__container[data-popper-placement^=right]>.tour-kit-frame__arrow{left:-6px}.tour-kit-frame__container[data-popper-placement^=right]>.tour-kit-frame__arrow:before{box-shadow:-1px 1px 2px -1px rgba(0,0,0,.25)}
|
1 |
+
.wpcom-block-editor-nux-modal .components-modal__header{background-color:transparent;border-bottom:0;height:auto;left:0;margin:0;padding:10px;position:absolute;right:0}.wpcom-block-editor-nux-modal .components-modal__header button{left:unset}.wpcom-block-editor-nux-modal .components-modal__header button svg path{transform:scale(1.4);transform-origin:center}.wpcom-block-editor-nux-modal .components-modal__content{margin-top:0;padding:84px 20px 20px}.wpcom-block-editor-nux-modal .components-modal__content:before{margin:0}@media(min-width:480px){.wpcom-block-editor-nux-modal .components-modal__content{text-align:center}}.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__image-container{display:flex;justify-content:center}.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__title{font-size:2.25rem;font-weight:500;line-height:1.2;margin:34px 0 0}@media(min-width:480px){.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__title{margin-top:24px}}.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__description{font-size:1rem;margin:16px 0 0;max-width:352px}@media(min-width:480px){.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__description{font-size:1.125rem;margin:20px auto 0}}.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__buttons{display:flex;flex-direction:column;justify-content:center;margin-top:24px}.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__buttons .components-button{border-radius:3px;font-size:.875rem;height:40px;justify-content:center;min-width:130px}.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__buttons .components-button+.components-button{margin-top:12px}@media(min-width:480px){.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__buttons{flex-direction:row;margin-top:28px}.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__buttons .components-button+.components-button{margin-left:16px;margin-top:0}}@media(min-width:600px){.wpcom-block-editor-draft-post-modal .components-modal__content{padding:48px 128px}}.wpcom-block-editor-draft-post-modal .wpcom-block-editor-nux-modal__image-container img{height:95px;width:209px}@media(min-width:600px){.wpcom-block-editor-post-published-modal .components-modal__content{padding:48px 90px}}.wpcom-block-editor-post-published-modal .wpcom-block-editor-nux-modal__image-container img{height:85px;width:158px}.wpcom-block-editor-post-published-modal .wpcom-block-editor-nux-modal__buttons .components-button{min-width:113px}@media(min-width:600px){.wpcom-site-editor-seller-celebration-modal .components-modal__content{padding:48px 90px}}.wpcom-site-editor-seller-celebration-modal .wpcom-block-editor-nux-modal__image-container img{height:85px;width:158px}.wpcom-site-editor-seller-celebration-modal .wpcom-block-editor-nux-modal__buttons .components-button{min-width:113px}.wpcom-site-editor-seller-celebration-modal .wpcom-block-editor-nux-modal__buttons .components-button:not(.is-primary){border:1px solid #c3c4c7;border-radius:4px}@font-face{font-display:swap;font-family:Recoleta;font-weight:400;src:url(https://s1.wp.com/i/fonts/recoleta/400.woff2) format("woff2"),url(https://s1.wp.com/i/fonts/recoleta/400.woff) format("woff")}.wp-brand-font{font-family:"Noto Serif",Georgia,Times New Roman,Times,serif;font-weight:400}[lang*=af] .wp-brand-font,[lang*=ca] .wp-brand-font,[lang*=cs] .wp-brand-font,[lang*=da] .wp-brand-font,[lang*=de] .wp-brand-font,[lang*=en] .wp-brand-font,[lang*=es] .wp-brand-font,[lang*=eu] .wp-brand-font,[lang*=fi] .wp-brand-font,[lang*=fr] .wp-brand-font,[lang*=gl] .wp-brand-font,[lang*=hr] .wp-brand-font,[lang*=hu] .wp-brand-font,[lang*=id] .wp-brand-font,[lang*=is] .wp-brand-font,[lang*=it] .wp-brand-font,[lang*=lv] .wp-brand-font,[lang*=mt] .wp-brand-font,[lang*=nb] .wp-brand-font,[lang*=nl] .wp-brand-font,[lang*=pl] .wp-brand-font,[lang*=pt] .wp-brand-font,[lang*=ro] .wp-brand-font,[lang*=ru] .wp-brand-font,[lang*=sk] .wp-brand-font,[lang*=sl] .wp-brand-font,[lang*=sq] .wp-brand-font,[lang*=sr] .wp-brand-font,[lang*=sv] .wp-brand-font,[lang*=sw] .wp-brand-font,[lang*=tr] .wp-brand-font,[lang*=uz] .wp-brand-font{font-family:Recoleta,"Noto Serif",Georgia,Times New Roman,Times,serif}@keyframes onboarding-loading-pulse{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}.wpcom-block-editor-nux.components-modal__frame{height:65vh;overflow:visible;top:calc(17.5vh - 35px)}@media(max-width:660px){.wpcom-block-editor-nux.components-modal__frame{left:5vw;min-width:90vw;right:5vw;width:90vw}}@media(min-width:660px){.wpcom-block-editor-nux.components-modal__frame{height:350px;top:calc(50% - 35px);width:720px}}.wpcom-block-editor-nux .components-modal__header{left:5%;max-width:90%;position:absolute}@media(min-width:660px){.wpcom-block-editor-nux .components-modal__header{display:none}}.wpcom-block-editor-nux .components-guide__container{margin-top:0}.wpcom-block-editor-nux .components-guide__footer{background:#fff;border-top:1px solid #dcdcde;bottom:-70px;display:flex;height:70px;justify-content:center;left:0;margin:0;padding:20px 0;position:absolute;width:100%}@media(min-width:660px){.wpcom-block-editor-nux .components-guide__footer{border-top:none}}.wpcom-block-editor-nux .components-guide__page{height:100%;justify-content:start;max-width:90vw;position:absolute;width:100%}@media(min-width:660px){.wpcom-block-editor-nux .components-guide__page{max-width:100%}}.wpcom-block-editor-nux .components-guide__page-control{display:none;height:0;margin:0 auto;overflow:visible;position:relative;top:100%;z-index:2}.wpcom-block-editor-nux .components-guide__page-control:before{content:"";display:inline-block;height:70px;vertical-align:middle}.wpcom-block-editor-nux .components-guide__page-control li{margin-bottom:0;vertical-align:middle}@media(min-width:660px){.wpcom-block-editor-nux .components-guide__page-control{display:block}}.wpcom-block-editor-nux__page{background:#fff;display:flex;flex-direction:column-reverse;height:90%;justify-content:flex-end;max-width:90vw;width:100%}@media(min-width:660px){.wpcom-block-editor-nux__page{bottom:0;flex-direction:row;justify-content:flex-start;max-width:100%;min-height:350px;position:absolute}.wpcom-block-editor-nux__text,.wpcom-block-editor-nux__visual{flex:1 0 50%;min-width:290px}}.wpcom-block-editor-nux__text{height:60%;padding:0 25px 25px}@media(min-width:660px){.wpcom-block-editor-nux__text{height:auto;padding:40px 50px}}.wpcom-block-editor-nux__visual{background:#1381d8;height:40%;text-align:center}@media(min-width:660px){.wpcom-block-editor-nux__visual{height:auto}}.wpcom-block-editor-nux__heading{color:#1d2327;font-family:Recoleta,"Noto Serif",Georgia,Times New Roman,Times,serif;font-size:32px;font-weight:400;letter-spacing:-.4px;line-height:1.19}@media(min-width:660px){.wpcom-block-editor-nux__heading{font-size:42px}}body.locale-de .wpcom-block-editor-nux__heading{font-size:24px}@media(min-width:660px){body.locale-de .wpcom-block-editor-nux__heading{font-size:28px}}.wpcom-block-editor-nux__description{color:#50575e;font-size:15px;line-height:22px}@media(min-width:660px){.wpcom-block-editor-nux__description{font-size:17px;line-height:26px}}.wpcom-block-editor-nux__image{align-self:center;flex:1;height:auto;max-height:100%;max-width:100%}.wpcom-block-editor-nux__image.align-bottom{align-self:flex-end}@media(min-width:660px){.wpcom-block-editor-nux__image{max-height:none}}.wpcom-editor-welcome-tour .wpcom-editor-welcome-tour__step.is-with-extra-padding .components-card__media{background-color:#e7eaeb}.wpcom-editor-welcome-tour .wpcom-editor-welcome-tour__step.is-with-extra-padding .components-card__media img{left:14%;top:14%;width:86%}.wpcom-editor-welcome-tour .wpcom-tour-kit-step-card-overlay-controls{position:absolute}.wpcom-editor-welcome-tour-card-frame{position:relative}.wpcom-editor-welcome-tour-card-frame .components-guide__page-control{bottom:0;left:16px;margin:0;position:absolute}.wpcom-editor-welcome-tour-card-frame .components-guide__page-control li{margin-bottom:0}.wpcom-tour-kit-minimized{background-color:#fff;border-radius:2px;box-shadow:0 2px 6px rgba(60,66,87,.08),0 0 0 1px rgba(60,66,87,.16),0 1px 1px rgba(0,0,0,.08);color:#000}.wpcom-tour-kit-minimized .components-button{height:44px}.wpcom-tour-kit-minimized .components-button .wpcom-tour-kit-minimized__tour-index{color:#949494}.wpcom-tour-kit-minimized .components-button svg{color:#50575e}.wpcom-tour-kit-minimized .components-button:hover .wpcom-tour-kit-minimized__tour-index,.wpcom-tour-kit-minimized .components-button:hover svg{color:inherit}.wpcom-tour-kit-step-card__heading{font-size:1.125rem;margin:.5rem 0}.wpcom-tour-kit-step-card__description{font-size:.875rem;line-height:1.5rem;margin:0}.wpcom-tour-kit-step-card__description .components-button{height:auto;line-height:1;padding:0 0 0 4px;text-decoration:underline}.wpcom-tour-kit .tour-kit-frame__container{box-shadow:none}.wpcom-tour-kit-step-card{max-width:92vw;width:400px}.wpcom-tour-kit-step-card.wpcom-tour-kit-step-card.is-elevated{box-shadow:none;box-shadow:0 0 0 1px rgba(0,0,0,.1),0 2px 4px 0 rgba(0,0,0,.1)}.wpcom-tour-kit-step-card.components-card{border:none;border-radius:4px;box-shadow:none}.wpcom-tour-kit-step-card .components-card__body{min-height:114px}.wpcom-tour-kit-step-card .components-card__body,.wpcom-tour-kit-step-card .components-card__footer{border-top:none;padding:16px!important}.wpcom-tour-kit-step-card .components-card__footer .wpcom-tour-kit-rating__end-text{color:#949494;font-size:.875rem;font-style:italic}.wpcom-tour-kit-step-card .components-card__footer .wpcom-tour-kit-rating__end-icon.components-button.has-icon{background-color:#f6f7f7;border-radius:50%;color:#949494;margin-left:8px}.wpcom-tour-kit-step-card .components-card__footer .wpcom-tour-kit-rating__end-icon.components-button.has-icon path{fill:#949494}.wpcom-tour-kit-step-card .components-card__footer .wpcom-tour-kit-rating__end-icon.components-button.has-icon.active{background-color:#000;opacity:1}.wpcom-tour-kit-step-card .components-card__footer .wpcom-tour-kit-rating__end-icon.components-button.has-icon.active path{fill:#fff}.wpcom-tour-kit-step-card .components-card__media{height:0;padding-top:66%;position:relative;width:100%}.wpcom-tour-kit-step-card .components-card__media img{left:0;position:absolute;top:0;width:100%}.wpcom-tour-kit-step-card .components-guide__page-control{margin:0}.wpcom-tour-kit-step-card .components-guide__page-control .components-button{min-width:auto}.wpcom-tour-kit-step-card .components-guide__page-control .components-button.has-icon{padding:3px}.wpcom-tour-kit-step-card .components-guide__page-control li{margin-bottom:0}.wpcom-tour-kit-step-card-overlay-controls__minimize-icon svg{left:-2px;position:relative}.wpcom-tour-kit-step-card-overlay-controls{left:0;padding:12px;right:0;z-index:1}.wpcom-tour-kit-step-card-overlay-controls .components-button{background:#32373c;height:32px;min-width:32px;opacity:.7;transition:opacity .2s;width:32px}.wpcom-tour-kit-step-card-overlay-controls .components-button:active{opacity:.9}@media(hover:hover)and (pointer:fine){.wpcom-tour-kit-step-card-overlay-controls .components-button{opacity:0}.tour-kit-frame__container:focus-within .wpcom-tour-kit-step-card-overlay-controls .components-button,.tour-kit-frame__container:hover .wpcom-tour-kit-step-card-overlay-controls .components-button{opacity:.7}.tour-kit-frame__container:focus-within .wpcom-tour-kit-step-card-overlay-controls .components-button:focus,.tour-kit-frame__container:focus-within .wpcom-tour-kit-step-card-overlay-controls .components-button:hover,.tour-kit-frame__container:hover .wpcom-tour-kit-step-card-overlay-controls .components-button:focus,.tour-kit-frame__container:hover .wpcom-tour-kit-step-card-overlay-controls .components-button:hover{opacity:.9}}.wpcom-tour-kit-step-card-navigation__next-btn{justify-content:center;margin-left:12px;min-width:85px}.wpcom-tour-kit-step-card__media img{display:block;height:auto;max-width:100%;width:100%}.tour-kit-frame{visibility:hidden}.tour-kit-frame.is-visible{visibility:visible}.tour-kit-frame__container{background:#fff;border-radius:2px;bottom:44px;box-shadow:0 0 3px 0 rgba(0,0,0,.25);cursor:default;display:inline;left:16px;position:fixed;z-index:9999}.tour-kit-overlay{background:#000;height:100vh;left:0;opacity:0;position:fixed;top:0;width:100vw}.tour-kit-overlay.is-visible{opacity:.5}.tour-kit-spotlight.is-visible{outline:99999px solid rgba(0,0,0,.5);overflow:hidden;position:fixed;z-index:1}.tour-kit-frame__arrow{visibility:hidden}.tour-kit-frame__arrow,.tour-kit-frame__arrow:before{background:inherit;height:12px;position:absolute;width:12px;z-index:-1}.tour-kit-frame__arrow:before{content:"";transform:rotate(45deg);visibility:visible}.tour-kit-frame__container[data-popper-placement^=top]>.tour-kit-frame__arrow{bottom:-6px}.tour-kit-frame__container[data-popper-placement^=top]>.tour-kit-frame__arrow:before{box-shadow:1px 1px 2px -1px rgba(0,0,0,.25)}.tour-kit-frame__container[data-popper-placement^=bottom]>.tour-kit-frame__arrow{top:-6px}.tour-kit-frame__container[data-popper-placement^=bottom]>.tour-kit-frame__arrow:before{box-shadow:-1px -1px 2px -1px rgba(0,0,0,.25)}.tour-kit-frame__container[data-popper-placement^=left]>.tour-kit-frame__arrow{right:-6px}.tour-kit-frame__container[data-popper-placement^=left]>.tour-kit-frame__arrow:before{box-shadow:1px -1px 2px -1px rgba(0,0,0,.25)}.tour-kit-frame__container[data-popper-placement^=right]>.tour-kit-frame__arrow{left:-6px}.tour-kit-frame__container[data-popper-placement^=right]>.tour-kit-frame__arrow:before{box-shadow:-1px 1px 2px -1px rgba(0,0,0,.25)}:root{--studio-white:#fff;--studio-black:#000;--studio-gray-0:#f6f7f7;--studio-gray-5:#dcdcde;--studio-gray-10:#c3c4c7;--studio-gray-20:#a7aaad;--studio-gray-30:#8c8f94;--studio-gray-40:#787c82;--studio-gray-50:#646970;--studio-gray-60:#50575e;--studio-gray-70:#3c434a;--studio-gray-80:#2c3338;--studio-gray-90:#1d2327;--studio-gray-100:#101517;--studio-gray:#646970;--studio-blue-0:#e9f0f5;--studio-blue-5:#bbe0fa;--studio-blue-10:#91caf2;--studio-blue-20:#68b3e8;--studio-blue-30:#399ce3;--studio-blue-40:#1689db;--studio-blue-50:#0675c4;--studio-blue-60:#055d9c;--studio-blue-70:#044b7a;--studio-blue-80:#02395c;--studio-blue-90:#01283d;--studio-blue-100:#001621;--studio-blue:#0675c4;--studio-purple-0:#f2e9ed;--studio-purple-5:#ebcee0;--studio-purple-10:#e3afd5;--studio-purple-20:#d48fc8;--studio-purple-30:#c475bd;--studio-purple-40:#b35eb1;--studio-purple-50:#984a9c;--studio-purple-60:#7c3982;--studio-purple-70:#662c6e;--studio-purple-80:#4d2054;--studio-purple-90:#35163b;--studio-purple-100:#1e0c21;--studio-purple:#984a9c;--studio-pink-0:#f5e9ed;--studio-pink-5:#f2ceda;--studio-pink-10:#f7a8c3;--studio-pink-20:#f283aa;--studio-pink-30:#eb6594;--studio-pink-40:#e34c84;--studio-pink-50:#c9356e;--studio-pink-60:#ab235a;--studio-pink-70:#8c1749;--studio-pink-80:#700f3b;--studio-pink-90:#4f092a;--studio-pink-100:#260415;--studio-pink:#c9356e;--studio-red-0:#f7ebec;--studio-red-5:#facfd2;--studio-red-10:#ffabaf;--studio-red-20:#ff8085;--studio-red-30:#f86368;--studio-red-40:#e65054;--studio-red-50:#d63638;--studio-red-60:#b32d2e;--studio-red-70:#8a2424;--studio-red-80:#691c1c;--studio-red-90:#451313;--studio-red-100:#240a0a;--studio-red:#d63638;--studio-orange-0:#f5ece6;--studio-orange-5:#f7dcc6;--studio-orange-10:#ffbf86;--studio-orange-20:#faa754;--studio-orange-30:#e68b28;--studio-orange-40:#d67709;--studio-orange-50:#b26200;--studio-orange-60:#8a4d00;--studio-orange-70:#704000;--studio-orange-80:#543100;--studio-orange-90:#361f00;--studio-orange-100:#1f1200;--studio-orange:#b26200;--studio-yellow-0:#f5f1e1;--studio-yellow-5:#f5e6b3;--studio-yellow-10:#f2d76b;--studio-yellow-20:#f0c930;--studio-yellow-30:#deb100;--studio-yellow-40:#c08c00;--studio-yellow-50:#9d6e00;--studio-yellow-60:#7d5600;--studio-yellow-70:#674600;--studio-yellow-80:#4f3500;--studio-yellow-90:#320;--studio-yellow-100:#1c1300;--studio-yellow:#9d6e00;--studio-green-0:#e6f2e8;--studio-green-5:#b8e6bf;--studio-green-10:#68de86;--studio-green-20:#1ed15a;--studio-green-30:#00ba37;--studio-green-40:#00a32a;--studio-green-50:#008a20;--studio-green-60:#007017;--studio-green-70:#005c12;--studio-green-80:#00450c;--studio-green-90:#003008;--studio-green-100:#001c05;--studio-green:#008a20;--studio-celadon-0:#e4f2ed;--studio-celadon-5:#a7e8d3;--studio-celadon-10:#66deb9;--studio-celadon-20:#31cc9f;--studio-celadon-30:#09b585;--studio-celadon-40:#009e73;--studio-celadon-50:#008763;--studio-celadon-60:#007053;--studio-celadon-70:#005c44;--studio-celadon-80:#004533;--studio-celadon-90:#003024;--studio-celadon-100:#001c15;--studio-celadon:#008763;--studio-wordpress-blue-0:#e6f1f5;--studio-wordpress-blue-5:#bedae6;--studio-wordpress-blue-10:#98c6d9;--studio-wordpress-blue-20:#6ab3d0;--studio-wordpress-blue-30:#3895ba;--studio-wordpress-blue-40:#187aa2;--studio-wordpress-blue-50:#006088;--studio-wordpress-blue-60:#004e6e;--studio-wordpress-blue-70:#003c56;--studio-wordpress-blue-80:#002c40;--studio-wordpress-blue-90:#001d2d;--studio-wordpress-blue-100:#00101c;--studio-wordpress-blue:#006088;--studio-simplenote-blue-0:#e9ecf5;--studio-simplenote-blue-5:#ced9f2;--studio-simplenote-blue-10:#abc1f5;--studio-simplenote-blue-20:#84a4f0;--studio-simplenote-blue-30:#618df2;--studio-simplenote-blue-40:#4678eb;--studio-simplenote-blue-50:#3361cc;--studio-simplenote-blue-60:#1d4fc4;--studio-simplenote-blue-70:#113ead;--studio-simplenote-blue-80:#0d2f85;--studio-simplenote-blue-90:#09205c;--studio-simplenote-blue-100:#05102e;--studio-simplenote-blue:#3361cc;--studio-woocommerce-purple-0:#f7edf7;--studio-woocommerce-purple-5:#e5cfe8;--studio-woocommerce-purple-10:#d6b4e0;--studio-woocommerce-purple-20:#c792e0;--studio-woocommerce-purple-30:#af7dd1;--studio-woocommerce-purple-40:#9a69c7;--studio-woocommerce-purple-50:#7f54b3;--studio-woocommerce-purple-60:#674399;--studio-woocommerce-purple-70:#533582;--studio-woocommerce-purple-80:#3c2861;--studio-woocommerce-purple-90:#271b3d;--studio-woocommerce-purple-100:#140e1f;--studio-woocommerce-purple:#7f54b3;--studio-jetpack-green-0:#f0f2eb;--studio-jetpack-green-5:#d0e6b8;--studio-jetpack-green-10:#9dd977;--studio-jetpack-green-20:#64ca43;--studio-jetpack-green-30:#2fb41f;--studio-jetpack-green-40:#069e08;--studio-jetpack-green-50:#008710;--studio-jetpack-green-60:#007117;--studio-jetpack-green-70:#005b18;--studio-jetpack-green-80:#004515;--studio-jetpack-green-90:#003010;--studio-jetpack-green-100:#001c09;--studio-jetpack-green:#069e08;--studio-white-rgb:255,255,255;--studio-black-rgb:0,0,0;--studio-gray-0-rgb:246,247,247;--studio-gray-5-rgb:220,220,222;--studio-gray-10-rgb:195,196,199;--studio-gray-20-rgb:167,170,173;--studio-gray-30-rgb:140,143,148;--studio-gray-40-rgb:120,124,130;--studio-gray-50-rgb:100,105,112;--studio-gray-60-rgb:80,87,94;--studio-gray-70-rgb:60,67,74;--studio-gray-80-rgb:44,51,56;--studio-gray-90-rgb:29,35,39;--studio-gray-100-rgb:16,21,23;--studio-gray-rgb:100,105,112;--studio-blue-0-rgb:233,240,245;--studio-blue-5-rgb:187,224,250;--studio-blue-10-rgb:145,202,242;--studio-blue-20-rgb:104,179,232;--studio-blue-30-rgb:57,156,227;--studio-blue-40-rgb:22,137,219;--studio-blue-50-rgb:6,117,196;--studio-blue-60-rgb:5,93,156;--studio-blue-70-rgb:4,75,122;--studio-blue-80-rgb:2,57,92;--studio-blue-90-rgb:1,40,61;--studio-blue-100-rgb:0,22,33;--studio-blue-rgb:6,117,196;--studio-purple-0-rgb:242,233,237;--studio-purple-5-rgb:235,206,224;--studio-purple-10-rgb:227,175,213;--studio-purple-20-rgb:212,143,200;--studio-purple-30-rgb:196,117,189;--studio-purple-40-rgb:179,94,177;--studio-purple-50-rgb:152,74,156;--studio-purple-60-rgb:124,57,130;--studio-purple-70-rgb:102,44,110;--studio-purple-80-rgb:77,32,84;--studio-purple-90-rgb:53,22,59;--studio-purple-100-rgb:30,12,33;--studio-purple-rgb:152,74,156;--studio-pink-0-rgb:245,233,237;--studio-pink-5-rgb:242,206,218;--studio-pink-10-rgb:247,168,195;--studio-pink-20-rgb:242,131,170;--studio-pink-30-rgb:235,101,148;--studio-pink-40-rgb:227,76,132;--studio-pink-50-rgb:201,53,110;--studio-pink-60-rgb:171,35,90;--studio-pink-70-rgb:140,23,73;--studio-pink-80-rgb:112,15,59;--studio-pink-90-rgb:79,9,42;--studio-pink-100-rgb:38,4,21;--studio-pink-rgb:201,53,110;--studio-red-0-rgb:247,235,236;--studio-red-5-rgb:250,207,210;--studio-red-10-rgb:255,171,175;--studio-red-20-rgb:255,128,133;--studio-red-30-rgb:248,99,104;--studio-red-40-rgb:230,80,84;--studio-red-50-rgb:214,54,56;--studio-red-60-rgb:179,45,46;--studio-red-70-rgb:138,36,36;--studio-red-80-rgb:105,28,28;--studio-red-90-rgb:69,19,19;--studio-red-100-rgb:36,10,10;--studio-red-rgb:214,54,56;--studio-orange-0-rgb:245,236,230;--studio-orange-5-rgb:247,220,198;--studio-orange-10-rgb:255,191,134;--studio-orange-20-rgb:250,167,84;--studio-orange-30-rgb:230,139,40;--studio-orange-40-rgb:214,119,9;--studio-orange-50-rgb:178,98,0;--studio-orange-60-rgb:138,77,0;--studio-orange-70-rgb:112,64,0;--studio-orange-80-rgb:84,49,0;--studio-orange-90-rgb:54,31,0;--studio-orange-100-rgb:31,18,0;--studio-orange-rgb:178,98,0;--studio-yellow-0-rgb:245,241,225;--studio-yellow-5-rgb:245,230,179;--studio-yellow-10-rgb:242,215,107;--studio-yellow-20-rgb:240,201,48;--studio-yellow-30-rgb:222,177,0;--studio-yellow-40-rgb:192,140,0;--studio-yellow-50-rgb:157,110,0;--studio-yellow-60-rgb:125,86,0;--studio-yellow-70-rgb:103,70,0;--studio-yellow-80-rgb:79,53,0;--studio-yellow-90-rgb:51,34,0;--studio-yellow-100-rgb:28,19,0;--studio-yellow-rgb:157,110,0;--studio-green-0-rgb:230,242,232;--studio-green-5-rgb:184,230,191;--studio-green-10-rgb:104,222,134;--studio-green-20-rgb:30,209,90;--studio-green-30-rgb:0,186,55;--studio-green-40-rgb:0,163,42;--studio-green-50-rgb:0,138,32;--studio-green-60-rgb:0,112,23;--studio-green-70-rgb:0,92,18;--studio-green-80-rgb:0,69,12;--studio-green-90-rgb:0,48,8;--studio-green-100-rgb:0,28,5;--studio-green-rgb:0,138,32;--studio-celadon-0-rgb:228,242,237;--studio-celadon-5-rgb:167,232,211;--studio-celadon-10-rgb:102,222,185;--studio-celadon-20-rgb:49,204,159;--studio-celadon-30-rgb:9,181,133;--studio-celadon-40-rgb:0,158,115;--studio-celadon-50-rgb:0,135,99;--studio-celadon-60-rgb:0,112,83;--studio-celadon-70-rgb:0,92,68;--studio-celadon-80-rgb:0,69,51;--studio-celadon-90-rgb:0,48,36;--studio-celadon-100-rgb:0,28,21;--studio-celadon-rgb:0,135,99;--studio-wordpress-blue-0-rgb:230,241,245;--studio-wordpress-blue-5-rgb:190,218,230;--studio-wordpress-blue-10-rgb:152,198,217;--studio-wordpress-blue-20-rgb:106,179,208;--studio-wordpress-blue-30-rgb:56,149,186;--studio-wordpress-blue-40-rgb:24,122,162;--studio-wordpress-blue-50-rgb:0,96,136;--studio-wordpress-blue-60-rgb:0,78,110;--studio-wordpress-blue-70-rgb:0,60,86;--studio-wordpress-blue-80-rgb:0,44,64;--studio-wordpress-blue-90-rgb:0,29,45;--studio-wordpress-blue-100-rgb:0,16,28;--studio-wordpress-blue-rgb:0,96,136;--studio-simplenote-blue-0-rgb:233,236,245;--studio-simplenote-blue-5-rgb:206,217,242;--studio-simplenote-blue-10-rgb:171,193,245;--studio-simplenote-blue-20-rgb:132,164,240;--studio-simplenote-blue-30-rgb:97,141,242;--studio-simplenote-blue-40-rgb:70,120,235;--studio-simplenote-blue-50-rgb:51,97,204;--studio-simplenote-blue-60-rgb:29,79,196;--studio-simplenote-blue-70-rgb:17,62,173;--studio-simplenote-blue-80-rgb:13,47,133;--studio-simplenote-blue-90-rgb:9,32,92;--studio-simplenote-blue-100-rgb:5,16,46;--studio-simplenote-blue-rgb:51,97,204;--studio-woocommerce-purple-0-rgb:247,237,247;--studio-woocommerce-purple-5-rgb:229,207,232;--studio-woocommerce-purple-10-rgb:214,180,224;--studio-woocommerce-purple-20-rgb:199,146,224;--studio-woocommerce-purple-30-rgb:175,125,209;--studio-woocommerce-purple-40-rgb:154,105,199;--studio-woocommerce-purple-50-rgb:127,84,179;--studio-woocommerce-purple-60-rgb:103,67,153;--studio-woocommerce-purple-70-rgb:83,53,130;--studio-woocommerce-purple-80-rgb:60,40,97;--studio-woocommerce-purple-90-rgb:39,27,61;--studio-woocommerce-purple-100-rgb:20,14,31;--studio-woocommerce-purple-rgb:127,84,179;--studio-jetpack-green-0-rgb:240,242,235;--studio-jetpack-green-5-rgb:208,230,184;--studio-jetpack-green-10-rgb:157,217,119;--studio-jetpack-green-20-rgb:100,202,67;--studio-jetpack-green-30-rgb:47,180,31;--studio-jetpack-green-40-rgb:6,158,8;--studio-jetpack-green-50-rgb:0,135,16;--studio-jetpack-green-60-rgb:0,113,23;--studio-jetpack-green-70-rgb:0,91,24;--studio-jetpack-green-80-rgb:0,69,21;--studio-jetpack-green-90-rgb:0,48,16;--studio-jetpack-green-100-rgb:0,28,9;--studio-jetpack-green-rgb:6,158,8}.color-scheme.is-classic-bright.is-nav-unification,:root{--color-primary:var( --studio-blue-50 );--color-primary-rgb:var( --studio-blue-50-rgb );--color-primary-dark:var( --studio-blue-70 );--color-primary-dark-rgb:var( --studio-blue-70-rgb );--color-primary-light:var( --studio-blue-30 );--color-primary-light-rgb:var( --studio-blue-30-rgb );--color-primary-0:var( --studio-blue-0 );--color-primary-0-rgb:var( --studio-blue-0-rgb );--color-primary-5:var( --studio-blue-5 );--color-primary-5-rgb:var( --studio-blue-5-rgb );--color-primary-10:var( --studio-blue-10 );--color-primary-10-rgb:var( --studio-blue-10-rgb );--color-primary-20:var( --studio-blue-20 );--color-primary-20-rgb:var( --studio-blue-20-rgb );--color-primary-30:var( --studio-blue-30 );--color-primary-30-rgb:var( --studio-blue-30-rgb );--color-primary-40:var( --studio-blue-40 );--color-primary-40-rgb:var( --studio-blue-40-rgb );--color-primary-50:var( --studio-blue-50 );--color-primary-50-rgb:var( --studio-blue-50-rgb );--color-primary-60:var( --studio-blue-60 );--color-primary-60-rgb:var( --studio-blue-60-rgb );--color-primary-70:var( --studio-blue-70 );--color-primary-70-rgb:var( --studio-blue-70-rgb );--color-primary-80:var( --studio-blue-80 );--color-primary-80-rgb:var( --studio-blue-80-rgb );--color-primary-90:var( --studio-blue-90 );--color-primary-90-rgb:var( --studio-blue-90-rgb );--color-primary-100:var( --studio-blue-100 );--color-primary-100-rgb:var( --studio-blue-100-rgb );--color-accent:var( --studio-pink-50 );--color-accent-rgb:var( --studio-pink-50-rgb );--color-accent-dark:var( --studio-pink-70 );--color-accent-dark-rgb:var( --studio-pink-70-rgb );--color-accent-light:var( --studio-pink-30 );--color-accent-light-rgb:var( --studio-pink-30-rgb );--color-accent-0:var( --studio-pink-0 );--color-accent-0-rgb:var( --studio-pink-0-rgb );--color-accent-5:var( --studio-pink-5 );--color-accent-5-rgb:var( --studio-pink-5-rgb );--color-accent-10:var( --studio-pink-10 );--color-accent-10-rgb:var( --studio-pink-10-rgb );--color-accent-20:var( --studio-pink-20 );--color-accent-20-rgb:var( --studio-pink-20-rgb );--color-accent-30:var( --studio-pink-30 );--color-accent-30-rgb:var( --studio-pink-30-rgb );--color-accent-40:var( --studio-pink-40 );--color-accent-40-rgb:var( --studio-pink-40-rgb );--color-accent-50:var( --studio-pink-50 );--color-accent-50-rgb:var( --studio-pink-50-rgb );--color-accent-60:var( --studio-pink-60 );--color-accent-60-rgb:var( --studio-pink-60-rgb );--color-accent-70:var( --studio-pink-70 );--color-accent-70-rgb:var( --studio-pink-70-rgb );--color-accent-80:var( --studio-pink-80 );--color-accent-80-rgb:var( --studio-pink-80-rgb );--color-accent-90:var( --studio-pink-90 );--color-accent-90-rgb:var( --studio-pink-90-rgb );--color-accent-100:var( --studio-pink-100 );--color-accent-100-rgb:var( --studio-pink-100-rgb );--color-neutral:var( --studio-gray-50 );--color-neutral-rgb:var( --studio-gray-50-rgb );--color-neutral-dark:var( --studio-gray-70 );--color-neutral-dark-rgb:var( --studio-gray-70-rgb );--color-neutral-light:var( --studio-gray-30 );--color-neutral-light-rgb:var( --studio-gray-30-rgb );--color-neutral-0:var( --studio-gray-0 );--color-neutral-0-rgb:var( --studio-gray-0-rgb );--color-neutral-5:var( --studio-gray-5 );--color-neutral-5-rgb:var( --studio-gray-5-rgb );--color-neutral-10:var( --studio-gray-10 );--color-neutral-10-rgb:var( --studio-gray-10-rgb );--color-neutral-20:var( --studio-gray-20 );--color-neutral-20-rgb:var( --studio-gray-20-rgb );--color-neutral-30:var( --studio-gray-30 );--color-neutral-30-rgb:var( --studio-gray-30-rgb );--color-neutral-40:var( --studio-gray-40 );--color-neutral-40-rgb:var( --studio-gray-40-rgb );--color-neutral-50:var( --studio-gray-50 );--color-neutral-50-rgb:var( --studio-gray-50-rgb );--color-neutral-60:var( --studio-gray-60 );--color-neutral-60-rgb:var( --studio-gray-60-rgb );--color-neutral-70:var( --studio-gray-70 );--color-neutral-70-rgb:var( --studio-gray-70-rgb );--color-neutral-80:var( --studio-gray-80 );--color-neutral-80-rgb:var( --studio-gray-80-rgb );--color-neutral-90:var( --studio-gray-90 );--color-neutral-90-rgb:var( --studio-gray-90-rgb );--color-neutral-100:var( --studio-gray-100 );--color-neutral-100-rgb:var( --studio-gray-100-rgb );--color-success:var( --studio-green-50 );--color-success-rgb:var( --studio-green-50-rgb );--color-success-dark:var( --studio-green-70 );--color-success-dark-rgb:var( --studio-green-70-rgb );--color-success-light:var( --studio-green-30 );--color-success-light-rgb:var( --studio-green-30-rgb );--color-success-0:var( --studio-green-0 );--color-success-0-rgb:var( --studio-green-0-rgb );--color-success-5:var( --studio-green-5 );--color-success-5-rgb:var( --studio-green-5-rgb );--color-success-10:var( --studio-green-10 );--color-success-10-rgb:var( --studio-green-10-rgb );--color-success-20:var( --studio-green-20 );--color-success-20-rgb:var( --studio-green-20-rgb );--color-success-30:var( --studio-green-30 );--color-success-30-rgb:var( --studio-green-30-rgb );--color-success-40:var( --studio-green-40 );--color-success-40-rgb:var( --studio-green-40-rgb );--color-success-50:var( --studio-green-50 );--color-success-50-rgb:var( --studio-green-50-rgb );--color-success-60:var( --studio-green-60 );--color-success-60-rgb:var( --studio-green-60-rgb );--color-success-70:var( --studio-green-70 );--color-success-70-rgb:var( --studio-green-70-rgb );--color-success-80:var( --studio-green-80 );--color-success-80-rgb:var( --studio-green-80-rgb );--color-success-90:var( --studio-green-90 );--color-success-90-rgb:var( --studio-green-90-rgb );--color-success-100:var( --studio-green-100 );--color-success-100-rgb:var( --studio-green-100-rgb );--color-warning:var( --studio-yellow-50 );--color-warning-rgb:var( --studio-yellow-50-rgb );--color-warning-dark:var( --studio-yellow-70 );--color-warning-dark-rgb:var( --studio-yellow-70-rgb );--color-warning-light:var( --studio-yellow-30 );--color-warning-light-rgb:var( --studio-yellow-30-rgb );--color-warning-0:var( --studio-yellow-0 );--color-warning-0-rgb:var( --studio-yellow-0-rgb );--color-warning-5:var( --studio-yellow-5 );--color-warning-5-rgb:var( --studio-yellow-5-rgb );--color-warning-10:var( --studio-yellow-10 );--color-warning-10-rgb:var( --studio-yellow-10-rgb );--color-warning-20:var( --studio-yellow-20 );--color-warning-20-rgb:var( --studio-yellow-20-rgb );--color-warning-30:var( --studio-yellow-30 );--color-warning-30-rgb:var( --studio-yellow-30-rgb );--color-warning-40:var( --studio-yellow-40 );--color-warning-40-rgb:var( --studio-yellow-40-rgb );--color-warning-50:var( --studio-yellow-50 );--color-warning-50-rgb:var( --studio-yellow-50-rgb );--color-warning-60:var( --studio-yellow-60 );--color-warning-60-rgb:var( --studio-yellow-60-rgb );--color-warning-70:var( --studio-yellow-70 );--color-warning-70-rgb:var( --studio-yellow-70-rgb );--color-warning-80:var( --studio-yellow-80 );--color-warning-80-rgb:var( --studio-yellow-80-rgb );--color-warning-90:var( --studio-yellow-90 );--color-warning-90-rgb:var( --studio-yellow-90-rgb );--color-warning-100:var( --studio-yellow-100 );--color-warning-100-rgb:var( --studio-yellow-100-rgb );--color-error:var( --studio-red-50 );--color-error-rgb:var( --studio-red-50-rgb );--color-error-dark:var( --studio-red-70 );--color-error-dark-rgb:var( --studio-red-70-rgb );--color-error-light:var( --studio-red-30 );--color-error-light-rgb:var( --studio-red-30-rgb );--color-error-0:var( --studio-red-0 );--color-error-0-rgb:var( --studio-red-0-rgb );--color-error-5:var( --studio-red-5 );--color-error-5-rgb:var( --studio-red-5-rgb );--color-error-10:var( --studio-red-10 );--color-error-10-rgb:var( --studio-red-10-rgb );--color-error-20:var( --studio-red-20 );--color-error-20-rgb:var( --studio-red-20-rgb );--color-error-30:var( --studio-red-30 );--color-error-30-rgb:var( --studio-red-30-rgb );--color-error-40:var( --studio-red-40 );--color-error-40-rgb:var( --studio-red-40-rgb );--color-error-50:var( --studio-red-50 );--color-error-50-rgb:var( --studio-red-50-rgb );--color-error-60:var( --studio-red-60 );--color-error-60-rgb:var( --studio-red-60-rgb );--color-error-70:var( --studio-red-70 );--color-error-70-rgb:var( --studio-red-70-rgb );--color-error-80:var( --studio-red-80 );--color-error-80-rgb:var( --studio-red-80-rgb );--color-error-90:var( --studio-red-90 );--color-error-90-rgb:var( --studio-red-90-rgb );--color-error-100:var( --studio-red-100 );--color-error-100-rgb:var( --studio-red-100-rgb );--color-surface:var( --studio-white );--color-surface-rgb:var( --studio-white-rgb );--color-surface-backdrop:var( --studio-gray-0 );--color-surface-backdrop-rgb:var( --studio-gray-0-rgb );--color-text:var( --studio-gray-80 );--color-text-rgb:var( --studio-gray-80-rgb );--color-text-subtle:var( --studio-gray-50 );--color-text-subtle-rgb:var( --studio-gray-50-rgb );--color-text-inverted:var( --studio-white );--color-text-inverted-rgb:var( --studio-white-rgb );--color-border:var( --color-neutral-20 );--color-border-rgb:var( --color-neutral-20-rgb );--color-border-subtle:var( --color-neutral-5 );--color-border-subtle-rgb:var( --color-neutral-5-rgb );--color-border-shadow:var( --color-neutral-0 );--color-border-shadow-rgb:var( --color-neutral-0-rgb );--color-border-inverted:var( --studio-white );--color-border-inverted-rgb:var( --studio-white-rgb );--color-link:var( --studio-blue-50 );--color-link-rgb:var( --studio-blue-50-rgb );--color-link-dark:var( --studio-blue-70 );--color-link-dark-rgb:var( --studio-blue-70-rgb );--color-link-light:var( --studio-blue-30 );--color-link-light-rgb:var( --studio-blue-30-rgb );--color-link-0:var( --studio-blue-0 );--color-link-0-rgb:var( --studio-blue-0-rgb );--color-link-5:var( --studio-blue-5 );--color-link-5-rgb:var( --studio-blue-5-rgb );--color-link-10:var( --studio-blue-10 );--color-link-10-rgb:var( --studio-blue-10-rgb );--color-link-20:var( --studio-blue-20 );--color-link-20-rgb:var( --studio-blue-20-rgb );--color-link-30:var( --studio-blue-30 );--color-link-30-rgb:var( --studio-blue-30-rgb );--color-link-40:var( --studio-blue-40 );--color-link-40-rgb:var( --studio-blue-40-rgb );--color-link-50:var( --studio-blue-50 );--color-link-50-rgb:var( --studio-blue-50-rgb );--color-link-60:var( --studio-blue-60 );--color-link-60-rgb:var( --studio-blue-60-rgb );--color-link-70:var( --studio-blue-70 );--color-link-70-rgb:var( --studio-blue-70-rgb );--color-link-80:var( --studio-blue-80 );--color-link-80-rgb:var( --studio-blue-80-rgb );--color-link-90:var( --studio-blue-90 );--color-link-90-rgb:var( --studio-blue-90-rgb );--color-link-100:var( --studio-blue-100 );--color-link-100-rgb:var( --studio-blue-100-rgb );--color-plan-free:var( --studio-gray-30 );--color-plan-blogger:var( --studio-celadon-30 );--color-plan-personal:var( --studio-blue-30 );--color-plan-premium:var( --studio-yellow-30 );--color-plan-business:var( --studio-orange-30 );--color-plan-ecommerce:var( --studio-purple-30 );--color-premium-domain:var( --studio-wordpress-blue-60 );--color-jetpack-plan-free:var( --studio-blue-30 );--color-jetpack-plan-personal:var( --studio-yellow-30 );--color-jetpack-plan-premium:var( --studio-jetpack-green-30 );--color-jetpack-plan-professional:var( --studio-purple-30 );--color-masterbar-background:var( --studio-blue-60 );--color-masterbar-border:var( --studio-blue-70 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-blue-70 );--color-masterbar-item-active-background:var( --studio-blue-90 );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-40 );--color-masterbar-unread-dot-background:var( --color-accent-20 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-jetpack-masterbar-background:var( --studio-white );--color-jetpack-masterbar-border:var( --studio-gray-5 );--color-jetpack-masterbar-text:var( --studio-gray-50 );--color-jetpack-masterbar-item-hover-background:var( --studio-gray-5 );--color-jetpack-masterbar-item-active-background:var( --studio-gray-20 );--color-sidebar-background:var( --color-surface );--color-sidebar-background-rgb:var( --studio-white-rgb );--color-sidebar-border:var( --studio-gray-5 );--color-sidebar-text:var( --studio-gray-80 );--color-sidebar-text-rgb:var( --studio-gray-80-rgb );--color-sidebar-text-alternative:var( --studio-gray-50 );--color-sidebar-gridicon-fill:var( --studio-gray-50 );--color-sidebar-menu-selected-background:var( --studio-blue-5 );--color-sidebar-menu-selected-background-rgb:var( --studio-blue-5-rgb );--color-sidebar-menu-selected-text:var( --studio-blue-70 );--color-sidebar-menu-selected-text-rgb:var( --studio-blue-70-rgb );--color-sidebar-menu-hover-background:var( --studio-gray-5 );--color-sidebar-menu-hover-background-rgb:var( --studio-gray-5-rgb );--color-sidebar-menu-hover-text:var( --studio-gray-90 );--color-jetpack-onboarding-text:var( --studio-white );--color-jetpack-onboarding-text-rgb:var( --studio-white-rgb );--color-jetpack-onboarding-background:var( --studio-blue-100 );--color-jetpack-onboarding-background-rgb:var( --studio-blue-100-rgb );--color-automattic:var( --studio-blue-40 );--color-jetpack:var( --studio-jetpack-green );--color-simplenote:var( --studio-simplenote-blue );--color-woocommerce:var( --studio-woocommerce-purple );--color-wordpress-com:var( --studio-wordpress-blue );--color-wordpress-org:#585c60;--color-blogger:#ff5722;--color-eventbrite:#ff8000;--color-facebook:#39579a;--color-godaddy:#5ea95a;--color-google-plus:#df4a32;--color-instagram:#d93174;--color-linkedin:#0976b4;--color-medium:#12100e;--color-pinterest:#cc2127;--color-pocket:#ee4256;--color-print:#f8f8f8;--color-reddit:#5f99cf;--color-skype:#00aff0;--color-stumbleupon:#eb4924;--color-substack:#ff6719;--color-squarespace:#222;--color-telegram:#08c;--color-tumblr:#35465c;--color-twitter:#55acee;--color-whatsapp:#43d854;--color-wix:#faad4d;--color-email:var( --studio-gray-0 );--color-podcasting:#9b4dd5;--color-wp-admin-button-background:#008ec2;--color-wp-admin-button-border:#006799;--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#23282d;--theme-base-color-rgb:35,40,45;--theme-submenu-background-color:#131619;--theme-icon-color:#e1eaf2;--theme-highlight-color:#0073aa;--theme-highlight-color-rgb:0,115,170;--theme-notification-color:#d54e21;--color-sidebar-submenu-background:var( --studio-blue-0 );--color-sidebar-submenu-text:var( --studio-blue-70 );--color-sidebar-submenu-hover-text:var( --color-accent );--color-sidebar-submenu-selected-text:var( --color-accent )}.color-scheme.is-aquatic,.color-scheme.is-aquatic.is-nav-unification{--color-primary:var( --studio-blue-50 );--color-primary-rgb:var( --studio-blue-50-rgb );--color-primary-dark:var( --studio-blue-70 );--color-primary-dark-rgb:var( --studio-blue-70-rgb );--color-primary-light:var( --studio-blue-30 );--color-primary-light-rgb:var( --studio-blue-30-rgb );--color-primary-0:var( --studio-blue-0 );--color-primary-0-rgb:var( --studio-blue-0-rgb );--color-primary-5:var( --studio-blue-5 );--color-primary-5-rgb:var( --studio-blue-5-rgb );--color-primary-10:var( --studio-blue-10 );--color-primary-10-rgb:var( --studio-blue-10-rgb );--color-primary-20:var( --studio-blue-20 );--color-primary-20-rgb:var( --studio-blue-20-rgb );--color-primary-30:var( --studio-blue-30 );--color-primary-30-rgb:var( --studio-blue-30-rgb );--color-primary-40:var( --studio-blue-40 );--color-primary-40-rgb:var( --studio-blue-40-rgb );--color-primary-50:var( --studio-blue-50 );--color-primary-50-rgb:var( --studio-blue-50-rgb );--color-primary-60:var( --studio-blue-60 );--color-primary-60-rgb:var( --studio-blue-60-rgb );--color-primary-70:var( --studio-blue-70 );--color-primary-70-rgb:var( --studio-blue-70-rgb );--color-primary-80:var( --studio-blue-80 );--color-primary-80-rgb:var( --studio-blue-80-rgb );--color-primary-90:var( --studio-blue-90 );--color-primary-90-rgb:var( --studio-blue-90-rgb );--color-primary-100:var( --studio-blue-100 );--color-primary-100-rgb:var( --studio-blue-100-rgb );--color-accent:var( --studio-celadon-50 );--color-accent-rgb:var( --studio-celadon-50-rgb );--color-accent-dark:var( --studio-celadon-70 );--color-accent-dark-rgb:var( --studio-celadon-70-rgb );--color-accent-light:var( --studio-celadon-30 );--color-accent-light-rgb:var( --studio-celadon-30-rgb );--color-accent-0:var( --studio-celadon-0 );--color-accent-0-rgb:var( --studio-celadon-0-rgb );--color-accent-5:var( --studio-celadon-5 );--color-accent-5-rgb:var( --studio-celadon-5-rgb );--color-accent-10:var( --studio-celadon-10 );--color-accent-10-rgb:var( --studio-celadon-10-rgb );--color-accent-20:var( --studio-celadon-20 );--color-accent-20-rgb:var( --studio-celadon-20-rgb );--color-accent-30:var( --studio-celadon-30 );--color-accent-30-rgb:var( --studio-celadon-30-rgb );--color-accent-40:var( --studio-celadon-40 );--color-accent-40-rgb:var( --studio-celadon-40-rgb );--color-accent-50:var( --studio-celadon-50 );--color-accent-50-rgb:var( --studio-celadon-50-rgb );--color-accent-60:var( --studio-celadon-60 );--color-accent-60-rgb:var( --studio-celadon-60-rgb );--color-accent-70:var( --studio-celadon-70 );--color-accent-70-rgb:var( --studio-celadon-70-rgb );--color-accent-80:var( --studio-celadon-80 );--color-accent-80-rgb:var( --studio-celadon-80-rgb );--color-accent-90:var( --studio-celadon-90 );--color-accent-90-rgb:var( --studio-celadon-90-rgb );--color-accent-100:var( --studio-celadon-100 );--color-accent-100-rgb:var( --studio-celadon-100-rgb );--color-link:var( --studio-celadon-50 );--color-link-rgb:var( --studio-celadon-50-rgb );--color-link-dark:var( --studio-celadon-70 );--color-link-dark-rgb:var( --studio-celadon-70-rgb );--color-link-light:var( --studio-celadon-30 );--color-link-light-rgb:var( --studio-celadon-30-rgb );--color-link-0:var( --studio-celadon-0 );--color-link-0-rgb:var( --studio-celadon-0-rgb );--color-link-5:var( --studio-celadon-5 );--color-link-5-rgb:var( --studio-celadon-5-rgb );--color-link-10:var( --studio-celadon-10 );--color-link-10-rgb:var( --studio-celadon-10-rgb );--color-link-20:var( --studio-celadon-20 );--color-link-20-rgb:var( --studio-celadon-20-rgb );--color-link-30:var( --studio-celadon-30 );--color-link-30-rgb:var( --studio-celadon-30-rgb );--color-link-40:var( --studio-celadon-40 );--color-link-40-rgb:var( --studio-celadon-40-rgb );--color-link-50:var( --studio-celadon-50 );--color-link-50-rgb:var( --studio-celadon-50-rgb );--color-link-60:var( --studio-celadon-60 );--color-link-60-rgb:var( --studio-celadon-60-rgb );--color-link-70:var( --studio-celadon-70 );--color-link-70-rgb:var( --studio-celadon-70-rgb );--color-link-80:var( --studio-celadon-80 );--color-link-80-rgb:var( --studio-celadon-80-rgb );--color-link-90:var( --studio-celadon-90 );--color-link-90-rgb:var( --studio-celadon-90-rgb );--color-link-100:var( --studio-celadon-100 );--color-link-100-rgb:var( --studio-celadon-100-rgb );--color-masterbar-background:var( --studio-blue-80 );--color-masterbar-border:var( --studio-blue-80 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-blue-90 );--color-masterbar-item-active-background:var( --studio-blue-100 );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-unread-dot-background:var( --color-accent-30 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --studio-blue-60 );--color-sidebar-background-rgb:var( --studio-blue-60-rgb );--color-sidebar-border:var( --studio-blue-70 );--color-sidebar-text:var( --studio-white );--color-sidebar-text-rgb:var( --studio-white-rgb );--color-sidebar-text-alternative:var( --studio-blue-5 );--color-sidebar-gridicon-fill:var( --studio-blue-5 );--color-sidebar-menu-selected-background:var( --studio-yellow-20 );--color-sidebar-menu-selected-background-rgb:var( --studio-yellow-20-rgb );--color-sidebar-menu-selected-text:var( --studio-blue-90 );--color-sidebar-menu-selected-text-rgb:var( --studio-blue-90-rgb );--color-sidebar-menu-hover-background:var( --studio-blue-50 );--color-sidebar-menu-hover-background-rgb:var( --studio-blue-50-rgb );--color-sidebar-menu-hover-text:var( --studio-white );--color-sidebar-submenu-background:var( --studio-blue-80 );--color-sidebar-submenu-text:var( --studio-white );--color-sidebar-submenu-hover-text:var( --studio-yellow-20 )}.color-scheme.is-blue,.color-scheme.is-blue.is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#52accc;--theme-base-color-rgb:82,172,204;--theme-submenu-text-color:#cbe6f0;--theme-submenu-background-color:#4796b3;--theme-icon-color:#e5f8ff;--theme-highlight-color:#096484;--theme-highlight-color-rgb:9,100,132;--theme-notification-color:#e1a948;--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --studio-blue-70 );--color-primary-dark-rgb:var( --studio-blue-70-rgb );--color-primary-light:var( --studio-blue-30 );--color-primary-light-rgb:var( --studio-blue-30-rgb );--color-primary-0:var( --studio-blue-0 );--color-primary-0-rgb:var( --studio-blue-0-rgb );--color-primary-5:var( --studio-blue-5 );--color-primary-5-rgb:var( --studio-blue-5-rgb );--color-primary-10:var( --studio-blue-10 );--color-primary-10-rgb:var( --studio-blue-10-rgb );--color-primary-20:var( --studio-blue-20 );--color-primary-20-rgb:var( --studio-blue-20-rgb );--color-primary-30:var( --studio-blue-30 );--color-primary-30-rgb:var( --studio-blue-30-rgb );--color-primary-40:var( --studio-blue-40 );--color-primary-40-rgb:var( --studio-blue-40-rgb );--color-primary-50:var( --studio-blue-50 );--color-primary-50-rgb:var( --studio-blue-50-rgb );--color-primary-60:var( --studio-blue-60 );--color-primary-60-rgb:var( --studio-blue-60-rgb );--color-primary-70:var( --studio-blue-70 );--color-primary-70-rgb:var( --studio-blue-70-rgb );--color-primary-80:var( --studio-blue-80 );--color-primary-80-rgb:var( --studio-blue-80-rgb );--color-primary-90:var( --studio-blue-90 );--color-primary-90-rgb:var( --studio-blue-90-rgb );--color-primary-100:var( --studio-blue-100 );--color-primary-100-rgb:var( --studio-blue-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --studio-blue-70 );--color-accent-dark-rgb:var( --studio-blue-70-rgb );--color-accent-light:var( --studio-blue-30 );--color-accent-light-rgb:var( --studio-blue-30-rgb );--color-accent-0:var( --studio-blue-0 );--color-accent-0-rgb:var( --studio-blue-0-rgb );--color-accent-5:var( --studio-blue-5 );--color-accent-5-rgb:var( --studio-blue-5-rgb );--color-accent-10:var( --studio-blue-10 );--color-accent-10-rgb:var( --studio-blue-10-rgb );--color-accent-20:var( --studio-blue-20 );--color-accent-20-rgb:var( --studio-blue-20-rgb );--color-accent-30:var( --studio-blue-30 );--color-accent-30-rgb:var( --studio-blue-30-rgb );--color-accent-40:var( --studio-blue-40 );--color-accent-40-rgb:var( --studio-blue-40-rgb );--color-accent-50:var( --studio-blue-50 );--color-accent-50-rgb:var( --studio-blue-50-rgb );--color-accent-60:var( --studio-blue-60 );--color-accent-60-rgb:var( --studio-blue-60-rgb );--color-accent-70:var( --studio-blue-70 );--color-accent-70-rgb:var( --studio-blue-70-rgb );--color-accent-80:var( --studio-blue-80 );--color-accent-80-rgb:var( --studio-blue-80-rgb );--color-accent-90:var( --studio-blue-90 );--color-accent-90-rgb:var( --studio-blue-90-rgb );--color-accent-100:var( --studio-blue-100 );--color-accent-100-rgb:var( --studio-blue-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-white );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:#e2ecf1;--color-sidebar-gridicon-fill:var( --theme-icon-color );--color-sidebar-menu-selected-background:var( --theme-highlight-color );--color-sidebar-menu-selected-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-selected-text:var( --theme-text-color );--color-sidebar-menu-selected-text-rgb:var( --theme-text-color-rgb );--color-sidebar-menu-hover-background:var( --theme-highlight-color );--color-sidebar-menu-hover-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-hover-text:var( --theme-text-color );--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var( --theme-text-color )}.color-scheme.is-classic-blue,.color-scheme.is-classic-blue.is-nav-unification{--color-primary:var( --studio-blue-50 );--color-primary-rgb:var( --studio-blue-50-rgb );--color-primary-dark:var( --studio-blue-70 );--color-primary-dark-rgb:var( --studio-blue-70-rgb );--color-primary-light:var( --studio-blue-30 );--color-primary-light-rgb:var( --studio-blue-30-rgb );--color-primary-0:var( --studio-blue-0 );--color-primary-0-rgb:var( --studio-blue-0-rgb );--color-primary-5:var( --studio-blue-5 );--color-primary-5-rgb:var( --studio-blue-5-rgb );--color-primary-10:var( --studio-blue-10 );--color-primary-10-rgb:var( --studio-blue-10-rgb );--color-primary-20:var( --studio-blue-20 );--color-primary-20-rgb:var( --studio-blue-20-rgb );--color-primary-30:var( --studio-blue-30 );--color-primary-30-rgb:var( --studio-blue-30-rgb );--color-primary-40:var( --studio-blue-40 );--color-primary-40-rgb:var( --studio-blue-40-rgb );--color-primary-50:var( --studio-blue-50 );--color-primary-50-rgb:var( --studio-blue-50-rgb );--color-primary-60:var( --studio-blue-60 );--color-primary-60-rgb:var( --studio-blue-60-rgb );--color-primary-70:var( --studio-blue-70 );--color-primary-70-rgb:var( --studio-blue-70-rgb );--color-primary-80:var( --studio-blue-80 );--color-primary-80-rgb:var( --studio-blue-80-rgb );--color-primary-90:var( --studio-blue-90 );--color-primary-90-rgb:var( --studio-blue-90-rgb );--color-primary-100:var( --studio-blue-100 );--color-primary-100-rgb:var( --studio-blue-100-rgb );--color-accent:var( --studio-orange-50 );--color-accent-rgb:var( --studio-orange-50-rgb );--color-accent-dark:var( --studio-orange-70 );--color-accent-dark-rgb:var( --studio-orange-70-rgb );--color-accent-light:var( --studio-orange-30 );--color-accent-light-rgb:var( --studio-orange-30-rgb );--color-accent-0:var( --studio-orange-0 );--color-accent-0-rgb:var( --studio-orange-0-rgb );--color-accent-5:var( --studio-orange-5 );--color-accent-5-rgb:var( --studio-orange-5-rgb );--color-accent-10:var( --studio-orange-10 );--color-accent-10-rgb:var( --studio-orange-10-rgb );--color-accent-20:var( --studio-orange-20 );--color-accent-20-rgb:var( --studio-orange-20-rgb );--color-accent-30:var( --studio-orange-30 );--color-accent-30-rgb:var( --studio-orange-30-rgb );--color-accent-40:var( --studio-orange-40 );--color-accent-40-rgb:var( --studio-orange-40-rgb );--color-accent-50:var( --studio-orange-50 );--color-accent-50-rgb:var( --studio-orange-50-rgb );--color-accent-60:var( --studio-orange-60 );--color-accent-60-rgb:var( --studio-orange-60-rgb );--color-accent-70:var( --studio-orange-70 );--color-accent-70-rgb:var( --studio-orange-70-rgb );--color-accent-80:var( --studio-orange-80 );--color-accent-80-rgb:var( --studio-orange-80-rgb );--color-accent-90:var( --studio-orange-90 );--color-accent-90-rgb:var( --studio-orange-90-rgb );--color-accent-100:var( --studio-orange-100 );--color-accent-100-rgb:var( --studio-orange-100-rgb );--color-masterbar-background:var( --studio-blue-60 );--color-masterbar-border:var( --studio-blue-70 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-blue-70 );--color-masterbar-item-active-background:var( --studio-blue-90 );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-40 );--color-masterbar-unread-dot-background:var( --color-accent-30 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --studio-gray-5 );--color-sidebar-background-rgb:var( --studio-gray-5-rgb );--color-sidebar-border:var( --studio-gray-10 );--color-sidebar-text:var( --studio-gray-80 );--color-sidebar-text-alternative:var( --studio-gray-50 );--color-sidebar-gridicon-fill:var( --studio-gray-50 );--color-sidebar-menu-selected-background:var( --studio-gray-60 );--color-sidebar-menu-selected-background-rgb:var( --studio-gray-60-rgb );--color-sidebar-menu-selected-text:var( --studio-white );--color-sidebar-menu-selected-text-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-background:var( --color-surface );--color-sidebar-menu-hover-background-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-text:var( --studio-blue-50 );--color-sidebar-submenu-background:var( --studio-blue-60 );--color-sidebar-submenu-text:var( --studio-white );--color-sidebar-submenu-hover-text:var( --studio-orange-30 )}.color-scheme.is-classic-dark,.color-scheme.is-classic-dark.is-nav-unification{--color-primary:var( --studio-gray-90 );--color-primary-rgb:var( --studio-gray-90-rgb );--color-primary-dark:var( --studio-gray-70 );--color-primary-dark-rgb:var( --studio-gray-70-rgb );--color-primary-light:var( --studio-gray-30 );--color-primary-light-rgb:var( --studio-gray-30-rgb );--color-primary-0:var( --studio-gray-0 );--color-primary-0-rgb:var( --studio-gray-0-rgb );--color-primary-5:var( --studio-gray-5 );--color-primary-5-rgb:var( --studio-gray-5-rgb );--color-primary-10:var( --studio-gray-10 );--color-primary-10-rgb:var( --studio-gray-10-rgb );--color-primary-20:var( --studio-gray-20 );--color-primary-20-rgb:var( --studio-gray-20-rgb );--color-primary-30:var( --studio-gray-30 );--color-primary-30-rgb:var( --studio-gray-30-rgb );--color-primary-40:var( --studio-gray-40 );--color-primary-40-rgb:var( --studio-gray-40-rgb );--color-primary-50:var( --studio-gray-50 );--color-primary-50-rgb:var( --studio-gray-50-rgb );--color-primary-60:var( --studio-gray-60 );--color-primary-60-rgb:var( --studio-gray-60-rgb );--color-primary-70:var( --studio-gray-70 );--color-primary-70-rgb:var( --studio-gray-70-rgb );--color-primary-80:var( --studio-gray-80 );--color-primary-80-rgb:var( --studio-gray-80-rgb );--color-primary-90:var( --studio-gray-90 );--color-primary-90-rgb:var( --studio-gray-90-rgb );--color-primary-100:var( --studio-gray-100 );--color-primary-100-rgb:var( --studio-gray-100-rgb );--color-accent:var( --studio-pink-50 );--color-accent-rgb:var( --studio-pink-50-rgb );--color-accent-dark:var( --studio-pink-70 );--color-accent-dark-rgb:var( --studio-pink-70-rgb );--color-accent-light:var( --studio-pink-30 );--color-accent-light-rgb:var( --studio-pink-30-rgb );--color-accent-0:var( --studio-pink-0 );--color-accent-0-rgb:var( --studio-pink-0-rgb );--color-accent-5:var( --studio-pink-5 );--color-accent-5-rgb:var( --studio-pink-5-rgb );--color-accent-10:var( --studio-pink-10 );--color-accent-10-rgb:var( --studio-pink-10-rgb );--color-accent-20:var( --studio-pink-20 );--color-accent-20-rgb:var( --studio-pink-20-rgb );--color-accent-30:var( --studio-pink-30 );--color-accent-30-rgb:var( --studio-pink-30-rgb );--color-accent-40:var( --studio-pink-40 );--color-accent-40-rgb:var( --studio-pink-40-rgb );--color-accent-50:var( --studio-pink-50 );--color-accent-50-rgb:var( --studio-pink-50-rgb );--color-accent-60:var( --studio-pink-60 );--color-accent-60-rgb:var( --studio-pink-60-rgb );--color-accent-70:var( --studio-pink-70 );--color-accent-70-rgb:var( --studio-pink-70-rgb );--color-accent-80:var( --studio-pink-80 );--color-accent-80-rgb:var( --studio-pink-80-rgb );--color-accent-90:var( --studio-pink-90 );--color-accent-90-rgb:var( --studio-pink-90-rgb );--color-accent-100:var( --studio-pink-100 );--color-accent-100-rgb:var( --studio-pink-100-rgb );--color-neutral:var( --studio-gray-50 );--color-neutral-rgb:var( --studio-gray-50-rgb );--color-neutral-dark:var( --studio-gray-70 );--color-neutral-dark-rgb:var( --studio-gray-70-rgb );--color-neutral-light:var( --studio-gray-30 );--color-neutral-light-rgb:var( --studio-gray-30-rgb );--color-neutral-0:var( --studio-gray-0 );--color-neutral-0-rgb:var( --studio-gray-0-rgb );--color-neutral-5:var( --studio-gray-5 );--color-neutral-5-rgb:var( --studio-gray-5-rgb );--color-neutral-10:var( --studio-gray-10 );--color-neutral-10-rgb:var( --studio-gray-10-rgb );--color-neutral-20:var( --studio-gray-20 );--color-neutral-20-rgb:var( --studio-gray-20-rgb );--color-neutral-30:var( --studio-gray-30 );--color-neutral-30-rgb:var( --studio-gray-30-rgb );--color-neutral-40:var( --studio-gray-40 );--color-neutral-40-rgb:var( --studio-gray-40-rgb );--color-neutral-50:var( --studio-gray-50 );--color-neutral-50-rgb:var( --studio-gray-50-rgb );--color-neutral-60:var( --studio-gray-60 );--color-neutral-60-rgb:var( --studio-gray-60-rgb );--color-neutral-70:var( --studio-gray-70 );--color-neutral-70-rgb:var( --studio-gray-70-rgb );--color-neutral-80:var( --studio-gray-80 );--color-neutral-80-rgb:var( --studio-gray-80-rgb );--color-neutral-90:var( --studio-gray-90 );--color-neutral-90-rgb:var( --studio-gray-90-rgb );--color-neutral-100:var( --studio-gray-100 );--color-neutral-100-rgb:var( --studio-gray-100-rgb );--color-success:var( --studio-green-50 );--color-success-rgb:var( --studio-green-50-rgb );--color-success-dark:var( --studio-green-70 );--color-success-dark-rgb:var( --studio-green-70-rgb );--color-success-light:var( --studio-green-30 );--color-success-light-rgb:var( --studio-green-30-rgb );--color-success-0:var( --studio-green-0 );--color-success-0-rgb:var( --studio-green-0-rgb );--color-success-5:var( --studio-green-5 );--color-success-5-rgb:var( --studio-green-5-rgb );--color-success-10:var( --studio-green-10 );--color-success-10-rgb:var( --studio-green-10-rgb );--color-success-20:var( --studio-green-20 );--color-success-20-rgb:var( --studio-green-20-rgb );--color-success-30:var( --studio-green-30 );--color-success-30-rgb:var( --studio-green-30-rgb );--color-success-40:var( --studio-green-40 );--color-success-40-rgb:var( --studio-green-40-rgb );--color-success-50:var( --studio-green-50 );--color-success-50-rgb:var( --studio-green-50-rgb );--color-success-60:var( --studio-green-60 );--color-success-60-rgb:var( --studio-green-60-rgb );--color-success-70:var( --studio-green-70 );--color-success-70-rgb:var( --studio-green-70-rgb );--color-success-80:var( --studio-green-80 );--color-success-80-rgb:var( --studio-green-80-rgb );--color-success-90:var( --studio-green-90 );--color-success-90-rgb:var( --studio-green-90-rgb );--color-success-100:var( --studio-green-100 );--color-success-100-rgb:var( --studio-green-100-rgb );--color-warning:var( --studio-yellow-50 );--color-warning-rgb:var( --studio-yellow-50-rgb );--color-warning-dark:var( --studio-yellow-70 );--color-warning-dark-rgb:var( --studio-yellow-70-rgb );--color-warning-light:var( --studio-yellow-30 );--color-warning-light-rgb:var( --studio-yellow-30-rgb );--color-warning-0:var( --studio-yellow-0 );--color-warning-0-rgb:var( --studio-yellow-0-rgb );--color-warning-5:var( --studio-yellow-5 );--color-warning-5-rgb:var( --studio-yellow-5-rgb );--color-warning-10:var( --studio-yellow-10 );--color-warning-10-rgb:var( --studio-yellow-10-rgb );--color-warning-20:var( --studio-yellow-20 );--color-warning-20-rgb:var( --studio-yellow-20-rgb );--color-warning-30:var( --studio-yellow-30 );--color-warning-30-rgb:var( --studio-yellow-30-rgb );--color-warning-40:var( --studio-yellow-40 );--color-warning-40-rgb:var( --studio-yellow-40-rgb );--color-warning-50:var( --studio-yellow-50 );--color-warning-50-rgb:var( --studio-yellow-50-rgb );--color-warning-60:var( --studio-yellow-60 );--color-warning-60-rgb:var( --studio-yellow-60-rgb );--color-warning-70:var( --studio-yellow-70 );--color-warning-70-rgb:var( --studio-yellow-70-rgb );--color-warning-80:var( --studio-yellow-80 );--color-warning-80-rgb:var( --studio-yellow-80-rgb );--color-warning-90:var( --studio-yellow-90 );--color-warning-90-rgb:var( --studio-yellow-90-rgb );--color-warning-100:var( --studio-yellow-100 );--color-warning-100-rgb:var( --studio-yellow-100-rgb );--color-error:var( --studio-red-50 );--color-error-rgb:var( --studio-red-50-rgb );--color-error-dark:var( --studio-red-70 );--color-error-dark-rgb:var( --studio-red-70-rgb );--color-error-light:var( --studio-red-30 );--color-error-light-rgb:var( --studio-red-30-rgb );--color-error-0:var( --studio-red-0 );--color-error-0-rgb:var( --studio-red-0-rgb );--color-error-5:var( --studio-red-5 );--color-error-5-rgb:var( --studio-red-5-rgb );--color-error-10:var( --studio-red-10 );--color-error-10-rgb:var( --studio-red-10-rgb );--color-error-20:var( --studio-red-20 );--color-error-20-rgb:var( --studio-red-20-rgb );--color-error-30:var( --studio-red-30 );--color-error-30-rgb:var( --studio-red-30-rgb );--color-error-40:var( --studio-red-40 );--color-error-40-rgb:var( --studio-red-40-rgb );--color-error-50:var( --studio-red-50 );--color-error-50-rgb:var( --studio-red-50-rgb );--color-error-60:var( --studio-red-60 );--color-error-60-rgb:var( --studio-red-60-rgb );--color-error-70:var( --studio-red-70 );--color-error-70-rgb:var( --studio-red-70-rgb );--color-error-80:var( --studio-red-80 );--color-error-80-rgb:var( --studio-red-80-rgb );--color-error-90:var( --studio-red-90 );--color-error-90-rgb:var( --studio-red-90-rgb );--color-error-100:var( --studio-red-100 );--color-error-100-rgb:var( --studio-red-100-rgb );--color-surface:var( --studio-white );--color-surface-rgb:var( --studio-white-rgb );--color-surface-backdrop:var( --studio-gray-0 );--color-surface-backdrop-rgb:var( --studio-gray-0-rgb );--color-text:var( --studio-gray-80 );--color-text-rgb:var( --studio-gray-80-rgb );--color-text-subtle:var( --studio-gray-50 );--color-text-subtle-rgb:var( --studio-gray-50-rgb );--color-text-inverted:var( --studio-white );--color-text-inverted-rgb:var( --studio-white-rgb );--color-border:var( --color-neutral-20 );--color-border-rgb:var( --color-neutral-20-rgb );--color-border-subtle:var( --color-neutral-5 );--color-border-subtle-rgb:var( --color-neutral-5-rgb );--color-border-shadow:var( --color-neutral-0 );--color-border-shadow-rgb:var( --color-neutral-0-rgb );--color-border-inverted:var( --studio-white );--color-border-inverted-rgb:var( --studio-white-rgb );--color-link:var( --studio-blue-50 );--color-link-rgb:var( --studio-blue-50-rgb );--color-link-dark:var( --studio-blue-70 );--color-link-dark-rgb:var( --studio-blue-70-rgb );--color-link-light:var( --studio-blue-30 );--color-link-light-rgb:var( --studio-blue-30-rgb );--color-link-0:var( --studio-blue-0 );--color-link-0-rgb:var( --studio-blue-0-rgb );--color-link-5:var( --studio-blue-5 );--color-link-5-rgb:var( --studio-blue-5-rgb );--color-link-10:var( --studio-blue-10 );--color-link-10-rgb:var( --studio-blue-10-rgb );--color-link-20:var( --studio-blue-20 );--color-link-20-rgb:var( --studio-blue-20-rgb );--color-link-30:var( --studio-blue-30 );--color-link-30-rgb:var( --studio-blue-30-rgb );--color-link-40:var( --studio-blue-40 );--color-link-40-rgb:var( --studio-blue-40-rgb );--color-link-50:var( --studio-blue-50 );--color-link-50-rgb:var( --studio-blue-50-rgb );--color-link-60:var( --studio-blue-60 );--color-link-60-rgb:var( --studio-blue-60-rgb );--color-link-70:var( --studio-blue-70 );--color-link-70-rgb:var( --studio-blue-70-rgb );--color-link-80:var( --studio-blue-80 );--color-link-80-rgb:var( --studio-blue-80-rgb );--color-link-90:var( --studio-blue-90 );--color-link-90-rgb:var( --studio-blue-90-rgb );--color-link-100:var( --studio-blue-100 );--color-link-100-rgb:var( --studio-blue-100-rgb );--color-plan-free:var( --studio-gray-30 );--color-plan-blogger:var( --studio-celadon-30 );--color-plan-personal:var( --studio-blue-30 );--color-plan-premium:var( --studio-yellow-30 );--color-plan-business:var( --studio-orange-30 );--color-plan-ecommerce:var( --studio-purple-30 );--color-premium-domain:var( --studio-wordpress-blue-60 );--color-jetpack-plan-free:var( --studio-blue-30 );--color-jetpack-plan-personal:var( --studio-yellow-30 );--color-jetpack-plan-premium:var( --studio-jetpack-green-30 );--color-jetpack-plan-professional:var( --studio-purple-30 );--color-masterbar-background:#101517;--color-masterbar-border:#333;--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:#333;--color-masterbar-item-active-background:#23282d;--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-40 );--color-masterbar-unread-dot-background:var( --color-accent-20 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-jetpack-masterbar-background:var( --studio-white );--color-jetpack-masterbar-border:var( --studio-gray-5 );--color-jetpack-masterbar-text:var( --studio-gray-50 );--color-jetpack-masterbar-item-hover-background:var( --studio-gray-5 );--color-jetpack-masterbar-item-active-background:var( --studio-gray-20 );--color-sidebar-background:#23282d;--color-sidebar-background-rgb:35,40,45;--color-sidebar-border:#333;--color-sidebar-text:#eee;--color-sidebar-text-rgb:238,238,238;--color-sidebar-text-alternative:#a2aab2;--color-sidebar-gridicon-fill:#a2aab2;--color-sidebar-menu-selected-background:#0073aa;--color-sidebar-menu-selected-background-rgb:0,115,170;--color-sidebar-menu-selected-text:var( --studio-white );--color-sidebar-menu-selected-text-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-background:#1a1e23;--color-sidebar-menu-hover-background-rgb:26,30,35;--color-sidebar-menu-hover-text:#00b9eb;--color-jetpack-onboarding-text:var( --studio-white );--color-jetpack-onboarding-text-rgb:var( --studio-white-rgb );--color-jetpack-onboarding-background:var( --studio-blue-100 );--color-jetpack-onboarding-background-rgb:var( --studio-blue-100-rgb );--color-automattic:var( --studio-blue-40 );--color-jetpack:var( --studio-jetpack-green );--color-simplenote:var( --studio-simplenote-blue );--color-woocommerce:var( --studio-woocommerce-purple );--color-wordpress-com:var( --studio-wordpress-blue );--color-wordpress-org:#585c60;--color-blogger:#ff5722;--color-eventbrite:#ff8000;--color-facebook:#39579a;--color-godaddy:#5ea95a;--color-google-plus:#df4a32;--color-instagram:#d93174;--color-linkedin:#0976b4;--color-medium:#12100e;--color-pinterest:#cc2127;--color-pocket:#ee4256;--color-print:#f8f8f8;--color-reddit:#5f99cf;--color-skype:#00aff0;--color-stumbleupon:#eb4924;--color-substack:#ff6719;--color-squarespace:#222;--color-telegram:#08c;--color-tumblr:#35465c;--color-twitter:#55acee;--color-whatsapp:#43d854;--color-wix:#faad4d;--color-email:var( --studio-gray-0 );--color-podcasting:#9b4dd5;--color-wp-admin-button-background:#008ec2;--color-wp-admin-button-border:#006799;--color-sidebar-submenu-background:#32373c;--color-sidebar-submenu-text:#b4b9be;--color-sidebar-submenu-hover-text:#00b9eb;--color-sidebar-submenu-selected-text:var( --studio-white )}.color-scheme.is-coffee,.color-scheme.is-coffee.is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#59524c;--theme-base-color-rgb:89,82,76;--theme-submenu-text-color:#cdcbc9;--theme-submenu-background-color:#46403c;--theme-icon-color:#ece6f6;--theme-highlight-color:#c7a589;--theme-highlight-color-rgb:199,165,137;--theme-notification-color:#9ea476;--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --studio-orange-70 );--color-primary-dark-rgb:var( --studio-orange-70-rgb );--color-primary-light:var( --studio-orange-30 );--color-primary-light-rgb:var( --studio-orange-30-rgb );--color-primary-0:var( --studio-orange-0 );--color-primary-0-rgb:var( --studio-orange-0-rgb );--color-primary-5:var( --studio-orange-5 );--color-primary-5-rgb:var( --studio-orange-5-rgb );--color-primary-10:var( --studio-orange-10 );--color-primary-10-rgb:var( --studio-orange-10-rgb );--color-primary-20:var( --studio-orange-20 );--color-primary-20-rgb:var( --studio-orange-20-rgb );--color-primary-30:var( --studio-orange-30 );--color-primary-30-rgb:var( --studio-orange-30-rgb );--color-primary-40:var( --studio-orange-40 );--color-primary-40-rgb:var( --studio-orange-40-rgb );--color-primary-50:var( --studio-orange-50 );--color-primary-50-rgb:var( --studio-orange-50-rgb );--color-primary-60:var( --studio-orange-60 );--color-primary-60-rgb:var( --studio-orange-60-rgb );--color-primary-70:var( --studio-orange-70 );--color-primary-70-rgb:var( --studio-orange-70-rgb );--color-primary-80:var( --studio-orange-80 );--color-primary-80-rgb:var( --studio-orange-80-rgb );--color-primary-90:var( --studio-orange-90 );--color-primary-90-rgb:var( --studio-orange-90-rgb );--color-primary-100:var( --studio-orange-100 );--color-primary-100-rgb:var( --studio-orange-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --studio-orange-70 );--color-accent-dark-rgb:var( --studio-orange-70-rgb );--color-accent-light:var( --studio-orange-30 );--color-accent-light-rgb:var( --studio-orange-30-rgb );--color-accent-0:var( --studio-orange-0 );--color-accent-0-rgb:var( --studio-orange-0-rgb );--color-accent-5:var( --studio-orange-5 );--color-accent-5-rgb:var( --studio-orange-5-rgb );--color-accent-10:var( --studio-orange-10 );--color-accent-10-rgb:var( --studio-orange-10-rgb );--color-accent-20:var( --studio-orange-20 );--color-accent-20-rgb:var( --studio-orange-20-rgb );--color-accent-30:var( --studio-orange-30 );--color-accent-30-rgb:var( --studio-orange-30-rgb );--color-accent-40:var( --studio-orange-40 );--color-accent-40-rgb:var( --studio-orange-40-rgb );--color-accent-50:var( --studio-orange-50 );--color-accent-50-rgb:var( --studio-orange-50-rgb );--color-accent-60:var( --studio-orange-60 );--color-accent-60-rgb:var( --studio-orange-60-rgb );--color-accent-70:var( --studio-orange-70 );--color-accent-70-rgb:var( --studio-orange-70-rgb );--color-accent-80:var( --studio-orange-80 );--color-accent-80-rgb:var( --studio-orange-80-rgb );--color-accent-90:var( --studio-orange-90 );--color-accent-90-rgb:var( --studio-orange-90-rgb );--color-accent-100:var( --studio-orange-100 );--color-accent-100-rgb:var( --studio-orange-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-white );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:var( --studio-gray-0 );--color-sidebar-gridicon-fill:var( --studio-gray-0 );--color-sidebar-menu-selected-background:var( --theme-highlight-color );--color-sidebar-menu-selected-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-selected-text:var( --theme-text-color );--color-sidebar-menu-selected-text-rgb:var( --theme-text-color-rgb );--color-sidebar-menu-hover-background:var( --theme-highlight-color );--color-sidebar-menu-hover-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-hover-text:var( --theme-text-color );--color-sidebar-menu-hover:var( --theme-text-color );--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var( --theme-highlight-color )}.color-scheme.is-contrast,.color-scheme.is-contrast.is-nav-unification{--color-primary:var( --studio-gray-80 );--color-primary-rgb:var( --studio-gray-80-rgb );--color-primary-dark:var( --studio-gray-100 );--color-primary-dark-rgb:var( --studio-gray-100-rgb );--color-primary-light:var( --studio-gray-60 );--color-primary-light-rgb:var( --studio-gray-60-rgb );--color-primary-0:var( --studio-gray-0 );--color-primary-0-rgb:var( --studio-gray-0-rgb );--color-primary-5:var( --studio-gray-5 );--color-primary-5-rgb:var( --studio-gray-5-rgb );--color-primary-10:var( --studio-gray-10 );--color-primary-10-rgb:var( --studio-gray-10-rgb );--color-primary-20:var( --studio-gray-20 );--color-primary-20-rgb:var( --studio-gray-20-rgb );--color-primary-30:var( --studio-gray-30 );--color-primary-30-rgb:var( --studio-gray-30-rgb );--color-primary-40:var( --studio-gray-40 );--color-primary-40-rgb:var( --studio-gray-40-rgb );--color-primary-50:var( --studio-gray-50 );--color-primary-50-rgb:var( --studio-gray-50-rgb );--color-primary-60:var( --studio-gray-60 );--color-primary-60-rgb:var( --studio-gray-60-rgb );--color-primary-70:var( --studio-gray-70 );--color-primary-70-rgb:var( --studio-gray-70-rgb );--color-primary-80:var( --studio-gray-80 );--color-primary-80-rgb:var( --studio-gray-80-rgb );--color-primary-90:var( --studio-gray-90 );--color-primary-90-rgb:var( --studio-gray-90-rgb );--color-primary-100:var( --studio-gray-100 );--color-primary-100-rgb:var( --studio-gray-100-rgb );--color-accent:var( --studio-blue-70 );--color-accent-rgb:var( --studio-blue-70-rgb );--color-accent-dark:var( --studio-blue-90 );--color-accent-dark-rgb:var( --studio-blue-90-rgb );--color-accent-light:var( --studio-blue-50 );--color-accent-light-rgb:var( --studio-blue-50-rgb );--color-accent-0:var( --studio-blue-0 );--color-accent-0-rgb:var( --studio-blue-0-rgb );--color-accent-5:var( --studio-blue-5 );--color-accent-5-rgb:var( --studio-blue-5-rgb );--color-accent-10:var( --studio-blue-10 );--color-accent-10-rgb:var( --studio-blue-10-rgb );--color-accent-20:var( --studio-blue-20 );--color-accent-20-rgb:var( --studio-blue-20-rgb );--color-accent-30:var( --studio-blue-30 );--color-accent-30-rgb:var( --studio-blue-30-rgb );--color-accent-40:var( --studio-blue-40 );--color-accent-40-rgb:var( --studio-blue-40-rgb );--color-accent-50:var( --studio-blue-50 );--color-accent-50-rgb:var( --studio-blue-50-rgb );--color-accent-60:var( --studio-blue-60 );--color-accent-60-rgb:var( --studio-blue-60-rgb );--color-accent-70:var( --studio-blue-70 );--color-accent-70-rgb:var( --studio-blue-70-rgb );--color-accent-80:var( --studio-blue-80 );--color-accent-80-rgb:var( --studio-blue-80-rgb );--color-accent-90:var( --studio-blue-90 );--color-accent-90-rgb:var( --studio-blue-90-rgb );--color-accent-100:var( --studio-blue-100 );--color-accent-100-rgb:var( --studio-blue-100-rgb );--color-surface-backdrop:var( --studio-white );--color-surface-backdrop-rgb:var( --studio-white-rgb );--color-text:var( --studio-gray-100 );--color-text-rgb:var( --studio-gray-100-rgb );--color-text-subtle:var( --studio-gray-70 );--color-text-subtle-rgb:var( --studio-gray-70-rgb );--color-link:var( --studio-blue-70 );--color-link-rgb:var( --studio-blue-70-rgb );--color-link-dark:var( --studio-blue-100 );--color-link-dark-rgb:var( --studio-blue-100-rgb );--color-link-light:var( --studio-blue-50 );--color-link-light-rgb:var( --studio-blue-50-rgb );--color-link-0:var( --studio-blue-0 );--color-link-0-rgb:var( --studio-blue-0-rgb );--color-link-5:var( --studio-blue-5 );--color-link-5-rgb:var( --studio-blue-5-rgb );--color-link-10:var( --studio-blue-10 );--color-link-10-rgb:var( --studio-blue-10-rgb );--color-link-20:var( --studio-blue-20 );--color-link-20-rgb:var( --studio-blue-20-rgb );--color-link-30:var( --studio-blue-30 );--color-link-30-rgb:var( --studio-blue-30-rgb );--color-link-40:var( --studio-blue-40 );--color-link-40-rgb:var( --studio-blue-40-rgb );--color-link-50:var( --studio-blue-50 );--color-link-50-rgb:var( --studio-blue-50-rgb );--color-link-60:var( --studio-blue-60 );--color-link-60-rgb:var( --studio-blue-60-rgb );--color-link-70:var( --studio-blue-70 );--color-link-70-rgb:var( --studio-blue-70-rgb );--color-link-80:var( --studio-blue-80 );--color-link-80-rgb:var( --studio-blue-80-rgb );--color-link-90:var( --studio-blue-90 );--color-link-90-rgb:var( --studio-blue-90-rgb );--color-link-100:var( --studio-blue-100 );--color-link-100-rgb:var( --studio-blue-100-rgb );--color-premium-domain:var( --studio-gray-100 );--color-masterbar-background:var( --studio-gray-100 );--color-masterbar-border:var( --studio-gray-90 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-gray-80 );--color-masterbar-item-active-background:var( --studio-gray-60 );--color-masterbar-item-new-editor-background:var( --studio-gray-70 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-90 );--color-masterbar-unread-dot-background:var( --studio-yellow-20 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-70 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-70 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --color-surface );--color-sidebar-background-rgb:var( --studio-white-rgb );--color-sidebar-border:var( --studio-gray-5 );--color-sidebar-text:var( --studio-gray-90 );--color-sidebar-text-rgb:var( --studio-gray-90-rgb );--color-sidebar-text-alternative:var( --studio-gray-90 );--color-sidebar-gridicon-fill:var( --studio-gray-90 );--color-sidebar-menu-selected-background:var( --studio-gray-100 );--color-sidebar-menu-selected-background-rgb:var( --studio-gray-100-rgb );--color-sidebar-menu-selected-text:var( --studio-white );--color-sidebar-menu-selected-text-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-background:var( --studio-gray-60 );--color-sidebar-menu-hover-background-rgb:var( --studio-gray-60-rgb );--color-sidebar-menu-hover-text:var( --studio-white );--color-sidebar-submenu-background:var( --studio-gray-90 );--color-sidebar-submenu-text:var( --studio-gray-10 );--color-sidebar-submenu-hover-text:var( --color-masterbar-unread-dot-background );--color-sidebar-submenu-selected-text:var( --studio-white )}.color-scheme.is-ectoplasm,.color-scheme.is-ectoplasm.is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#523f6d;--theme-base-color-rgb:82,63,109;--theme-submenu-text-color:#cbc5d3;--theme-submenu-background-color:#413256;--theme-icon-color:#ece6f6;--theme-highlight-color:#a3b745;--theme-highlight-color-rgb:163,183,69;--theme-notification-color:#d46f15;--ectoplasm-green-0:#f2f5e1;--ectoplasm-green-5:#e9f5b3;--ectoplasm-green-10:#daf26b;--ectoplasm-green-20:#cdf030;--ectoplasm-green-30:#b5de00;--ectoplasm-green-40:#9bc000;--ectoplasm-green-50:#7f9d00;--ectoplasm-green-60:#647d00;--ectoplasm-green-70:#536700;--ectoplasm-green-80:#3f4f00;--ectoplasm-green-90:#293300;--ectoplasm-green-100:#161c00;--ectoplasm-green:#7f9d00;--ectoplasm-green-0-rgb:242,245,225;--ectoplasm-green-5-rgb:233,245,179;--ectoplasm-green-10-rgb:218,242,107;--ectoplasm-green-20-rgb:205,240,48;--ectoplasm-green-30-rgb:181,222,0;--ectoplasm-green-40-rgb:155,192,0;--ectoplasm-green-50-rgb:127,157,0;--ectoplasm-green-60-rgb:100,125,0;--ectoplasm-green-70-rgb:83,103,0;--ectoplasm-green-80-rgb:63,79,0;--ectoplasm-green-90-rgb:41,51,0;--ectoplasm-green-100-rgb:22,28,0;--ectoplasm-green-rgb:127,157,0;--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --ectoplasm-green-70 );--color-primary-dark-rgb:var( --ectoplasm-green-70-rgb );--color-primary-light:var( --ectoplasm-green-30 );--color-primary-light-rgb:var( --ectoplasm-green-30-rgb );--color-primary-0:var( --ectoplasm-green-0 );--color-primary-0-rgb:var( --ectoplasm-green-0-rgb );--color-primary-5:var( --ectoplasm-green-5 );--color-primary-5-rgb:var( --ectoplasm-green-5-rgb );--color-primary-10:var( --ectoplasm-green-10 );--color-primary-10-rgb:var( --ectoplasm-green-10-rgb );--color-primary-20:var( --ectoplasm-green-20 );--color-primary-20-rgb:var( --ectoplasm-green-20-rgb );--color-primary-30:var( --ectoplasm-green-30 );--color-primary-30-rgb:var( --ectoplasm-green-30-rgb );--color-primary-40:var( --ectoplasm-green-40 );--color-primary-40-rgb:var( --ectoplasm-green-40-rgb );--color-primary-50:var( --ectoplasm-green-50 );--color-primary-50-rgb:var( --ectoplasm-green-50-rgb );--color-primary-60:var( --ectoplasm-green-60 );--color-primary-60-rgb:var( --ectoplasm-green-60-rgb );--color-primary-70:var( --ectoplasm-green-70 );--color-primary-70-rgb:var( --ectoplasm-green-70-rgb );--color-primary-80:var( --ectoplasm-green-80 );--color-primary-80-rgb:var( --ectoplasm-green-80-rgb );--color-primary-90:var( --ectoplasm-green-90 );--color-primary-90-rgb:var( --ectoplasm-green-90-rgb );--color-primary-100:var( --ectoplasm-green-100 );--color-primary-100-rgb:var( --ectoplasm-green-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --ectoplasm-green-70 );--color-accent-dark-rgb:var( --ectoplasm-green-70-rgb );--color-accent-light:var( --ectoplasm-green-30 );--color-accent-light-rgb:var( --ectoplasm-green-30-rgb );--color-accent-0:var( --ectoplasm-green-0 );--color-accent-0-rgb:var( --ectoplasm-green-0-rgb );--color-accent-5:var( --ectoplasm-green-5 );--color-accent-5-rgb:var( --ectoplasm-green-5-rgb );--color-accent-10:var( --ectoplasm-green-10 );--color-accent-10-rgb:var( --ectoplasm-green-10-rgb );--color-accent-20:var( --ectoplasm-green-20 );--color-accent-20-rgb:var( --ectoplasm-green-20-rgb );--color-accent-30:var( --ectoplasm-green-30 );--color-accent-30-rgb:var( --ectoplasm-green-30-rgb );--color-accent-40:var( --ectoplasm-green-40 );--color-accent-40-rgb:var( --ectoplasm-green-40-rgb );--color-accent-50:var( --ectoplasm-green-50 );--color-accent-50-rgb:var( --ectoplasm-green-50-rgb );--color-accent-60:var( --ectoplasm-green-60 );--color-accent-60-rgb:var( --ectoplasm-green-60-rgb );--color-accent-70:var( --ectoplasm-green-70 );--color-accent-70-rgb:var( --ectoplasm-green-70-rgb );--color-accent-80:var( --ectoplasm-green-80 );--color-accent-80-rgb:var( --ectoplasm-green-80-rgb );--color-accent-90:var( --ectoplasm-green-90 );--color-accent-90-rgb:var( --ectoplasm-green-90-rgb );--color-accent-100:var( --ectoplasm-green-100 );--color-accent-100-rgb:var( --ectoplasm-green-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-white );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:var( --theme-text-color );--color-sidebar-gridicon-fill:var( --theme-icon-color );--color-sidebar-menu-selected-background:var( --theme-highlight-color );--color-sidebar-menu-selected-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-selected-text:var( --theme-text-color );--color-sidebar-menu-selected-text-rgb:var( --theme-text-color-rgb );--color-sidebar-menu-hover-background:var( --theme-highlight-color );--color-sidebar-menu-hover-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-hover-text:var( --theme-text-color );--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var( --theme-highlight-color )}.color-scheme.is-light,.color-scheme.is-light.is-nav-unification{--theme-text-color:#333;--theme-text-color-rgb:51,51,51;--theme-base-color:#e5e5e5;--theme-base-color-rgb:229,229,229;--theme-submenu-text-color:#686868;--theme-submenu-background-color:#fff;--theme-icon-color:#999;--theme-highlight-color:#04a4cc;--theme-highlight-color-rgb:4,164,204;--theme-notification-color:#d64e07;--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --studio-blue-70 );--color-primary-dark-rgb:var( --studio-blue-70-rgb );--color-primary-light:var( --studio-blue-30 );--color-primary-light-rgb:var( --studio-blue-30-rgb );--color-primary-0:var( --studio-blue-0 );--color-primary-0-rgb:var( --studio-blue-0-rgb );--color-primary-5:var( --studio-blue-5 );--color-primary-5-rgb:var( --studio-blue-5-rgb );--color-primary-10:var( --studio-blue-10 );--color-primary-10-rgb:var( --studio-blue-10-rgb );--color-primary-20:var( --studio-blue-20 );--color-primary-20-rgb:var( --studio-blue-20-rgb );--color-primary-30:var( --studio-blue-30 );--color-primary-30-rgb:var( --studio-blue-30-rgb );--color-primary-40:var( --studio-blue-40 );--color-primary-40-rgb:var( --studio-blue-40-rgb );--color-primary-50:var( --studio-blue-50 );--color-primary-50-rgb:var( --studio-blue-50-rgb );--color-primary-60:var( --studio-blue-60 );--color-primary-60-rgb:var( --studio-blue-60-rgb );--color-primary-70:var( --studio-blue-70 );--color-primary-70-rgb:var( --studio-blue-70-rgb );--color-primary-80:var( --studio-blue-80 );--color-primary-80-rgb:var( --studio-blue-80-rgb );--color-primary-90:var( --studio-blue-90 );--color-primary-90-rgb:var( --studio-blue-90-rgb );--color-primary-100:var( --studio-blue-100 );--color-primary-100-rgb:var( --studio-blue-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --studio-blue-70 );--color-accent-dark-rgb:var( --studio-blue-70-rgb );--color-accent-light:var( --studio-blue-30 );--color-accent-light-rgb:var( --studio-blue-30-rgb );--color-accent-0:var( --studio-blue-0 );--color-accent-0-rgb:var( --studio-blue-0-rgb );--color-accent-5:var( --studio-blue-5 );--color-accent-5-rgb:var( --studio-blue-5-rgb );--color-accent-10:var( --studio-blue-10 );--color-accent-10-rgb:var( --studio-blue-10-rgb );--color-accent-20:var( --studio-blue-20 );--color-accent-20-rgb:var( --studio-blue-20-rgb );--color-accent-30:var( --studio-blue-30 );--color-accent-30-rgb:var( --studio-blue-30-rgb );--color-accent-40:var( --studio-blue-40 );--color-accent-40-rgb:var( --studio-blue-40-rgb );--color-accent-50:var( --studio-blue-50 );--color-accent-50-rgb:var( --studio-blue-50-rgb );--color-accent-60:var( --studio-blue-60 );--color-accent-60-rgb:var( --studio-blue-60-rgb );--color-accent-70:var( --studio-blue-70 );--color-accent-70-rgb:var( --studio-blue-70-rgb );--color-accent-80:var( --studio-blue-80 );--color-accent-80-rgb:var( --studio-blue-80-rgb );--color-accent-90:var( --studio-blue-90 );--color-accent-90-rgb:var( --studio-blue-90-rgb );--color-accent-100:var( --studio-blue-100 );--color-accent-100-rgb:var( --studio-blue-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-black );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-90 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:var( --studio-gray-90 );--color-sidebar-gridicon-fill:var( --theme-icon-color );--color-sidebar-menu-selected-background:#888;--color-sidebar-menu-selected-background-rgb:136,136,136;--color-sidebar-menu-selected-text:#fff;--color-sidebar-menu-selected-text-rgb:255,255,255;--color-sidebar-menu-hover-background:#888;--color-sidebar-menu-hover-background-rgb:136,136,136;--color-sidebar-menu-hover-text:#fff;--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var( --theme-highlight-color );--color-sidebar-submenu-selected-text:#333}.color-scheme.is-light.is-nav-unification .masterbar__item-notifications .gridicon,.color-scheme.is-light .masterbar__item-notifications .gridicon{fill:#000}.color-scheme.is-midnight,.color-scheme.is-midnight.is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#363b3f;--theme-base-color-rgb:54,59,63;--theme-submenu-text-color:#c3c4c5;--theme-submenu-background-color:#26292c;--theme-icon-color:#ece6f6;--theme-highlight-color:#e14d43;--theme-highlight-color-rgb:225,77,67;--theme-notification-color:#69a8bb;--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --studio-red-70 );--color-primary-dark-rgb:var( --studio-red-70-rgb );--color-primary-light:var( --studio-red-30 );--color-primary-light-rgb:var( --studio-red-30-rgb );--color-primary-0:var( --studio-red-0 );--color-primary-0-rgb:var( --studio-red-0-rgb );--color-primary-5:var( --studio-red-5 );--color-primary-5-rgb:var( --studio-red-5-rgb );--color-primary-10:var( --studio-red-10 );--color-primary-10-rgb:var( --studio-red-10-rgb );--color-primary-20:var( --studio-red-20 );--color-primary-20-rgb:var( --studio-red-20-rgb );--color-primary-30:var( --studio-red-30 );--color-primary-30-rgb:var( --studio-red-30-rgb );--color-primary-40:var( --studio-red-40 );--color-primary-40-rgb:var( --studio-red-40-rgb );--color-primary-50:var( --studio-red-50 );--color-primary-50-rgb:var( --studio-red-50-rgb );--color-primary-60:var( --studio-red-60 );--color-primary-60-rgb:var( --studio-red-60-rgb );--color-primary-70:var( --studio-red-70 );--color-primary-70-rgb:var( --studio-red-70-rgb );--color-primary-80:var( --studio-red-80 );--color-primary-80-rgb:var( --studio-red-80-rgb );--color-primary-90:var( --studio-red-90 );--color-primary-90-rgb:var( --studio-red-90-rgb );--color-primary-100:var( --studio-red-100 );--color-primary-100-rgb:var( --studio-red-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --studio-red-70 );--color-accent-dark-rgb:var( --studio-red-70-rgb );--color-accent-light:var( --studio-red-30 );--color-accent-light-rgb:var( --studio-red-30-rgb );--color-accent-0:var( --studio-red-0 );--color-accent-0-rgb:var( --studio-red-0-rgb );--color-accent-5:var( --studio-red-5 );--color-accent-5-rgb:var( --studio-red-5-rgb );--color-accent-10:var( --studio-red-10 );--color-accent-10-rgb:var( --studio-red-10-rgb );--color-accent-20:var( --studio-red-20 );--color-accent-20-rgb:var( --studio-red-20-rgb );--color-accent-30:var( --studio-red-30 );--color-accent-30-rgb:var( --studio-red-30-rgb );--color-accent-40:var( --studio-red-40 );--color-accent-40-rgb:var( --studio-red-40-rgb );--color-accent-50:var( --studio-red-50 );--color-accent-50-rgb:var( --studio-red-50-rgb );--color-accent-60:var( --studio-red-60 );--color-accent-60-rgb:var( --studio-red-60-rgb );--color-accent-70:var( --studio-red-70 );--color-accent-70-rgb:var( --studio-red-70-rgb );--color-accent-80:var( --studio-red-80 );--color-accent-80-rgb:var( --studio-red-80-rgb );--color-accent-90:var( --studio-red-90 );--color-accent-90-rgb:var( --studio-red-90-rgb );--color-accent-100:var( --studio-red-100 );--color-accent-100-rgb:var( --studio-red-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-white );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:var( --theme-text-color );--color-sidebar-gridicon-fill:var( --theme-icon-color );--color-sidebar-menu-selected-background:var( --theme-highlight-color );--color-sidebar-menu-selected-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-selected-text:var( --theme-text-color );--color-sidebar-menu-selected-text-rgb:var( --theme-text-color-rgb );--color-sidebar-menu-hover-background:var( --theme-highlight-color );--color-sidebar-menu-hover-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-hover-text:var( --theme-text-color );--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var( --theme-highlight-color )}.color-scheme.is-modern,.color-scheme.is-modern.is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#1e1e1e;--theme-base-color-rgb:30,30,30;--theme-submenu-text-color:#bcbcbc;--theme-submenu-background-color:#0c0c0c;--theme-icon-color:#ece6f6;--theme-highlight-color:#3858e9;--theme-highlight-color-rgb:56,88,233;--theme-notification-color:#3858e9;--theme-highlight-color-0:#d5dffa;--theme-highlight-color-0-rgb:213,223,250;--theme-highlight-color-10:#abc0f5;--theme-highlight-color-10-rgb:171,192,245;--theme-highlight-color-20:#82a1f0;--theme-highlight-color-20-rgb:130,161,240;--theme-highlight-color-30:#5882eb;--theme-highlight-color-30-rgb:88,130,235;--theme-highlight-color-40:#2f63e6;--theme-highlight-color-40-rgb:47,99,230;--theme-highlight-color-50:var( --theme-highlight-color );--theme-highlight-color-50-rgb:var( --theme-highlight-color-rgb );--theme-highlight-color-60:#2145e6;--theme-highlight-color-60-rgb:33,69,230;--theme-highlight-color-70:#133ca6;--theme-highlight-color-70-rgb:19,60,166;--theme-highlight-color-80:#0e2d7c;--theme-highlight-color-80-rgb:14,45,124;--theme-highlight-color-90:#091e53;--theme-highlight-color-90-rgb:9,30,83;--theme-highlight-color-100:#040f29;--theme-highlight-color-100-rgb:4,15,41;--color-link:var( --theme-highlight-color );--color-link-dark:var( --theme-highlight-color-70 );--color-link-light:var( --theme-highlight-color-30 );--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --theme-highlight-color-70 );--color-primary-dark-rgb:var( --theme-highlight-color-70-rgb );--color-primary-light:var( --theme-highlight-color-30 );--color-primary-light-rgb:var( --theme-highlight-color-30-rgb );--color-primary-0:var( --theme-highlight-color-0 );--color-primary-0-rgb:var( --theme-highlight-color-0-rgb );--color-primary-5:var( --theme-highlight-color-5 );--color-primary-5-rgb:var( --theme-highlight-color-5-rgb );--color-primary-10:var( --theme-highlight-color-10 );--color-primary-10-rgb:var( --theme-highlight-color-10-rgb );--color-primary-20:var( --theme-highlight-color-20 );--color-primary-20-rgb:var( --theme-highlight-color-20-rgb );--color-primary-30:var( --theme-highlight-color-30 );--color-primary-30-rgb:var( --theme-highlight-color-30-rgb );--color-primary-40:var( --theme-highlight-color-40 );--color-primary-40-rgb:var( --theme-highlight-color-40-rgb );--color-primary-50:var( --theme-highlight-color-50 );--color-primary-50-rgb:var( --theme-highlight-color-50-rgb );--color-primary-60:var( --theme-highlight-color-60 );--color-primary-60-rgb:var( --theme-highlight-color-60-rgb );--color-primary-70:var( --theme-highlight-color-70 );--color-primary-70-rgb:var( --theme-highlight-color-70-rgb );--color-primary-80:var( --theme-highlight-color-80 );--color-primary-80-rgb:var( --theme-highlight-color-80-rgb );--color-primary-90:var( --theme-highlight-color-90 );--color-primary-90-rgb:var( --theme-highlight-color-90-rgb );--color-primary-100:var( --theme-highlight-color-100 );--color-primary-100-rgb:var( --theme-highlight-color-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --theme-highlight-color-70 );--color-accent-dark-rgb:var( --theme-highlight-color-70-rgb );--color-accent-light:var( --theme-highlight-color-30 );--color-accent-light-rgb:var( --theme-highlight-color-30-rgb );--color-accent-0:var( --theme-highlight-color-0 );--color-accent-0-rgb:var( --theme-highlight-color-0-rgb );--color-accent-5:var( --theme-highlight-color-5 );--color-accent-5-rgb:var( --theme-highlight-color-5-rgb );--color-accent-10:var( --theme-highlight-color-10 );--color-accent-10-rgb:var( --theme-highlight-color-10-rgb );--color-accent-20:var( --theme-highlight-color-20 );--color-accent-20-rgb:var( --theme-highlight-color-20-rgb );--color-accent-30:var( --theme-highlight-color-30 );--color-accent-30-rgb:var( --theme-highlight-color-30-rgb );--color-accent-40:var( --theme-highlight-color-40 );--color-accent-40-rgb:var( --theme-highlight-color-40-rgb );--color-accent-50:var( --theme-highlight-color-50 );--color-accent-50-rgb:var( --theme-highlight-color-50-rgb );--color-accent-60:var( --theme-highlight-color-60 );--color-accent-60-rgb:var( --theme-highlight-color-60-rgb );--color-accent-70:var( --theme-highlight-color-70 );--color-accent-70-rgb:var( --theme-highlight-color-70-rgb );--color-accent-80:var( --theme-highlight-color-80 );--color-accent-80-rgb:var( --theme-highlight-color-80-rgb );--color-accent-90:var( --theme-highlight-color-90 );--color-accent-90-rgb:var( --theme-highlight-color-90-rgb );--color-accent-100:var( --theme-highlight-color-100 );--color-accent-100-rgb:var( --theme-highlight-color-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-white );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:var( --studio-gray-10 );--color-sidebar-gridicon-fill:var( --studio-gray-0 );--color-sidebar-menu-selected-background:var( --theme-highlight-color );--color-sidebar-menu-selected-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-selected-text:var( --theme-text-color );--color-sidebar-menu-selected-text-rgb:var( --theme-text-color-rgb );--color-sidebar-menu-hover-background:var( --theme-highlight-color );--color-sidebar-menu-hover-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-hover-text:var( --theme-text-color );--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:#33f078}.color-scheme.is-nightfall,.color-scheme.is-nightfall.is-nav-unification{--color-primary:var( --studio-gray-90 );--color-primary-rgb:var( --studio-gray-90-rgb );--color-primary-dark:var( --studio-gray-70 );--color-primary-dark-rgb:var( --studio-gray-70-rgb );--color-primary-light:var( --studio-gray-30 );--color-primary-light-rgb:var( --studio-gray-30-rgb );--color-primary-0:var( --studio-gray-0 );--color-primary-0-rgb:var( --studio-gray-0-rgb );--color-primary-5:var( --studio-gray-5 );--color-primary-5-rgb:var( --studio-gray-5-rgb );--color-primary-10:var( --studio-gray-10 );--color-primary-10-rgb:var( --studio-gray-10-rgb );--color-primary-20:var( --studio-gray-20 );--color-primary-20-rgb:var( --studio-gray-20-rgb );--color-primary-30:var( --studio-gray-30 );--color-primary-30-rgb:var( --studio-gray-30-rgb );--color-primary-40:var( --studio-gray-40 );--color-primary-40-rgb:var( --studio-gray-40-rgb );--color-primary-50:var( --studio-gray-50 );--color-primary-50-rgb:var( --studio-gray-50-rgb );--color-primary-60:var( --studio-gray-60 );--color-primary-60-rgb:var( --studio-gray-60-rgb );--color-primary-70:var( --studio-gray-70 );--color-primary-70-rgb:var( --studio-gray-70-rgb );--color-primary-80:var( --studio-gray-80 );--color-primary-80-rgb:var( --studio-gray-80-rgb );--color-primary-90:var( --studio-gray-90 );--color-primary-90-rgb:var( --studio-gray-90-rgb );--color-primary-100:var( --studio-gray-100 );--color-primary-100-rgb:var( --studio-gray-100-rgb );--color-accent:var( --studio-blue-50 );--color-accent-rgb:var( --studio-blue-50-rgb );--color-accent-dark:var( --studio-blue-70 );--color-accent-dark-rgb:var( --studio-blue-70-rgb );--color-accent-light:var( --studio-blue-30 );--color-accent-light-rgb:var( --studio-blue-30-rgb );--color-accent-0:var( --studio-blue-0 );--color-accent-0-rgb:var( --studio-blue-0-rgb );--color-accent-5:var( --studio-blue-5 );--color-accent-5-rgb:var( --studio-blue-5-rgb );--color-accent-10:var( --studio-blue-10 );--color-accent-10-rgb:var( --studio-blue-10-rgb );--color-accent-20:var( --studio-blue-20 );--color-accent-20-rgb:var( --studio-blue-20-rgb );--color-accent-30:var( --studio-blue-30 );--color-accent-30-rgb:var( --studio-blue-30-rgb );--color-accent-40:var( --studio-blue-40 );--color-accent-40-rgb:var( --studio-blue-40-rgb );--color-accent-50:var( --studio-blue-50 );--color-accent-50-rgb:var( --studio-blue-50-rgb );--color-accent-60:var( --studio-blue-60 );--color-accent-60-rgb:var( --studio-blue-60-rgb );--color-accent-70:var( --studio-blue-70 );--color-accent-70-rgb:var( --studio-blue-70-rgb );--color-accent-80:var( --studio-blue-80 );--color-accent-80-rgb:var( --studio-blue-80-rgb );--color-accent-90:var( --studio-blue-90 );--color-accent-90-rgb:var( --studio-blue-90-rgb );--color-accent-100:var( --studio-blue-100 );--color-accent-100-rgb:var( --studio-blue-100-rgb );--color-link:var( --studio-blue-50 );--color-link-rgb:var( --studio-blue-50-rgb );--color-link-dark:var( --studio-blue-70 );--color-link-dark-rgb:var( --studio-blue-70-rgb );--color-link-light:var( --studio-blue-30 );--color-link-light-rgb:var( --studio-blue-30-rgb );--color-link-0:var( --studio-blue-0 );--color-link-0-rgb:var( --studio-blue-0-rgb );--color-link-5:var( --studio-blue-5 );--color-link-5-rgb:var( --studio-blue-5-rgb );--color-link-10:var( --studio-blue-10 );--color-link-10-rgb:var( --studio-blue-10-rgb );--color-link-20:var( --studio-blue-20 );--color-link-20-rgb:var( --studio-blue-20-rgb );--color-link-30:var( --studio-blue-30 );--color-link-30-rgb:var( --studio-blue-30-rgb );--color-link-40:var( --studio-blue-40 );--color-link-40-rgb:var( --studio-blue-40-rgb );--color-link-50:var( --studio-blue-50 );--color-link-50-rgb:var( --studio-blue-50-rgb );--color-link-60:var( --studio-blue-60 );--color-link-60-rgb:var( --studio-blue-60-rgb );--color-link-70:var( --studio-blue-70 );--color-link-70-rgb:var( --studio-blue-70-rgb );--color-link-80:var( --studio-blue-80 );--color-link-80-rgb:var( --studio-blue-80-rgb );--color-link-90:var( --studio-blue-90 );--color-link-90-rgb:var( --studio-blue-90-rgb );--color-link-100:var( --studio-blue-100 );--color-link-100-rgb:var( --studio-blue-100-rgb );--color-masterbar-background:var( --studio-blue-100 );--color-masterbar-border:var( --studio-blue-100 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-blue-90 );--color-masterbar-item-active-background:var( --studio-blue-80 );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-40 );--color-masterbar-unread-dot-background:var( --color-accent-30 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --studio-blue-80 );--color-sidebar-background-rgb:var( --studio-blue-80-rgb );--color-sidebar-border:var( --studio-blue-90 );--color-sidebar-text:var( --studio-blue-5 );--color-sidebar-text-rgb:var( --studio-blue-5-rgb );--color-sidebar-text-alternative:var( --studio-blue-20 );--color-sidebar-gridicon-fill:var( --studio-blue-10 );--color-sidebar-menu-selected-background:var( --studio-blue-100 );--color-sidebar-menu-selected-background-rgb:var( --studio-blue-100-rgb );--color-sidebar-menu-selected-text:var( --studio-white );--color-sidebar-menu-selected-text-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-background:var( --studio-blue-70 );--color-sidebar-menu-hover-background-rgb:var( --studio-blue-70-rgb );--color-sidebar-menu-hover-text:var( --studio-white );--color-sidebar-submenu-background:var( --studio-blue-90 );--color-sidebar-submenu-text:var( --studio-white );--color-sidebar-submenu-hover-text:var( --studio-blue-20 );--color-sidebar-submenu-selected-text:var( --studio-white )}.color-scheme.is-ocean,.color-scheme.is-ocean.is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#738e96;--theme-base-color-rgb:115,142,150;--theme-submenu-text-color:#d5dde0;--theme-submenu-background-color:#627c83;--theme-icon-color:#f2fcff;--theme-highlight-color:#9ebaa0;--theme-highlight-color-rgb:158,186,160;--theme-notification-color:#aa9d88;--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --studio-celadon-70 );--color-primary-dark-rgb:var( --studio-celadon-70-rgb );--color-primary-light:var( --studio-celadon-30 );--color-primary-light-rgb:var( --studio-celadon-30-rgb );--color-primary-0:var( --studio-celadon-0 );--color-primary-0-rgb:var( --studio-celadon-0-rgb );--color-primary-5:var( --studio-celadon-5 );--color-primary-5-rgb:var( --studio-celadon-5-rgb );--color-primary-10:var( --studio-celadon-10 );--color-primary-10-rgb:var( --studio-celadon-10-rgb );--color-primary-20:var( --studio-celadon-20 );--color-primary-20-rgb:var( --studio-celadon-20-rgb );--color-primary-30:var( --studio-celadon-30 );--color-primary-30-rgb:var( --studio-celadon-30-rgb );--color-primary-40:var( --studio-celadon-40 );--color-primary-40-rgb:var( --studio-celadon-40-rgb );--color-primary-50:var( --studio-celadon-50 );--color-primary-50-rgb:var( --studio-celadon-50-rgb );--color-primary-60:var( --studio-celadon-60 );--color-primary-60-rgb:var( --studio-celadon-60-rgb );--color-primary-70:var( --studio-celadon-70 );--color-primary-70-rgb:var( --studio-celadon-70-rgb );--color-primary-80:var( --studio-celadon-80 );--color-primary-80-rgb:var( --studio-celadon-80-rgb );--color-primary-90:var( --studio-celadon-90 );--color-primary-90-rgb:var( --studio-celadon-90-rgb );--color-primary-100:var( --studio-celadon-100 );--color-primary-100-rgb:var( --studio-celadon-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --studio-celadon-70 );--color-accent-dark-rgb:var( --studio-celadon-70-rgb );--color-accent-light:var( --studio-celadon-30 );--color-accent-light-rgb:var( --studio-celadon-30-rgb );--color-accent-0:var( --studio-celadon-0 );--color-accent-0-rgb:var( --studio-celadon-0-rgb );--color-accent-5:var( --studio-celadon-5 );--color-accent-5-rgb:var( --studio-celadon-5-rgb );--color-accent-10:var( --studio-celadon-10 );--color-accent-10-rgb:var( --studio-celadon-10-rgb );--color-accent-20:var( --studio-celadon-20 );--color-accent-20-rgb:var( --studio-celadon-20-rgb );--color-accent-30:var( --studio-celadon-30 );--color-accent-30-rgb:var( --studio-celadon-30-rgb );--color-accent-40:var( --studio-celadon-40 );--color-accent-40-rgb:var( --studio-celadon-40-rgb );--color-accent-50:var( --studio-celadon-50 );--color-accent-50-rgb:var( --studio-celadon-50-rgb );--color-accent-60:var( --studio-celadon-60 );--color-accent-60-rgb:var( --studio-celadon-60-rgb );--color-accent-70:var( --studio-celadon-70 );--color-accent-70-rgb:var( --studio-celadon-70-rgb );--color-accent-80:var( --studio-celadon-80 );--color-accent-80-rgb:var( --studio-celadon-80-rgb );--color-accent-90:var( --studio-celadon-90 );--color-accent-90-rgb:var( --studio-celadon-90-rgb );--color-accent-100:var( --studio-celadon-100 );--color-accent-100-rgb:var( --studio-celadon-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-white );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:var( --theme-text-color );--color-sidebar-gridicon-fill:var( --theme-icon-color );--color-sidebar-menu-selected-background:var( --theme-highlight-color );--color-sidebar-menu-selected-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-selected-text:var( --theme-text-color );--color-sidebar-menu-selected-text-rgb:var( --theme-text-color-rgb );--color-sidebar-menu-hover-background:var( --theme-highlight-color );--color-sidebar-menu-hover-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-hover-text:var( --theme-text-color );--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var( --theme-highlight-color )}.color-scheme.is-powder-snow,.color-scheme.is-powder-snow.is-nav-unification{--color-primary:var( --studio-gray-90 );--color-primary-rgb:var( --studio-gray-90-rgb );--color-primary-dark:var( --studio-gray-70 );--color-primary-dark-rgb:var( --studio-gray-70-rgb );--color-primary-light:var( --studio-gray-30 );--color-primary-light-rgb:var( --studio-gray-30-rgb );--color-primary-0:var( --studio-gray-0 );--color-primary-0-rgb:var( --studio-gray-0-rgb );--color-primary-5:var( --studio-gray-5 );--color-primary-5-rgb:var( --studio-gray-5-rgb );--color-primary-10:var( --studio-gray-10 );--color-primary-10-rgb:var( --studio-gray-10-rgb );--color-primary-20:var( --studio-gray-20 );--color-primary-20-rgb:var( --studio-gray-20-rgb );--color-primary-30:var( --studio-gray-30 );--color-primary-30-rgb:var( --studio-gray-30-rgb );--color-primary-40:var( --studio-gray-40 );--color-primary-40-rgb:var( --studio-gray-40-rgb );--color-primary-50:var( --studio-gray-50 );--color-primary-50-rgb:var( --studio-gray-50-rgb );--color-primary-60:var( --studio-gray-60 );--color-primary-60-rgb:var( --studio-gray-60-rgb );--color-primary-70:var( --studio-gray-70 );--color-primary-70-rgb:var( --studio-gray-70-rgb );--color-primary-80:var( --studio-gray-80 );--color-primary-80-rgb:var( --studio-gray-80-rgb );--color-primary-90:var( --studio-gray-90 );--color-primary-90-rgb:var( --studio-gray-90-rgb );--color-primary-100:var( --studio-gray-100 );--color-primary-100-rgb:var( --studio-gray-100-rgb );--color-accent:var( --studio-blue-50 );--color-accent-rgb:var( --studio-blue-50-rgb );--color-accent-dark:var( --studio-blue-70 );--color-accent-dark-rgb:var( --studio-blue-70-rgb );--color-accent-light:var( --studio-blue-30 );--color-accent-light-rgb:var( --studio-blue-30-rgb );--color-accent-0:var( --studio-blue-0 );--color-accent-0-rgb:var( --studio-blue-0-rgb );--color-accent-5:var( --studio-blue-5 );--color-accent-5-rgb:var( --studio-blue-5-rgb );--color-accent-10:var( --studio-blue-10 );--color-accent-10-rgb:var( --studio-blue-10-rgb );--color-accent-20:var( --studio-blue-20 );--color-accent-20-rgb:var( --studio-blue-20-rgb );--color-accent-30:var( --studio-blue-30 );--color-accent-30-rgb:var( --studio-blue-30-rgb );--color-accent-40:var( --studio-blue-40 );--color-accent-40-rgb:var( --studio-blue-40-rgb );--color-accent-50:var( --studio-blue-50 );--color-accent-50-rgb:var( --studio-blue-50-rgb );--color-accent-60:var( --studio-blue-60 );--color-accent-60-rgb:var( --studio-blue-60-rgb );--color-accent-70:var( --studio-blue-70 );--color-accent-70-rgb:var( --studio-blue-70-rgb );--color-accent-80:var( --studio-blue-80 );--color-accent-80-rgb:var( --studio-blue-80-rgb );--color-accent-90:var( --studio-blue-90 );--color-accent-90-rgb:var( --studio-blue-90-rgb );--color-accent-100:var( --studio-blue-100 );--color-accent-100-rgb:var( --studio-blue-100-rgb );--color-link:var( --studio-blue-50 );--color-link-rgb:var( --studio-blue-50-rgb );--color-link-dark:var( --studio-blue-70 );--color-link-dark-rgb:var( --studio-blue-70-rgb );--color-link-light:var( --studio-blue-30 );--color-link-light-rgb:var( --studio-blue-30-rgb );--color-link-0:var( --studio-blue-0 );--color-link-0-rgb:var( --studio-blue-0-rgb );--color-link-5:var( --studio-blue-5 );--color-link-5-rgb:var( --studio-blue-5-rgb );--color-link-10:var( --studio-blue-10 );--color-link-10-rgb:var( --studio-blue-10-rgb );--color-link-20:var( --studio-blue-20 );--color-link-20-rgb:var( --studio-blue-20-rgb );--color-link-30:var( --studio-blue-30 );--color-link-30-rgb:var( --studio-blue-30-rgb );--color-link-40:var( --studio-blue-40 );--color-link-40-rgb:var( --studio-blue-40-rgb );--color-link-50:var( --studio-blue-50 );--color-link-50-rgb:var( --studio-blue-50-rgb );--color-link-60:var( --studio-blue-60 );--color-link-60-rgb:var( --studio-blue-60-rgb );--color-link-70:var( --studio-blue-70 );--color-link-70-rgb:var( --studio-blue-70-rgb );--color-link-80:var( --studio-blue-80 );--color-link-80-rgb:var( --studio-blue-80-rgb );--color-link-90:var( --studio-blue-90 );--color-link-90-rgb:var( --studio-blue-90-rgb );--color-link-100:var( --studio-blue-100 );--color-link-100-rgb:var( --studio-blue-100-rgb );--color-masterbar-background:var( --studio-gray-100 );--color-masterbar-border:var( --studio-gray-90 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-gray-80 );--color-masterbar-item-active-background:var( --studio-gray-70 );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-40 );--color-masterbar-unread-dot-background:var( --color-accent-30 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --studio-gray-5 );--color-sidebar-background-rgb:var( --studio-gray-5-rgb );--color-sidebar-border:var( --studio-gray-10 );--color-sidebar-text:var( --studio-gray-80 );--color-sidebar-text-rgb:var( --studio-gray-80-rgb );--color-sidebar-text-alternative:var( --studio-gray-60 );--color-sidebar-gridicon-fill:var( --studio-gray-50 );--color-sidebar-menu-selected-background:var( --studio-gray-60 );--color-sidebar-menu-selected-background-rgb:var( --studio-gray-60-rgb );--color-sidebar-menu-selected-text:var( --studio-white );--color-sidebar-menu-selected-text-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-background:var( --color-surface );--color-sidebar-menu-hover-background-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-text:var( --studio-blue-60 );--color-sidebar-submenu-background:var( --studio-gray-10 );--color-sidebar-submenu-text:var( --studio-gray-80 );--color-sidebar-submenu-hover-text:var( --studio-blue-60 );--color-sidebar-submenu-selected-text:var( --studio-gray-80 )}.color-scheme.is-sakura,.color-scheme.is-sakura.is-nav-unification{--color-primary:var( --studio-celadon-50 );--color-primary-rgb:var( --studio-celadon-50-rgb );--color-primary-dark:var( --studio-celadon-70 );--color-primary-dark-rgb:var( --studio-celadon-70-rgb );--color-primary-light:var( --studio-celadon-30 );--color-primary-light-rgb:var( --studio-celadon-30-rgb );--color-primary-0:var( --studio-celadon-0 );--color-primary-0-rgb:var( --studio-celadon-0-rgb );--color-primary-5:var( --studio-celadon-5 );--color-primary-5-rgb:var( --studio-celadon-5-rgb );--color-primary-10:var( --studio-celadon-10 );--color-primary-10-rgb:var( --studio-celadon-10-rgb );--color-primary-20:var( --studio-celadon-20 );--color-primary-20-rgb:var( --studio-celadon-20-rgb );--color-primary-30:var( --studio-celadon-30 );--color-primary-30-rgb:var( --studio-celadon-30-rgb );--color-primary-40:var( --studio-celadon-40 );--color-primary-40-rgb:var( --studio-celadon-40-rgb );--color-primary-50:var( --studio-celadon-50 );--color-primary-50-rgb:var( --studio-celadon-50-rgb );--color-primary-60:var( --studio-celadon-60 );--color-primary-60-rgb:var( --studio-celadon-60-rgb );--color-primary-70:var( --studio-celadon-70 );--color-primary-70-rgb:var( --studio-celadon-70-rgb );--color-primary-80:var( --studio-celadon-80 );--color-primary-80-rgb:var( --studio-celadon-80-rgb );--color-primary-90:var( --studio-celadon-90 );--color-primary-90-rgb:var( --studio-celadon-90-rgb );--color-primary-100:var( --studio-celadon-100 );--color-primary-100-rgb:var( --studio-celadon-100-rgb );--color-accent:var( --studio-blue-50 );--color-accent-rgb:var( --studio-blue-50-rgb );--color-accent-dark:var( --studio-blue-70 );--color-accent-dark-rgb:var( --studio-blue-70-rgb );--color-accent-light:var( --studio-blue-30 );--color-accent-light-rgb:var( --studio-blue-30-rgb );--color-accent-0:var( --studio-blue-0 );--color-accent-0-rgb:var( --studio-blue-0-rgb );--color-accent-5:var( --studio-blue-5 );--color-accent-5-rgb:var( --studio-blue-5-rgb );--color-accent-10:var( --studio-blue-10 );--color-accent-10-rgb:var( --studio-blue-10-rgb );--color-accent-20:var( --studio-blue-20 );--color-accent-20-rgb:var( --studio-blue-20-rgb );--color-accent-30:var( --studio-blue-30 );--color-accent-30-rgb:var( --studio-blue-30-rgb );--color-accent-40:var( --studio-blue-40 );--color-accent-40-rgb:var( --studio-blue-40-rgb );--color-accent-50:var( --studio-blue-50 );--color-accent-50-rgb:var( --studio-blue-50-rgb );--color-accent-60:var( --studio-blue-60 );--color-accent-60-rgb:var( --studio-blue-60-rgb );--color-accent-70:var( --studio-blue-70 );--color-accent-70-rgb:var( --studio-blue-70-rgb );--color-accent-80:var( --studio-blue-80 );--color-accent-80-rgb:var( --studio-blue-80-rgb );--color-accent-90:var( --studio-blue-90 );--color-accent-90-rgb:var( --studio-blue-90-rgb );--color-accent-100:var( --studio-blue-100 );--color-accent-100-rgb:var( --studio-blue-100-rgb );--color-link:var( --studio-celadon-50 );--color-link-rgb:var( --studio-celadon-50-rgb );--color-link-dark:var( --studio-celadon-70 );--color-link-dark-rgb:var( --studio-celadon-70-rgb );--color-link-light:var( --studio-celadon-30 );--color-link-light-rgb:var( --studio-celadon-30-rgb );--color-link-0:var( --studio-celadon-0 );--color-link-0-rgb:var( --studio-celadon-0-rgb );--color-link-5:var( --studio-celadon-5 );--color-link-5-rgb:var( --studio-celadon-5-rgb );--color-link-10:var( --studio-celadon-10 );--color-link-10-rgb:var( --studio-celadon-10-rgb );--color-link-20:var( --studio-celadon-20 );--color-link-20-rgb:var( --studio-celadon-20-rgb );--color-link-30:var( --studio-celadon-30 );--color-link-30-rgb:var( --studio-celadon-30-rgb );--color-link-40:var( --studio-celadon-40 );--color-link-40-rgb:var( --studio-celadon-40-rgb );--color-link-50:var( --studio-celadon-50 );--color-link-50-rgb:var( --studio-celadon-50-rgb );--color-link-60:var( --studio-celadon-60 );--color-link-60-rgb:var( --studio-celadon-60-rgb );--color-link-70:var( --studio-celadon-70 );--color-link-70-rgb:var( --studio-celadon-70-rgb );--color-link-80:var( --studio-celadon-80 );--color-link-80-rgb:var( --studio-celadon-80-rgb );--color-link-90:var( --studio-celadon-90 );--color-link-90-rgb:var( --studio-celadon-90-rgb );--color-link-100:var( --studio-celadon-100 );--color-link-100-rgb:var( --studio-celadon-100-rgb );--color-masterbar-background:var( --studio-celadon-70 );--color-masterbar-border:var( --studio-celadon-80 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-celadon-80 );--color-masterbar-item-active-background:var( --studio-celadon-90 );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --studio-pink-5 );--color-sidebar-background-rgb:var( --studio-pink-5-rgb );--color-sidebar-border:var( --studio-pink-10 );--color-sidebar-text:var( --studio-pink-80 );--color-sidebar-text-rgb:var( --studio-pink-80-rgb );--color-sidebar-text-alternative:var( --studio-pink-60 );--color-sidebar-gridicon-fill:var( --studio-pink-70 );--color-sidebar-menu-selected-background:var( --studio-blue-50 );--color-sidebar-menu-selected-background-rgb:var( --studio-blue-50-rgb );--color-sidebar-menu-selected-text:var( --studio-white );--color-sidebar-menu-selected-text-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-background:var( --studio-pink-10 );--color-sidebar-menu-hover-background-rgb:var( --studio-pink-10-rgb );--color-sidebar-menu-hover-text:var( --studio-pink-90 );--color-sidebar-submenu-background:var( --studio-pink-90 );--color-sidebar-submenu-text:var( --studio-pink-0 );--color-sidebar-submenu-hover-text:var( --studio-blue-20 );--color-sidebar-submenu-selected-text:var( --studio-pink-0 )}.color-scheme.is-sunrise,.color-scheme.is-sunrise.is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#cf4944;--theme-base-color-rgb:207,73,68;--theme-submenu-text-color:#f1c8c7;--theme-submenu-background-color:#be3631;--theme-submenu-hover-text-color:#f7e3d3;--theme-icon-color:#f3f1f1;--theme-highlight-color:#dd823b;--theme-highlight-color-rgb:221,130,59;--theme-notification-color:#ccaf0b;--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --studio-orange-70 );--color-primary-dark-rgb:var( --studio-orange-70-rgb );--color-primary-light:var( --studio-orange-30 );--color-primary-light-rgb:var( --studio-orange-30-rgb );--color-primary-0:var( --studio-orange-0 );--color-primary-0-rgb:var( --studio-orange-0-rgb );--color-primary-5:var( --studio-orange-5 );--color-primary-5-rgb:var( --studio-orange-5-rgb );--color-primary-10:var( --studio-orange-10 );--color-primary-10-rgb:var( --studio-orange-10-rgb );--color-primary-20:var( --studio-orange-20 );--color-primary-20-rgb:var( --studio-orange-20-rgb );--color-primary-30:var( --studio-orange-30 );--color-primary-30-rgb:var( --studio-orange-30-rgb );--color-primary-40:var( --studio-orange-40 );--color-primary-40-rgb:var( --studio-orange-40-rgb );--color-primary-50:var( --studio-orange-50 );--color-primary-50-rgb:var( --studio-orange-50-rgb );--color-primary-60:var( --studio-orange-60 );--color-primary-60-rgb:var( --studio-orange-60-rgb );--color-primary-70:var( --studio-orange-70 );--color-primary-70-rgb:var( --studio-orange-70-rgb );--color-primary-80:var( --studio-orange-80 );--color-primary-80-rgb:var( --studio-orange-80-rgb );--color-primary-90:var( --studio-orange-90 );--color-primary-90-rgb:var( --studio-orange-90-rgb );--color-primary-100:var( --studio-orange-100 );--color-primary-100-rgb:var( --studio-orange-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --studio-orange-70 );--color-accent-dark-rgb:var( --studio-orange-70-rgb );--color-accent-light:var( --studio-orange-30 );--color-accent-light-rgb:var( --studio-orange-30-rgb );--color-accent-0:var( --studio-orange-0 );--color-accent-0-rgb:var( --studio-orange-0-rgb );--color-accent-5:var( --studio-orange-5 );--color-accent-5-rgb:var( --studio-orange-5-rgb );--color-accent-10:var( --studio-orange-10 );--color-accent-10-rgb:var( --studio-orange-10-rgb );--color-accent-20:var( --studio-orange-20 );--color-accent-20-rgb:var( --studio-orange-20-rgb );--color-accent-30:var( --studio-orange-30 );--color-accent-30-rgb:var( --studio-orange-30-rgb );--color-accent-40:var( --studio-orange-40 );--color-accent-40-rgb:var( --studio-orange-40-rgb );--color-accent-50:var( --studio-orange-50 );--color-accent-50-rgb:var( --studio-orange-50-rgb );--color-accent-60:var( --studio-orange-60 );--color-accent-60-rgb:var( --studio-orange-60-rgb );--color-accent-70:var( --studio-orange-70 );--color-accent-70-rgb:var( --studio-orange-70-rgb );--color-accent-80:var( --studio-orange-80 );--color-accent-80-rgb:var( --studio-orange-80-rgb );--color-accent-90:var( --studio-orange-90 );--color-accent-90-rgb:var( --studio-orange-90-rgb );--color-accent-100:var( --studio-orange-100 );--color-accent-100-rgb:var( --studio-orange-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-white );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:var( --studio-gray-0 );--color-sidebar-gridicon-fill:var( --theme-icon-color );--color-sidebar-menu-selected-background:var( --theme-highlight-color );--color-sidebar-menu-selected-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-selected-text:var( --theme-text-color );--color-sidebar-menu-selected-text-rgb:var( --theme-text-color-rgb );--color-sidebar-menu-hover-background:var( --theme-highlight-color );--color-sidebar-menu-hover-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-hover-text:var( --theme-text-color );--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var( --theme-submenu-hover-text-color )}.color-scheme.is-sunset,.color-scheme.is-sunset.is-nav-unification{--color-primary:var( --studio-red-50 );--color-primary-rgb:var( --studio-red-50-rgb );--color-primary-dark:var( --studio-red-70 );--color-primary-dark-rgb:var( --studio-red-70-rgb );--color-primary-light:var( --studio-red-30 );--color-primary-light-rgb:var( --studio-red-30-rgb );--color-primary-0:var( --studio-red-0 );--color-primary-0-rgb:var( --studio-red-0-rgb );--color-primary-5:var( --studio-red-5 );--color-primary-5-rgb:var( --studio-red-5-rgb );--color-primary-10:var( --studio-red-10 );--color-primary-10-rgb:var( --studio-red-10-rgb );--color-primary-20:var( --studio-red-20 );--color-primary-20-rgb:var( --studio-red-20-rgb );--color-primary-30:var( --studio-red-30 );--color-primary-30-rgb:var( --studio-red-30-rgb );--color-primary-40:var( --studio-red-40 );--color-primary-40-rgb:var( --studio-red-40-rgb );--color-primary-50:var( --studio-red-50 );--color-primary-50-rgb:var( --studio-red-50-rgb );--color-primary-60:var( --studio-red-60 );--color-primary-60-rgb:var( --studio-red-60-rgb );--color-primary-70:var( --studio-red-70 );--color-primary-70-rgb:var( --studio-red-70-rgb );--color-primary-80:var( --studio-red-80 );--color-primary-80-rgb:var( --studio-red-80-rgb );--color-primary-90:var( --studio-red-90 );--color-primary-90-rgb:var( --studio-red-90-rgb );--color-primary-100:var( --studio-red-100 );--color-primary-100-rgb:var( --studio-red-100-rgb );--color-accent:var( --studio-orange-50 );--color-accent-rgb:var( --studio-orange-50-rgb );--color-accent-dark:var( --studio-orange-70 );--color-accent-dark-rgb:var( --studio-orange-70-rgb );--color-accent-light:var( --studio-orange-30 );--color-accent-light-rgb:var( --studio-orange-30-rgb );--color-accent-0:var( --studio-orange-0 );--color-accent-0-rgb:var( --studio-orange-0-rgb );--color-accent-5:var( --studio-orange-5 );--color-accent-5-rgb:var( --studio-orange-5-rgb );--color-accent-10:var( --studio-orange-10 );--color-accent-10-rgb:var( --studio-orange-10-rgb );--color-accent-20:var( --studio-orange-20 );--color-accent-20-rgb:var( --studio-orange-20-rgb );--color-accent-30:var( --studio-orange-30 );--color-accent-30-rgb:var( --studio-orange-30-rgb );--color-accent-40:var( --studio-orange-40 );--color-accent-40-rgb:var( --studio-orange-40-rgb );--color-accent-50:var( --studio-orange-50 );--color-accent-50-rgb:var( --studio-orange-50-rgb );--color-accent-60:var( --studio-orange-60 );--color-accent-60-rgb:var( --studio-orange-60-rgb );--color-accent-70:var( --studio-orange-70 );--color-accent-70-rgb:var( --studio-orange-70-rgb );--color-accent-80:var( --studio-orange-80 );--color-accent-80-rgb:var( --studio-orange-80-rgb );--color-accent-90:var( --studio-orange-90 );--color-accent-90-rgb:var( --studio-orange-90-rgb );--color-accent-100:var( --studio-orange-100 );--color-accent-100-rgb:var( --studio-orange-100-rgb );--color-link:var( --studio-orange-50 );--color-link-rgb:var( --studio-orange-50-rgb );--color-link-dark:var( --studio-orange-70 );--color-link-dark-rgb:var( --studio-orange-70-rgb );--color-link-light:var( --studio-orange-30 );--color-link-light-rgb:var( --studio-orange-30-rgb );--color-link-0:var( --studio-orange-0 );--color-link-0-rgb:var( --studio-orange-0-rgb );--color-link-5:var( --studio-orange-5 );--color-link-5-rgb:var( --studio-orange-5-rgb );--color-link-10:var( --studio-orange-10 );--color-link-10-rgb:var( --studio-orange-10-rgb );--color-link-20:var( --studio-orange-20 );--color-link-20-rgb:var( --studio-orange-20-rgb );--color-link-30:var( --studio-orange-30 );--color-link-30-rgb:var( --studio-orange-30-rgb );--color-link-40:var( --studio-orange-40 );--color-link-40-rgb:var( --studio-orange-40-rgb );--color-link-50:var( --studio-orange-50 );--color-link-50-rgb:var( --studio-orange-50-rgb );--color-link-60:var( --studio-orange-60 );--color-link-60-rgb:var( --studio-orange-60-rgb );--color-link-70:var( --studio-orange-70 );--color-link-70-rgb:var( --studio-orange-70-rgb );--color-link-80:var( --studio-orange-80 );--color-link-80-rgb:var( --studio-orange-80-rgb );--color-link-90:var( --studio-orange-90 );--color-link-90-rgb:var( --studio-orange-90-rgb );--color-link-100:var( --studio-orange-100 );--color-link-100-rgb:var( --studio-orange-100-rgb );--color-masterbar-background:var( --studio-red-80 );--color-masterbar-border:var( --studio-red-80 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-red-90 );--color-masterbar-item-active-background:var( --studio-red-100 );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --studio-red-70 );--color-sidebar-background-rgb:var( --studio-red-70-rgb );--color-sidebar-border:var( --studio-red-80 );--color-sidebar-text:var( --studio-white );--color-sidebar-text-rgb:var( --studio-white-rgb );--color-sidebar-text-alternative:var( --studio-red-10 );--color-sidebar-gridicon-fill:var( --studio-red-5 );--color-sidebar-menu-selected-background:var( --studio-yellow-20 );--color-sidebar-menu-selected-background-rgb:var( --studio-yellow-20-rgb );--color-sidebar-menu-selected-text:var( --studio-yellow-80 );--color-sidebar-menu-selected-text-rgb:var( --studio-yellow-80-rgb );--color-sidebar-menu-hover-background:var( --studio-red-80 );--color-sidebar-menu-hover-background-rgb:var( --studio-red-80-rgb );--color-sidebar-menu-hover-text:var( --studio-white );--color-sidebar-submenu-background:var( --studio-red-60 );--color-sidebar-submenu-text:var( --studio-white );--color-sidebar-submenu-hover-text:var( --studio-yellow-20 );--color-sidebar-submenu-selected-text:var( --studio-white )}.color-scheme.is-jetpack-cloud,.theme-jetpack-cloud{--color-primary:var( --studio-black );--color-primary-rgb:var( --studio-black-rgb );--color-primary-dark:var( --studio-gray-70 );--color-primary-dark-rgb:var( --studio-gray-70-rgb );--color-primary-light:var( --studio-gray-30 );--color-primary-light-rgb:var( --studio-gray-30-rgb );--color-primary-0:var( --studio-gray-0 );--color-primary-0-rgb:var( --studio-gray-0-rgb );--color-primary-5:var( --studio-gray-5 );--color-primary-5-rgb:var( --studio-gray-5-rgb );--color-primary-10:var( --studio-gray-10 );--color-primary-10-rgb:var( --studio-gray-10-rgb );--color-primary-20:var( --studio-gray-20 );--color-primary-20-rgb:var( --studio-gray-20-rgb );--color-primary-30:var( --studio-gray-30 );--color-primary-30-rgb:var( --studio-gray-30-rgb );--color-primary-40:var( --studio-gray-40 );--color-primary-40-rgb:var( --studio-gray-40-rgb );--color-primary-50:var( --studio-gray-50 );--color-primary-50-rgb:var( --studio-gray-rgb );--color-primary-60:var( --studio-gray-60 );--color-primary-60-rgb:var( --studio-gray-60-rgb );--color-primary-70:var( --studio-gray-70 );--color-primary-70-rgb:var( --studio-gray-70-rgb );--color-primary-80:var( --studio-gray-80 );--color-primary-80-rgb:var( --studio-gray-80-rgb );--color-primary-90:var( --studio-gray-90 );--color-primary-90-rgb:var( --studio-gray-90-rgb );--color-primary-100:var( --studio-gray-100 );--color-primary-100-rgb:var( --studio-gray-100-rgb );--color-accent:var( --studio-black );--color-accent-rgb:var( --studio-black-rgb );--color-accent-dark:var( --studio-gray-70 );--color-accent-dark-rgb:var( --studio-gray-70-rgb );--color-accent-light:var( --studio-gray-30 );--color-accent-light-rgb:var( --studio-gray-30-rgb );--color-accent-0:var( --studio-gray-0 );--color-accent-0-rgb:var( --studio-gray-0-rgb );--color-accent-5:var( --studio-gray-5 );--color-accent-5-rgb:var( --studio-gray-5-rgb );--color-accent-10:var( --studio-gray-10 );--color-accent-10-rgb:var( --studio-gray-10-rgb );--color-accent-20:var( --studio-gray-20 );--color-accent-20-rgb:var( --studio-gray-20-rgb );--color-accent-30:var( --studio-gray-30 );--color-accent-30-rgb:var( --studio-gray-30-rgb );--color-accent-40:var( --studio-gray-40 );--color-accent-40-rgb:var( --studio-gray-40-rgb );--color-accent-50:var( --studio-gray-50 );--color-accent-50-rgb:var( --studio-gray-50-rgb );--color-accent-60:var( --studio-gray-60 );--color-accent-60-rgb:var( --studio-gray-60-rgb );--color-accent-70:var( --studio-gray-70 );--color-accent-70-rgb:var( --studio-gray-70-rgb );--color-accent-80:var( --studio-gray-80 );--color-accent-80-rgb:var( --studio-gray-80-rgb );--color-accent-90:var( --studio-gray-90 );--color-accent-90-rgb:var( --studio-gray-90-rgb );--color-accent-100:var( --studio-gray-100 );--color-accent-100-rgb:var( --studio-gray-100-rgb );--color-link:var( --studio-jetpack-green-50 );--color-link-rgb:var( --studio-jetpack-green-50-rgb );--color-link-dark:var( --studio-jetpack-green-70 );--color-link-dark-rgb:var( --studio-jetpack-green-70-rgb );--color-link-light:var( --studio-jetpack-green-30 );--color-link-light-rgb:var( --studio-jetpack-green-30-rgb );--color-link-0:var( --studio-jetpack-green-0 );--color-link-0-rgb:var( --studio-jetpack-green-0-rgb );--color-link-5:var( --studio-jetpack-green-5 );--color-link-5-rgb:var( --studio-jetpack-green-5-rgb );--color-link-10:var( --studio-jetpack-green-10 );--color-link-10-rgb:var( --studio-jetpack-green-10-rgb );--color-link-20:var( --studio-jetpack-green-20 );--color-link-20-rgb:var( --studio-jetpack-green-20-rgb );--color-link-30:var( --studio-jetpack-green-30 );--color-link-30-rgb:var( --studio-jetpack-green-30-rgb );--color-link-40:var( --studio-jetpack-green-40 );--color-link-40-rgb:var( --studio-jetpack-green-40-rgb );--color-link-50:var( --studio-gray-50 );--color-link-50-rgb:var( --studio-gray-50-rgb );--color-link-60:var( --studio-jetpack-green-60 );--color-link-60-rgb:var( --studio-jetpack-green-60-rgb );--color-link-70:var( --studio-jetpack-green-70 );--color-link-70-rgb:var( --studio-jetpack-green-70-rgb );--color-link-80:var( --studio-jetpack-green-80 );--color-link-80-rgb:var( --studio-jetpack-green-80-rgb );--color-link-90:var( --studio-jetpack-green-90 );--color-link-90-rgb:var( --studio-jetpack-green-90-rgb );--color-link-100:var( --studio-jetpack-green-100 );--color-link-100-rgb:var( --studio-jetpack-green-100-rgb );--color-masterbar-background:var( --studio-white );--color-masterbar-border:var( --studio-gray-5 );--color-masterbar-text:var( --studio-gray-50 );--color-masterbar-item-hover-background:var( --studio-white );--color-masterbar-item-active-background:var( --studio-white );--color-masterbar-item-new-editor-background:var( --studio-white );--color-masterbar-item-new-editor-hover-background:var( --studio-white );--color-masterbar-unread-dot-background:var( --color-accent-30 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --studio-white );--color-sidebar-background-rgb:var( --studio-white-rgb );--color-sidebar-border:var( --studio-gray-5 );--color-sidebar-text:var( --studio-gray-60 );--color-sidebar-text-rgb:var( --studio-gray-60-rgb );--color-sidebar-text-alternative:var( --studio-gray-60 );--color-sidebar-gridicon-fill:var( --studio-gray-60 );--color-sidebar-menu-selected-text:var( --studio-gray-90 );--color-sidebar-menu-selected-text-rgb:var( --studio-gray-90-rgb );--color-sidebar-menu-selected-background:var( --studio-gray-0 );--color-sidebar-menu-selected-background-rgb:var( --studio-gray-0-rgb );--color-sidebar-menu-selected-gridicon-fill:var( --studio-jetpack-green-50 );--color-sidebar-menu-hover-text:var( --studio-gray-90 );--color-sidebar-menu-hover-background:var( --studio-gray-0 );--color-sidebar-menu-hover-background-rgb:var( --studio-gray-0-rgb );--color-scary-0:var( --studio-red-0 );--color-scary-5:var( --studio-red-5 );--color-scary-40:var( --studio-red-40 );--color-scary-50:var( --studio-red-50 );--color-scary-60:var( --studio-red-60 );--color-scary-70:var( --studio-red-70 )}.pagination-control{display:flex;justify-content:center;margin:0;width:100%}.pagination-control li{align-items:center;border:none;display:inline-flex;height:18px;margin:auto 4px}.pagination-control li.pagination-control__last-item{height:32px;margin-left:auto}.pagination-control button.pagination-control__page{background-color:#c3c4c7;background-color:var(--color-neutral-10);border:none;border-radius:50%;cursor:pointer;height:6px;padding:0;transition:all .2s ease-in-out;width:6px}.pagination-control button.pagination-control__page:hover{background-color:#787c82;background-color:var(--color-neutral-40)}.pagination-control button.pagination-control__page:disabled{cursor:default}.pagination-control button.pagination-control__page.is-current{background-color:var(--wp-admin-theme-color)}
|
wpcom-block-editor-nux/dist/wpcom-block-editor-nux.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
-
!function(){var e={7566:function(e,t,n){"use strict";n.d(t,{kZ:function(){return p}});var o=n(2140),i=n(6249),r=n(1119),s=n(7936),c=n(421),a=n(4806),u=n(3352),l=n(8555),d={placement:"bottom",modifiers:[],strategy:"absolute"};function f(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return!t.some((function(e){return!(e&&"function"==typeof e.getBoundingClientRect)}))}function p(e){void 0===e&&(e={});var t=e,n=t.defaultModifiers,p=void 0===n?[]:n,m=t.defaultOptions,h=void 0===m?d:m;return function(e,t,n){void 0===n&&(n=h);var m={placement:"bottom",orderedModifiers:[],options:Object.assign({},d,h),modifiersData:{},elements:{reference:e,popper:t},attributes:{},styles:{}},g=[],v=!1,w={state:m,setOptions:function(n){var o="function"==typeof n?n(m.options):n;y(),m.options=Object.assign({},h,m.options,o),m.scrollParents={reference:(0,l.kK)(e)?(0,r.Z)(e):e.contextElement?(0,r.Z)(e.contextElement):[],popper:(0,r.Z)(t)};var i=(0,c.Z)((0,u.Z)([].concat(p,m.options.modifiers)));return m.orderedModifiers=i.filter((function(e){return e.enabled})),m.orderedModifiers.forEach((function(e){var t=e.name,n=e.options,o=void 0===n?{}:n,i=e.effect;if("function"==typeof i){var r=i({state:m,name:t,instance:w,options:o}),s=function(){};g.push(r||s)}})),w.update()},forceUpdate:function(){if(!v){var e=m.elements,t=e.reference,n=e.popper;if(f(t,n)){m.rects={reference:(0,o.Z)(t,(0,s.Z)(n),"fixed"===m.options.strategy),popper:(0,i.Z)(n)},m.reset=!1,m.placement=m.options.placement,m.orderedModifiers.forEach((function(e){return m.modifiersData[e.name]=Object.assign({},e.data)}));for(var r=0;r<m.orderedModifiers.length;r++)if(!0!==m.reset){var c=m.orderedModifiers[r],a=c.fn,u=c.options,l=void 0===u?{}:u,d=c.name;"function"==typeof a&&(m=a({state:m,options:l,name:d,instance:w})||m)}else m.reset=!1,r=-1}}},update:(0,a.Z)((function(){return new Promise((function(e){w.forceUpdate(),e(m)}))})),destroy:function(){y(),v=!0}};if(!f(e,t))return w;function y(){g.forEach((function(e){return e()})),g=[]}return w.setOptions(n).then((function(e){!v&&n.onFirstUpdate&&n.onFirstUpdate(e)})),w}}},5350:function(e,t,n){"use strict";n.d(t,{Z:function(){return i}});var o=n(8555);function i(e,t){var n=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(n&&(0,o.Zq)(n)){var i=t;do{if(i&&e.isSameNode(i))return!0;i=i.parentNode||i.host}while(i)}return!1}},2881:function(e,t,n){"use strict";function o(e,t){void 0===t&&(t=!1);var n=e.getBoundingClientRect();return{width:n.width/1,height:n.height/1,top:n.top/1,right:n.right/1,bottom:n.bottom/1,left:n.left/1,x:n.left/1,y:n.top/1}}n.d(t,{Z:function(){return o}})},889:function(e,t,n){"use strict";n.d(t,{Z:function(){return w}});var o=n(6166),i=n(4691),r=n(6764),s=n(1119),c=n(7936),a=n(2021),u=n(9546),l=n(8555),d=n(2881),f=n(2882),p=n(5350),m=n(98),h=n(7365),g=n(8072);function v(e,t){return t===o.Pj?(0,h.Z)((0,i.Z)(e)):(0,l.Re)(t)?function(e){var t=(0,d.Z)(e);return t.top=t.top+e.clientTop,t.left=t.left+e.clientLeft,t.bottom=t.top+e.clientHeight,t.right=t.left+e.clientWidth,t.width=e.clientWidth,t.height=e.clientHeight,t.x=t.left,t.y=t.top,t}(t):(0,h.Z)((0,r.Z)((0,a.Z)(e)))}function w(e,t,n){var o="clippingParents"===t?function(e){var t=(0,s.Z)((0,f.Z)(e)),n=["absolute","fixed"].indexOf((0,u.Z)(e).position)>=0&&(0,l.Re)(e)?(0,c.Z)(e):e;return(0,l.kK)(n)?t.filter((function(e){return(0,l.kK)(e)&&(0,p.Z)(e,n)&&"body"!==(0,m.Z)(e)})):[]}(e):[].concat(t),i=[].concat(o,[n]),r=i[0],a=i.reduce((function(t,n){var o=v(e,n);return t.top=(0,g.Fp)(o.top,t.top),t.right=(0,g.VV)(o.right,t.right),t.bottom=(0,g.VV)(o.bottom,t.bottom),t.left=(0,g.Fp)(o.left,t.left),t}),v(e,r));return a.width=a.right-a.left,a.height=a.bottom-a.top,a.x=a.left,a.y=a.top,a}},2140:function(e,t,n){"use strict";n.d(t,{Z:function(){return l}});var o=n(2881),i=n(6637),r=n(98),s=n(8555),c=n(1051),a=n(2021),u=n(8519);function l(e,t,n){void 0===n&&(n=!1);var l=(0,s.Re)(t),d=(0,s.Re)(t)&&function(e){var t=e.getBoundingClientRect(),n=t.width/e.offsetWidth||1,o=t.height/e.offsetHeight||1;return 1!==n||1!==o}(t),f=(0,a.Z)(t),p=(0,o.Z)(e,d),m={scrollLeft:0,scrollTop:0},h={x:0,y:0};return(l||!l&&!n)&&(("body"!==(0,r.Z)(t)||(0,u.Z)(f))&&(m=(0,i.Z)(t)),(0,s.Re)(t)?((h=(0,o.Z)(t,!0)).x+=t.clientLeft,h.y+=t.clientTop):f&&(h.x=(0,c.Z)(f))),{x:p.left+m.scrollLeft-h.x,y:p.top+m.scrollTop-h.y,width:p.width,height:p.height}}},9546:function(e,t,n){"use strict";n.d(t,{Z:function(){return i}});var o=n(3189);function i(e){return(0,o.Z)(e).getComputedStyle(e)}},2021:function(e,t,n){"use strict";n.d(t,{Z:function(){return i}});var o=n(8555);function i(e){return(((0,o.kK)(e)?e.ownerDocument:e.document)||window.document).documentElement}},6764:function(e,t,n){"use strict";n.d(t,{Z:function(){return a}});var o=n(2021),i=n(9546),r=n(1051),s=n(5392),c=n(8072);function a(e){var t,n=(0,o.Z)(e),a=(0,s.Z)(e),u=null==(t=e.ownerDocument)?void 0:t.body,l=(0,c.Fp)(n.scrollWidth,n.clientWidth,u?u.scrollWidth:0,u?u.clientWidth:0),d=(0,c.Fp)(n.scrollHeight,n.clientHeight,u?u.scrollHeight:0,u?u.clientHeight:0),f=-a.scrollLeft+(0,r.Z)(e),p=-a.scrollTop;return"rtl"===(0,i.Z)(u||n).direction&&(f+=(0,c.Fp)(n.clientWidth,u?u.clientWidth:0)-l),{width:l,height:d,x:f,y:p}}},812:function(e,t,n){"use strict";function o(e){return{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}}n.d(t,{Z:function(){return o}})},6249:function(e,t,n){"use strict";n.d(t,{Z:function(){return i}});var o=n(2881);function i(e){var t=(0,o.Z)(e),n=e.offsetWidth,i=e.offsetHeight;return Math.abs(t.width-n)<=1&&(n=t.width),Math.abs(t.height-i)<=1&&(i=t.height),{x:e.offsetLeft,y:e.offsetTop,width:n,height:i}}},98:function(e,t,n){"use strict";function o(e){return e?(e.nodeName||"").toLowerCase():null}n.d(t,{Z:function(){return o}})},6637:function(e,t,n){"use strict";n.d(t,{Z:function(){return c}});var o=n(5392),i=n(3189),r=n(8555),s=n(812);function c(e){return e!==(0,i.Z)(e)&&(0,r.Re)(e)?(0,s.Z)(e):(0,o.Z)(e)}},7936:function(e,t,n){"use strict";n.d(t,{Z:function(){return l}});var o=n(3189),i=n(98),r=n(9546),s=n(8555),c=n(1725),a=n(2882);function u(e){return(0,s.Re)(e)&&"fixed"!==(0,r.Z)(e).position?e.offsetParent:null}function l(e){for(var t=(0,o.Z)(e),n=u(e);n&&(0,c.Z)(n)&&"static"===(0,r.Z)(n).position;)n=u(n);return n&&("html"===(0,i.Z)(n)||"body"===(0,i.Z)(n)&&"static"===(0,r.Z)(n).position)?t:n||function(e){var t=-1!==navigator.userAgent.toLowerCase().indexOf("firefox");if(-1!==navigator.userAgent.indexOf("Trident")&&(0,s.Re)(e)&&"fixed"===(0,r.Z)(e).position)return null;for(var n=(0,a.Z)(e);(0,s.Re)(n)&&["html","body"].indexOf((0,i.Z)(n))<0;){var o=(0,r.Z)(n);if("none"!==o.transform||"none"!==o.perspective||"paint"===o.contain||-1!==["transform","perspective"].indexOf(o.willChange)||t&&"filter"===o.willChange||t&&o.filter&&"none"!==o.filter)return n;n=n.parentNode}return null}(e)||t}},2882:function(e,t,n){"use strict";n.d(t,{Z:function(){return s}});var o=n(98),i=n(2021),r=n(8555);function s(e){return"html"===(0,o.Z)(e)?e:e.assignedSlot||e.parentNode||((0,r.Zq)(e)?e.host:null)||(0,i.Z)(e)}},7915:function(e,t,n){"use strict";n.d(t,{Z:function(){return c}});var o=n(2882),i=n(8519),r=n(98),s=n(8555);function c(e){return["html","body","#document"].indexOf((0,r.Z)(e))>=0?e.ownerDocument.body:(0,s.Re)(e)&&(0,i.Z)(e)?e:c((0,o.Z)(e))}},4691:function(e,t,n){"use strict";n.d(t,{Z:function(){return s}});var o=n(3189),i=n(2021),r=n(1051);function s(e){var t=(0,o.Z)(e),n=(0,i.Z)(e),s=t.visualViewport,c=n.clientWidth,a=n.clientHeight,u=0,l=0;return s&&(c=s.width,a=s.height,/^((?!chrome|android).)*safari/i.test(navigator.userAgent)||(u=s.offsetLeft,l=s.offsetTop)),{width:c,height:a,x:u+(0,r.Z)(e),y:l}}},3189:function(e,t,n){"use strict";function o(e){if(null==e)return window;if("[object Window]"!==e.toString()){var t=e.ownerDocument;return t&&t.defaultView||window}return e}n.d(t,{Z:function(){return o}})},5392:function(e,t,n){"use strict";n.d(t,{Z:function(){return i}});var o=n(3189);function i(e){var t=(0,o.Z)(e);return{scrollLeft:t.pageXOffset,scrollTop:t.pageYOffset}}},1051:function(e,t,n){"use strict";n.d(t,{Z:function(){return s}});var o=n(2881),i=n(2021),r=n(5392);function s(e){return(0,o.Z)((0,i.Z)(e)).left+(0,r.Z)(e).scrollLeft}},8555:function(e,t,n){"use strict";n.d(t,{kK:function(){return i},Re:function(){return r},Zq:function(){return s}});var o=n(3189);function i(e){return e instanceof(0,o.Z)(e).Element||e instanceof Element}function r(e){return e instanceof(0,o.Z)(e).HTMLElement||e instanceof HTMLElement}function s(e){return"undefined"!=typeof ShadowRoot&&(e instanceof(0,o.Z)(e).ShadowRoot||e instanceof ShadowRoot)}},8519:function(e,t,n){"use strict";n.d(t,{Z:function(){return i}});var o=n(9546);function i(e){var t=(0,o.Z)(e),n=t.overflow,i=t.overflowX,r=t.overflowY;return/auto|scroll|overlay|hidden/.test(n+r+i)}},1725:function(e,t,n){"use strict";n.d(t,{Z:function(){return i}});var o=n(98);function i(e){return["table","td","th"].indexOf((0,o.Z)(e))>=0}},1119:function(e,t,n){"use strict";n.d(t,{Z:function(){return c}});var o=n(7915),i=n(2882),r=n(3189),s=n(8519);function c(e,t){var n;void 0===t&&(t=[]);var a=(0,o.Z)(e),u=a===(null==(n=e.ownerDocument)?void 0:n.body),l=(0,r.Z)(a),d=u?[l].concat(l.visualViewport||[],(0,s.Z)(a)?a:[]):a,f=t.concat(d);return u?f:f.concat(c((0,i.Z)(d)))}},6166:function(e,t,n){"use strict";n.d(t,{we:function(){return o},I:function(){return i},F2:function(){return r},t$:function(){return s},d7:function(){return c},mv:function(){return a},BL:function(){return u},ut:function(){return l},zV:function(){return d},Pj:function(){return f},k5:function(){return p},YP:function(){return m},bw:function(){return h},Ct:function(){return g},xs:function(){return v}});var o="top",i="bottom",r="right",s="left",c="auto",a=[o,i,r,s],u="start",l="end",d="clippingParents",f="viewport",p="popper",m="reference",h=a.reduce((function(e,t){return e.concat([t+"-"+u,t+"-"+l])}),[]),g=[].concat(a,[c]).reduce((function(e,t){return e.concat([t,t+"-"+u,t+"-"+l])}),[]),v=["beforeRead","read","afterRead","beforeMain","main","afterMain","beforeWrite","write","afterWrite"]},1414:function(e,t,n){"use strict";var o=n(98),i=n(8555);t.Z={name:"applyStyles",enabled:!0,phase:"write",fn:function(e){var t=e.state;Object.keys(t.elements).forEach((function(e){var n=t.styles[e]||{},r=t.attributes[e]||{},s=t.elements[e];(0,i.Re)(s)&&(0,o.Z)(s)&&(Object.assign(s.style,n),Object.keys(r).forEach((function(e){var t=r[e];!1===t?s.removeAttribute(e):s.setAttribute(e,!0===t?"":t)})))}))},effect:function(e){var t=e.state,n={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(t.elements.popper.style,n.popper),t.styles=n,t.elements.arrow&&Object.assign(t.elements.arrow.style,n.arrow),function(){Object.keys(t.elements).forEach((function(e){var r=t.elements[e],s=t.attributes[e]||{},c=Object.keys(t.styles.hasOwnProperty(e)?t.styles[e]:n[e]).reduce((function(e,t){return e[t]="",e}),{});(0,i.Re)(r)&&(0,o.Z)(r)&&(Object.assign(r.style,c),Object.keys(s).forEach((function(e){r.removeAttribute(e)})))}))}},requires:["computeStyles"]}},335:function(e,t,n){"use strict";var o=n(7677),i=n(6249),r=n(5350),s=n(7936),c=n(1505),a=n(964),u=n(6713),l=n(315),d=n(6166);t.Z={name:"arrow",enabled:!0,phase:"main",fn:function(e){var t,n=e.state,r=e.name,f=e.options,p=n.elements.arrow,m=n.modifiersData.popperOffsets,h=(0,o.Z)(n.placement),g=(0,c.Z)(h),v=[d.t$,d.F2].indexOf(h)>=0?"height":"width";if(p&&m){var w=function(e,t){return e="function"==typeof e?e(Object.assign({},t.rects,{placement:t.placement})):e,(0,u.Z)("number"!=typeof e?e:(0,l.Z)(e,d.mv))}(f.padding,n),y=(0,i.Z)(p),b="y"===g?d.we:d.t$,_="y"===g?d.I:d.F2,E=n.rects.reference[v]+n.rects.reference[g]-m[g]-n.rects.popper[v],x=m[g]-n.rects.reference[g],k=(0,s.Z)(p),C=k?"y"===g?k.clientHeight||0:k.clientWidth||0:0,S=E/2-x/2,Z=w[b],O=C-y[v]-w[_],M=C/2-y[v]/2+S,P=(0,a.Z)(Z,M,O),F=g;n.modifiersData[r]=((t={})[F]=P,t.centerOffset=P-M,t)}},effect:function(e){var t=e.state,n=e.options.element,o=void 0===n?"[data-popper-arrow]":n;null!=o&&("string"!=typeof o||(o=t.elements.popper.querySelector(o)))&&(0,r.Z)(t.elements.popper,o)&&(t.elements.arrow=o)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]}},917:function(e,t,n){"use strict";var o=n(6166),i=n(7936),r=n(3189),s=n(2021),c=n(9546),a=n(7677),u=n(4531),l=n(8072),d={top:"auto",right:"auto",bottom:"auto",left:"auto"};function f(e){var t,n=e.popper,a=e.popperRect,u=e.placement,f=e.variation,p=e.offsets,m=e.position,h=e.gpuAcceleration,g=e.adaptive,v=e.roundOffsets,w=!0===v?function(e){var t=e.x,n=e.y,o=window.devicePixelRatio||1;return{x:(0,l.NM)((0,l.NM)(t*o)/o)||0,y:(0,l.NM)((0,l.NM)(n*o)/o)||0}}(p):"function"==typeof v?v(p):p,y=w.x,b=void 0===y?0:y,_=w.y,E=void 0===_?0:_,x=p.hasOwnProperty("x"),k=p.hasOwnProperty("y"),C=o.t$,S=o.we,Z=window;if(g){var O=(0,i.Z)(n),M="clientHeight",P="clientWidth";O===(0,r.Z)(n)&&(O=(0,s.Z)(n),"static"!==(0,c.Z)(O).position&&"absolute"===m&&(M="scrollHeight",P="scrollWidth")),O=O,u!==o.we&&(u!==o.t$&&u!==o.F2||f!==o.ut)||(S=o.I,E-=O[M]-a.height,E*=h?1:-1),u!==o.t$&&(u!==o.we&&u!==o.I||f!==o.ut)||(C=o.F2,b-=O[P]-a.width,b*=h?1:-1)}var F,L=Object.assign({position:m},g&&d);return h?Object.assign({},L,((F={})[S]=k?"0":"",F[C]=x?"0":"",F.transform=(Z.devicePixelRatio||1)<=1?"translate("+b+"px, "+E+"px)":"translate3d("+b+"px, "+E+"px, 0)",F)):Object.assign({},L,((t={})[S]=k?E+"px":"",t[C]=x?b+"px":"",t.transform="",t))}t.Z={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(e){var t=e.state,n=e.options,o=n.gpuAcceleration,i=void 0===o||o,r=n.adaptive,s=void 0===r||r,c=n.roundOffsets,l=void 0===c||c,d={placement:(0,a.Z)(t.placement),variation:(0,u.Z)(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:i};null!=t.modifiersData.popperOffsets&&(t.styles.popper=Object.assign({},t.styles.popper,f(Object.assign({},d,{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:s,roundOffsets:l})))),null!=t.modifiersData.arrow&&(t.styles.arrow=Object.assign({},t.styles.arrow,f(Object.assign({},d,{offsets:t.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:l})))),t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-placement":t.placement})},data:{}}},3191:function(e,t,n){"use strict";var o=n(3189),i={passive:!0};t.Z={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(e){var t=e.state,n=e.instance,r=e.options,s=r.scroll,c=void 0===s||s,a=r.resize,u=void 0===a||a,l=(0,o.Z)(t.elements.popper),d=[].concat(t.scrollParents.reference,t.scrollParents.popper);return c&&d.forEach((function(e){e.addEventListener("scroll",n.update,i)})),u&&l.addEventListener("resize",n.update,i),function(){c&&d.forEach((function(e){e.removeEventListener("scroll",n.update,i)})),u&&l.removeEventListener("resize",n.update,i)}},data:{}}},5207:function(e,t,n){"use strict";var o=n(942),i=n(7677),r=n(12),s=n(9356),c=n(7826),a=n(6166),u=n(4531);t.Z={name:"flip",enabled:!0,phase:"main",fn:function(e){var t=e.state,n=e.options,l=e.name;if(!t.modifiersData[l]._skip){for(var d=n.mainAxis,f=void 0===d||d,p=n.altAxis,m=void 0===p||p,h=n.fallbackPlacements,g=n.padding,v=n.boundary,w=n.rootBoundary,y=n.altBoundary,b=n.flipVariations,_=void 0===b||b,E=n.allowedAutoPlacements,x=t.options.placement,k=(0,i.Z)(x),C=h||(k===x||!_?[(0,o.Z)(x)]:function(e){if((0,i.Z)(e)===a.d7)return[];var t=(0,o.Z)(e);return[(0,r.Z)(e),t,(0,r.Z)(t)]}(x)),S=[x].concat(C).reduce((function(e,n){return e.concat((0,i.Z)(n)===a.d7?(0,c.Z)(t,{placement:n,boundary:v,rootBoundary:w,padding:g,flipVariations:_,allowedAutoPlacements:E}):n)}),[]),Z=t.rects.reference,O=t.rects.popper,M=new Map,P=!0,F=S[0],L=0;L<S.length;L++){var N=S[L],j=(0,i.Z)(N),R=(0,u.Z)(N)===a.BL,T=[a.we,a.I].indexOf(j)>=0,A=T?"width":"height",z=(0,s.Z)(t,{placement:N,boundary:v,rootBoundary:w,altBoundary:y,padding:g}),I=T?R?a.F2:a.t$:R?a.I:a.we;Z[A]>O[A]&&(I=(0,o.Z)(I));var W=(0,o.Z)(I),G=[];if(f&&G.push(z[j]<=0),m&&G.push(z[I]<=0,z[W]<=0),G.every((function(e){return e}))){F=N,P=!1;break}M.set(N,G)}if(P)for(var D=function(e){var t=S.find((function(t){var n=M.get(t);if(n)return n.slice(0,e).every((function(e){return e}))}));if(t)return F=t,"break"},B=_?3:1;B>0;B--){if("break"===D(B))break}t.placement!==F&&(t.modifiersData[l]._skip=!0,t.placement=F,t.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}}},2883:function(e,t,n){"use strict";var o=n(6166),i=n(9356);function r(e,t,n){return void 0===n&&(n={x:0,y:0}),{top:e.top-t.height-n.y,right:e.right-t.width+n.x,bottom:e.bottom-t.height+n.y,left:e.left-t.width-n.x}}function s(e){return[o.we,o.F2,o.I,o.t$].some((function(t){return e[t]>=0}))}t.Z={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(e){var t=e.state,n=e.name,o=t.rects.reference,c=t.rects.popper,a=t.modifiersData.preventOverflow,u=(0,i.Z)(t,{elementContext:"reference"}),l=(0,i.Z)(t,{altBoundary:!0}),d=r(u,o),f=r(l,c,a),p=s(d),m=s(f);t.modifiersData[n]={referenceClippingOffsets:d,popperEscapeOffsets:f,isReferenceHidden:p,hasPopperEscaped:m},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":p,"data-popper-escaped":m})}}},3108:function(e,t,n){"use strict";var o=n(7677),i=n(6166);t.Z={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(e){var t=e.state,n=e.options,r=e.name,s=n.offset,c=void 0===s?[0,0]:s,a=i.Ct.reduce((function(e,n){return e[n]=function(e,t,n){var r=(0,o.Z)(e),s=[i.t$,i.we].indexOf(r)>=0?-1:1,c="function"==typeof n?n(Object.assign({},t,{placement:e})):n,a=c[0],u=c[1];return a=a||0,u=(u||0)*s,[i.t$,i.F2].indexOf(r)>=0?{x:u,y:a}:{x:a,y:u}}(n,t.rects,c),e}),{}),u=a[t.placement],l=u.x,d=u.y;null!=t.modifiersData.popperOffsets&&(t.modifiersData.popperOffsets.x+=l,t.modifiersData.popperOffsets.y+=d),t.modifiersData[r]=a}}},5435:function(e,t,n){"use strict";var o=n(6919);t.Z={name:"popperOffsets",enabled:!0,phase:"read",fn:function(e){var t=e.state,n=e.name;t.modifiersData[n]=(0,o.Z)({reference:t.rects.reference,element:t.rects.popper,strategy:"absolute",placement:t.placement})},data:{}}},6998:function(e,t,n){"use strict";var o=n(6166),i=n(7677),r=n(1505),s=n(5754),c=n(964),a=n(6249),u=n(7936),l=n(9356),d=n(4531),f=n(3046),p=n(8072);t.Z={name:"preventOverflow",enabled:!0,phase:"main",fn:function(e){var t=e.state,n=e.options,m=e.name,h=n.mainAxis,g=void 0===h||h,v=n.altAxis,w=void 0!==v&&v,y=n.boundary,b=n.rootBoundary,_=n.altBoundary,E=n.padding,x=n.tether,k=void 0===x||x,C=n.tetherOffset,S=void 0===C?0:C,Z=(0,l.Z)(t,{boundary:y,rootBoundary:b,padding:E,altBoundary:_}),O=(0,i.Z)(t.placement),M=(0,d.Z)(t.placement),P=!M,F=(0,r.Z)(O),L=(0,s.Z)(F),N=t.modifiersData.popperOffsets,j=t.rects.reference,R=t.rects.popper,T="function"==typeof S?S(Object.assign({},t.rects,{placement:t.placement})):S,A={x:0,y:0};if(N){if(g||w){var z="y"===F?o.we:o.t$,I="y"===F?o.I:o.F2,W="y"===F?"height":"width",G=N[F],D=N[F]+Z[z],B=N[F]-Z[I],$=k?-R[W]/2:0,U=M===o.BL?j[W]:R[W],H=M===o.BL?-R[W]:-j[W],V=t.elements.arrow,q=k&&V?(0,a.Z)(V):{width:0,height:0},Y=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:(0,f.Z)(),K=Y[z],X=Y[I],J=(0,c.Z)(0,j[W],q[W]),Q=P?j[W]/2-$-J-K-T:U-J-K-T,ee=P?-j[W]/2+$+J+X+T:H+J+X+T,te=t.elements.arrow&&(0,u.Z)(t.elements.arrow),ne=te?"y"===F?te.clientTop||0:te.clientLeft||0:0,oe=t.modifiersData.offset?t.modifiersData.offset[t.placement][F]:0,ie=N[F]+Q-oe-ne,re=N[F]+ee-oe;if(g){var se=(0,c.Z)(k?(0,p.VV)(D,ie):D,G,k?(0,p.Fp)(B,re):B);N[F]=se,A[F]=se-G}if(w){var ce="x"===F?o.we:o.t$,ae="x"===F?o.I:o.F2,ue=N[L],le=ue+Z[ce],de=ue-Z[ae],fe=(0,c.Z)(k?(0,p.VV)(le,ie):le,ue,k?(0,p.Fp)(de,re):de);N[L]=fe,A[L]=fe-ue}}t.modifiersData[m]=A}},requiresIfExists:["offset"]}},7295:function(e,t,n){"use strict";n.d(t,{fi:function(){return m}});var o=n(7566),i=n(3191),r=n(5435),s=n(917),c=n(1414),a=n(3108),u=n(5207),l=n(6998),d=n(335),f=n(2883),p=[i.Z,r.Z,s.Z,c.Z,a.Z,u.Z,l.Z,d.Z,f.Z],m=(0,o.kZ)({defaultModifiers:p})},7826:function(e,t,n){"use strict";n.d(t,{Z:function(){return c}});var o=n(4531),i=n(6166),r=n(9356),s=n(7677);function c(e,t){void 0===t&&(t={});var n=t,c=n.placement,a=n.boundary,u=n.rootBoundary,l=n.padding,d=n.flipVariations,f=n.allowedAutoPlacements,p=void 0===f?i.Ct:f,m=(0,o.Z)(c),h=m?d?i.bw:i.bw.filter((function(e){return(0,o.Z)(e)===m})):i.mv,g=h.filter((function(e){return p.indexOf(e)>=0}));0===g.length&&(g=h);var v=g.reduce((function(t,n){return t[n]=(0,r.Z)(e,{placement:n,boundary:a,rootBoundary:u,padding:l})[(0,s.Z)(n)],t}),{});return Object.keys(v).sort((function(e,t){return v[e]-v[t]}))}},6919:function(e,t,n){"use strict";n.d(t,{Z:function(){return c}});var o=n(7677),i=n(4531),r=n(1505),s=n(6166);function c(e){var t,n=e.reference,c=e.element,a=e.placement,u=a?(0,o.Z)(a):null,l=a?(0,i.Z)(a):null,d=n.x+n.width/2-c.width/2,f=n.y+n.height/2-c.height/2;switch(u){case s.we:t={x:d,y:n.y-c.height};break;case s.I:t={x:d,y:n.y+n.height};break;case s.F2:t={x:n.x+n.width,y:f};break;case s.t$:t={x:n.x-c.width,y:f};break;default:t={x:n.x,y:n.y}}var p=u?(0,r.Z)(u):null;if(null!=p){var m="y"===p?"height":"width";switch(l){case s.BL:t[p]=t[p]-(n[m]/2-c[m]/2);break;case s.ut:t[p]=t[p]+(n[m]/2-c[m]/2)}}return t}},4806:function(e,t,n){"use strict";function o(e){var t;return function(){return t||(t=new Promise((function(n){Promise.resolve().then((function(){t=void 0,n(e())}))}))),t}}n.d(t,{Z:function(){return o}})},9356:function(e,t,n){"use strict";n.d(t,{Z:function(){return f}});var o=n(889),i=n(2021),r=n(2881),s=n(6919),c=n(7365),a=n(6166),u=n(8555),l=n(6713),d=n(315);function f(e,t){void 0===t&&(t={});var n=t,f=n.placement,p=void 0===f?e.placement:f,m=n.boundary,h=void 0===m?a.zV:m,g=n.rootBoundary,v=void 0===g?a.Pj:g,w=n.elementContext,y=void 0===w?a.k5:w,b=n.altBoundary,_=void 0!==b&&b,E=n.padding,x=void 0===E?0:E,k=(0,l.Z)("number"!=typeof x?x:(0,d.Z)(x,a.mv)),C=y===a.k5?a.YP:a.k5,S=e.rects.popper,Z=e.elements[_?C:y],O=(0,o.Z)((0,u.kK)(Z)?Z:Z.contextElement||(0,i.Z)(e.elements.popper),h,v),M=(0,r.Z)(e.elements.reference),P=(0,s.Z)({reference:M,element:S,strategy:"absolute",placement:p}),F=(0,c.Z)(Object.assign({},S,P)),L=y===a.k5?F:M,N={top:O.top-L.top+k.top,bottom:L.bottom-O.bottom+k.bottom,left:O.left-L.left+k.left,right:L.right-O.right+k.right},j=e.modifiersData.offset;if(y===a.k5&&j){var R=j[p];Object.keys(N).forEach((function(e){var t=[a.F2,a.I].indexOf(e)>=0?1:-1,n=[a.we,a.I].indexOf(e)>=0?"y":"x";N[e]+=R[n]*t}))}return N}},315:function(e,t,n){"use strict";function o(e,t){return t.reduce((function(t,n){return t[n]=e,t}),{})}n.d(t,{Z:function(){return o}})},5754:function(e,t,n){"use strict";function o(e){return"x"===e?"y":"x"}n.d(t,{Z:function(){return o}})},7677:function(e,t,n){"use strict";function o(e){return e.split("-")[0]}n.d(t,{Z:function(){return o}})},3046:function(e,t,n){"use strict";function o(){return{top:0,right:0,bottom:0,left:0}}n.d(t,{Z:function(){return o}})},1505:function(e,t,n){"use strict";function o(e){return["top","bottom"].indexOf(e)>=0?"x":"y"}n.d(t,{Z:function(){return o}})},942:function(e,t,n){"use strict";n.d(t,{Z:function(){return i}});var o={left:"right",right:"left",bottom:"top",top:"bottom"};function i(e){return e.replace(/left|right|bottom|top/g,(function(e){return o[e]}))}},12:function(e,t,n){"use strict";n.d(t,{Z:function(){return i}});var o={start:"end",end:"start"};function i(e){return e.replace(/start|end/g,(function(e){return o[e]}))}},4531:function(e,t,n){"use strict";function o(e){return e.split("-")[1]}n.d(t,{Z:function(){return o}})},8072:function(e,t,n){"use strict";n.d(t,{Fp:function(){return o},VV:function(){return i},NM:function(){return r}});var o=Math.max,i=Math.min,r=Math.round},3352:function(e,t,n){"use strict";function o(e){var t=e.reduce((function(e,t){var n=e[t.name];return e[t.name]=n?Object.assign({},n,t,{options:Object.assign({},n.options,t.options),data:Object.assign({},n.data,t.data)}):t,e}),{});return Object.keys(t).map((function(e){return t[e]}))}n.d(t,{Z:function(){return o}})},6713:function(e,t,n){"use strict";n.d(t,{Z:function(){return i}});var o=n(3046);function i(e){return Object.assign({},(0,o.Z)(),e)}},421:function(e,t,n){"use strict";n.d(t,{Z:function(){return r}});var o=n(6166);function i(e){var t=new Map,n=new Set,o=[];function i(e){n.add(e.name),[].concat(e.requires||[],e.requiresIfExists||[]).forEach((function(e){if(!n.has(e)){var o=t.get(e);o&&i(o)}})),o.push(e)}return e.forEach((function(e){t.set(e.name,e)})),e.forEach((function(e){n.has(e.name)||i(e)})),o}function r(e){var t=i(e);return o.xs.reduce((function(e,n){return e.concat(t.filter((function(e){return e.phase===n})))}),[])}},7365:function(e,t,n){"use strict";function o(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}n.d(t,{Z:function(){return o}})},964:function(e,t,n){"use strict";n.d(t,{Z:function(){return i}});var o=n(8072);function i(e,t,n){return(0,o.Fp)(e,(0,o.VV)(t,n))}},5869:function(e,t,n){"use strict";var o=n(9307);t.Z=function(e){let{icon:t,size:n=24,...i}=e;return(0,o.cloneElement)(t,{width:n,height:n,...i})}},8565:function(e,t,n){"use strict";var o=n(9307),i=n(444);const r=(0,o.createElement)(i.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)(i.Path,{d:"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z"}));t.Z=r},2779:function(e,t){var n;
|
2 |
/*!
|
3 |
Copyright (c) 2018 Jed Watson.
|
4 |
Licensed under the MIT License (MIT), see
|
5 |
http://jedwatson.github.io/classnames
|
6 |
-
*/!function(){"use strict";var o={}.hasOwnProperty;function i(){for(var e=[],t=0;t<arguments.length;t++){var n=arguments[t];if(n){var r=typeof n;if("string"===r||"number"===r)e.push(n);else if(Array.isArray(n)){if(n.length){var s=i.apply(null,n);s&&e.push(s)}}else if("object"===r)if(n.toString===Object.prototype.toString)for(var c in n)o.call(n,c)&&n[c]&&e.push(c);else e.push(n.toString())}}return e.join(" ")}e.exports?(i.default=i,e.exports=i):void 0===(n=function(){return i}.apply(t,[]))||(e.exports=n)}()},3421:function(e,t){"use strict";var n=decodeURIComponent,o=encodeURIComponent,i=/; */,r=/^[\u0009\u0020-\u007e\u0080-\u00ff]+$/;function s(e,t){try{return t(e)}catch(n){return e}}},2699:function(e){"use strict";var t,n="object"==typeof Reflect?Reflect:null,o=n&&"function"==typeof n.apply?n.apply:function(e,t,n){return Function.prototype.apply.call(e,t,n)};t=n&&"function"==typeof n.ownKeys?n.ownKeys:Object.getOwnPropertySymbols?function(e){return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols(e))}:function(e){return Object.getOwnPropertyNames(e)};var i=Number.isNaN||function(e){return e!=e};function r(){r.init.call(this)}e.exports=r,e.exports.once=function(e,t){return new Promise((function(n,o){function i(){void 0!==r&&e.removeListener("error",r),n([].slice.call(arguments))}var r;"error"!==t&&(r=function(n){e.removeListener(t,i),o(n)},e.once("error",r)),e.once(t,i)}))},r.EventEmitter=r,r.prototype._events=void 0,r.prototype._eventsCount=0,r.prototype._maxListeners=void 0;var s=10;function c(e){if("function"!=typeof e)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof e)}function a(e){return void 0===e._maxListeners?r.defaultMaxListeners:e._maxListeners}function u(e,t,n,o){var i,r,s,u;if(c(n),void 0===(r=e._events)?(r=e._events=Object.create(null),e._eventsCount=0):(void 0!==r.newListener&&(e.emit("newListener",t,n.listener?n.listener:n),r=e._events),s=r[t]),void 0===s)s=r[t]=n,++e._eventsCount;else if("function"==typeof s?s=r[t]=o?[n,s]:[s,n]:o?s.unshift(n):s.push(n),(i=a(e))>0&&s.length>i&&!s.warned){s.warned=!0;var l=new Error("Possible EventEmitter memory leak detected. "+s.length+" "+String(t)+" listeners added. Use emitter.setMaxListeners() to increase limit");l.name="MaxListenersExceededWarning",l.emitter=e,l.type=t,l.count=s.length,u=l,console&&console.warn&&console.warn(u)}return e}function l(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function d(e,t,n){var o={fired:!1,wrapFn:void 0,target:e,type:t,listener:n},i=l.bind(o);return i.listener=n,o.wrapFn=i,i}function f(e,t,n){var o=e._events;if(void 0===o)return[];var i=o[t];return void 0===i?[]:"function"==typeof i?n?[i.listener||i]:[i]:n?function(e){for(var t=new Array(e.length),n=0;n<t.length;++n)t[n]=e[n].listener||e[n];return t}(i):m(i,i.length)}function p(e){var t=this._events;if(void 0!==t){var n=t[e];if("function"==typeof n)return 1;if(void 0!==n)return n.length}return 0}function m(e,t){for(var n=new Array(t),o=0;o<t;++o)n[o]=e[o];return n}Object.defineProperty(r,"defaultMaxListeners",{enumerable:!0,get:function(){return s},set:function(e){if("number"!=typeof e||e<0||i(e))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+e+".");s=e}}),r.init=function(){void 0!==this._events&&this._events!==Object.getPrototypeOf(this)._events||(this._events=Object.create(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0},r.prototype.setMaxListeners=function(e){if("number"!=typeof e||e<0||i(e))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+e+".");return this._maxListeners=e,this},r.prototype.getMaxListeners=function(){return a(this)},r.prototype.emit=function(e){for(var t=[],n=1;n<arguments.length;n++)t.push(arguments[n]);var i="error"===e,r=this._events;if(void 0!==r)i=i&&void 0===r.error;else if(!i)return!1;if(i){var s;if(t.length>0&&(s=t[0]),s instanceof Error)throw s;var c=new Error("Unhandled error."+(s?" ("+s.message+")":""));throw c.context=s,c}var a=r[e];if(void 0===a)return!1;if("function"==typeof a)o(a,this,t);else{var u=a.length,l=m(a,u);for(n=0;n<u;++n)o(l[n],this,t)}return!0},r.prototype.addListener=function(e,t){return u(this,e,t,!1)},r.prototype.on=r.prototype.addListener,r.prototype.prependListener=function(e,t){return u(this,e,t,!0)},r.prototype.once=function(e,t){return c(t),this.on(e,d(this,e,t)),this},r.prototype.prependOnceListener=function(e,t){return c(t),this.prependListener(e,d(this,e,t)),this},r.prototype.removeListener=function(e,t){var n,o,i,r,s;if(c(t),void 0===(o=this._events))return this;if(void 0===(n=o[e]))return this;if(n===t||n.listener===t)0==--this._eventsCount?this._events=Object.create(null):(delete o[e],o.removeListener&&this.emit("removeListener",e,n.listener||t));else if("function"!=typeof n){for(i=-1,r=n.length-1;r>=0;r--)if(n[r]===t||n[r].listener===t){s=n[r].listener,i=r;break}if(i<0)return this;0===i?n.shift():function(e,t){for(;t+1<e.length;t++)e[t]=e[t+1];e.pop()}(n,i),1===n.length&&(o[e]=n[0]),void 0!==o.removeListener&&this.emit("removeListener",e,s||t)}return this},r.prototype.off=r.prototype.removeListener,r.prototype.removeAllListeners=function(e){var t,n,o;if(void 0===(n=this._events))return this;if(void 0===n.removeListener)return 0===arguments.length?(this._events=Object.create(null),this._eventsCount=0):void 0!==n[e]&&(0==--this._eventsCount?this._events=Object.create(null):delete n[e]),this;if(0===arguments.length){var i,r=Object.keys(n);for(o=0;o<r.length;++o)"removeListener"!==(i=r[o])&&this.removeAllListeners(i);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if("function"==typeof(t=n[e]))this.removeListener(e,t);else if(void 0!==t)for(o=t.length-1;o>=0;o--)this.removeListener(e,t[o]);return this},r.prototype.listeners=function(e){return f(this,e,!0)},r.prototype.rawListeners=function(e){return f(this,e,!1)},r.listenerCount=function(e,t){return"function"==typeof e.listenerCount?e.listenerCount(t):p.call(e,t)},r.prototype.listenerCount=p,r.prototype.eventNames=function(){return this._eventsCount>0?t(this._events):[]}},4495:function(e,t,n){"use strict";var o=n(212),i=n(9561);function r(){this.pending=null,this.pendingTotal=0,this.blockSize=this.constructor.blockSize,this.outSize=this.constructor.outSize,this.hmacStrength=this.constructor.hmacStrength,this.padLength=this.constructor.padLength/8,this.endian="big",this._delta8=this.blockSize/8,this._delta32=this.blockSize/32}t.BlockHash=r,r.prototype.update=function(e,t){if(e=o.toArray(e,t),this.pending?this.pending=this.pending.concat(e):this.pending=e,this.pendingTotal+=e.length,this.pending.length>=this._delta8){var n=(e=this.pending).length%this._delta8;this.pending=e.slice(e.length-n,e.length),0===this.pending.length&&(this.pending=null),e=o.join32(e,0,e.length-n,this.endian);for(var i=0;i<e.length;i+=this._delta32)this._update(e,i,i+this._delta32)}return this},r.prototype.digest=function(e){return this.update(this._pad()),i(null===this.pending),this._digest(e)},r.prototype._pad=function(){var e=this.pendingTotal,t=this._delta8,n=t-(e+this.padLength)%t,o=new Array(n+this.padLength);o[0]=128;for(var i=1;i<n;i++)o[i]=0;if(e<<=3,"big"===this.endian){for(var r=8;r<this.padLength;r++)o[i++]=0;o[i++]=0,o[i++]=0,o[i++]=0,o[i++]=0,o[i++]=e>>>24&255,o[i++]=e>>>16&255,o[i++]=e>>>8&255,o[i++]=255&e}else for(o[i++]=255&e,o[i++]=e>>>8&255,o[i++]=e>>>16&255,o[i++]=e>>>24&255,o[i++]=0,o[i++]=0,o[i++]=0,o[i++]=0,r=8;r<this.padLength;r++)o[i++]=0;return o}},8032:function(e,t,n){"use strict";var o=n(212),i=n(4495),r=n(713),s=n(9561),c=o.sum32,a=o.sum32_4,u=o.sum32_5,l=r.ch32,d=r.maj32,f=r.s0_256,p=r.s1_256,m=r.g0_256,h=r.g1_256,g=i.BlockHash,v=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298];function w(){if(!(this instanceof w))return new w;g.call(this),this.h=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],this.k=v,this.W=new Array(64)}o.inherits(w,g),e.exports=w,w.blockSize=512,w.outSize=256,w.hmacStrength=192,w.padLength=64,w.prototype._update=function(e,t){for(var n=this.W,o=0;o<16;o++)n[o]=e[t+o];for(;o<n.length;o++)n[o]=a(h(n[o-2]),n[o-7],m(n[o-15]),n[o-16]);var i=this.h[0],r=this.h[1],g=this.h[2],v=this.h[3],w=this.h[4],y=this.h[5],b=this.h[6],_=this.h[7];for(s(this.k.length===n.length),o=0;o<n.length;o++){var E=u(_,p(w),l(w,y,b),this.k[o],n[o]),x=c(f(i),d(i,r,g));_=b,b=y,y=w,w=c(v,E),v=g,g=r,r=i,i=c(E,x)}this.h[0]=c(this.h[0],i),this.h[1]=c(this.h[1],r),this.h[2]=c(this.h[2],g),this.h[3]=c(this.h[3],v),this.h[4]=c(this.h[4],w),this.h[5]=c(this.h[5],y),this.h[6]=c(this.h[6],b),this.h[7]=c(this.h[7],_)},w.prototype._digest=function(e){return"hex"===e?o.toHex32(this.h,"big"):o.split32(this.h,"big")}},713:function(e,t,n){"use strict";var o=n(212).rotr32;function i(e,t,n){return e&t^~e&n}function r(e,t,n){return e&t^e&n^t&n}function s(e,t,n){return e^t^n}t.ft_1=function(e,t,n,o){return 0===e?i(t,n,o):1===e||3===e?s(t,n,o):2===e?r(t,n,o):void 0},t.ch32=i,t.maj32=r,t.p32=s,t.s0_256=function(e){return o(e,2)^o(e,13)^o(e,22)},t.s1_256=function(e){return o(e,6)^o(e,11)^o(e,25)},t.g0_256=function(e){return o(e,7)^o(e,18)^e>>>3},t.g1_256=function(e){return o(e,17)^o(e,19)^e>>>10}},212:function(e,t,n){"use strict";var o=n(9561),i=n(1285);function r(e,t){return 55296==(64512&e.charCodeAt(t))&&(!(t<0||t+1>=e.length)&&56320==(64512&e.charCodeAt(t+1)))}function s(e){return(e>>>24|e>>>8&65280|e<<8&16711680|(255&e)<<24)>>>0}function c(e){return 1===e.length?"0"+e:e}function a(e){return 7===e.length?"0"+e:6===e.length?"00"+e:5===e.length?"000"+e:4===e.length?"0000"+e:3===e.length?"00000"+e:2===e.length?"000000"+e:1===e.length?"0000000"+e:e}t.inherits=i,t.toArray=function(e,t){if(Array.isArray(e))return e.slice();if(!e)return[];var n=[];if("string"==typeof e)if(t){if("hex"===t)for((e=e.replace(/[^a-z0-9]+/gi,"")).length%2!=0&&(e="0"+e),i=0;i<e.length;i+=2)n.push(parseInt(e[i]+e[i+1],16))}else for(var o=0,i=0;i<e.length;i++){var s=e.charCodeAt(i);s<128?n[o++]=s:s<2048?(n[o++]=s>>6|192,n[o++]=63&s|128):r(e,i)?(s=65536+((1023&s)<<10)+(1023&e.charCodeAt(++i)),n[o++]=s>>18|240,n[o++]=s>>12&63|128,n[o++]=s>>6&63|128,n[o++]=63&s|128):(n[o++]=s>>12|224,n[o++]=s>>6&63|128,n[o++]=63&s|128)}else for(i=0;i<e.length;i++)n[i]=0|e[i];return n},t.toHex=function(e){for(var t="",n=0;n<e.length;n++)t+=c(e[n].toString(16));return t},t.htonl=s,t.toHex32=function(e,t){for(var n="",o=0;o<e.length;o++){var i=e[o];"little"===t&&(i=s(i)),n+=a(i.toString(16))}return n},t.zero2=c,t.zero8=a,t.join32=function(e,t,n,i){var r=n-t;o(r%4==0);for(var s=new Array(r/4),c=0,a=t;c<s.length;c++,a+=4){var u;u="big"===i?e[a]<<24|e[a+1]<<16|e[a+2]<<8|e[a+3]:e[a+3]<<24|e[a+2]<<16|e[a+1]<<8|e[a],s[c]=u>>>0}return s},t.split32=function(e,t){for(var n=new Array(4*e.length),o=0,i=0;o<e.length;o++,i+=4){var r=e[o];"big"===t?(n[i]=r>>>24,n[i+1]=r>>>16&255,n[i+2]=r>>>8&255,n[i+3]=255&r):(n[i+3]=r>>>24,n[i+2]=r>>>16&255,n[i+1]=r>>>8&255,n[i]=255&r)}return n},t.rotr32=function(e,t){return e>>>t|e<<32-t},t.rotl32=function(e,t){return e<<t|e>>>32-t},t.sum32=function(e,t){return e+t>>>0},t.sum32_3=function(e,t,n){return e+t+n>>>0},t.sum32_4=function(e,t,n,o){return e+t+n+o>>>0},t.sum32_5=function(e,t,n,o,i){return e+t+n+o+i>>>0},t.sum64=function(e,t,n,o){var i=e[t],r=o+e[t+1]>>>0,s=(r<o?1:0)+n+i;e[t]=s>>>0,e[t+1]=r},t.sum64_hi=function(e,t,n,o){return(t+o>>>0<t?1:0)+e+n>>>0},t.sum64_lo=function(e,t,n,o){return t+o>>>0},t.sum64_4_hi=function(e,t,n,o,i,r,s,c){var a=0,u=t;return a+=(u=u+o>>>0)<t?1:0,a+=(u=u+r>>>0)<r?1:0,e+n+i+s+(a+=(u=u+c>>>0)<c?1:0)>>>0},t.sum64_4_lo=function(e,t,n,o,i,r,s,c){return t+o+r+c>>>0},t.sum64_5_hi=function(e,t,n,o,i,r,s,c,a,u){var l=0,d=t;return l+=(d=d+o>>>0)<t?1:0,l+=(d=d+r>>>0)<r?1:0,l+=(d=d+c>>>0)<c?1:0,e+n+i+s+a+(l+=(d=d+u>>>0)<u?1:0)>>>0},t.sum64_5_lo=function(e,t,n,o,i,r,s,c,a,u){return t+o+r+c+u>>>0},t.rotr64_hi=function(e,t,n){return(t<<32-n|e>>>n)>>>0},t.rotr64_lo=function(e,t,n){return(e<<32-n|t>>>n)>>>0},t.shr64_hi=function(e,t,n){return e>>>n},t.shr64_lo=function(e,t,n){return(e<<32-n|t>>>n)>>>0}},1285:function(e){"function"==typeof Object.create?e.exports=function(e,t){t&&(e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}))}:e.exports=function(e,t){if(t){e.super_=t;var n=function(){};n.prototype=t.prototype,e.prototype=new n,e.prototype.constructor=e}}},3186:function(){},8005:function(){},5773:function(){},7777:function(){},7710:function(){},2014:function(){},6372:function(){},9561:function(e){function t(e,t){if(!e)throw new Error(t||"Assertion failed")}e.exports=t,t.equal=function(e,t,n){if(e!=t)throw new Error(n||"Assertion failed: "+e+" != "+t)}},1378:function(e){var t=1e3,n=60*t,o=60*n,i=24*o,r=7*i,s=365.25*i;function c(e,t,n,o){var i=t>=1.5*n;return Math.round(e/n)+" "+o+(i?"s":"")}e.exports=function(e,a){a=a||{};var u=typeof e;if("string"===u&&e.length>0)return function(e){if((e=String(e)).length>100)return;var c=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(e);if(!c)return;var a=parseFloat(c[1]);switch((c[2]||"ms").toLowerCase()){case"years":case"year":case"yrs":case"yr":case"y":return a*s;case"weeks":case"week":case"w":return a*r;case"days":case"day":case"d":return a*i;case"hours":case"hour":case"hrs":case"hr":case"h":return a*o;case"minutes":case"minute":case"mins":case"min":case"m":return a*n;case"seconds":case"second":case"secs":case"sec":case"s":return a*t;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return a;default:return}}(e);if("number"===u&&isFinite(e))return a.long?function(e){var r=Math.abs(e);if(r>=i)return c(e,r,i,"day");if(r>=o)return c(e,r,o,"hour");if(r>=n)return c(e,r,n,"minute");if(r>=t)return c(e,r,t,"second");return e+" ms"}(e):function(e){var r=Math.abs(e);if(r>=i)return Math.round(e/i)+"d";if(r>=o)return Math.round(e/o)+"h";if(r>=n)return Math.round(e/n)+"m";if(r>=t)return Math.round(e/t)+"s";return e+"ms"}(e);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(e))}},8435:function(e){var t="undefined"!=typeof Element,n="function"==typeof Map,o="function"==typeof Set,i="function"==typeof ArrayBuffer&&!!ArrayBuffer.isView;function r(e,s){if(e===s)return!0;if(e&&s&&"object"==typeof e&&"object"==typeof s){if(e.constructor!==s.constructor)return!1;var c,a,u,l;if(Array.isArray(e)){if((c=e.length)!=s.length)return!1;for(a=c;0!=a--;)if(!r(e[a],s[a]))return!1;return!0}if(n&&e instanceof Map&&s instanceof Map){if(e.size!==s.size)return!1;for(l=e.entries();!(a=l.next()).done;)if(!s.has(a.value[0]))return!1;for(l=e.entries();!(a=l.next()).done;)if(!r(a.value[1],s.get(a.value[0])))return!1;return!0}if(o&&e instanceof Set&&s instanceof Set){if(e.size!==s.size)return!1;for(l=e.entries();!(a=l.next()).done;)if(!s.has(a.value[0]))return!1;return!0}if(i&&ArrayBuffer.isView(e)&&ArrayBuffer.isView(s)){if((c=e.length)!=s.length)return!1;for(a=c;0!=a--;)if(e[a]!==s[a])return!1;return!0}if(e.constructor===RegExp)return e.source===s.source&&e.flags===s.flags;if(e.valueOf!==Object.prototype.valueOf)return e.valueOf()===s.valueOf();if(e.toString!==Object.prototype.toString)return e.toString()===s.toString();if((c=(u=Object.keys(e)).length)!==Object.keys(s).length)return!1;for(a=c;0!=a--;)if(!Object.prototype.hasOwnProperty.call(s,u[a]))return!1;if(t&&e instanceof Element)return!1;for(a=c;0!=a--;)if(("_owner"!==u[a]&&"__v"!==u[a]&&"__o"!==u[a]||!e.$$typeof)&&!r(e[u[a]],s[u[a]]))return!1;return!0}return e!=e&&s!=s}e.exports=function(e,t){try{return r(e,t)}catch(n){if((n.message||"").match(/stack|recursion/i))return console.warn("react-fast-compare cannot handle circular refs"),!1;throw n}}},6194:function(e,t,n){"use strict";n.d(t,{D:function(){return u}});var o=n(9196),i=n(7295),r=n(8435),s=n.n(r),c=n(855),a=[],u=function(e,t,n){void 0===n&&(n={});var r=o.useRef(null),u={onFirstUpdate:n.onFirstUpdate,placement:n.placement||"bottom",strategy:n.strategy||"absolute",modifiers:n.modifiers||a},l=o.useState({styles:{popper:{position:u.strategy,left:"0",top:"0"},arrow:{position:"absolute"}},attributes:{}}),d=l[0],f=l[1],p=o.useMemo((function(){return{name:"updateState",enabled:!0,phase:"write",fn:function(e){var t=e.state,n=Object.keys(t.elements);f({styles:(0,c.sq)(n.map((function(e){return[e,t.styles[e]||{}]}))),attributes:(0,c.sq)(n.map((function(e){return[e,t.attributes[e]]})))})},requires:["computeStyles"]}}),[]),m=o.useMemo((function(){var e={onFirstUpdate:u.onFirstUpdate,placement:u.placement,strategy:u.strategy,modifiers:[].concat(u.modifiers,[p,{name:"applyStyles",enabled:!1}])};return s()(r.current,e)?r.current||e:(r.current=e,e)}),[u.onFirstUpdate,u.placement,u.strategy,u.modifiers,p]),h=o.useRef();return(0,c.LI)((function(){h.current&&h.current.setOptions(m)}),[m]),(0,c.LI)((function(){if(null!=e&&null!=t){var o=(n.createPopper||i.fi)(e,t,m);return h.current=o,function(){o.destroy(),h.current=null}}}),[e,t,n.createPopper]),{state:h.current?h.current.state:null,styles:d.styles,attributes:d.attributes,update:h.current?h.current.update:null,forceUpdate:h.current?h.current.forceUpdate:null}}},855:function(e,t,n){"use strict";n.d(t,{sq:function(){return i},LI:function(){return r}});var o=n(9196),i=function(e){return e.reduce((function(e,t){var n=t[0],o=t[1];return e[n]=o,e}),{})},r="undefined"!=typeof window&&window.document&&window.document.createElement?o.useLayoutEffect:o.useEffect},7869:function(e,t,n){"use strict";var o=n(9307),i=(n(3945),n(849)),r=n(4655),s=n(5609),c=n(9818),a=n(8817),u=n(6483),l=n(3867),d=n(9935),f=n(1970),p=n(374),m=n(2753);function h(){var e;const[t]=(0,o.useState)((0,u.getQueryArg)(window.location.href,"showDraftPostModal")),{show:n,isLoaded:a,variant:d,isManuallyOpened:h,isNewPageLayoutModalOpen:g}=(0,c.useSelect)((e=>{const t=e("automattic/wpcom-welcome-guide"),n=e("automattic/starter-page-layouts");return{show:t.isWelcomeGuideShown(),isLoaded:t.isWelcomeGuideStatusLoaded(),variant:t.getWelcomeGuideVariant(),isManuallyOpened:t.isWelcomeGuideManuallyOpened(),isNewPageLayoutModalOpen:null==n?void 0:n.isOpen()}}),[]),v=null===(e=(0,c.useDispatch)("automattic/starter-page-layouts"))||void 0===e?void 0:e.setOpenState,{fetchWelcomeGuideStatus:w}=(0,c.useDispatch)("automattic/wpcom-welcome-guide");return(0,o.useEffect)((()=>{a||w()}),[w,a]),!n||g?null:d===f.yn&&!h&&v?(v("OPEN_FOR_BLANK_CANVAS"),null):d===f.Sz?(0,o.createElement)(i.Iw,{localeSlug:window.wpcomBlockEditorNuxLocale??r.OP},t?(0,o.createElement)(l.Z,null):(0,o.createElement)(m.Z,null)):"modal"===d&&s.Guide&&s.GuidePage?(0,o.createElement)(p.Z,null):null}(0,a.registerPlugin)("wpcom-block-editor-nux",{render:()=>(0,o.createElement)(o.Fragment,null,(0,o.createElement)(h,null),(0,o.createElement)(d.Z,null))})},1568:function(e,t,n){"use strict";var o=n(9818);n(462);const i=(0,o.subscribe)((()=>{var e,t;(0,o.dispatch)("core/nux").disableTips(),null!==(e=(0,o.select)("core/edit-post"))&&void 0!==e&&e.isFeatureActive("welcomeGuide")&&(0,o.dispatch)("core/edit-post").toggleFeature("welcomeGuide"),null!==(t=(0,o.select)("core/edit-site"))&&void 0!==t&&t.isFeatureActive("welcomeGuide")&&(0,o.dispatch)("core/edit-site").toggleFeature("welcomeGuide"),i()}));(0,o.subscribe)((()=>{var e,t;(0,o.select)("core/nux").areTipsEnabled()&&((0,o.dispatch)("core/nux").disableTips(),(0,o.dispatch)("automattic/wpcom-welcome-guide").setShowWelcomeGuide(!0)),null!==(e=(0,o.select)("core/edit-post"))&&void 0!==e&&e.isFeatureActive("welcomeGuide")&&((0,o.dispatch)("core/edit-post").toggleFeature("welcomeGuide"),(0,o.dispatch)("automattic/wpcom-welcome-guide").setShowWelcomeGuide(!0,{openedManually:!0})),null!==(t=(0,o.select)("core/edit-site"))&&void 0!==t&&t.isFeatureActive("welcomeGuide")&&((0,o.dispatch)("core/edit-site").toggleFeature("welcomeGuide"),(0,o.dispatch)("automattic/wpcom-welcome-guide").setShowWelcomeGuide(!0,{openedManually:!0}))}))},3867:function(e,t,n){"use strict";var o=n(9307),i=n(6115),r=n(5609),s=n(9818),c=n(2694),a=n(5736),u=n(3634),l=n(3790);n(3186);const __=a.__,d="a8c.wpcom-block-editor.closeEditor";t.Z=()=>{const e=window._currentSiteId,t=(0,s.useSelect)((t=>t("automattic/site").getPrimarySiteDomain(e))),n=`/home/${(null==t?void 0:t.domain)||window.location.hostname}`,[a,f]=(0,o.useState)(!0),p=()=>f(!1);return(0,o.createElement)(u.Z,{isOpen:a,className:"wpcom-block-editor-draft-post-modal",title:__("Write your first post","full-site-editing"),description:__("It’s time to flex those writing muscles and start drafting your first post!","full-site-editing"),imageSrc:l,actionButtons:(0,o.createElement)(o.Fragment,null,(0,o.createElement)(r.Button,{isPrimary:!0,onClick:p},__("Start writing","full-site-editing")),(0,o.createElement)(r.Button,{isSecondary:!0,onClick:()=>{(0,c.hasAction)(d)?(0,c.doAction)(d,n):window.location.href=`https://wordpress.com${n}`}},__("I'm not ready","full-site-editing"))),onRequestClose:p,onOpen:()=>(0,i.jN)("calypso_editor_wpcom_draft_post_modal_show")})}},3634:function(e,t,n){"use strict";var o=n(9307),i=n(5609),r=n(2779),s=n.n(r);n(9196),n(8005);t.Z=e=>{let{isOpen:t,className:n,title:r,description:c,imageSrc:a,actionButtons:u,onRequestClose:l,onOpen:d}=e;const f=(0,o.useRef)(null);return(0,o.useEffect)((()=>{!f.current&&t&&(null==d||d()),f.current=t}),[f,t,d]),t?(0,o.createElement)(i.Modal,{className:s()("wpcom-block-editor-nux-modal",n),open:t,title:"",onRequestClose:l},(0,o.createElement)("div",{className:"wpcom-block-editor-nux-modal__image-container"},(0,o.createElement)("img",{src:a,alt:r})),(0,o.createElement)("h1",{className:"wpcom-block-editor-nux-modal__title"},r),(0,o.createElement)("p",{className:"wpcom-block-editor-nux-modal__description"},c),(0,o.createElement)("div",{className:"wpcom-block-editor-nux-modal__buttons"},u)):null}},9935:function(e,t,n){"use strict";var o=n(9307),i=n(6115),r=n(5609),s=n(9818),c=n(5736),a=n(3634),u=n(5275);n(5773);const __=c.__;t.Z=()=>{const{link:e}=(0,s.useSelect)((e=>e("core/editor").getCurrentPost())),t=(0,s.useSelect)((e=>e("core/editor").getCurrentPostType())),n=(0,s.useSelect)((e=>e("core/editor").isCurrentPostPublished())),c=(0,o.useRef)(n),l=(0,s.useSelect)((e=>e("automattic/wpcom-welcome-guide").getShouldShowFirstPostPublishedModal())),[d,f]=(0,o.useState)(!1),{fetchShouldShowFirstPostPublishedModal:p,setShouldShowFirstPostPublishedModal:m}=(0,s.useDispatch)("automattic/wpcom-welcome-guide");return(0,o.useEffect)((()=>{p()}),[p]),(0,o.useEffect)((()=>{l&&!c.current&&n&&"post"===t&&(c.current=n,m(!1),window.setTimeout((()=>{f(!0)})))}),[t,l,n,m]),(0,o.createElement)(a.Z,{isOpen:d,className:"wpcom-block-editor-post-published-modal",title:__("Your first post is published!","full-site-editing"),description:__("Congratulations! You did it. View your post to see how it will look on your site.","full-site-editing"),imageSrc:u,actionButtons:(0,o.createElement)(r.Button,{isPrimary:!0,href:e},__("View Post","full-site-editing")),onRequestClose:()=>f(!1),onOpen:()=>(0,i.jN)("calypso_editor_wpcom_first_post_published_modal_show")})}},3945:function(e,t,n){"object"==typeof window&&window.wpcomBlockEditorNuxAssetsUrl&&(n.p=window.wpcomBlockEditorNuxAssetsUrl)},1970:function(e,t,n){"use strict";n.d(t,{Sz:function(){return c},yn:function(){return a},z2:function(){return f}});var o=n(6989),i=n.n(o),r=n(9818),s=n(3418);n(3288);const c="tour",a="blank-canvas-tour",u=(0,r.combineReducers)({welcomeGuideManuallyOpened:function(){let e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"WPCOM_WELCOME_GUIDE_SHOW_SET":return void 0!==t.openedManually?t.openedManually:e;case"WPCOM_WELCOME_GUIDE_RESET_STORE":return!1;default:return e}},showWelcomeGuide:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:void 0,t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"WPCOM_WELCOME_GUIDE_FETCH_STATUS_SUCCESS":return t.response.show_welcome_guide;case"WPCOM_WELCOME_GUIDE_SHOW_SET":return t.show;case"WPCOM_WELCOME_GUIDE_RESET_STORE":return;default:return e}},tourRating:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:void 0,t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"WPCOM_WELCOME_GUIDE_TOUR_RATING_SET":return t.tourRating;case"WPCOM_WELCOME_GUIDE_RESET_STORE":return;default:return e}},welcomeGuideVariant:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:c,t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"WPCOM_WELCOME_GUIDE_FETCH_STATUS_SUCCESS":return t.response.variant;case"WPCOM_HAS_USED_PATTERNS_MODAL":return e===a?c:e;case"WPCOM_WELCOME_GUIDE_RESET_STORE":return c;default:return e}},shouldShowFirstPostPublishedModal:function(){let e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"WPCOM_SET_SHOULD_SHOW_FIRST_POST_PUBLISHED_MODAL":return t.value;case"WPCOM_WELCOME_GUIDE_RESET_STORE":return!1;default:return e}}}),l={*fetchWelcomeGuideStatus(){return{type:"WPCOM_WELCOME_GUIDE_FETCH_STATUS_SUCCESS",response:yield(0,s.apiFetch)({path:"/wpcom/v2/block-editor/nux"})}},*fetchShouldShowFirstPostPublishedModal(){return{type:"WPCOM_SET_SHOULD_SHOW_FIRST_POST_PUBLISHED_MODAL",value:(yield(0,s.apiFetch)({path:"/wpcom/v2/block-editor/should-show-first-post-published-modal"})).should_show_first_post_published_modal}},setShowWelcomeGuide:function(e){let{openedManually:t,onlyLocal:n}=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return n||i()({path:"/wpcom/v2/block-editor/nux",method:"POST",data:{show_welcome_guide:e}}),{type:"WPCOM_WELCOME_GUIDE_SHOW_SET",show:e,openedManually:t}},setTourRating:e=>({type:"WPCOM_WELCOME_GUIDE_TOUR_RATING_SET",tourRating:e}),setUsedPageOrPatternsModal:()=>({type:"WPCOM_HAS_USED_PATTERNS_MODAL"}),setShouldShowFirstPostPublishedModal:e=>({type:"WPCOM_SET_SHOULD_SHOW_FIRST_POST_PUBLISHED_MODAL",value:e}),resetStore:()=>({type:"WPCOM_WELCOME_GUIDE_RESET_STORE"})},d={isWelcomeGuideManuallyOpened:e=>e.welcomeGuideManuallyOpened,isWelcomeGuideShown:e=>!!e.showWelcomeGuide,isWelcomeGuideStatusLoaded:e=>void 0!==e.showWelcomeGuide,getTourRating:e=>e.tourRating,getWelcomeGuideVariant:e=>"modal"===e.welcomeGuideVariant?c:e.welcomeGuideVariant,getShouldShowFirstPostPublishedModal:e=>e.shouldShowFirstPostPublishedModal};function f(){return(0,r.registerStore)("automattic/wpcom-welcome-guide",{reducer:u,actions:l,selectors:d,controls:s.controls,persist:!0})}},374:function(e,t,n){"use strict";var o=n(7896),i=n(9307),r=n(6115),s=n(5609),c=n(9818),a=n(5736),u=n(9711),l=n(6595),d=n(5486),f=n(7821);n(7777);const __=a.__;function p(e){let{pageNumber:t,isLastPage:n,alignBottom:o=!1,heading:c,description:a,imgSrc:u}=e;return(0,i.useEffect)((()=>{var e;(0,r.jN)("calypso_editor_wpcom_nux_slide_view",{slide_number:t,is_last_slide:n,is_gutenboarding:null===(e=window.calypsoifyGutenberg)||void 0===e?void 0:e.isGutenboarding})}),[]),(0,i.createElement)(s.GuidePage,{className:"wpcom-block-editor-nux__page"},(0,i.createElement)("div",{className:"wpcom-block-editor-nux__text"},(0,i.createElement)("h1",{className:"wpcom-block-editor-nux__heading"},c),(0,i.createElement)("div",{className:"wpcom-block-editor-nux__description"},a)),(0,i.createElement)("div",{className:"wpcom-block-editor-nux__visual"},(0,i.createElement)("img",{key:u,src:u,alt:"","aria-hidden":"true",className:"wpcom-block-editor-nux__image"+(o?" align-bottom":"")})))}t.Z=function(){const{show:e,isNewPageLayoutModalOpen:t,isManuallyOpened:n}=(0,c.useSelect)((e=>({show:e("automattic/wpcom-welcome-guide").isWelcomeGuideShown(),isNewPageLayoutModalOpen:e("automattic/starter-page-layouts")&&e("automattic/starter-page-layouts").isOpen(),isManuallyOpened:e("automattic/wpcom-welcome-guide").isWelcomeGuideManuallyOpened()}))),{setShowWelcomeGuide:a}=(0,c.useDispatch)("automattic/wpcom-welcome-guide");if((0,i.useEffect)((()=>{var o;e&&!t&&(0,r.jN)("calypso_editor_wpcom_nux_open",{is_gutenboarding:null===(o=window.calypsoifyGutenberg)||void 0===o?void 0:o.isGutenboarding,is_manually_opened:n})}),[n,t,e]),!e||t)return null;const m=[{heading:__("Welcome to your website","full-site-editing"),description:__("Edit your homepage, add the pages you need, and change your site’s look and feel.","full-site-editing"),imgSrc:l,alignBottom:!0},{heading:__("Add or edit your content","full-site-editing"),description:__("Edit the placeholder content we’ve started you off with, or click the plus sign to add more content.","full-site-editing"),imgSrc:u},{heading:__("Preview your site as you go","full-site-editing"),description:__("As you edit your site content, click “Preview” to see your site the way your visitors will.","full-site-editing"),imgSrc:d,alignBottom:!0},{heading:__("Hidden until you’re ready","full-site-editing"),description:__("Your site will remain hidden until launched. Click “Launch” in the toolbar to share it with the world.","full-site-editing"),imgSrc:f,alignBottom:!0}];return(0,i.createElement)(s.Guide,{className:"wpcom-block-editor-nux",contentLabel:__("Welcome to your website","full-site-editing"),finishButtonText:__("Get started","full-site-editing"),onFinish:()=>{var e;(0,r.jN)("calypso_editor_wpcom_nux_dismiss",{is_gutenboarding:null===(e=window.calypsoifyGutenberg)||void 0===e?void 0:e.isGutenboarding}),a(!1,{openedManually:!1})}},m.map(((e,t)=>(0,i.createElement)(p,(0,o.Z)({key:e.heading,pageNumber:t+1,isLastPage:t===m.length-1},e)))))}},805:function(e,t,n){"use strict";n.d(t,{O:function(){return o.O}});var o=n(2028)},2028:function(e,t,n){"use strict";n.d(t,{O:function(){return i}});var o=n(6951);function i(e){const t=(0,o._z)();e.forEach((e=>{const n=e.meta.imgSrc;(new window.Image).src=t&&n.mobile?n.mobile.src:n.desktop.src}))}},8574:function(e,t,n){"use strict";var o=n(9307),i=n(444);const r=(0,o.createElement)(i.SVG,{width:"24",height:"24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)(i.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M14.086 5.412l3.476-.015c-.627.625-1.225 1.22-1.82 1.81l-.03.031c-.977.971-1.944 1.934-3.015 3.004l1.06 1.061c1.07-1.07 2.036-2.03 3.013-3.002l.03-.03 1.817-1.808-.03 3.448 1.5.013.046-5.28.007-.759-.76.003-5.301.024.007 1.5zM9.914 18.587l-3.476.016c.627-.625 1.225-1.22 1.82-1.81l.03-.031c.977-.971 1.944-1.934 3.015-3.004l-1.06-1.061c-1.07 1.069-2.036 2.03-3.012 3.001l-.001.001-.03.03-1.817 1.808.03-3.448-1.5-.013-.046 5.279-.007.76.76-.003 5.301-.024-.007-1.5z"}));t.Z=r},6139:function(e,t,n){"use strict";var o=n(9307),i=n(444);const r=(0,o.createElement)(i.SVG,{width:"24",height:"24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)(i.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.514 9.988l-3.476.016c.627-.626 1.225-1.22 1.82-1.811l.03-.03v-.001c.977-.971 1.944-1.933 3.015-3.004l-1.06-1.06c-1.07 1.069-2.037 2.03-3.013 3.001l-.03.03-1.818 1.809.03-3.449-1.5-.013-.045 5.28-.007.76.76-.004 5.301-.024-.007-1.5zM5.486 14.012l3.477-.016-1.82 1.811-.03.03c-.977.972-1.945 1.934-3.015 3.005l1.06 1.06c1.07-1.068 2.035-2.03 3.012-3V16.9l.03-.03 1.818-1.809-.03 3.449 1.5.013.046-5.28.006-.76-.76.004-5.3.024.006 1.5z",fill:"#fff"}));t.Z=r},4308:function(e,t,n){"use strict";var o=n(9307),i=n(444);const r=(0,o.createElement)(i.SVG,{width:"24",height:"24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)(i.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M13.131 19.12a.667.667 0 001.227-.417l-.436-4.989h3.88c.954 0 1.64-.916 1.37-1.831L17.42 5.919a.286.286 0 00-.274-.205H9.429v7.588l3.702 5.818zm-5.417-5.977V5.714h-2v7.429h2zm5.98 8a2.381 2.381 0 01-2.01-1.103l-3.297-5.183H4V4h13.145a2 2 0 011.919 1.436l1.753 5.963a3.143 3.143 0 01-3.015 4.03h-2.01l.274 3.125a2.381 2.381 0 01-2.372 2.589z",fill:"#000"}));t.Z=r},9425:function(e,t,n){"use strict";var o=n(9307),i=n(444);const r=(0,o.createElement)(i.SVG,{width:"24",height:"24",fill:"none",xmlns:"http://www.w3.org/2000/SVG"},(0,o.createElement)(i.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M13.131 4.023a.667.667 0 011.227.416l-.436 4.99h3.88c.954 0 1.64.916 1.37 1.831l-1.753 5.963a.286.286 0 01-.274.206H9.429V9.84l3.702-5.818zM7.714 10v7.428h-2V10h2zm5.98-8c-.814 0-1.572.416-2.01 1.103L8.388 8.286H4v10.857h13.145a2 2 0 001.919-1.436l1.753-5.963a3.143 3.143 0 00-3.015-4.03h-2.01l.274-3.125A2.381 2.381 0 0013.694 2z",fill:"#000"}));t.Z=r},2069:function(e,t,n){"use strict";var o=n(9307),i=n(6115),r=n(3668),s=n(9321),c=n(5609),a=n(9818),u=n(5736),l=n(8565),d=n(2779),f=n.n(d),p=n(6139),m=n(4308),h=n(9425);n(7710);const __=u.__;function g(e){let{currentStepIndex:t,lastStepIndex:n,onDismiss:i,setCurrentStepIndex:s,onNextStepProgression:a,onPreviousStepProgression:u,setInitialFocusedElement:l}=e;const d=0===t;return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(r.Z,{activePageIndex:t,numberOfPages:n+1,onChange:s},d?(0,o.createElement)("div",null,(0,o.createElement)(c.Button,{isTertiary:!0,onClick:i("no-thanks-btn")},__("Skip","full-site-editing")),(0,o.createElement)(c.Button,{className:"welcome-tour-card__next-btn",isPrimary:!0,onClick:a,ref:l},__("Try it out!","full-site-editing"))):(0,o.createElement)("div",null,(0,o.createElement)(c.Button,{isTertiary:!0,onClick:u},__("Back","full-site-editing")),(0,o.createElement)(c.Button,{className:"welcome-tour-card__next-btn",isPrimary:!0,onClick:a,ref:l},__("Next","full-site-editing")))))}function v(e){let{onMinimize:t,onDismiss:n}=e;return(0,o.createElement)("div",{className:"welcome-tour-card__overlay-controls"},(0,o.createElement)(c.Flex,null,(0,o.createElement)(c.Button,{label:__("Minimize Tour","full-site-editing"),isPrimary:!0,className:"welcome-tour-card__minimize-icon",icon:p.Z,iconSize:24,onClick:t}),(0,o.createElement)(c.Button,{label:__("Close Tour","full-site-editing"),isPrimary:!0,icon:l.Z,iconSize:24,onClick:n("close-btn")})))}function w(e){let{isGutenboarding:t}=e,n=!1;const r=(0,a.useSelect)((e=>e("automattic/wpcom-welcome-guide").getTourRating())),{setTourRating:s}=(0,a.useDispatch)("automattic/wpcom-welcome-guide");!n&&r&&(n=!0);const u=e=>{n||(n=!0,s(e?"thumbs-up":"thumbs-down"),(0,i.jN)("calypso_editor_wpcom_tour_rate",{thumbs_up:e,is_gutenboarding:t}))};return(0,o.createElement)(o.Fragment,null,(0,o.createElement)("p",{className:"welcome-tour__end-text"},__("Did you find this guide helpful?","full-site-editing")),(0,o.createElement)("div",null,(0,o.createElement)(c.Button,{"aria-label":__("Rate thumbs up","full-site-editing"),className:f()("welcome-tour__end-icon",{active:"thumbs-up"===r}),disabled:n,icon:h.Z,onClick:()=>u(!0),iconSize:24}),(0,o.createElement)(c.Button,{"aria-label":__("Rate thumbs down","full-site-editing"),className:f()("welcome-tour__end-icon",{active:"thumbs-down"===r}),disabled:n,icon:m.Z,onClick:()=>u(!1),iconSize:24})))}t.Z=function(e){var t,n;let{cardContent:i,currentStepIndex:r,lastStepIndex:a,onMinimize:u,onDismiss:l,setCurrentStepIndex:d,onNextStepProgression:f,onPreviousStepProgression:p,isGutenboarding:m,setInitialFocusedElement:h}=e;const{descriptions:y,heading:b,imgSrc:_}=i,E=r===a,x=y[(0,s.tq)()?"mobile":"desktop"]??y.desktop;return(0,o.createElement)(c.Card,{className:"welcome-tour-card",isElevated:!0},(0,o.createElement)(v,{onDismiss:l,onMinimize:u}),(0,o.createElement)(c.CardMedia,{className:"welcome-tour-card__media"},(0,o.createElement)("picture",null,_.mobile&&(0,o.createElement)("source",{srcSet:_.mobile.src,type:_.mobile.type,media:null===(t=(0,s.O9)(s.Gh))||void 0===t?void 0:t.media}),(0,o.createElement)("img",{alt:__("Editor Welcome Tour","full-site-editing"),src:null===(n=_.desktop)||void 0===n?void 0:n.src}))),(0,o.createElement)(c.CardBody,null,(0,o.createElement)("h2",{className:"welcome-tour-card__heading"},b),(0,o.createElement)("p",{className:"welcome-tour-card__description"},x,E?(0,o.createElement)(c.Button,{className:"welcome-tour-card__description",isTertiary:!0,onClick:()=>d(0),ref:h},__("Restart tour","full-site-editing")):null)),(0,o.createElement)(c.CardFooter,null,E?(0,o.createElement)(w,{isGutenboarding:m}):(0,o.createElement)(g,{currentStepIndex:r,lastStepIndex:a,onDismiss:l,setCurrentStepIndex:d,onNextStepProgression:f,onPreviousStepProgression:p,setInitialFocusedElement:h})))}},2753:function(e,t,n){"use strict";var o=n(9307),i=n(6115),r=n(849),s=n(6424),c=n(9321),a=n(9818),u=n(805),l=n(4316),d=n(6778),f=n(8953);n(7710);function p(){var e;const t=(0,r.bU)(),{setShowWelcomeGuide:n}=(0,a.useDispatch)("automattic/wpcom-welcome-guide"),p=null===(e=window.calypsoifyGutenberg)||void 0===e?void 0:e.isGutenboarding,m=()=>new URLSearchParams(document.location.search).has("welcome-tour-next"),h=(0,f.Z)(t,m()).filter((e=>!(e.meta.isDesktopOnly&&(0,c.tq)())));(0,u.O)(h);const g={steps:h,renderers:{tourStep:d.Z,tourMinimized:l.Z},closeHandler:(e,t,o)=>{(0,i.jN)("calypso_editor_wpcom_tour_dismiss",{is_gutenboarding:p,slide_number:t+1,action:o}),n(!1,{openedManually:!1})},options:{callbacks:{onMinimize:e=>{(0,i.jN)("calypso_editor_wpcom_tour_minimize",{is_gutenboarding:p,slide_number:e+1})},onMaximize:e=>{(0,i.jN)("calypso_editor_wpcom_tour_maximize",{is_gutenboarding:p,slide_number:e+1})},onStepViewOnce:e=>{const t=h.length-1,{heading:n}=h[e].meta;(0,i.jN)("calypso_editor_wpcom_tour_slide_view",{slide_number:e+1,is_last_slide:e===t,slide_heading:n,is_gutenboarding:p})}},effects:{spotlight:m()?{styles:{minWidth:"50px",minHeight:"50px",borderRadius:"2px"}}:void 0,arrowIndicator:!1},popperModifiers:[(0,o.useMemo)((()=>({name:"offset",options:{offset:e=>{let{placement:t,reference:n}=e;if("bottom"===t){const e=document.querySelector(".edit-post-header").getBoundingClientRect();return[0,e.height+e.y-(n.height+n.y)+16]}return[0,0]}}})),[])],classNames:"wpcom-editor-welcome-tour"}};return(0,o.createElement)(s.Z,{config:g})}t.Z=function(){const{show:e,isNewPageLayoutModalOpen:t,isManuallyOpened:n}=(0,a.useSelect)((e=>({show:e("automattic/wpcom-welcome-guide").isWelcomeGuideShown(),isNewPageLayoutModalOpen:e("automattic/starter-page-layouts")&&e("automattic/starter-page-layouts").isOpen(),isManuallyOpened:e("automattic/wpcom-welcome-guide").isWelcomeGuideManuallyOpened()}))),s=(0,r.bU)();return(0,u.O)([(0,f.Z)(s)[0]]),(0,o.useEffect)((()=>{var o;(e||t)&&(0,i.jN)("calypso_editor_wpcom_tour_open",{is_gutenboarding:null===(o=window.calypsoifyGutenberg)||void 0===o?void 0:o.isGutenboarding,is_manually_opened:n})}),[t,n,e]),!e||t?null:(0,o.createElement)(p,null)}},4316:function(e,t,n){"use strict";var o=n(9307),i=n(5609),r=n(5736),s=n(5869),c=n(8565),a=n(8574);const __=r.__;t.Z=e=>{let{steps:t,onMaximize:n,onDismiss:u,currentStepIndex:l}=e;const d=l+1,f=t.length-1+1;return(0,o.createElement)(i.Flex,{gap:0,className:"wpcom-editor-welcome-tour__minimized"},(0,o.createElement)(i.Button,{onClick:n,"aria-label":__("Resume Tour","full-site-editing")},(0,o.createElement)(i.Flex,{gap:13},(0,o.createElement)("p",null,(0,o.createInterpolateElement)((0,r.sprintf)(__("Resume welcome tour <span>(%1$d/%2$d)</span>","full-site-editing"),d,f),{span:(0,o.createElement)("span",{className:"wpcom-editor-welcome-tour__minimized-tour-index"})})),(0,o.createElement)(s.Z,{icon:a.Z,size:24}))),(0,o.createElement)(i.Button,{onClick:u("close-btn-minimized"),"aria-label":__("Close Tour","full-site-editing")},(0,o.createElement)(s.Z,{icon:c.Z,size:24})))}},6778:function(e,t,n){"use strict";var o=n(9307),i=n(2069);t.Z=e=>{var t;let{steps:n,currentStepIndex:r,onDismiss:s,onNext:c,onPrevious:a,onMinimize:u,setInitialFocusedElement:l,onGoToStep:d}=e;const f=n.length-1,p=null===(t=window.calypsoifyGutenberg)||void 0===t?void 0:t.isGutenboarding;return(0,o.createElement)(i.Z,{cardContent:n[r].meta,currentStepIndex:r,lastStepIndex:f,onDismiss:s,onMinimize:u,setCurrentStepIndex:d,onNextStepProgression:c,onPreviousStepProgression:a,isGutenboarding:p,setInitialFocusedElement:l})}},8953:function(e,t,n){"use strict";var o=n(9307),i=n(7498),r=n(5609),s=n(5736);const __=s.__;function c(e){const t="https://s0.wp.com/i/editor-welcome-tour";return{addBlock:{desktop:{src:`${t}/slide-add-block.gif`,type:"image/gif"},mobile:{src:`${t}/slide-add-block_mobile.gif`,type:"image/gif"}},allBlocks:{desktop:{src:`${t}/slide-all-blocks.gif`,type:"image/gif"}},finish:{desktop:{src:`${t}/slide-finish.png`,type:"image/gif"}},makeBold:{desktop:{src:`${t}/slide-make-bold.gif`,type:"image/gif"}},moreOptions:{desktop:{src:`${t}/slide-more-options.gif`,type:"image/gif"},mobile:{src:`${t}/slide-more-options_mobile.gif`,type:"image/gif"}},moveBlock:{desktop:{src:`${t}/slide-move-block.gif`,type:"image/gif"},mobile:{src:`${t}/slide-move-block_mobile.gif`,type:"image/gif"}},findYourWay:{desktop:{src:`${t}/slide-find-your-way.gif`,type:"image/gif"}},undo:{desktop:{src:`${t}/slide-undo.gif`,type:"image/gif"}},welcome:{desktop:{src:`${t}/slide-welcome.png`,type:"image/png"},mobile:{src:`${t}/slide-welcome_mobile.jpg`,type:"image/jpeg"}}}[e]}t.Z=function(e,t){return[{meta:{heading:__("Welcome to WordPress!","full-site-editing"),descriptions:{desktop:__("Take this short, interactive tour to learn the fundamentals of the WordPress editor.","full-site-editing"),mobile:null},imgSrc:c("welcome"),animation:null},options:{classNames:{desktop:"wpcom-editor-welcome-tour__step",mobile:["is-with-extra-padding","wpcom-editor-welcome-tour__step"]}}},{meta:{heading:__("Everything is a block","full-site-editing"),descriptions:{desktop:__("In the WordPress Editor, paragraphs, images, and videos are all blocks.","full-site-editing"),mobile:null},imgSrc:c("allBlocks"),animation:null},options:{classNames:{desktop:"wpcom-editor-welcome-tour__step",mobile:"wpcom-editor-welcome-tour__step"}}},{referenceElements:t&&{mobile:".edit-post-header .edit-post-header__toolbar .components-button.edit-post-header-toolbar__inserter-toggle",desktop:".edit-post-header .edit-post-header__toolbar .components-button.edit-post-header-toolbar__inserter-toggle"},meta:{heading:__("Adding a new block","full-site-editing"),descriptions:{desktop:__("Click + to open the inserter. Then click the block you want to add.","full-site-editing"),mobile:__("Tap + to open the inserter. Then tap the block you want to add.","full-site-editing")},imgSrc:c("addBlock"),animation:"block-inserter"},options:{classNames:{desktop:"wpcom-editor-welcome-tour__step",mobile:["is-with-extra-padding","wpcom-editor-welcome-tour__step"]}}},{meta:{heading:__("Click a block to change it","full-site-editing"),descriptions:{desktop:__("Use the toolbar to change the appearance of a selected block. Try making it bold.","full-site-editing"),mobile:null},imgSrc:c("makeBold"),animation:null},options:{classNames:{desktop:"wpcom-editor-welcome-tour__step",mobile:"wpcom-editor-welcome-tour__step"}}},{referenceElements:t&&{mobile:".edit-post-header .edit-post-header__settings .interface-pinned-items > button:nth-child(1)",desktop:".edit-post-header .edit-post-header__settings .interface-pinned-items > button:nth-child(1)"},meta:{heading:__("More Options","full-site-editing"),descriptions:{desktop:__("Click the settings icon to see even more options.","full-site-editing"),mobile:__("Tap the settings icon to see even more options.","full-site-editing")},imgSrc:c("moreOptions"),animation:null},options:{classNames:{desktop:"wpcom-editor-welcome-tour__step",mobile:["is-with-extra-padding","wpcom-editor-welcome-tour__step"]}}},{meta:{heading:__("Find your way","full-site-editing"),descriptions:{desktop:__("Use List View to see all the blocks you've added. Click and drag any block to move it around.","full-site-editing"),mobile:null},imgSrc:c("findYourWay"),animation:null,isDesktopOnly:!0},options:{classNames:{desktop:["is-with-extra-padding","wpcom-editor-welcome-tour__step"],mobile:"wpcom-editor-welcome-tour__step"}}},{referenceElements:t&&{desktop:".edit-post-header .edit-post-header__toolbar .components-button.editor-history__undo"},meta:{heading:__("Undo any mistake","full-site-editing"),descriptions:{desktop:__("Click the Undo button if you've made a mistake.","full-site-editing"),mobile:null},imgSrc:c("undo"),animation:"undo-button",isDesktopOnly:!0},options:{classNames:{desktop:"wpcom-editor-welcome-tour__step",mobile:"wpcom-editor-welcome-tour__step"}}},{meta:{heading:__("Drag & drop","full-site-editing"),descriptions:{desktop:__("To move blocks around, click and drag the handle.","full-site-editing"),mobile:__("To move blocks around, tap the up and down arrows.","full-site-editing")},imgSrc:c("moveBlock"),animation:"undo-button"},options:{classNames:{desktop:"wpcom-editor-welcome-tour__step",mobile:["is-with-extra-padding","wpcom-editor-welcome-tour__step"]}}},{meta:{heading:__("Congratulations!","full-site-editing"),descriptions:{desktop:(0,o.createInterpolateElement)(__("You've learned the basics. Remember, your site is private until you <link_to_launch_site_docs>decide to launch</link_to_launch_site_docs>. View the <link_to_editor_docs>block editing docs</link_to_editor_docs> to learn more.","full-site-editing"),{link_to_launch_site_docs:(0,o.createElement)(r.ExternalLink,{href:(0,i.aq)("https://wordpress.com/support/settings/privacy-settings/#launch-your-site",e)}),link_to_editor_docs:(0,o.createElement)(r.ExternalLink,{href:(0,i.aq)("https://wordpress.com/support/wordpress-editor/",e)})}),mobile:null},imgSrc:c("finish"),animation:"block-inserter"},options:{classNames:{desktop:"wpcom-editor-welcome-tour__step",mobile:"wpcom-editor-welcome-tour__step"}}}]}},6115:function(e,t,n){"use strict";n.d(t,{jN:function(){return o.jN}});n(1694),n(6209),n(9377);var o=n(9792);n(3722)},9377:function(e,t,n){"use strict";let o=null;"undefined"!=typeof window&&window.addEventListener("popstate",(function(){o=null}))},9792:function(e,t,n){"use strict";n.d(t,{jN:function(){return f}});var o=n(2699),i=n(4898),r=(n(3421),n(2819)),s=(n(9377),n(6209),n(9358));n(1694);const c=["a8c_cookie_banner_ok","wcadmin_storeprofiler_create_jetpack_account","wcadmin_storeprofiler_connect_store","wcadmin_storeprofiler_login_jetpack_account","wcadmin_storeprofiler_payment_login","wcadmin_storeprofiler_payment_create_account","calypso_checkout_switch_to_p_24","calypso_checkout_composite_p24_submit_clicked"];let a,u=Promise.resolve();function l(e){"undefined"!=typeof window&&(window._tkq=window._tkq||[],window._tkq.push(e))}"undefined"!=typeof document&&(u=(0,i.ve)("//stats.wp.com/w.js?63"));const d=new o.EventEmitter;function f(e,t){if(t=t||{},(0,s.Z)('Record event "%s" called with props %o',e,t),e.startsWith("calypso_")||(0,r.includes)(c,e)){if(a){const e=a(t);t={...t,...e}}t=(0,r.omitBy)(t,(e=>void 0===e)),(0,s.Z)('Recording event "%s" with actual props %o',e,t),l(["recordEvent",e,t]),d.emit("record-event",e,t)}else(0,s.Z)('- Event name must be prefixed by "calypso_" or added to `EVENT_NAME_EXCEPTIONS`')}},3722:function(e,t,n){"use strict";n(9792)},6209:function(e,t,n){"use strict";n(4)},9358:function(e,t,n){"use strict";var o=n(8049),i=n.n(o);t.Z=i()("calypso:analytics")},1694:function(e,t,n){"use strict";n(9358)},4:function(e,t,n){"use strict";n(8032)},3668:function(e,t,n){"use strict";var o=n(9307),i=n(5736),r=n(2779),s=n.n(r),c=n(2819);n(2014);const __=i.__;t.Z=e=>{let{activePageIndex:t,numberOfPages:n,onChange:r,classNames:a,children:u}=e;const l=s()("pagination-control",a);return(0,o.createElement)("ul",{className:l,"aria-label":__("Pagination control")},(0,c.times)(n,(e=>(0,o.createElement)("li",{key:`${n}-${e}`,"aria-current":e===t?"page":void 0},(0,o.createElement)("button",{className:s()("pagination-control__page",{"is-current":e===t}),disabled:e===t,"aria-label":(0,i.sprintf)(__("Page %1$d of %2$d"),e+1,n),onClick:()=>r(e)})))),u&&(0,o.createElement)("li",{className:"pagination-control__last-item"},u))}},849:function(e,t,n){"use strict";n.d(t,{Iw:function(){return u},bU:function(){return d}});var o=n(7896),i=n(9307),r=n(4333),s=n(5736),c=n(9196);const a=(0,c.createContext)(null),u=e=>{let{children:t,localeSlug:n}=e;return(0,i.createElement)(a.Provider,{value:n},t)};function l(){var e,t;return function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";if(!e)return"";const t=["pt_br","pt-br","zh_tw","zh-tw","zh_cn","zh-cn","zh_sg","zh-sg"],n=e.toLowerCase();return(t.includes(n)?n.replace("_","-"):n.replace(/([-_].*)$/i,""))||"en"}(s.getLocaleData?null===(e=s.getLocaleData())||void 0===e||null===(t=e[""])||void 0===t?void 0:t.language:"")}function d(){const e=(0,c.useContext)(a),t=!!e,[n,o]=(0,c.useState)(l());return(0,c.useEffect)((()=>{if(!t)return o(l()),s.subscribe((()=>{o(l())}))}),[t]),e||n||"en"}(0,r.createHigherOrderComponent)((e=>t=>{const n=d();return(0,i.createElement)(e,(0,o.Z)({locale:n},t))}),"withLocale")},4655:function(e,t,n){"use strict";n.d(t,{OP:function(){return o},GG:function(){return i},iT:function(){return r},xn:function(){return s},Xb:function(){return c},hI:function(){return a},mL:function(){return u},vS:function(){return l},_r:function(){return d}});const o="en",i=["en","ja","es","pt","fr","pt-br"],r=["en","fr","de","es"],s=["en","fr","de","es"],c={"pt-br":"br",br:"bre",zh:"zh-cn","zh-hk":"zh-tw","zh-sg":"zh-cn",kr:"ko"},a=["ar","de","en","es","fr","he","id","it","ja","ko","nl","pt-br","ru","sv","tr","zh-cn","zh-tw"],u=["ar","de","el","en","es","fa","fi","fr","id","it","ja","nl","pt","pt-br","ru","sv","th","tl","tr"],l=["es","pt-br","de","fr","he","ja","it","nl","ru","tr","id","zh-cn","zh-tw","ko","ar","sv"],d=["en","ar","de","es","fr","he","id","it","ja","ko","nl","pt-br","ro","ru","sv","tr","zh-cn","zh-tw"]},7498:function(e,t,n){"use strict";n.d(t,{aq:function(){return h}});var o=n(7896),i=n(9307),r=n(4333),s=n(9196),c=n(849),a=n(4655);const u="http://__domain__.invalid",l=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];return(n,o)=>(t.includes(o)&&"en"!==o&&n.pathname.substr(0,o.length+2)!=="/"+o+"/"&&(n.host=`${a.Xb[o]||o}.${e}`),n)},d=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;return(o,i)=>(o.host="wordpress.com","object"==typeof n&&n instanceof RegExp&&!n.test(o.pathname)&&(t=[]),o.pathname=e+o.pathname,t.includes(i)&&"en"!==i&&(o.pathname=i+o.pathname),o)},f=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=arguments.length>2?arguments[2]:void 0;return(o,i)=>"object"==typeof t&&t instanceof RegExp&&!t.test(o.pathname)?o:e.includes(i)&&"en"!==i?("prefix"===n?o.pathname=i+o.pathname:"suffix"===n&&(o.pathname.endsWith("/")?o.pathname+=i+"/":o.pathname+="/"+i),o):o},p=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return(n,o)=>f(e,t,"prefix")(n,o)},m={"wordpress.com/support/":p(a.hI),"wordpress.com/forums/":p(a.mL),"wordpress.com/blog/":p(a.GG,/^\/blog\/?$/),"wordpress.com/tos/":p(a.vS),"wordpress.com/wp-admin/":l("wordpress.com",a.vS),"wordpress.com/wp-login.php":l("wordpress.com",a.vS),"jetpack.com":l("jetpack.com",a._r),"en.support.wordpress.com":d("/support",a.hI),"en.blog.wordpress.com":d("/blog",a.GG,/^\/$/),"en.forums.wordpress.com":d("/forums",a.mL),"automattic.com/privacy/":p(a.iT),"automattic.com/cookies/":p(a.xn),"wordpress.com/help/contact/":(e,t,n)=>n?e:(e.pathname=e.pathname.replace(/\/help\//,"/support/"),p(a.hI)(e,t)),"wordpress.com":(e,t)=>/^\/(checkout|me)(\/|$)/.test(e.pathname)||/\/([a-z0-9-]+\.)+[a-z]{2,}\/?$/.test(e.pathname)?e:p(a.vS)(e,t),"wordpress.com/theme/":(e,t,n)=>n?e:p(a.vS)(e,t),"wordpress.com/themes/":(e,t,n)=>n?e:p(a.vS)(e,t),"wordpress.com/log-in/":(e,t,n)=>n?e:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return(n,o)=>f(e,t,"suffix")(n,o)}(a.vS)(e,t)};function h(e,t){let n,o=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];try{n=new URL(String(e),u)}catch(s){return e}if(n.origin===u)return e;n.protocol="https:",n.hostname="",n.pathname.endsWith(".php")||(n.pathname=(n.pathname+"/").replace(/\/+$/,"/"));const i=n.pathname.substr(0,1+n.pathname.indexOf("/",1));if("en.wordpress.com"===n.host&&(n.host="wordpress.com"),"/"+t+"/"===i)return e;const r=[n.host,n.host+i,n.host+n.pathname];for(let c=r.length-1;c>=0;c--)if(r[c]in m)return m[r[c]](n,t,o).href;return e}function g(){const e=(0,c.bU)();return(0,s.useCallback)(((t,n,o)=>h(t,n||e,o)),[e])}(0,r.createHigherOrderComponent)((e=>t=>{const n=g();return(0,i.createElement)(e,(0,o.Z)({localizeUrl:n},t))}),"withLocalizeUrl")},3340:function(e,t,n){"use strict";n.d(t,{hg:function(){return c},lZ:function(){return a},_W:function(){return l},Yt:function(){return d}});var o=n(8049);const i=n.n(o)()("lib/load-script/callback-handler"),r=new Map;function s(){return r}function c(e){return s().has(e)}function a(e,t){const n=s();c(e)?(i(`Adding a callback for an existing script from "${e}"`),n.get(e).add(t)):(i(`Adding a callback for a new script from "${e}"`),n.set(e,new Set([t])))}function u(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;const n=s(),o=n.get(e);if(o){i(`Executing callbacks for "${e}"`+(null===t?" with success":` with error "${t}"`)),o.forEach((e=>{"function"==typeof e&&e(t)})),n.delete(e)}}function l(){const e=this.getAttribute("src");i(`Handling successful request for "${e}"`),u(e),this.onload=null}function d(){const e=this.getAttribute("src");i(`Handling failed request for "${e}"`),u(e,new Error(`Failed to load script "${e}"`)),this.onerror=null}},5606:function(e,t,n){"use strict";n.d(t,{C:function(){return c},k:function(){return a}});var o=n(8049),i=n.n(o),r=n(3340);const s=i()("lib/load-script/dom-operations");function c(e){s(`Creating script element for "${e}"`);const t=document.createElement("script");return t.src=e,t.type="text/javascript",t.async=!0,t.onload=r._W,t.onerror=r.Yt,t}function a(e){s("Attaching element to head"),document.head.appendChild(e)}},4898:function(e,t,n){"use strict";n.d(t,{ve:function(){return c}});var o=n(8049),i=n.n(o),r=n(3340),s=n(5606);i()("package/load-script");function c(e,t){if(!(0,r.hg)(e)&&(0,s.k)((0,s.C)(e)),"function"!=typeof t)return new Promise(((t,n)=>{(0,r.lZ)(e,(e=>{null===e?t():n(e)}))}));(0,r.lZ)(e,t)}},8626:function(e,t,n){"use strict";var o=n(9307),i=(n(9196),n(7474)),r=n(5386),s=n(9946);t.Z=e=>{let{onMinimize:t,onDismiss:n,onNextStepProgression:c,onPreviousStepProgression:a,tourContainerRef:u,isMinimized:l}=e;return(0,i.Z)(u)?l?(0,o.createElement)((function(){return(0,s.Z)({onEscape:n("esc-key-minimized")}),null}),null):(0,o.createElement)((function(){return(0,s.Z)({onEscape:t,onArrowRight:c,onArrowLeft:a}),(0,r.Z)(u),null}),null):null}},4065:function(e,t,n){"use strict";var o=n(7896),i=n(9307),r=n(6951),s=n(2779),c=n.n(s),a=n(6194),u=n(9207),l=n(2036),d=n(8626),f=n(6165),p=n(7858),m=n(8074),h=n(301);const g=(e,t)=>{"function"==typeof t&&t(e)};t.Z=e=>{var t,n,s,v,w,y,b,_,E,x,k,C,S,Z,O,M,P,F,L,N,j,R,T,A;let{config:z}=e;const[I,W]=(0,i.useState)(0),[G,D]=(0,i.useState)(null),[B,$]=(0,i.useState)(!1),[U,H]=(0,i.useState)(null),[V,q]=(0,i.useState)(!1),Y=(0,i.useRef)(null),K=(0,r._z)(),X=z.steps.length-1,J=(null===(t=z.steps[I].referenceElements)||void 0===t?void 0:t[K?"mobile":"desktop"])||null,Q=J?document.querySelector(J):null,ee=(0,i.useCallback)((()=>{var e,t;return!1!==(null===(e=z.options)||void 0===e||null===(t=e.effects)||void 0===t?void 0:t.arrowIndicator)&&!(!Q||B||!V)}),[null===(n=z.options)||void 0===n||null===(s=n.effects)||void 0===s?void 0:s.arrowIndicator,B,Q,V]),te=(0,i.useCallback)((()=>{var e,t;return!(null===(e=z.options)||void 0===e||null===(t=e.effects)||void 0===t||!t.spotlight)&&!B}),[null===(v=z.options)||void 0===v||null===(w=v.effects)||void 0===w?void 0:w.spotlight,B]),ne=(0,i.useCallback)((()=>{var e,t;return!(te()||null===(e=z.options)||void 0===e||null===(t=e.effects)||void 0===t||!t.overlay)&&!B}),[null===(y=z.options)||void 0===y||null===(b=y.effects)||void 0===b?void 0:b.overlay,B,te]),oe=(0,i.useCallback)((e=>()=>{z.closeHandler(z.steps,I,e)}),[z,I]),ie=(0,i.useCallback)((()=>{var e,t;X>I&&W(I+1),g(I,null===(e=z.options)||void 0===e||null===(t=e.callbacks)||void 0===t?void 0:t.onNextStep)}),[null===(_=z.options)||void 0===_||null===(E=_.callbacks)||void 0===E?void 0:E.onNextStep,I,X]),re=(0,i.useCallback)((()=>{var e,t;I&&W(I-1),g(I,null===(e=z.options)||void 0===e||null===(t=e.callbacks)||void 0===t?void 0:t.onPreviousStep)}),[null===(x=z.options)||void 0===x||null===(k=x.callbacks)||void 0===k?void 0:k.onPreviousStep,I]),se=(0,i.useCallback)((e=>{var t,n;W(e),g(I,null===(t=z.options)||void 0===t||null===(n=t.callbacks)||void 0===n?void 0:n.onGoToStep)}),[null===(C=z.options)||void 0===C||null===(S=C.callbacks)||void 0===S?void 0:S.onGoToStep,I]),ce=(0,i.useCallback)((()=>{var e,t;$(!0),g(I,null===(e=z.options)||void 0===e||null===(t=e.callbacks)||void 0===t?void 0:t.onMinimize)}),[null===(Z=z.options)||void 0===Z||null===(O=Z.callbacks)||void 0===O?void 0:O.onMinimize,I]),ae=(0,i.useCallback)((()=>{var e,t;$(!1),g(I,null===(e=z.options)||void 0===e||null===(t=e.callbacks)||void 0===t?void 0:t.onMaximize)}),[null===(M=z.options)||void 0===M||null===(P=M.callbacks)||void 0===P?void 0:P.onMaximize,I]),{styles:ue,attributes:le,update:de}=(0,a.D)(Q,U,{strategy:"fixed",placement:"bottom",modifiers:[{name:"preventOverflow",options:{rootBoundary:"document",padding:16}},{name:"arrow",options:{padding:12}},{name:"offset",options:{offset:[0,ee()?12:10]}},{name:"flip",options:{fallbackPlacements:["top","left","right"]}},...(null===(F=z.options)||void 0===F?void 0:F.popperModifiers)||[]]}),fe=!B&&Q&&V?{style:null==ue?void 0:ue.popper,...null==le?void 0:le.popper}:null,pe=!B&&Q&&V?{style:null==ue?void 0:ue.arrow,...null==le?void 0:le.arrow}:null;(0,i.useEffect)((()=>{setTimeout((()=>null==G?void 0:G.focus()))}),[G]),(0,i.useEffect)((()=>{Q?(q(!1),de&&de().then((()=>q(!0))).catch((()=>q(!0)))):q(!0)}),[de,Q]);const me=c()("tour-kit-frame",K?"is-mobile":"is-desktop",{"is-visible":V},(0,l.s)(null===(L=z.options)||void 0===L?void 0:L.classNames));return(0,u.Z)(I,null===(N=z.options)||void 0===N||null===(j=N.callbacks)||void 0===j?void 0:j.onStepViewOnce),(0,i.createElement)(i.Fragment,null,(0,i.createElement)(d.Z,{onMinimize:ce,onDismiss:oe,onNextStepProgression:ie,onPreviousStepProgression:re,tourContainerRef:Y,isMinimized:B}),(0,i.createElement)("div",{className:me,ref:Y},ne()&&(0,i.createElement)(p.Z,{visible:!0}),te()&&(0,i.createElement)(m.Z,{referenceElement:Q,styles:null===(R=z.options)||void 0===R||null===(T=R.effects)||void 0===T||null===(A=T.spotlight)||void 0===A?void 0:A.styles}),(0,i.createElement)("div",(0,o.Z)({className:"tour-kit-frame__container",ref:H},fe),ee()&&(0,i.createElement)("div",(0,o.Z)({className:"tour-kit-frame__arrow","data-popper-arrow":!0},pe)),B?(0,i.createElement)(f.Z,{config:z,steps:z.steps,currentStepIndex:I,onMaximize:ae,onDismiss:oe}):(0,i.createElement)(h.Z,{config:z,steps:z.steps,currentStepIndex:I,onMinimize:ce,onDismiss:oe,onNext:ie,onPrevious:re,onGoToStep:se,setInitialFocusedElement:D}))))}},6165:function(e,t){"use strict";t.Z=e=>{let{config:t,steps:n,currentStepIndex:o,onMaximize:i,onDismiss:r}=e;return t.renderers.tourMinimized({steps:n,currentStepIndex:o,onMaximize:i,onDismiss:r})}},7858:function(e,t,n){"use strict";var o=n(9307),i=n(2779),r=n.n(i);t.Z=e=>{let{visible:t}=e;return(0,o.createElement)("div",{className:r()("tour-kit-overlay",{"is-visible":t})})}},6424:function(e,t,n){"use strict";var o=n(9307),i=n(4065);n(6372);t.Z=e=>{let{config:t}=e;const n=(0,o.useRef)(document.createElement("div")).current;return(0,o.useEffect)((()=>(n.classList.add("tour-kit-portal"),document.body.appendChild(n),()=>{document.body.removeChild(n)})),[n]),(0,o.createElement)("div",null,(0,o.createPortal)((0,o.createElement)(i.Z,{config:t}),n))}},8074:function(e,t,n){"use strict";var o=n(7896),i=n(9307),r=n(2779),s=n.n(r),c=n(6194),a=n(7858);t.Z=e=>{let{referenceElement:t,styles:n}=e;const[r,u]=(0,i.useState)(null),l=null==t?void 0:t.getBoundingClientRect(),d=[{name:"flip",enabled:!1},{name:"preventOverflow",options:{mainAxis:!1}},(0,i.useMemo)((()=>({name:"offset",options:{offset:e=>{let{placement:t,reference:n,popper:o}=e;return"bottom"===t?[0,-(n.height+(o.height-n.height)/2)]:[0,0]}}})),[])],{styles:f,attributes:p}=(0,c.D)(t,r,{strategy:"fixed",placement:"bottom",modifiers:d}),m=l?{width:`${l.width}px`,height:`${l.height}px`}:null,h=t?{style:{...m&&m,...null==f?void 0:f.popper,...n&&n},...null==p?void 0:p.popper}:null;return(0,i.createElement)(i.Fragment,null,(0,i.createElement)(a.Z,{visible:!h}),(0,i.createElement)("div",(0,o.Z)({className:s()("tour-kit-spotlight",{"is-visible":!!h}),ref:u},h)))}},301:function(e,t,n){"use strict";var o=n(9307),i=n(6951),r=n(2779),s=n.n(r),c=n(2036);t.Z=e=>{var t,n;let{config:r,steps:a,currentStepIndex:u,onMinimize:l,onDismiss:d,onNext:f,onPrevious:p,setInitialFocusedElement:m,onGoToStep:h}=e;const g=(0,i._z)(),v=s()("tour-kit-step",`is-step-${u}`,(0,c.s)(null===(t=r.steps[u].options)||void 0===t||null===(n=t.classNames)||void 0===n?void 0:n[g?"mobile":"desktop"]));return(0,o.createElement)("div",{className:v},r.renderers.tourStep({steps:a,currentStepIndex:u,onDismiss:d,onNext:f,onPrevious:p,onMinimize:l,setInitialFocusedElement:m,onGoToStep:h}))}},7474:function(e,t,n){"use strict";var o=n(9307);t.Z=e=>{const[t,n]=(0,o.useState)(!1),i=(0,o.useCallback)((()=>{var t;document.hasFocus()&&null!==(t=e.current)&&void 0!==t&&t.contains(document.activeElement)?n(!0):n(!1)}),[e]),r=(0,o.useCallback)((t=>{var o;null!==(o=e.current)&&void 0!==o&&o.contains(t.target)?n(!0):n(!1)}),[e]),s=(0,o.useCallback)((t=>{var o;"Tab"===t.key&&(null!==(o=e.current)&&void 0!==o&&o.contains(t.target)?n(!0):n(!1))}),[e]);return(0,o.useEffect)((()=>(document.addEventListener("focusin",i),document.addEventListener("mousedown",r),document.addEventListener("keyup",s),()=>{document.removeEventListener("focusin",i),document.removeEventListener("mousedown",r),document.removeEventListener("keyup",s)})),[e,i,s,r]),t}},5386:function(e,t,n){"use strict";var o=n(5904),i=n(9307);t.Z=e=>{const[t,n]=(0,i.useState)(),[r,s]=(0,i.useState)(),c=(0,i.useCallback)((e=>{let n=!1;"Tab"===e.key&&(e.shiftKey?document.activeElement===t&&(null==r||r.focus(),n=!0):document.activeElement===r&&(null==t||t.focus(),n=!0)),n&&(e.preventDefault(),e.stopPropagation())}),[t,r]);(0,i.useEffect)((()=>{const t=o.focus.focusable.find(e.current);return t&&t.length&&(n(t[0]),s(t[t.length-1])),document.addEventListener("keydown",c),()=>{document.removeEventListener("keydown",c)}}),[e,c])}},9946:function(e,t,n){"use strict";var o=n(9307);t.Z=e=>{let{onEscape:t,onArrowRight:n,onArrowLeft:i}=e;const r=(0,o.useCallback)((e=>{let o=!1;switch(e.key){case"Escape":t&&(t(),o=!0);break;case"ArrowRight":n&&(n(),o=!0);break;case"ArrowLeft":i&&(i(),o=!0)}o&&(e.preventDefault(),e.stopPropagation())}),[t,n,i]);(0,o.useEffect)((()=>(document.addEventListener("keydown",r),()=>{document.removeEventListener("keydown",r)})),[r])}},9207:function(e,t,n){"use strict";var o=n(9307);t.Z=(e,t)=>{const[n,i]=(0,o.useState)([]);(0,o.useEffect)((()=>{n.includes(e)||(i((t=>[...t,e])),null==t||t(e))}),[e,t,n])}},2036:function(e,t,n){"use strict";function o(e){return null!=e&&e.length?e.toString().split(","):null}n.d(t,{s:function(){return o}})},6951:function(e,t,n){"use strict";n.d(t,{_z:function(){return u}});var o=n(7896),i=n(9307),r=n(9321),s=n(4333),c=n(9196);function a(e){const[t,n]=(0,c.useState)((()=>({isActive:(0,r.kV)(e),breakpoint:e})));return(0,c.useEffect)((()=>(0,r.Sp)(e,(function(t){n((n=>n.isActive===t&&n.breakpoint===e?n:{isActive:t,breakpoint:e}))}))),[e]),e===t.breakpoint?t.isActive:(0,r.kV)(e)}function u(){return a(r.Gh)}(0,s.createHigherOrderComponent)((e=>(0,c.forwardRef)(((t,n)=>{const s=a(r.Gh);return(0,i.createElement)(e,(0,o.Z)({},t,{isBreakpointActive:s,ref:n}))}))),"WithMobileBreakpoint"),(0,s.createHigherOrderComponent)((e=>(0,c.forwardRef)(((t,n)=>{const s=a(r.oh);return(0,i.createElement)(e,(0,o.Z)({},t,{isBreakpointActive:s,ref:n}))}))),"WithDesktopBreakpoint")},9321:function(e,t,n){"use strict";n.d(t,{Gh:function(){return i},oh:function(){return r},O9:function(){return d},kV:function(){return f},Sp:function(){return p},tq:function(){return m}});const o=769,i="<480px",r=">960px",s="undefined"==typeof window||!window.matchMedia,c=()=>null;function a(e){return{addListener:()=>{},removeListener:()=>{},...e}}function u(e){const{min:t,max:n}=e??{};return void 0!==t&&void 0!==n?s?a({matches:o>t&&o<=n}):window.matchMedia(`(min-width: ${t+1}px) and (max-width: ${n}px)`):void 0!==t?s?a({matches:o>t}):window.matchMedia(`(min-width: ${t+1}px)`):void 0!==n&&(s?a({matches:o<=n}):window.matchMedia(`(max-width: ${n}px)`))}const l={"<480px":u({max:480}),"<660px":u({max:660}),"<782px":u({max:782}),"<800px":u({max:800}),"<960px":u({max:960}),"<1040px":u({max:1040}),"<1280px":u({max:1280}),"<1400px":u({max:1400}),">480px":u({min:480}),">660px":u({min:660}),">782px":u({min:782}),">800px":u({min:800}),">960px":u({min:960}),">1040px":u({min:1040}),">1280px":u({min:1280}),">1400px":u({min:1400}),"480px-660px":u({min:480,max:660}),"660px-960px":u({min:660,max:960}),"480px-960px":u({min:480,max:960})};function d(e){if(l.hasOwnProperty(e))return l[e];try{console.warn("Undefined breakpoint used in `mobile-first-breakpoint`",e)}catch(t){}}function f(e){const t=d(e);return t?t.matches:void 0}function p(e,t){if(!t)return c;const n=d(e);if(n&&!s){const e=e=>t(e.matches);return n.addListener(e),()=>n.removeListener(e)}return c}function m(){return f(i)}},8049:function(e,t,n){t.formatArgs=function(t){if(t[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+t[0]+(this.useColors?"%c ":" ")+"+"+e.exports.humanize(this.diff),!this.useColors)return;const n="color: "+this.color;t.splice(1,0,n,"color: inherit");let o=0,i=0;t[0].replace(/%[a-zA-Z%]/g,(e=>{"%%"!==e&&(o++,"%c"===e&&(i=o))})),t.splice(i,0,n)},t.save=function(e){try{e?t.storage.setItem("debug",e):t.storage.removeItem("debug")}catch(n){}},t.load=function(){let e;try{e=t.storage.getItem("debug")}catch(n){}!e&&"undefined"!=typeof process&&"env"in process&&(e=process.env.DEBUG);return e},t.useColors=function(){if("undefined"!=typeof window&&window.process&&("renderer"===window.process.type||window.process.__nwjs))return!0;if("undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/))return!1;return"undefined"!=typeof document&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||"undefined"!=typeof window&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)&&parseInt(RegExp.$1,10)>=31||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)},t.storage=function(){try{return localStorage}catch(e){}}(),t.destroy=(()=>{let e=!1;return()=>{e||(e=!0,console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."))}})(),t.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"],t.log=console.debug||console.log||(()=>{}),e.exports=n(2632)(t);const{formatters:o}=e.exports;o.j=function(e){try{return JSON.stringify(e)}catch(t){return"[UnexpectedJSONParseError]: "+t.message}}},2632:function(e,t,n){e.exports=function(e){function t(e){let n,i,r,s=null;function c(){for(var e=arguments.length,o=new Array(e),i=0;i<e;i++)o[i]=arguments[i];if(!c.enabled)return;const r=c,s=Number(new Date),a=s-(n||s);r.diff=a,r.prev=n,r.curr=s,n=s,o[0]=t.coerce(o[0]),"string"!=typeof o[0]&&o.unshift("%O");let u=0;o[0]=o[0].replace(/%([a-zA-Z%])/g,((e,n)=>{if("%%"===e)return"%";u++;const i=t.formatters[n];if("function"==typeof i){const t=o[u];e=i.call(r,t),o.splice(u,1),u--}return e})),t.formatArgs.call(r,o);const l=r.log||t.log;l.apply(r,o)}return c.namespace=e,c.useColors=t.useColors(),c.color=t.selectColor(e),c.extend=o,c.destroy=t.destroy,Object.defineProperty(c,"enabled",{enumerable:!0,configurable:!1,get:()=>null!==s?s:(i!==t.namespaces&&(i=t.namespaces,r=t.enabled(e)),r),set:e=>{s=e}}),"function"==typeof t.init&&t.init(c),c}function o(e,n){const o=t(this.namespace+(void 0===n?":":n)+e);return o.log=this.log,o}function i(e){return e.toString().substring(2,e.toString().length-2).replace(/\.\*\?$/,"*")}return t.debug=t,t.default=t,t.coerce=function(e){if(e instanceof Error)return e.stack||e.message;return e},t.disable=function(){const e=[...t.names.map(i),...t.skips.map(i).map((e=>"-"+e))].join(",");return t.enable(""),e},t.enable=function(e){let n;t.save(e),t.namespaces=e,t.names=[],t.skips=[];const o=("string"==typeof e?e:"").split(/[\s,]+/),i=o.length;for(n=0;n<i;n++)o[n]&&("-"===(e=o[n].replace(/\*/g,".*?"))[0]?t.skips.push(new RegExp("^"+e.substr(1)+"$")):t.names.push(new RegExp("^"+e+"$")))},t.enabled=function(e){if("*"===e[e.length-1])return!0;let n,o;for(n=0,o=t.skips.length;n<o;n++)if(t.skips[n].test(e))return!1;for(n=0,o=t.names.length;n<o;n++)if(t.names[n].test(e))return!0;return!1},t.humanize=n(1378),t.destroy=function(){console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.")},Object.keys(e).forEach((n=>{t[n]=e[n]})),t.names=[],t.skips=[],t.formatters={},t.selectColor=function(e){let n=0;for(let t=0;t<e.length;t++)n=(n<<5)-n+e.charCodeAt(t),n|=0;return t.colors[Math.abs(n)%t.colors.length]},t.enable(t.load()),t}},3790:function(e,t,n){"use strict";e.exports=n.p+"images/draft-post-19715e868be3c82bb350.svg"},5275:function(e,t,n){"use strict";e.exports=n.p+"images/post-published-ca9ddfc04a7c889a72d2.svg"},9711:function(e,t,n){"use strict";e.exports=n.p+"images/block-picker-baad989c3eaa6c60cc56.svg"},6595:function(e,t,n){"use strict";e.exports=n.p+"images/editor-a1965f46cfb792664a14.svg"},5486:function(e,t,n){"use strict";e.exports=n.p+"images/preview-a3fa241fd59995b1fc42.svg"},7821:function(e,t,n){"use strict";e.exports=n.p+"images/private-761a5407869f32039248.svg"},9196:function(e){"use strict";e.exports=window.React},3288:function(e){"use strict";e.exports=window["a8c-fse-common-data-stores"]},2819:function(e){"use strict";e.exports=window.lodash},6989:function(e){"use strict";e.exports=window.wp.apiFetch},5609:function(e){"use strict";e.exports=window.wp.components},4333:function(e){"use strict";e.exports=window.wp.compose},9818:function(e){"use strict";e.exports=window.wp.data},3418:function(e){"use strict";e.exports=window.wp.dataControls},5904:function(e){"use strict";e.exports=window.wp.dom},9307:function(e){"use strict";e.exports=window.wp.element},2694:function(e){"use strict";e.exports=window.wp.hooks},5736:function(e){"use strict";e.exports=window.wp.i18n},462:function(e){"use strict";e.exports=window.wp.nux},8817:function(e){"use strict";e.exports=window.wp.plugins},444:function(e){"use strict";e.exports=window.wp.primitives},6483:function(e){"use strict";e.exports=window.wp.url},7896:function(e,t,n){"use strict";function o(){return o=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var o in n)Object.prototype.hasOwnProperty.call(n,o)&&(e[o]=n[o])}return e},o.apply(this,arguments)}n.d(t,{Z:function(){return o}})}},t={};function n(o){var i=t[o];if(void 0!==i)return i.exports;var r=t[o]={exports:{}};return e[o](r,r.exports,n),r.exports}n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,{a:t}),t},n.d=function(e,t){for(var o in t)n.o(t,o)&&!n.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},function(){var e;n.g.importScripts&&(e=n.g.location+"");var t=n.g.document;if(!e&&t&&(t.currentScript&&(e=t.currentScript.src),!e)){var o=t.getElementsByTagName("script");o.length&&(e=o[o.length-1].src)}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),n.p=e}();var o={};!function(){"use strict";n.r(o);var e=n(1970);n(1568),n(7869);(0,e.z2)()}(),window.EditingToolkit=o}();
|
1 |
+
!function(){var e={7566:function(e,t,n){"use strict";n.d(t,{kZ:function(){return f}});var o=n(2140),r=n(6249),i=n(1119),s=n(7936),c=n(421),a=n(4806),u=n(3352),l=n(8555),d={placement:"bottom",modifiers:[],strategy:"absolute"};function p(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return!t.some((function(e){return!(e&&"function"==typeof e.getBoundingClientRect)}))}function f(e){void 0===e&&(e={});var t=e,n=t.defaultModifiers,f=void 0===n?[]:n,m=t.defaultOptions,h=void 0===m?d:m;return function(e,t,n){void 0===n&&(n=h);var m={placement:"bottom",orderedModifiers:[],options:Object.assign({},d,h),modifiersData:{},elements:{reference:e,popper:t},attributes:{},styles:{}},g=[],v=!1,w={state:m,setOptions:function(n){var o="function"==typeof n?n(m.options):n;y(),m.options=Object.assign({},h,m.options,o),m.scrollParents={reference:(0,l.kK)(e)?(0,i.Z)(e):e.contextElement?(0,i.Z)(e.contextElement):[],popper:(0,i.Z)(t)};var r=(0,c.Z)((0,u.Z)([].concat(f,m.options.modifiers)));return m.orderedModifiers=r.filter((function(e){return e.enabled})),m.orderedModifiers.forEach((function(e){var t=e.name,n=e.options,o=void 0===n?{}:n,r=e.effect;if("function"==typeof r){var i=r({state:m,name:t,instance:w,options:o}),s=function(){};g.push(i||s)}})),w.update()},forceUpdate:function(){if(!v){var e=m.elements,t=e.reference,n=e.popper;if(p(t,n)){m.rects={reference:(0,o.Z)(t,(0,s.Z)(n),"fixed"===m.options.strategy),popper:(0,r.Z)(n)},m.reset=!1,m.placement=m.options.placement,m.orderedModifiers.forEach((function(e){return m.modifiersData[e.name]=Object.assign({},e.data)}));for(var i=0;i<m.orderedModifiers.length;i++)if(!0!==m.reset){var c=m.orderedModifiers[i],a=c.fn,u=c.options,l=void 0===u?{}:u,d=c.name;"function"==typeof a&&(m=a({state:m,options:l,name:d,instance:w})||m)}else m.reset=!1,i=-1}}},update:(0,a.Z)((function(){return new Promise((function(e){w.forceUpdate(),e(m)}))})),destroy:function(){y(),v=!0}};if(!p(e,t))return w;function y(){g.forEach((function(e){return e()})),g=[]}return w.setOptions(n).then((function(e){!v&&n.onFirstUpdate&&n.onFirstUpdate(e)})),w}}},5350:function(e,t,n){"use strict";n.d(t,{Z:function(){return r}});var o=n(8555);function r(e,t){var n=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(n&&(0,o.Zq)(n)){var r=t;do{if(r&&e.isSameNode(r))return!0;r=r.parentNode||r.host}while(r)}return!1}},2881:function(e,t,n){"use strict";function o(e,t){void 0===t&&(t=!1);var n=e.getBoundingClientRect();return{width:n.width/1,height:n.height/1,top:n.top/1,right:n.right/1,bottom:n.bottom/1,left:n.left/1,x:n.left/1,y:n.top/1}}n.d(t,{Z:function(){return o}})},889:function(e,t,n){"use strict";n.d(t,{Z:function(){return w}});var o=n(6166),r=n(4691),i=n(6764),s=n(1119),c=n(7936),a=n(2021),u=n(9546),l=n(8555),d=n(2881),p=n(2882),f=n(5350),m=n(98),h=n(7365),g=n(8072);function v(e,t){return t===o.Pj?(0,h.Z)((0,r.Z)(e)):(0,l.Re)(t)?function(e){var t=(0,d.Z)(e);return t.top=t.top+e.clientTop,t.left=t.left+e.clientLeft,t.bottom=t.top+e.clientHeight,t.right=t.left+e.clientWidth,t.width=e.clientWidth,t.height=e.clientHeight,t.x=t.left,t.y=t.top,t}(t):(0,h.Z)((0,i.Z)((0,a.Z)(e)))}function w(e,t,n){var o="clippingParents"===t?function(e){var t=(0,s.Z)((0,p.Z)(e)),n=["absolute","fixed"].indexOf((0,u.Z)(e).position)>=0&&(0,l.Re)(e)?(0,c.Z)(e):e;return(0,l.kK)(n)?t.filter((function(e){return(0,l.kK)(e)&&(0,f.Z)(e,n)&&"body"!==(0,m.Z)(e)})):[]}(e):[].concat(t),r=[].concat(o,[n]),i=r[0],a=r.reduce((function(t,n){var o=v(e,n);return t.top=(0,g.Fp)(o.top,t.top),t.right=(0,g.VV)(o.right,t.right),t.bottom=(0,g.VV)(o.bottom,t.bottom),t.left=(0,g.Fp)(o.left,t.left),t}),v(e,i));return a.width=a.right-a.left,a.height=a.bottom-a.top,a.x=a.left,a.y=a.top,a}},2140:function(e,t,n){"use strict";n.d(t,{Z:function(){return l}});var o=n(2881),r=n(6637),i=n(98),s=n(8555),c=n(1051),a=n(2021),u=n(8519);function l(e,t,n){void 0===n&&(n=!1);var l=(0,s.Re)(t),d=(0,s.Re)(t)&&function(e){var t=e.getBoundingClientRect(),n=t.width/e.offsetWidth||1,o=t.height/e.offsetHeight||1;return 1!==n||1!==o}(t),p=(0,a.Z)(t),f=(0,o.Z)(e,d),m={scrollLeft:0,scrollTop:0},h={x:0,y:0};return(l||!l&&!n)&&(("body"!==(0,i.Z)(t)||(0,u.Z)(p))&&(m=(0,r.Z)(t)),(0,s.Re)(t)?((h=(0,o.Z)(t,!0)).x+=t.clientLeft,h.y+=t.clientTop):p&&(h.x=(0,c.Z)(p))),{x:f.left+m.scrollLeft-h.x,y:f.top+m.scrollTop-h.y,width:f.width,height:f.height}}},9546:function(e,t,n){"use strict";n.d(t,{Z:function(){return r}});var o=n(3189);function r(e){return(0,o.Z)(e).getComputedStyle(e)}},2021:function(e,t,n){"use strict";n.d(t,{Z:function(){return r}});var o=n(8555);function r(e){return(((0,o.kK)(e)?e.ownerDocument:e.document)||window.document).documentElement}},6764:function(e,t,n){"use strict";n.d(t,{Z:function(){return a}});var o=n(2021),r=n(9546),i=n(1051),s=n(5392),c=n(8072);function a(e){var t,n=(0,o.Z)(e),a=(0,s.Z)(e),u=null==(t=e.ownerDocument)?void 0:t.body,l=(0,c.Fp)(n.scrollWidth,n.clientWidth,u?u.scrollWidth:0,u?u.clientWidth:0),d=(0,c.Fp)(n.scrollHeight,n.clientHeight,u?u.scrollHeight:0,u?u.clientHeight:0),p=-a.scrollLeft+(0,i.Z)(e),f=-a.scrollTop;return"rtl"===(0,r.Z)(u||n).direction&&(p+=(0,c.Fp)(n.clientWidth,u?u.clientWidth:0)-l),{width:l,height:d,x:p,y:f}}},812:function(e,t,n){"use strict";function o(e){return{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}}n.d(t,{Z:function(){return o}})},6249:function(e,t,n){"use strict";n.d(t,{Z:function(){return r}});var o=n(2881);function r(e){var t=(0,o.Z)(e),n=e.offsetWidth,r=e.offsetHeight;return Math.abs(t.width-n)<=1&&(n=t.width),Math.abs(t.height-r)<=1&&(r=t.height),{x:e.offsetLeft,y:e.offsetTop,width:n,height:r}}},98:function(e,t,n){"use strict";function o(e){return e?(e.nodeName||"").toLowerCase():null}n.d(t,{Z:function(){return o}})},6637:function(e,t,n){"use strict";n.d(t,{Z:function(){return c}});var o=n(5392),r=n(3189),i=n(8555),s=n(812);function c(e){return e!==(0,r.Z)(e)&&(0,i.Re)(e)?(0,s.Z)(e):(0,o.Z)(e)}},7936:function(e,t,n){"use strict";n.d(t,{Z:function(){return l}});var o=n(3189),r=n(98),i=n(9546),s=n(8555),c=n(1725),a=n(2882);function u(e){return(0,s.Re)(e)&&"fixed"!==(0,i.Z)(e).position?e.offsetParent:null}function l(e){for(var t=(0,o.Z)(e),n=u(e);n&&(0,c.Z)(n)&&"static"===(0,i.Z)(n).position;)n=u(n);return n&&("html"===(0,r.Z)(n)||"body"===(0,r.Z)(n)&&"static"===(0,i.Z)(n).position)?t:n||function(e){var t=-1!==navigator.userAgent.toLowerCase().indexOf("firefox");if(-1!==navigator.userAgent.indexOf("Trident")&&(0,s.Re)(e)&&"fixed"===(0,i.Z)(e).position)return null;for(var n=(0,a.Z)(e);(0,s.Re)(n)&&["html","body"].indexOf((0,r.Z)(n))<0;){var o=(0,i.Z)(n);if("none"!==o.transform||"none"!==o.perspective||"paint"===o.contain||-1!==["transform","perspective"].indexOf(o.willChange)||t&&"filter"===o.willChange||t&&o.filter&&"none"!==o.filter)return n;n=n.parentNode}return null}(e)||t}},2882:function(e,t,n){"use strict";n.d(t,{Z:function(){return s}});var o=n(98),r=n(2021),i=n(8555);function s(e){return"html"===(0,o.Z)(e)?e:e.assignedSlot||e.parentNode||((0,i.Zq)(e)?e.host:null)||(0,r.Z)(e)}},7915:function(e,t,n){"use strict";n.d(t,{Z:function(){return c}});var o=n(2882),r=n(8519),i=n(98),s=n(8555);function c(e){return["html","body","#document"].indexOf((0,i.Z)(e))>=0?e.ownerDocument.body:(0,s.Re)(e)&&(0,r.Z)(e)?e:c((0,o.Z)(e))}},4691:function(e,t,n){"use strict";n.d(t,{Z:function(){return s}});var o=n(3189),r=n(2021),i=n(1051);function s(e){var t=(0,o.Z)(e),n=(0,r.Z)(e),s=t.visualViewport,c=n.clientWidth,a=n.clientHeight,u=0,l=0;return s&&(c=s.width,a=s.height,/^((?!chrome|android).)*safari/i.test(navigator.userAgent)||(u=s.offsetLeft,l=s.offsetTop)),{width:c,height:a,x:u+(0,i.Z)(e),y:l}}},3189:function(e,t,n){"use strict";function o(e){if(null==e)return window;if("[object Window]"!==e.toString()){var t=e.ownerDocument;return t&&t.defaultView||window}return e}n.d(t,{Z:function(){return o}})},5392:function(e,t,n){"use strict";n.d(t,{Z:function(){return r}});var o=n(3189);function r(e){var t=(0,o.Z)(e);return{scrollLeft:t.pageXOffset,scrollTop:t.pageYOffset}}},1051:function(e,t,n){"use strict";n.d(t,{Z:function(){return s}});var o=n(2881),r=n(2021),i=n(5392);function s(e){return(0,o.Z)((0,r.Z)(e)).left+(0,i.Z)(e).scrollLeft}},8555:function(e,t,n){"use strict";n.d(t,{kK:function(){return r},Re:function(){return i},Zq:function(){return s}});var o=n(3189);function r(e){return e instanceof(0,o.Z)(e).Element||e instanceof Element}function i(e){return e instanceof(0,o.Z)(e).HTMLElement||e instanceof HTMLElement}function s(e){return"undefined"!=typeof ShadowRoot&&(e instanceof(0,o.Z)(e).ShadowRoot||e instanceof ShadowRoot)}},8519:function(e,t,n){"use strict";n.d(t,{Z:function(){return r}});var o=n(9546);function r(e){var t=(0,o.Z)(e),n=t.overflow,r=t.overflowX,i=t.overflowY;return/auto|scroll|overlay|hidden/.test(n+i+r)}},1725:function(e,t,n){"use strict";n.d(t,{Z:function(){return r}});var o=n(98);function r(e){return["table","td","th"].indexOf((0,o.Z)(e))>=0}},1119:function(e,t,n){"use strict";n.d(t,{Z:function(){return c}});var o=n(7915),r=n(2882),i=n(3189),s=n(8519);function c(e,t){var n;void 0===t&&(t=[]);var a=(0,o.Z)(e),u=a===(null==(n=e.ownerDocument)?void 0:n.body),l=(0,i.Z)(a),d=u?[l].concat(l.visualViewport||[],(0,s.Z)(a)?a:[]):a,p=t.concat(d);return u?p:p.concat(c((0,r.Z)(d)))}},6166:function(e,t,n){"use strict";n.d(t,{we:function(){return o},I:function(){return r},F2:function(){return i},t$:function(){return s},d7:function(){return c},mv:function(){return a},BL:function(){return u},ut:function(){return l},zV:function(){return d},Pj:function(){return p},k5:function(){return f},YP:function(){return m},bw:function(){return h},Ct:function(){return g},xs:function(){return v}});var o="top",r="bottom",i="right",s="left",c="auto",a=[o,r,i,s],u="start",l="end",d="clippingParents",p="viewport",f="popper",m="reference",h=a.reduce((function(e,t){return e.concat([t+"-"+u,t+"-"+l])}),[]),g=[].concat(a,[c]).reduce((function(e,t){return e.concat([t,t+"-"+u,t+"-"+l])}),[]),v=["beforeRead","read","afterRead","beforeMain","main","afterMain","beforeWrite","write","afterWrite"]},1414:function(e,t,n){"use strict";var o=n(98),r=n(8555);t.Z={name:"applyStyles",enabled:!0,phase:"write",fn:function(e){var t=e.state;Object.keys(t.elements).forEach((function(e){var n=t.styles[e]||{},i=t.attributes[e]||{},s=t.elements[e];(0,r.Re)(s)&&(0,o.Z)(s)&&(Object.assign(s.style,n),Object.keys(i).forEach((function(e){var t=i[e];!1===t?s.removeAttribute(e):s.setAttribute(e,!0===t?"":t)})))}))},effect:function(e){var t=e.state,n={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(t.elements.popper.style,n.popper),t.styles=n,t.elements.arrow&&Object.assign(t.elements.arrow.style,n.arrow),function(){Object.keys(t.elements).forEach((function(e){var i=t.elements[e],s=t.attributes[e]||{},c=Object.keys(t.styles.hasOwnProperty(e)?t.styles[e]:n[e]).reduce((function(e,t){return e[t]="",e}),{});(0,r.Re)(i)&&(0,o.Z)(i)&&(Object.assign(i.style,c),Object.keys(s).forEach((function(e){i.removeAttribute(e)})))}))}},requires:["computeStyles"]}},335:function(e,t,n){"use strict";var o=n(7677),r=n(6249),i=n(5350),s=n(7936),c=n(1505),a=n(964),u=n(6713),l=n(315),d=n(6166);t.Z={name:"arrow",enabled:!0,phase:"main",fn:function(e){var t,n=e.state,i=e.name,p=e.options,f=n.elements.arrow,m=n.modifiersData.popperOffsets,h=(0,o.Z)(n.placement),g=(0,c.Z)(h),v=[d.t$,d.F2].indexOf(h)>=0?"height":"width";if(f&&m){var w=function(e,t){return e="function"==typeof e?e(Object.assign({},t.rects,{placement:t.placement})):e,(0,u.Z)("number"!=typeof e?e:(0,l.Z)(e,d.mv))}(p.padding,n),y=(0,r.Z)(f),b="y"===g?d.we:d.t$,_="y"===g?d.I:d.F2,E=n.rects.reference[v]+n.rects.reference[g]-m[g]-n.rects.popper[v],k=m[g]-n.rects.reference[g],x=(0,s.Z)(f),S=x?"y"===g?x.clientHeight||0:x.clientWidth||0:0,Z=E/2-k/2,C=w[b],O=S-y[v]-w[_],M=S/2-y[v]/2+Z,P=(0,a.Z)(C,M,O),F=g;n.modifiersData[i]=((t={})[F]=P,t.centerOffset=P-M,t)}},effect:function(e){var t=e.state,n=e.options.element,o=void 0===n?"[data-popper-arrow]":n;null!=o&&("string"!=typeof o||(o=t.elements.popper.querySelector(o)))&&(0,i.Z)(t.elements.popper,o)&&(t.elements.arrow=o)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]}},917:function(e,t,n){"use strict";var o=n(6166),r=n(7936),i=n(3189),s=n(2021),c=n(9546),a=n(7677),u=n(4531),l=n(8072),d={top:"auto",right:"auto",bottom:"auto",left:"auto"};function p(e){var t,n=e.popper,a=e.popperRect,u=e.placement,p=e.variation,f=e.offsets,m=e.position,h=e.gpuAcceleration,g=e.adaptive,v=e.roundOffsets,w=!0===v?function(e){var t=e.x,n=e.y,o=window.devicePixelRatio||1;return{x:(0,l.NM)((0,l.NM)(t*o)/o)||0,y:(0,l.NM)((0,l.NM)(n*o)/o)||0}}(f):"function"==typeof v?v(f):f,y=w.x,b=void 0===y?0:y,_=w.y,E=void 0===_?0:_,k=f.hasOwnProperty("x"),x=f.hasOwnProperty("y"),S=o.t$,Z=o.we,C=window;if(g){var O=(0,r.Z)(n),M="clientHeight",P="clientWidth";O===(0,i.Z)(n)&&(O=(0,s.Z)(n),"static"!==(0,c.Z)(O).position&&"absolute"===m&&(M="scrollHeight",P="scrollWidth")),O=O,u!==o.we&&(u!==o.t$&&u!==o.F2||p!==o.ut)||(Z=o.I,E-=O[M]-a.height,E*=h?1:-1),u!==o.t$&&(u!==o.we&&u!==o.I||p!==o.ut)||(S=o.F2,b-=O[P]-a.width,b*=h?1:-1)}var F,L=Object.assign({position:m},g&&d);return h?Object.assign({},L,((F={})[Z]=x?"0":"",F[S]=k?"0":"",F.transform=(C.devicePixelRatio||1)<=1?"translate("+b+"px, "+E+"px)":"translate3d("+b+"px, "+E+"px, 0)",F)):Object.assign({},L,((t={})[Z]=x?E+"px":"",t[S]=k?b+"px":"",t.transform="",t))}t.Z={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(e){var t=e.state,n=e.options,o=n.gpuAcceleration,r=void 0===o||o,i=n.adaptive,s=void 0===i||i,c=n.roundOffsets,l=void 0===c||c,d={placement:(0,a.Z)(t.placement),variation:(0,u.Z)(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:r};null!=t.modifiersData.popperOffsets&&(t.styles.popper=Object.assign({},t.styles.popper,p(Object.assign({},d,{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:s,roundOffsets:l})))),null!=t.modifiersData.arrow&&(t.styles.arrow=Object.assign({},t.styles.arrow,p(Object.assign({},d,{offsets:t.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:l})))),t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-placement":t.placement})},data:{}}},3191:function(e,t,n){"use strict";var o=n(3189),r={passive:!0};t.Z={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(e){var t=e.state,n=e.instance,i=e.options,s=i.scroll,c=void 0===s||s,a=i.resize,u=void 0===a||a,l=(0,o.Z)(t.elements.popper),d=[].concat(t.scrollParents.reference,t.scrollParents.popper);return c&&d.forEach((function(e){e.addEventListener("scroll",n.update,r)})),u&&l.addEventListener("resize",n.update,r),function(){c&&d.forEach((function(e){e.removeEventListener("scroll",n.update,r)})),u&&l.removeEventListener("resize",n.update,r)}},data:{}}},5207:function(e,t,n){"use strict";var o=n(942),r=n(7677),i=n(12),s=n(9356),c=n(7826),a=n(6166),u=n(4531);t.Z={name:"flip",enabled:!0,phase:"main",fn:function(e){var t=e.state,n=e.options,l=e.name;if(!t.modifiersData[l]._skip){for(var d=n.mainAxis,p=void 0===d||d,f=n.altAxis,m=void 0===f||f,h=n.fallbackPlacements,g=n.padding,v=n.boundary,w=n.rootBoundary,y=n.altBoundary,b=n.flipVariations,_=void 0===b||b,E=n.allowedAutoPlacements,k=t.options.placement,x=(0,r.Z)(k),S=h||(x===k||!_?[(0,o.Z)(k)]:function(e){if((0,r.Z)(e)===a.d7)return[];var t=(0,o.Z)(e);return[(0,i.Z)(e),t,(0,i.Z)(t)]}(k)),Z=[k].concat(S).reduce((function(e,n){return e.concat((0,r.Z)(n)===a.d7?(0,c.Z)(t,{placement:n,boundary:v,rootBoundary:w,padding:g,flipVariations:_,allowedAutoPlacements:E}):n)}),[]),C=t.rects.reference,O=t.rects.popper,M=new Map,P=!0,F=Z[0],L=0;L<Z.length;L++){var R=Z[L],N=(0,r.Z)(R),T=(0,u.Z)(R)===a.BL,j=[a.we,a.I].indexOf(N)>=0,A=j?"width":"height",z=(0,s.Z)(t,{placement:R,boundary:v,rootBoundary:w,altBoundary:y,padding:g}),W=j?T?a.F2:a.t$:T?a.I:a.we;C[A]>O[A]&&(W=(0,o.Z)(W));var I=(0,o.Z)(W),G=[];if(p&&G.push(z[N]<=0),m&&G.push(z[W]<=0,z[I]<=0),G.every((function(e){return e}))){F=R,P=!1;break}M.set(R,G)}if(P)for(var D=function(e){var t=Z.find((function(t){var n=M.get(t);if(n)return n.slice(0,e).every((function(e){return e}))}));if(t)return F=t,"break"},B=_?3:1;B>0;B--){if("break"===D(B))break}t.placement!==F&&(t.modifiersData[l]._skip=!0,t.placement=F,t.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}}},2883:function(e,t,n){"use strict";var o=n(6166),r=n(9356);function i(e,t,n){return void 0===n&&(n={x:0,y:0}),{top:e.top-t.height-n.y,right:e.right-t.width+n.x,bottom:e.bottom-t.height+n.y,left:e.left-t.width-n.x}}function s(e){return[o.we,o.F2,o.I,o.t$].some((function(t){return e[t]>=0}))}t.Z={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(e){var t=e.state,n=e.name,o=t.rects.reference,c=t.rects.popper,a=t.modifiersData.preventOverflow,u=(0,r.Z)(t,{elementContext:"reference"}),l=(0,r.Z)(t,{altBoundary:!0}),d=i(u,o),p=i(l,c,a),f=s(d),m=s(p);t.modifiersData[n]={referenceClippingOffsets:d,popperEscapeOffsets:p,isReferenceHidden:f,hasPopperEscaped:m},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":f,"data-popper-escaped":m})}}},3108:function(e,t,n){"use strict";var o=n(7677),r=n(6166);t.Z={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(e){var t=e.state,n=e.options,i=e.name,s=n.offset,c=void 0===s?[0,0]:s,a=r.Ct.reduce((function(e,n){return e[n]=function(e,t,n){var i=(0,o.Z)(e),s=[r.t$,r.we].indexOf(i)>=0?-1:1,c="function"==typeof n?n(Object.assign({},t,{placement:e})):n,a=c[0],u=c[1];return a=a||0,u=(u||0)*s,[r.t$,r.F2].indexOf(i)>=0?{x:u,y:a}:{x:a,y:u}}(n,t.rects,c),e}),{}),u=a[t.placement],l=u.x,d=u.y;null!=t.modifiersData.popperOffsets&&(t.modifiersData.popperOffsets.x+=l,t.modifiersData.popperOffsets.y+=d),t.modifiersData[i]=a}}},5435:function(e,t,n){"use strict";var o=n(6919);t.Z={name:"popperOffsets",enabled:!0,phase:"read",fn:function(e){var t=e.state,n=e.name;t.modifiersData[n]=(0,o.Z)({reference:t.rects.reference,element:t.rects.popper,strategy:"absolute",placement:t.placement})},data:{}}},6998:function(e,t,n){"use strict";var o=n(6166),r=n(7677),i=n(1505),s=n(5754),c=n(964),a=n(6249),u=n(7936),l=n(9356),d=n(4531),p=n(3046),f=n(8072);t.Z={name:"preventOverflow",enabled:!0,phase:"main",fn:function(e){var t=e.state,n=e.options,m=e.name,h=n.mainAxis,g=void 0===h||h,v=n.altAxis,w=void 0!==v&&v,y=n.boundary,b=n.rootBoundary,_=n.altBoundary,E=n.padding,k=n.tether,x=void 0===k||k,S=n.tetherOffset,Z=void 0===S?0:S,C=(0,l.Z)(t,{boundary:y,rootBoundary:b,padding:E,altBoundary:_}),O=(0,r.Z)(t.placement),M=(0,d.Z)(t.placement),P=!M,F=(0,i.Z)(O),L=(0,s.Z)(F),R=t.modifiersData.popperOffsets,N=t.rects.reference,T=t.rects.popper,j="function"==typeof Z?Z(Object.assign({},t.rects,{placement:t.placement})):Z,A={x:0,y:0};if(R){if(g||w){var z="y"===F?o.we:o.t$,W="y"===F?o.I:o.F2,I="y"===F?"height":"width",G=R[F],D=R[F]+C[z],B=R[F]-C[W],U=x?-T[I]/2:0,$=M===o.BL?N[I]:T[I],H=M===o.BL?-T[I]:-N[I],V=t.elements.arrow,q=x&&V?(0,a.Z)(V):{width:0,height:0},Y=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:(0,p.Z)(),K=Y[z],X=Y[W],J=(0,c.Z)(0,N[I],q[I]),Q=P?N[I]/2-U-J-K-j:$-J-K-j,ee=P?-N[I]/2+U+J+X+j:H+J+X+j,te=t.elements.arrow&&(0,u.Z)(t.elements.arrow),ne=te?"y"===F?te.clientTop||0:te.clientLeft||0:0,oe=t.modifiersData.offset?t.modifiersData.offset[t.placement][F]:0,re=R[F]+Q-oe-ne,ie=R[F]+ee-oe;if(g){var se=(0,c.Z)(x?(0,f.VV)(D,re):D,G,x?(0,f.Fp)(B,ie):B);R[F]=se,A[F]=se-G}if(w){var ce="x"===F?o.we:o.t$,ae="x"===F?o.I:o.F2,ue=R[L],le=ue+C[ce],de=ue-C[ae],pe=(0,c.Z)(x?(0,f.VV)(le,re):le,ue,x?(0,f.Fp)(de,ie):de);R[L]=pe,A[L]=pe-ue}}t.modifiersData[m]=A}},requiresIfExists:["offset"]}},7295:function(e,t,n){"use strict";n.d(t,{fi:function(){return m}});var o=n(7566),r=n(3191),i=n(5435),s=n(917),c=n(1414),a=n(3108),u=n(5207),l=n(6998),d=n(335),p=n(2883),f=[r.Z,i.Z,s.Z,c.Z,a.Z,u.Z,l.Z,d.Z,p.Z],m=(0,o.kZ)({defaultModifiers:f})},7826:function(e,t,n){"use strict";n.d(t,{Z:function(){return c}});var o=n(4531),r=n(6166),i=n(9356),s=n(7677);function c(e,t){void 0===t&&(t={});var n=t,c=n.placement,a=n.boundary,u=n.rootBoundary,l=n.padding,d=n.flipVariations,p=n.allowedAutoPlacements,f=void 0===p?r.Ct:p,m=(0,o.Z)(c),h=m?d?r.bw:r.bw.filter((function(e){return(0,o.Z)(e)===m})):r.mv,g=h.filter((function(e){return f.indexOf(e)>=0}));0===g.length&&(g=h);var v=g.reduce((function(t,n){return t[n]=(0,i.Z)(e,{placement:n,boundary:a,rootBoundary:u,padding:l})[(0,s.Z)(n)],t}),{});return Object.keys(v).sort((function(e,t){return v[e]-v[t]}))}},6919:function(e,t,n){"use strict";n.d(t,{Z:function(){return c}});var o=n(7677),r=n(4531),i=n(1505),s=n(6166);function c(e){var t,n=e.reference,c=e.element,a=e.placement,u=a?(0,o.Z)(a):null,l=a?(0,r.Z)(a):null,d=n.x+n.width/2-c.width/2,p=n.y+n.height/2-c.height/2;switch(u){case s.we:t={x:d,y:n.y-c.height};break;case s.I:t={x:d,y:n.y+n.height};break;case s.F2:t={x:n.x+n.width,y:p};break;case s.t$:t={x:n.x-c.width,y:p};break;default:t={x:n.x,y:n.y}}var f=u?(0,i.Z)(u):null;if(null!=f){var m="y"===f?"height":"width";switch(l){case s.BL:t[f]=t[f]-(n[m]/2-c[m]/2);break;case s.ut:t[f]=t[f]+(n[m]/2-c[m]/2)}}return t}},4806:function(e,t,n){"use strict";function o(e){var t;return function(){return t||(t=new Promise((function(n){Promise.resolve().then((function(){t=void 0,n(e())}))}))),t}}n.d(t,{Z:function(){return o}})},9356:function(e,t,n){"use strict";n.d(t,{Z:function(){return p}});var o=n(889),r=n(2021),i=n(2881),s=n(6919),c=n(7365),a=n(6166),u=n(8555),l=n(6713),d=n(315);function p(e,t){void 0===t&&(t={});var n=t,p=n.placement,f=void 0===p?e.placement:p,m=n.boundary,h=void 0===m?a.zV:m,g=n.rootBoundary,v=void 0===g?a.Pj:g,w=n.elementContext,y=void 0===w?a.k5:w,b=n.altBoundary,_=void 0!==b&&b,E=n.padding,k=void 0===E?0:E,x=(0,l.Z)("number"!=typeof k?k:(0,d.Z)(k,a.mv)),S=y===a.k5?a.YP:a.k5,Z=e.rects.popper,C=e.elements[_?S:y],O=(0,o.Z)((0,u.kK)(C)?C:C.contextElement||(0,r.Z)(e.elements.popper),h,v),M=(0,i.Z)(e.elements.reference),P=(0,s.Z)({reference:M,element:Z,strategy:"absolute",placement:f}),F=(0,c.Z)(Object.assign({},Z,P)),L=y===a.k5?F:M,R={top:O.top-L.top+x.top,bottom:L.bottom-O.bottom+x.bottom,left:O.left-L.left+x.left,right:L.right-O.right+x.right},N=e.modifiersData.offset;if(y===a.k5&&N){var T=N[f];Object.keys(R).forEach((function(e){var t=[a.F2,a.I].indexOf(e)>=0?1:-1,n=[a.we,a.I].indexOf(e)>=0?"y":"x";R[e]+=T[n]*t}))}return R}},315:function(e,t,n){"use strict";function o(e,t){return t.reduce((function(t,n){return t[n]=e,t}),{})}n.d(t,{Z:function(){return o}})},5754:function(e,t,n){"use strict";function o(e){return"x"===e?"y":"x"}n.d(t,{Z:function(){return o}})},7677:function(e,t,n){"use strict";function o(e){return e.split("-")[0]}n.d(t,{Z:function(){return o}})},3046:function(e,t,n){"use strict";function o(){return{top:0,right:0,bottom:0,left:0}}n.d(t,{Z:function(){return o}})},1505:function(e,t,n){"use strict";function o(e){return["top","bottom"].indexOf(e)>=0?"x":"y"}n.d(t,{Z:function(){return o}})},942:function(e,t,n){"use strict";n.d(t,{Z:function(){return r}});var o={left:"right",right:"left",bottom:"top",top:"bottom"};function r(e){return e.replace(/left|right|bottom|top/g,(function(e){return o[e]}))}},12:function(e,t,n){"use strict";n.d(t,{Z:function(){return r}});var o={start:"end",end:"start"};function r(e){return e.replace(/start|end/g,(function(e){return o[e]}))}},4531:function(e,t,n){"use strict";function o(e){return e.split("-")[1]}n.d(t,{Z:function(){return o}})},8072:function(e,t,n){"use strict";n.d(t,{Fp:function(){return o},VV:function(){return r},NM:function(){return i}});var o=Math.max,r=Math.min,i=Math.round},3352:function(e,t,n){"use strict";function o(e){var t=e.reduce((function(e,t){var n=e[t.name];return e[t.name]=n?Object.assign({},n,t,{options:Object.assign({},n.options,t.options),data:Object.assign({},n.data,t.data)}):t,e}),{});return Object.keys(t).map((function(e){return t[e]}))}n.d(t,{Z:function(){return o}})},6713:function(e,t,n){"use strict";n.d(t,{Z:function(){return r}});var o=n(3046);function r(e){return Object.assign({},(0,o.Z)(),e)}},421:function(e,t,n){"use strict";n.d(t,{Z:function(){return i}});var o=n(6166);function r(e){var t=new Map,n=new Set,o=[];function r(e){n.add(e.name),[].concat(e.requires||[],e.requiresIfExists||[]).forEach((function(e){if(!n.has(e)){var o=t.get(e);o&&r(o)}})),o.push(e)}return e.forEach((function(e){t.set(e.name,e)})),e.forEach((function(e){n.has(e.name)||r(e)})),o}function i(e){var t=r(e);return o.xs.reduce((function(e,n){return e.concat(t.filter((function(e){return e.phase===n})))}),[])}},7365:function(e,t,n){"use strict";function o(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}n.d(t,{Z:function(){return o}})},964:function(e,t,n){"use strict";n.d(t,{Z:function(){return r}});var o=n(8072);function r(e,t,n){return(0,o.Fp)(e,(0,o.VV)(t,n))}},5869:function(e,t,n){"use strict";var o=n(9307);t.Z=function(e){let{icon:t,size:n=24,...r}=e;return(0,o.cloneElement)(t,{width:n,height:n,...r})}},8565:function(e,t,n){"use strict";var o=n(9307),r=n(444);const i=(0,o.createElement)(r.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)(r.Path,{d:"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z"}));t.Z=i},2779:function(e,t){var n;
|
2 |
/*!
|
3 |
Copyright (c) 2018 Jed Watson.
|
4 |
Licensed under the MIT License (MIT), see
|
5 |
http://jedwatson.github.io/classnames
|
6 |
+
*/!function(){"use strict";var o={}.hasOwnProperty;function r(){for(var e=[],t=0;t<arguments.length;t++){var n=arguments[t];if(n){var i=typeof n;if("string"===i||"number"===i)e.push(n);else if(Array.isArray(n)){if(n.length){var s=r.apply(null,n);s&&e.push(s)}}else if("object"===i)if(n.toString===Object.prototype.toString)for(var c in n)o.call(n,c)&&n[c]&&e.push(c);else e.push(n.toString())}}return e.join(" ")}e.exports?(r.default=r,e.exports=r):void 0===(n=function(){return r}.apply(t,[]))||(e.exports=n)}()},3421:function(e,t){"use strict";var n=decodeURIComponent,o=encodeURIComponent,r=/; */,i=/^[\u0009\u0020-\u007e\u0080-\u00ff]+$/;function s(e,t){try{return t(e)}catch(n){return e}}},2699:function(e){"use strict";var t,n="object"==typeof Reflect?Reflect:null,o=n&&"function"==typeof n.apply?n.apply:function(e,t,n){return Function.prototype.apply.call(e,t,n)};t=n&&"function"==typeof n.ownKeys?n.ownKeys:Object.getOwnPropertySymbols?function(e){return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols(e))}:function(e){return Object.getOwnPropertyNames(e)};var r=Number.isNaN||function(e){return e!=e};function i(){i.init.call(this)}e.exports=i,e.exports.once=function(e,t){return new Promise((function(n,o){function r(){void 0!==i&&e.removeListener("error",i),n([].slice.call(arguments))}var i;"error"!==t&&(i=function(n){e.removeListener(t,r),o(n)},e.once("error",i)),e.once(t,r)}))},i.EventEmitter=i,i.prototype._events=void 0,i.prototype._eventsCount=0,i.prototype._maxListeners=void 0;var s=10;function c(e){if("function"!=typeof e)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof e)}function a(e){return void 0===e._maxListeners?i.defaultMaxListeners:e._maxListeners}function u(e,t,n,o){var r,i,s,u;if(c(n),void 0===(i=e._events)?(i=e._events=Object.create(null),e._eventsCount=0):(void 0!==i.newListener&&(e.emit("newListener",t,n.listener?n.listener:n),i=e._events),s=i[t]),void 0===s)s=i[t]=n,++e._eventsCount;else if("function"==typeof s?s=i[t]=o?[n,s]:[s,n]:o?s.unshift(n):s.push(n),(r=a(e))>0&&s.length>r&&!s.warned){s.warned=!0;var l=new Error("Possible EventEmitter memory leak detected. "+s.length+" "+String(t)+" listeners added. Use emitter.setMaxListeners() to increase limit");l.name="MaxListenersExceededWarning",l.emitter=e,l.type=t,l.count=s.length,u=l,console&&console.warn&&console.warn(u)}return e}function l(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function d(e,t,n){var o={fired:!1,wrapFn:void 0,target:e,type:t,listener:n},r=l.bind(o);return r.listener=n,o.wrapFn=r,r}function p(e,t,n){var o=e._events;if(void 0===o)return[];var r=o[t];return void 0===r?[]:"function"==typeof r?n?[r.listener||r]:[r]:n?function(e){for(var t=new Array(e.length),n=0;n<t.length;++n)t[n]=e[n].listener||e[n];return t}(r):m(r,r.length)}function f(e){var t=this._events;if(void 0!==t){var n=t[e];if("function"==typeof n)return 1;if(void 0!==n)return n.length}return 0}function m(e,t){for(var n=new Array(t),o=0;o<t;++o)n[o]=e[o];return n}Object.defineProperty(i,"defaultMaxListeners",{enumerable:!0,get:function(){return s},set:function(e){if("number"!=typeof e||e<0||r(e))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+e+".");s=e}}),i.init=function(){void 0!==this._events&&this._events!==Object.getPrototypeOf(this)._events||(this._events=Object.create(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0},i.prototype.setMaxListeners=function(e){if("number"!=typeof e||e<0||r(e))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+e+".");return this._maxListeners=e,this},i.prototype.getMaxListeners=function(){return a(this)},i.prototype.emit=function(e){for(var t=[],n=1;n<arguments.length;n++)t.push(arguments[n]);var r="error"===e,i=this._events;if(void 0!==i)r=r&&void 0===i.error;else if(!r)return!1;if(r){var s;if(t.length>0&&(s=t[0]),s instanceof Error)throw s;var c=new Error("Unhandled error."+(s?" ("+s.message+")":""));throw c.context=s,c}var a=i[e];if(void 0===a)return!1;if("function"==typeof a)o(a,this,t);else{var u=a.length,l=m(a,u);for(n=0;n<u;++n)o(l[n],this,t)}return!0},i.prototype.addListener=function(e,t){return u(this,e,t,!1)},i.prototype.on=i.prototype.addListener,i.prototype.prependListener=function(e,t){return u(this,e,t,!0)},i.prototype.once=function(e,t){return c(t),this.on(e,d(this,e,t)),this},i.prototype.prependOnceListener=function(e,t){return c(t),this.prependListener(e,d(this,e,t)),this},i.prototype.removeListener=function(e,t){var n,o,r,i,s;if(c(t),void 0===(o=this._events))return this;if(void 0===(n=o[e]))return this;if(n===t||n.listener===t)0==--this._eventsCount?this._events=Object.create(null):(delete o[e],o.removeListener&&this.emit("removeListener",e,n.listener||t));else if("function"!=typeof n){for(r=-1,i=n.length-1;i>=0;i--)if(n[i]===t||n[i].listener===t){s=n[i].listener,r=i;break}if(r<0)return this;0===r?n.shift():function(e,t){for(;t+1<e.length;t++)e[t]=e[t+1];e.pop()}(n,r),1===n.length&&(o[e]=n[0]),void 0!==o.removeListener&&this.emit("removeListener",e,s||t)}return this},i.prototype.off=i.prototype.removeListener,i.prototype.removeAllListeners=function(e){var t,n,o;if(void 0===(n=this._events))return this;if(void 0===n.removeListener)return 0===arguments.length?(this._events=Object.create(null),this._eventsCount=0):void 0!==n[e]&&(0==--this._eventsCount?this._events=Object.create(null):delete n[e]),this;if(0===arguments.length){var r,i=Object.keys(n);for(o=0;o<i.length;++o)"removeListener"!==(r=i[o])&&this.removeAllListeners(r);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if("function"==typeof(t=n[e]))this.removeListener(e,t);else if(void 0!==t)for(o=t.length-1;o>=0;o--)this.removeListener(e,t[o]);return this},i.prototype.listeners=function(e){return p(this,e,!0)},i.prototype.rawListeners=function(e){return p(this,e,!1)},i.listenerCount=function(e,t){return"function"==typeof e.listenerCount?e.listenerCount(t):f.call(e,t)},i.prototype.listenerCount=f,i.prototype.eventNames=function(){return this._eventsCount>0?t(this._events):[]}},4495:function(e,t,n){"use strict";var o=n(212),r=n(9561);function i(){this.pending=null,this.pendingTotal=0,this.blockSize=this.constructor.blockSize,this.outSize=this.constructor.outSize,this.hmacStrength=this.constructor.hmacStrength,this.padLength=this.constructor.padLength/8,this.endian="big",this._delta8=this.blockSize/8,this._delta32=this.blockSize/32}t.BlockHash=i,i.prototype.update=function(e,t){if(e=o.toArray(e,t),this.pending?this.pending=this.pending.concat(e):this.pending=e,this.pendingTotal+=e.length,this.pending.length>=this._delta8){var n=(e=this.pending).length%this._delta8;this.pending=e.slice(e.length-n,e.length),0===this.pending.length&&(this.pending=null),e=o.join32(e,0,e.length-n,this.endian);for(var r=0;r<e.length;r+=this._delta32)this._update(e,r,r+this._delta32)}return this},i.prototype.digest=function(e){return this.update(this._pad()),r(null===this.pending),this._digest(e)},i.prototype._pad=function(){var e=this.pendingTotal,t=this._delta8,n=t-(e+this.padLength)%t,o=new Array(n+this.padLength);o[0]=128;for(var r=1;r<n;r++)o[r]=0;if(e<<=3,"big"===this.endian){for(var i=8;i<this.padLength;i++)o[r++]=0;o[r++]=0,o[r++]=0,o[r++]=0,o[r++]=0,o[r++]=e>>>24&255,o[r++]=e>>>16&255,o[r++]=e>>>8&255,o[r++]=255&e}else for(o[r++]=255&e,o[r++]=e>>>8&255,o[r++]=e>>>16&255,o[r++]=e>>>24&255,o[r++]=0,o[r++]=0,o[r++]=0,o[r++]=0,i=8;i<this.padLength;i++)o[r++]=0;return o}},8032:function(e,t,n){"use strict";var o=n(212),r=n(4495),i=n(713),s=n(9561),c=o.sum32,a=o.sum32_4,u=o.sum32_5,l=i.ch32,d=i.maj32,p=i.s0_256,f=i.s1_256,m=i.g0_256,h=i.g1_256,g=r.BlockHash,v=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298];function w(){if(!(this instanceof w))return new w;g.call(this),this.h=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],this.k=v,this.W=new Array(64)}o.inherits(w,g),e.exports=w,w.blockSize=512,w.outSize=256,w.hmacStrength=192,w.padLength=64,w.prototype._update=function(e,t){for(var n=this.W,o=0;o<16;o++)n[o]=e[t+o];for(;o<n.length;o++)n[o]=a(h(n[o-2]),n[o-7],m(n[o-15]),n[o-16]);var r=this.h[0],i=this.h[1],g=this.h[2],v=this.h[3],w=this.h[4],y=this.h[5],b=this.h[6],_=this.h[7];for(s(this.k.length===n.length),o=0;o<n.length;o++){var E=u(_,f(w),l(w,y,b),this.k[o],n[o]),k=c(p(r),d(r,i,g));_=b,b=y,y=w,w=c(v,E),v=g,g=i,i=r,r=c(E,k)}this.h[0]=c(this.h[0],r),this.h[1]=c(this.h[1],i),this.h[2]=c(this.h[2],g),this.h[3]=c(this.h[3],v),this.h[4]=c(this.h[4],w),this.h[5]=c(this.h[5],y),this.h[6]=c(this.h[6],b),this.h[7]=c(this.h[7],_)},w.prototype._digest=function(e){return"hex"===e?o.toHex32(this.h,"big"):o.split32(this.h,"big")}},713:function(e,t,n){"use strict";var o=n(212).rotr32;function r(e,t,n){return e&t^~e&n}function i(e,t,n){return e&t^e&n^t&n}function s(e,t,n){return e^t^n}t.ft_1=function(e,t,n,o){return 0===e?r(t,n,o):1===e||3===e?s(t,n,o):2===e?i(t,n,o):void 0},t.ch32=r,t.maj32=i,t.p32=s,t.s0_256=function(e){return o(e,2)^o(e,13)^o(e,22)},t.s1_256=function(e){return o(e,6)^o(e,11)^o(e,25)},t.g0_256=function(e){return o(e,7)^o(e,18)^e>>>3},t.g1_256=function(e){return o(e,17)^o(e,19)^e>>>10}},212:function(e,t,n){"use strict";var o=n(9561),r=n(1285);function i(e,t){return 55296==(64512&e.charCodeAt(t))&&(!(t<0||t+1>=e.length)&&56320==(64512&e.charCodeAt(t+1)))}function s(e){return(e>>>24|e>>>8&65280|e<<8&16711680|(255&e)<<24)>>>0}function c(e){return 1===e.length?"0"+e:e}function a(e){return 7===e.length?"0"+e:6===e.length?"00"+e:5===e.length?"000"+e:4===e.length?"0000"+e:3===e.length?"00000"+e:2===e.length?"000000"+e:1===e.length?"0000000"+e:e}t.inherits=r,t.toArray=function(e,t){if(Array.isArray(e))return e.slice();if(!e)return[];var n=[];if("string"==typeof e)if(t){if("hex"===t)for((e=e.replace(/[^a-z0-9]+/gi,"")).length%2!=0&&(e="0"+e),r=0;r<e.length;r+=2)n.push(parseInt(e[r]+e[r+1],16))}else for(var o=0,r=0;r<e.length;r++){var s=e.charCodeAt(r);s<128?n[o++]=s:s<2048?(n[o++]=s>>6|192,n[o++]=63&s|128):i(e,r)?(s=65536+((1023&s)<<10)+(1023&e.charCodeAt(++r)),n[o++]=s>>18|240,n[o++]=s>>12&63|128,n[o++]=s>>6&63|128,n[o++]=63&s|128):(n[o++]=s>>12|224,n[o++]=s>>6&63|128,n[o++]=63&s|128)}else for(r=0;r<e.length;r++)n[r]=0|e[r];return n},t.toHex=function(e){for(var t="",n=0;n<e.length;n++)t+=c(e[n].toString(16));return t},t.htonl=s,t.toHex32=function(e,t){for(var n="",o=0;o<e.length;o++){var r=e[o];"little"===t&&(r=s(r)),n+=a(r.toString(16))}return n},t.zero2=c,t.zero8=a,t.join32=function(e,t,n,r){var i=n-t;o(i%4==0);for(var s=new Array(i/4),c=0,a=t;c<s.length;c++,a+=4){var u;u="big"===r?e[a]<<24|e[a+1]<<16|e[a+2]<<8|e[a+3]:e[a+3]<<24|e[a+2]<<16|e[a+1]<<8|e[a],s[c]=u>>>0}return s},t.split32=function(e,t){for(var n=new Array(4*e.length),o=0,r=0;o<e.length;o++,r+=4){var i=e[o];"big"===t?(n[r]=i>>>24,n[r+1]=i>>>16&255,n[r+2]=i>>>8&255,n[r+3]=255&i):(n[r+3]=i>>>24,n[r+2]=i>>>16&255,n[r+1]=i>>>8&255,n[r]=255&i)}return n},t.rotr32=function(e,t){return e>>>t|e<<32-t},t.rotl32=function(e,t){return e<<t|e>>>32-t},t.sum32=function(e,t){return e+t>>>0},t.sum32_3=function(e,t,n){return e+t+n>>>0},t.sum32_4=function(e,t,n,o){return e+t+n+o>>>0},t.sum32_5=function(e,t,n,o,r){return e+t+n+o+r>>>0},t.sum64=function(e,t,n,o){var r=e[t],i=o+e[t+1]>>>0,s=(i<o?1:0)+n+r;e[t]=s>>>0,e[t+1]=i},t.sum64_hi=function(e,t,n,o){return(t+o>>>0<t?1:0)+e+n>>>0},t.sum64_lo=function(e,t,n,o){return t+o>>>0},t.sum64_4_hi=function(e,t,n,o,r,i,s,c){var a=0,u=t;return a+=(u=u+o>>>0)<t?1:0,a+=(u=u+i>>>0)<i?1:0,e+n+r+s+(a+=(u=u+c>>>0)<c?1:0)>>>0},t.sum64_4_lo=function(e,t,n,o,r,i,s,c){return t+o+i+c>>>0},t.sum64_5_hi=function(e,t,n,o,r,i,s,c,a,u){var l=0,d=t;return l+=(d=d+o>>>0)<t?1:0,l+=(d=d+i>>>0)<i?1:0,l+=(d=d+c>>>0)<c?1:0,e+n+r+s+a+(l+=(d=d+u>>>0)<u?1:0)>>>0},t.sum64_5_lo=function(e,t,n,o,r,i,s,c,a,u){return t+o+i+c+u>>>0},t.rotr64_hi=function(e,t,n){return(t<<32-n|e>>>n)>>>0},t.rotr64_lo=function(e,t,n){return(e<<32-n|t>>>n)>>>0},t.shr64_hi=function(e,t,n){return e>>>n},t.shr64_lo=function(e,t,n){return(e<<32-n|t>>>n)>>>0}},1285:function(e){"function"==typeof Object.create?e.exports=function(e,t){t&&(e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}))}:e.exports=function(e,t){if(t){e.super_=t;var n=function(){};n.prototype=t.prototype,e.prototype=new n,e.prototype.constructor=e}}},3186:function(){},8005:function(){},5773:function(){},4373:function(){},7777:function(){},7710:function(){},2014:function(){},6372:function(){},4422:function(){},9561:function(e){function t(e,t){if(!e)throw new Error(t||"Assertion failed")}e.exports=t,t.equal=function(e,t,n){if(e!=t)throw new Error(n||"Assertion failed: "+e+" != "+t)}},1378:function(e){var t=1e3,n=60*t,o=60*n,r=24*o,i=7*r,s=365.25*r;function c(e,t,n,o){var r=t>=1.5*n;return Math.round(e/n)+" "+o+(r?"s":"")}e.exports=function(e,a){a=a||{};var u=typeof e;if("string"===u&&e.length>0)return function(e){if((e=String(e)).length>100)return;var c=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(e);if(!c)return;var a=parseFloat(c[1]);switch((c[2]||"ms").toLowerCase()){case"years":case"year":case"yrs":case"yr":case"y":return a*s;case"weeks":case"week":case"w":return a*i;case"days":case"day":case"d":return a*r;case"hours":case"hour":case"hrs":case"hr":case"h":return a*o;case"minutes":case"minute":case"mins":case"min":case"m":return a*n;case"seconds":case"second":case"secs":case"sec":case"s":return a*t;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return a;default:return}}(e);if("number"===u&&isFinite(e))return a.long?function(e){var i=Math.abs(e);if(i>=r)return c(e,i,r,"day");if(i>=o)return c(e,i,o,"hour");if(i>=n)return c(e,i,n,"minute");if(i>=t)return c(e,i,t,"second");return e+" ms"}(e):function(e){var i=Math.abs(e);if(i>=r)return Math.round(e/r)+"d";if(i>=o)return Math.round(e/o)+"h";if(i>=n)return Math.round(e/n)+"m";if(i>=t)return Math.round(e/t)+"s";return e+"ms"}(e);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(e))}},8435:function(e){var t="undefined"!=typeof Element,n="function"==typeof Map,o="function"==typeof Set,r="function"==typeof ArrayBuffer&&!!ArrayBuffer.isView;function i(e,s){if(e===s)return!0;if(e&&s&&"object"==typeof e&&"object"==typeof s){if(e.constructor!==s.constructor)return!1;var c,a,u,l;if(Array.isArray(e)){if((c=e.length)!=s.length)return!1;for(a=c;0!=a--;)if(!i(e[a],s[a]))return!1;return!0}if(n&&e instanceof Map&&s instanceof Map){if(e.size!==s.size)return!1;for(l=e.entries();!(a=l.next()).done;)if(!s.has(a.value[0]))return!1;for(l=e.entries();!(a=l.next()).done;)if(!i(a.value[1],s.get(a.value[0])))return!1;return!0}if(o&&e instanceof Set&&s instanceof Set){if(e.size!==s.size)return!1;for(l=e.entries();!(a=l.next()).done;)if(!s.has(a.value[0]))return!1;return!0}if(r&&ArrayBuffer.isView(e)&&ArrayBuffer.isView(s)){if((c=e.length)!=s.length)return!1;for(a=c;0!=a--;)if(e[a]!==s[a])return!1;return!0}if(e.constructor===RegExp)return e.source===s.source&&e.flags===s.flags;if(e.valueOf!==Object.prototype.valueOf)return e.valueOf()===s.valueOf();if(e.toString!==Object.prototype.toString)return e.toString()===s.toString();if((c=(u=Object.keys(e)).length)!==Object.keys(s).length)return!1;for(a=c;0!=a--;)if(!Object.prototype.hasOwnProperty.call(s,u[a]))return!1;if(t&&e instanceof Element)return!1;for(a=c;0!=a--;)if(("_owner"!==u[a]&&"__v"!==u[a]&&"__o"!==u[a]||!e.$$typeof)&&!i(e[u[a]],s[u[a]]))return!1;return!0}return e!=e&&s!=s}e.exports=function(e,t){try{return i(e,t)}catch(n){if((n.message||"").match(/stack|recursion/i))return console.warn("react-fast-compare cannot handle circular refs"),!1;throw n}}},6194:function(e,t,n){"use strict";n.d(t,{D:function(){return u}});var o=n(9196),r=n(7295),i=n(8435),s=n.n(i),c=n(855),a=[],u=function(e,t,n){void 0===n&&(n={});var i=o.useRef(null),u={onFirstUpdate:n.onFirstUpdate,placement:n.placement||"bottom",strategy:n.strategy||"absolute",modifiers:n.modifiers||a},l=o.useState({styles:{popper:{position:u.strategy,left:"0",top:"0"},arrow:{position:"absolute"}},attributes:{}}),d=l[0],p=l[1],f=o.useMemo((function(){return{name:"updateState",enabled:!0,phase:"write",fn:function(e){var t=e.state,n=Object.keys(t.elements);p({styles:(0,c.sq)(n.map((function(e){return[e,t.styles[e]||{}]}))),attributes:(0,c.sq)(n.map((function(e){return[e,t.attributes[e]]})))})},requires:["computeStyles"]}}),[]),m=o.useMemo((function(){var e={onFirstUpdate:u.onFirstUpdate,placement:u.placement,strategy:u.strategy,modifiers:[].concat(u.modifiers,[f,{name:"applyStyles",enabled:!1}])};return s()(i.current,e)?i.current||e:(i.current=e,e)}),[u.onFirstUpdate,u.placement,u.strategy,u.modifiers,f]),h=o.useRef();return(0,c.LI)((function(){h.current&&h.current.setOptions(m)}),[m]),(0,c.LI)((function(){if(null!=e&&null!=t){var o=(n.createPopper||r.fi)(e,t,m);return h.current=o,function(){o.destroy(),h.current=null}}}),[e,t,n.createPopper]),{state:h.current?h.current.state:null,styles:d.styles,attributes:d.attributes,update:h.current?h.current.update:null,forceUpdate:h.current?h.current.forceUpdate:null}}},855:function(e,t,n){"use strict";n.d(t,{sq:function(){return r},LI:function(){return i}});var o=n(9196),r=function(e){return e.reduce((function(e,t){var n=t[0],o=t[1];return e[n]=o,e}),{})},i="undefined"!=typeof window&&window.document&&window.document.createElement?o.useLayoutEffect:o.useEffect},3133:function(e,t,n){"use strict";var o=n(6989),r=n.n(o),i=n(9307);t.Z=()=>{const[e,t]=(0,i.useState)("");return(0,i.useEffect)((()=>{r()({path:"/wpcom/v2/block-editor/has-seen-seller-celebration-modal"}).then((e=>t(e.has_seen_seller_celebration_modal))).catch((()=>t(!1)))})),{hasSeenSellerCelebrationModal:e,updateHasSeenSellerCelebrationModal:function(e){r()({method:"PUT",path:"/wpcom/v2/block-editor/has-seen-seller-celebration-modal",data:{has_seen_seller_celebration_modal:e}}).finally((()=>{t(e)}))}}}},5262:function(e,t,n){"use strict";var o=n(6989),r=n.n(o),i=n(9307);t.Z=()=>{const[e,t]=(0,i.useState)(""),n=(0,i.useCallback)((()=>{r()({path:"/wpcom/v2/site-intent"}).then((e=>t(e.site_intent))).catch((()=>t("")))}),[]);return(0,i.useEffect)((()=>{n()}),[n]),e}},7869:function(e,t,n){"use strict";var o=n(9307),r=(n(3945),n(849)),i=n(4655),s=n(5609),c=n(9818),a=n(8817),u=n(6483),l=n(3867),d=n(9935),p=n(1258),f=n(1970),m=n(374),h=n(7203);function g(){var e;const[t]=(0,o.useState)((0,u.getQueryArg)(window.location.href,"showDraftPostModal")),{show:n,isLoaded:a,variant:d,isManuallyOpened:p,isNewPageLayoutModalOpen:g}=(0,c.useSelect)((e=>{const t=e("automattic/wpcom-welcome-guide"),n=e("automattic/starter-page-layouts");return{show:t.isWelcomeGuideShown(),isLoaded:t.isWelcomeGuideStatusLoaded(),variant:t.getWelcomeGuideVariant(),isManuallyOpened:t.isWelcomeGuideManuallyOpened(),isNewPageLayoutModalOpen:null==n?void 0:n.isOpen()}}),[]),v=null===(e=(0,c.useDispatch)("automattic/starter-page-layouts"))||void 0===e?void 0:e.setOpenState,{fetchWelcomeGuideStatus:w}=(0,c.useDispatch)("automattic/wpcom-welcome-guide");return(0,o.useEffect)((()=>{a||w()}),[w,a]),!n||g?null:d===f.yn&&!p&&v?(v("OPEN_FOR_BLANK_CANVAS"),null):d===f.Sz?(0,o.createElement)(r.Iw,{localeSlug:window.wpcomBlockEditorNuxLocale??i.OP},t?(0,o.createElement)(l.Z,null):(0,o.createElement)(h.Z,null)):"modal"===d&&s.Guide&&s.GuidePage?(0,o.createElement)(m.Z,null):null}(0,a.registerPlugin)("wpcom-block-editor-nux",{render:()=>(0,o.createElement)(o.Fragment,null,(0,o.createElement)(g,null),(0,o.createElement)(d.Z,null),(0,o.createElement)(p.Z,null))})},1568:function(e,t,n){"use strict";var o=n(9818);n(462);const r=(0,o.subscribe)((()=>{var e,t;(0,o.dispatch)("core/nux").disableTips(),null!==(e=(0,o.select)("core/edit-post"))&&void 0!==e&&e.isFeatureActive("welcomeGuide")&&(0,o.dispatch)("core/edit-post").toggleFeature("welcomeGuide"),null!==(t=(0,o.select)("core/edit-site"))&&void 0!==t&&t.isFeatureActive("welcomeGuide")&&(0,o.dispatch)("core/edit-site").toggleFeature("welcomeGuide"),r()}));(0,o.subscribe)((()=>{var e,t;(0,o.select)("core/nux").areTipsEnabled()&&((0,o.dispatch)("core/nux").disableTips(),(0,o.dispatch)("automattic/wpcom-welcome-guide").setShowWelcomeGuide(!0)),null!==(e=(0,o.select)("core/edit-post"))&&void 0!==e&&e.isFeatureActive("welcomeGuide")&&((0,o.dispatch)("core/edit-post").toggleFeature("welcomeGuide"),(0,o.dispatch)("automattic/wpcom-welcome-guide").setShowWelcomeGuide(!0,{openedManually:!0})),null!==(t=(0,o.select)("core/edit-site"))&&void 0!==t&&t.isFeatureActive("welcomeGuide")&&((0,o.dispatch)("core/edit-site").toggleFeature("welcomeGuide"),(0,o.dispatch)("automattic/wpcom-welcome-guide").setShowWelcomeGuide(!0,{openedManually:!0}))}))},3867:function(e,t,n){"use strict";var o=n(9307),r=n(6115),i=n(5609),s=n(9818),c=n(2694),a=n(5736),u=n(3634),l=n(3790);n(3186);const __=a.__,d="a8c.wpcom-block-editor.closeEditor";t.Z=()=>{const e=window._currentSiteId,t=(0,s.useSelect)((t=>t("automattic/site").getPrimarySiteDomain(e))),n=`/home/${(null==t?void 0:t.domain)||window.location.hostname}`,[a,p]=(0,o.useState)(!0),f=()=>p(!1);return(0,o.createElement)(u.Z,{isOpen:a,className:"wpcom-block-editor-draft-post-modal",title:__("Write your first post","full-site-editing"),description:__("It’s time to flex those writing muscles and start drafting your first post!","full-site-editing"),imageSrc:l,actionButtons:(0,o.createElement)(o.Fragment,null,(0,o.createElement)(i.Button,{isPrimary:!0,onClick:f},__("Start writing","full-site-editing")),(0,o.createElement)(i.Button,{isSecondary:!0,onClick:()=>{(0,c.hasAction)(d)?(0,c.doAction)(d,n):window.location.href=`https://wordpress.com${n}`}},__("I'm not ready","full-site-editing"))),onRequestClose:f,onOpen:()=>(0,r.jN)("calypso_editor_wpcom_draft_post_modal_show")})}},3634:function(e,t,n){"use strict";var o=n(9307),r=n(5609),i=n(2779),s=n.n(i);n(9196),n(8005);t.Z=e=>{let{isOpen:t,className:n,title:i,description:c,imageSrc:a,actionButtons:u,onRequestClose:l,onOpen:d}=e;const p=(0,o.useRef)(null);return(0,o.useEffect)((()=>{!p.current&&t&&(null==d||d()),p.current=t}),[p,t,d]),t?(0,o.createElement)(r.Modal,{className:s()("wpcom-block-editor-nux-modal",n),open:t,title:"",onRequestClose:l},(0,o.createElement)("div",{className:"wpcom-block-editor-nux-modal__image-container"},(0,o.createElement)("img",{src:a,alt:i})),(0,o.createElement)("h1",{className:"wpcom-block-editor-nux-modal__title"},i),(0,o.createElement)("p",{className:"wpcom-block-editor-nux-modal__description"},c),(0,o.createElement)("div",{className:"wpcom-block-editor-nux-modal__buttons"},u)):null}},9935:function(e,t,n){"use strict";var o=n(9307),r=n(6115),i=n(5609),s=n(9818),c=n(5736),a=n(3634),u=n(5275);n(5773);const __=c.__;t.Z=()=>{const{link:e}=(0,s.useSelect)((e=>e("core/editor").getCurrentPost())),t=(0,s.useSelect)((e=>e("core/editor").getCurrentPostType())),n=(0,s.useSelect)((e=>e("core/editor").isCurrentPostPublished())),c=(0,o.useRef)(n),l=(0,s.useSelect)((e=>e("automattic/wpcom-welcome-guide").getShouldShowFirstPostPublishedModal())),[d,p]=(0,o.useState)(!1),{fetchShouldShowFirstPostPublishedModal:f,setShouldShowFirstPostPublishedModal:m}=(0,s.useDispatch)("automattic/wpcom-welcome-guide");return(0,o.useEffect)((()=>{f()}),[f]),(0,o.useEffect)((()=>{l&&!c.current&&n&&"post"===t&&(c.current=n,m(!1),window.setTimeout((()=>{p(!0)})))}),[t,l,n,m]),(0,o.createElement)(a.Z,{isOpen:d,className:"wpcom-block-editor-post-published-modal",title:__("Your first post is published!","full-site-editing"),description:__("Congratulations! You did it. View your post to see how it will look on your site.","full-site-editing"),imageSrc:u,actionButtons:(0,o.createElement)(i.Button,{isPrimary:!0,href:e},__("View Post","full-site-editing")),onRequestClose:()=>p(!1),onOpen:()=>(0,r.jN)("calypso_editor_wpcom_first_post_published_modal_show")})}},3945:function(e,t,n){"object"==typeof window&&window.wpcomBlockEditorNuxAssetsUrl&&(n.p=window.wpcomBlockEditorNuxAssetsUrl)},1258:function(e,t,n){"use strict";var o=n(9307),r=n(6115),i=n(5609),s=n(9818),c=n(5736),a=n(3133),u=n(5262),l=n(3634),d=n(4242);n(4373);const __=c.__;t.Z=()=>{const{addEntities:e}=(0,s.useDispatch)("core");(0,o.useEffect)((()=>{e([{baseURL:"/wp/v2/statuses",key:"slug",kind:"root",name:"status",plural:"statuses"}])}),[]);const[t,n]=(0,o.useState)(!1),[c,p]=(0,o.useState)(!1),f=(0,s.useSelect)((e=>!!e("core/edit-site"))),m=(0,o.useRef)(!1),{isEditorSaving:h,hasPaymentsBlock:g,linkUrl:v}=(0,s.useSelect)((e=>{if(f){var t,n,o;const r=e("core").isSavingEntityRecord("root","site"),i=e("core/edit-site").getPage(),s=parseInt(null==i||null===(t=i.context)||void 0===t?void 0:t.postId),c=e("core").isSavingEntityRecord("postType","page",s),a=e("core").getEntityRecord("postType","page",s);return{isEditorSaving:r||c,hasPaymentsBlock:(null==a||null===(n=a.content)||void 0===n||null===(o=n.raw)||void 0===o?void 0:o.includes("\x3c!-- wp:jetpack/recurring-payments --\x3e"))??!1,linkUrl:null==a?void 0:a.link}}const r=e("core/editor").getCurrentPost();return{isEditorSaving:e("core").isSavingEntityRecord("postType",null==r?void 0:r.type,null==r?void 0:r.id),hasPaymentsBlock:e("core/block-editor").getGlobalBlockCount("jetpack/recurring-payments")>0,linkUrl:r.link}})),w=(0,u.Z)(),{hasSeenSellerCelebrationModal:y,updateHasSeenSellerCelebrationModal:b}=(0,a.Z)();(0,o.useEffect)((()=>{h||!m.current||c||"sell"!==w||!g||y||(n(!0),p(!0),b(!0)),m.current=h}),[h,c,w,g,y,b]);const _=()=>n(!1);return(0,o.createElement)(l.Z,{isOpen:t,className:"wpcom-site-editor-seller-celebration-modal",title:__("You've added your first product!","full-site-editing"),description:__("Preview your product on your site before launching and sharing with others.","full-site-editing"),imageSrc:d,actionButtons:(0,o.createElement)(o.Fragment,null,(0,o.createElement)(i.Button,{onClick:_},__("Continue editing","full-site-editing")),(0,o.createElement)(i.Button,{isPrimary:!0,href:v,target:"__blank",rel:"noopener noreferrer"},__("View your product","full-site-editing"))),onRequestClose:_,onOpen:()=>(0,r.jN)("calypso_editor_wpcom_seller_celebration_modal_show")})}},1970:function(e,t,n){"use strict";n.d(t,{Sz:function(){return c},yn:function(){return a},z2:function(){return p}});var o=n(6989),r=n.n(o),i=n(9818),s=n(3418);n(3288);const c="tour",a="blank-canvas-tour",u=(0,i.combineReducers)({welcomeGuideManuallyOpened:function(){let e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"WPCOM_WELCOME_GUIDE_SHOW_SET":return void 0!==t.openedManually?t.openedManually:e;case"WPCOM_WELCOME_GUIDE_RESET_STORE":return!1;default:return e}},showWelcomeGuide:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:void 0,t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"WPCOM_WELCOME_GUIDE_FETCH_STATUS_SUCCESS":return t.response.show_welcome_guide;case"WPCOM_WELCOME_GUIDE_SHOW_SET":return t.show;case"WPCOM_WELCOME_GUIDE_RESET_STORE":return;default:return e}},tourRating:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:void 0,t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"WPCOM_WELCOME_GUIDE_TOUR_RATING_SET":return t.tourRating;case"WPCOM_WELCOME_GUIDE_RESET_STORE":return;default:return e}},welcomeGuideVariant:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:c,t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"WPCOM_WELCOME_GUIDE_FETCH_STATUS_SUCCESS":return t.response.variant;case"WPCOM_HAS_USED_PATTERNS_MODAL":return e===a?c:e;case"WPCOM_WELCOME_GUIDE_RESET_STORE":return c;default:return e}},shouldShowFirstPostPublishedModal:function(){let e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"WPCOM_SET_SHOULD_SHOW_FIRST_POST_PUBLISHED_MODAL":return t.value;case"WPCOM_WELCOME_GUIDE_RESET_STORE":return!1;default:return e}}}),l={*fetchWelcomeGuideStatus(){return{type:"WPCOM_WELCOME_GUIDE_FETCH_STATUS_SUCCESS",response:yield(0,s.apiFetch)({path:"/wpcom/v2/block-editor/nux"})}},*fetchShouldShowFirstPostPublishedModal(){return{type:"WPCOM_SET_SHOULD_SHOW_FIRST_POST_PUBLISHED_MODAL",value:(yield(0,s.apiFetch)({path:"/wpcom/v2/block-editor/should-show-first-post-published-modal"})).should_show_first_post_published_modal}},setShowWelcomeGuide:function(e){let{openedManually:t,onlyLocal:n}=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return n||r()({path:"/wpcom/v2/block-editor/nux",method:"POST",data:{show_welcome_guide:e}}),{type:"WPCOM_WELCOME_GUIDE_SHOW_SET",show:e,openedManually:t}},setTourRating:e=>({type:"WPCOM_WELCOME_GUIDE_TOUR_RATING_SET",tourRating:e}),setUsedPageOrPatternsModal:()=>({type:"WPCOM_HAS_USED_PATTERNS_MODAL"}),setShouldShowFirstPostPublishedModal:e=>({type:"WPCOM_SET_SHOULD_SHOW_FIRST_POST_PUBLISHED_MODAL",value:e}),resetStore:()=>({type:"WPCOM_WELCOME_GUIDE_RESET_STORE"})},d={isWelcomeGuideManuallyOpened:e=>e.welcomeGuideManuallyOpened,isWelcomeGuideShown:e=>!!e.showWelcomeGuide,isWelcomeGuideStatusLoaded:e=>void 0!==e.showWelcomeGuide,getTourRating:e=>e.tourRating,getWelcomeGuideVariant:e=>"modal"===e.welcomeGuideVariant?c:e.welcomeGuideVariant,getShouldShowFirstPostPublishedModal:e=>e.shouldShowFirstPostPublishedModal};function p(){return(0,i.registerStore)("automattic/wpcom-welcome-guide",{reducer:u,actions:l,selectors:d,controls:s.controls,persist:!0})}},374:function(e,t,n){"use strict";var o=n(7896),r=n(9307),i=n(6115),s=n(5609),c=n(9818),a=n(5736),u=n(9711),l=n(6595),d=n(5486),p=n(7821);n(7777);const __=a.__;function f(e){let{pageNumber:t,isLastPage:n,alignBottom:o=!1,heading:c,description:a,imgSrc:u}=e;return(0,r.useEffect)((()=>{var e;(0,i.jN)("calypso_editor_wpcom_nux_slide_view",{slide_number:t,is_last_slide:n,is_gutenboarding:null===(e=window.calypsoifyGutenberg)||void 0===e?void 0:e.isGutenboarding})}),[]),(0,r.createElement)(s.GuidePage,{className:"wpcom-block-editor-nux__page"},(0,r.createElement)("div",{className:"wpcom-block-editor-nux__text"},(0,r.createElement)("h1",{className:"wpcom-block-editor-nux__heading"},c),(0,r.createElement)("div",{className:"wpcom-block-editor-nux__description"},a)),(0,r.createElement)("div",{className:"wpcom-block-editor-nux__visual"},(0,r.createElement)("img",{key:u,src:u,alt:"","aria-hidden":"true",className:"wpcom-block-editor-nux__image"+(o?" align-bottom":"")})))}t.Z=function(){const{show:e,isNewPageLayoutModalOpen:t,isManuallyOpened:n}=(0,c.useSelect)((e=>({show:e("automattic/wpcom-welcome-guide").isWelcomeGuideShown(),isNewPageLayoutModalOpen:e("automattic/starter-page-layouts")&&e("automattic/starter-page-layouts").isOpen(),isManuallyOpened:e("automattic/wpcom-welcome-guide").isWelcomeGuideManuallyOpened()}))),{setShowWelcomeGuide:a}=(0,c.useDispatch)("automattic/wpcom-welcome-guide");if((0,r.useEffect)((()=>{var o;e&&!t&&(0,i.jN)("calypso_editor_wpcom_nux_open",{is_gutenboarding:null===(o=window.calypsoifyGutenberg)||void 0===o?void 0:o.isGutenboarding,is_manually_opened:n})}),[n,t,e]),!e||t)return null;const m=[{heading:__("Welcome to your website","full-site-editing"),description:__("Edit your homepage, add the pages you need, and change your site’s look and feel.","full-site-editing"),imgSrc:l,alignBottom:!0},{heading:__("Add or edit your content","full-site-editing"),description:__("Edit the placeholder content we’ve started you off with, or click the plus sign to add more content.","full-site-editing"),imgSrc:u},{heading:__("Preview your site as you go","full-site-editing"),description:__("As you edit your site content, click “Preview” to see your site the way your visitors will.","full-site-editing"),imgSrc:d,alignBottom:!0},{heading:__("Hidden until you’re ready","full-site-editing"),description:__("Your site will remain hidden until launched. Click “Launch” in the toolbar to share it with the world.","full-site-editing"),imgSrc:p,alignBottom:!0}];return(0,r.createElement)(s.Guide,{className:"wpcom-block-editor-nux",contentLabel:__("Welcome to your website","full-site-editing"),finishButtonText:__("Get started","full-site-editing"),onFinish:()=>{var e;(0,i.jN)("calypso_editor_wpcom_nux_dismiss",{is_gutenboarding:null===(e=window.calypsoifyGutenberg)||void 0===e?void 0:e.isGutenboarding}),a(!1,{openedManually:!1})}},m.map(((e,t)=>(0,r.createElement)(f,(0,o.Z)({key:e.heading,pageNumber:t+1,isLastPage:t===m.length-1},e)))))}},7203:function(e,t,n){"use strict";var o=n(9307),r=n(6115),i=n(849),s=n(5585),c=n(8038),a=n(9818),u=n(6505);n(7710);function l(){var e;const t=(0,i.bU)(),{setShowWelcomeGuide:n}=(0,a.useDispatch)("automattic/wpcom-welcome-guide"),s=null===(e=window.calypsoifyGutenberg)||void 0===e?void 0:e.isGutenboarding,l=()=>new URLSearchParams(document.location.search).has("welcome-tour-next"),d=(0,u.Z)(t,l()),p={steps:d,closeHandler:(e,t,o)=>{(0,r.jN)("calypso_editor_wpcom_tour_dismiss",{is_gutenboarding:s,slide_number:t+1,action:o}),n(!1,{openedManually:!1})},options:{tourRating:{enabled:!0,useTourRating:()=>(0,a.useSelect)((e=>e("automattic/wpcom-welcome-guide").getTourRating())),onTourRate:e=>{(0,a.dispatch)("automattic/wpcom-welcome-guide").setTourRating(e),(0,r.jN)("calypso_editor_wpcom_tour_rate",{thumbs_up:"thumbs-up"===e,is_gutenboarding:!1})}},callbacks:{onMinimize:e=>{(0,r.jN)("calypso_editor_wpcom_tour_minimize",{is_gutenboarding:s,slide_number:e+1})},onMaximize:e=>{(0,r.jN)("calypso_editor_wpcom_tour_maximize",{is_gutenboarding:s,slide_number:e+1})},onStepViewOnce:e=>{const t=d.length-1,{heading:n}=d[e].meta;(0,r.jN)("calypso_editor_wpcom_tour_slide_view",{slide_number:e+1,is_last_slide:e===t,slide_heading:n,is_gutenboarding:s})}},effects:{spotlight:l()?{styles:{minWidth:"50px",minHeight:"50px",borderRadius:"2px"}}:void 0,arrowIndicator:!1},popperModifiers:[(0,o.useMemo)((()=>({name:"offset",options:{offset:e=>{let{placement:t,reference:n}=e;if("bottom"===t){const e=document.querySelector(".edit-post-header");if(!e)return;const t=e.getBoundingClientRect();return[0,t.height+t.y-(n.height+n.y)+16]}return[0,0]}}})),[])],classNames:"wpcom-editor-welcome-tour"}};return(0,o.createElement)(c.Z,{config:p})}t.Z=function(){const{show:e,isNewPageLayoutModalOpen:t,isManuallyOpened:n}=(0,a.useSelect)((e=>({show:e("automattic/wpcom-welcome-guide").isWelcomeGuideShown(),isNewPageLayoutModalOpen:e("automattic/starter-page-layouts")&&e("automattic/starter-page-layouts").isOpen(),isManuallyOpened:e("automattic/wpcom-welcome-guide").isWelcomeGuideManuallyOpened()}))),c=(0,i.bU)();return(0,s.Z)([(0,u.Z)(c,!1)[0]]),(0,o.useEffect)((()=>{var o;(e||t)&&(0,r.jN)("calypso_editor_wpcom_tour_open",{is_gutenboarding:null===(o=window.calypsoifyGutenberg)||void 0===o?void 0:o.isGutenboarding,is_manually_opened:n})}),[t,n,e]),!e||t?null:(0,o.createElement)(l,null)}},6505:function(e,t,n){"use strict";var o=n(9307),r=n(7498),i=n(9321),s=n(5609),c=n(5736);const __=c.__;function a(e){const t="https://s0.wp.com/i/editor-welcome-tour";return{addBlock:{desktop:{src:`${t}/slide-add-block.gif`,type:"image/gif"},mobile:{src:`${t}/slide-add-block_mobile.gif`,type:"image/gif"}},allBlocks:{desktop:{src:`${t}/slide-all-blocks.gif`,type:"image/gif"}},finish:{desktop:{src:`${t}/slide-finish.png`,type:"image/gif"}},makeBold:{desktop:{src:`${t}/slide-make-bold.gif`,type:"image/gif"}},moreOptions:{desktop:{src:`${t}/slide-more-options.gif`,type:"image/gif"},mobile:{src:`${t}/slide-more-options_mobile.gif`,type:"image/gif"}},moveBlock:{desktop:{src:`${t}/slide-move-block.gif`,type:"image/gif"},mobile:{src:`${t}/slide-move-block_mobile.gif`,type:"image/gif"}},findYourWay:{desktop:{src:`${t}/slide-find-your-way.gif`,type:"image/gif"}},undo:{desktop:{src:`${t}/slide-undo.gif`,type:"image/gif"}},welcome:{desktop:{src:`${t}/slide-welcome.png`,type:"image/png"},mobile:{src:`${t}/slide-welcome_mobile.jpg`,type:"image/jpeg"}}}[e]}t.Z=function(e){let t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return[{meta:{heading:__("Welcome to WordPress!","full-site-editing"),descriptions:{desktop:__("Take this short, interactive tour to learn the fundamentals of the WordPress editor.","full-site-editing"),mobile:null},imgSrc:a("welcome")},options:{classNames:{desktop:"wpcom-editor-welcome-tour__step",mobile:["is-with-extra-padding","wpcom-editor-welcome-tour__step"]}}},{meta:{heading:__("Everything is a block","full-site-editing"),descriptions:{desktop:__("In the WordPress Editor, paragraphs, images, and videos are all blocks.","full-site-editing"),mobile:null},imgSrc:a("allBlocks")},options:{classNames:{desktop:"wpcom-editor-welcome-tour__step",mobile:"wpcom-editor-welcome-tour__step"}}},{...t&&{referenceElements:{mobile:".edit-post-header .edit-post-header__toolbar .components-button.edit-post-header-toolbar__inserter-toggle",desktop:".edit-post-header .edit-post-header__toolbar .components-button.edit-post-header-toolbar__inserter-toggle"}},meta:{heading:__("Adding a new block","full-site-editing"),descriptions:{desktop:__("Click + to open the inserter. Then click the block you want to add.","full-site-editing"),mobile:__("Tap + to open the inserter. Then tap the block you want to add.","full-site-editing")},imgSrc:a("addBlock")},options:{classNames:{desktop:"wpcom-editor-welcome-tour__step",mobile:["is-with-extra-padding","wpcom-editor-welcome-tour__step"]}}},{meta:{heading:__("Click a block to change it","full-site-editing"),descriptions:{desktop:__("Use the toolbar to change the appearance of a selected block. Try making it bold.","full-site-editing"),mobile:null},imgSrc:a("makeBold")},options:{classNames:{desktop:"wpcom-editor-welcome-tour__step",mobile:"wpcom-editor-welcome-tour__step"}}},{...t&&{referenceElements:{mobile:".edit-post-header .edit-post-header__settings .interface-pinned-items > button:nth-child(1)",desktop:".edit-post-header .edit-post-header__settings .interface-pinned-items > button:nth-child(1)"}},meta:{heading:__("More Options","full-site-editing"),descriptions:{desktop:__("Click the settings icon to see even more options.","full-site-editing"),mobile:__("Tap the settings icon to see even more options.","full-site-editing")},imgSrc:a("moreOptions")},options:{classNames:{desktop:"wpcom-editor-welcome-tour__step",mobile:["is-with-extra-padding","wpcom-editor-welcome-tour__step"]}}},...(0,i.tq)()?[]:[{meta:{heading:__("Find your way","full-site-editing"),descriptions:{desktop:__("Use List View to see all the blocks you've added. Click and drag any block to move it around.","full-site-editing"),mobile:null},imgSrc:a("findYourWay")},options:{classNames:{desktop:["is-with-extra-padding","wpcom-editor-welcome-tour__step"],mobile:"wpcom-editor-welcome-tour__step"}}}],...(0,i.tq)()?[]:[{...t&&{referenceElements:{desktop:".edit-post-header .edit-post-header__toolbar .components-button.editor-history__undo"}},meta:{heading:__("Undo any mistake","full-site-editing"),descriptions:{desktop:__("Click the Undo button if you've made a mistake.","full-site-editing"),mobile:null},imgSrc:a("undo")},options:{classNames:{desktop:"wpcom-editor-welcome-tour__step",mobile:"wpcom-editor-welcome-tour__step"}}}],{meta:{heading:__("Drag & drop","full-site-editing"),descriptions:{desktop:__("To move blocks around, click and drag the handle.","full-site-editing"),mobile:__("To move blocks around, tap the up and down arrows.","full-site-editing")},imgSrc:a("moveBlock")},options:{classNames:{desktop:"wpcom-editor-welcome-tour__step",mobile:["is-with-extra-padding","wpcom-editor-welcome-tour__step"]}}},{meta:{heading:__("Congratulations!","full-site-editing"),descriptions:{desktop:(0,o.createInterpolateElement)(__("You've learned the basics. Remember, your site is private until you <link_to_launch_site_docs>decide to launch</link_to_launch_site_docs>. View the <link_to_editor_docs>block editing docs</link_to_editor_docs> to learn more.","full-site-editing"),{link_to_launch_site_docs:(0,o.createElement)(s.ExternalLink,{href:(0,r.aq)("https://wordpress.com/support/settings/privacy-settings/#launch-your-site",e)}),link_to_editor_docs:(0,o.createElement)(s.ExternalLink,{href:(0,r.aq)("https://wordpress.com/support/wordpress-editor/",e)})}),mobile:null},imgSrc:a("finish")},options:{classNames:{desktop:"wpcom-editor-welcome-tour__step",mobile:"wpcom-editor-welcome-tour__step"}}}]}},6115:function(e,t,n){"use strict";n.d(t,{jN:function(){return o.jN}});n(1694),n(6209),n(9377);var o=n(9792);n(3722)},9377:function(e,t,n){"use strict";let o=null;"undefined"!=typeof window&&window.addEventListener("popstate",(function(){o=null}))},9792:function(e,t,n){"use strict";n.d(t,{jN:function(){return p}});var o=n(2699),r=n(4898),i=(n(3421),n(2819)),s=(n(9377),n(6209),n(9358));n(1694);const c=["a8c_cookie_banner_ok","wcadmin_storeprofiler_create_jetpack_account","wcadmin_storeprofiler_connect_store","wcadmin_storeprofiler_login_jetpack_account","wcadmin_storeprofiler_payment_login","wcadmin_storeprofiler_payment_create_account","calypso_checkout_switch_to_p_24","calypso_checkout_composite_p24_submit_clicked"];let a,u=Promise.resolve();function l(e){"undefined"!=typeof window&&(window._tkq=window._tkq||[],window._tkq.push(e))}"undefined"!=typeof document&&(u=(0,r.ve)("//stats.wp.com/w.js?63"));const d=new o.EventEmitter;function p(e,t){if(t=t||{},(0,s.Z)('Record event "%s" called with props %o',e,t),e.startsWith("calypso_")||(0,i.includes)(c,e)){if(a){const e=a(t);t={...t,...e}}t=(0,i.omitBy)(t,(e=>void 0===e)),(0,s.Z)('Recording event "%s" with actual props %o',e,t),l(["recordEvent",e,t]),d.emit("record-event",e,t)}else(0,s.Z)('- Event name must be prefixed by "calypso_" or added to `EVENT_NAME_EXCEPTIONS`')}},3722:function(e,t,n){"use strict";n(9792)},6209:function(e,t,n){"use strict";n(4)},9358:function(e,t,n){"use strict";var o=n(8049),r=n.n(o);t.Z=r()("calypso:analytics")},1694:function(e,t,n){"use strict";n(9358)},4:function(e,t,n){"use strict";n(8032)},3668:function(e,t,n){"use strict";var o=n(9307),r=n(5736),i=n(2779),s=n.n(i),c=n(2819);n(2014);const __=r.__;t.Z=e=>{let{activePageIndex:t,numberOfPages:n,onChange:i,classNames:a,children:u}=e;const l=s()("pagination-control",a);return(0,o.createElement)("ul",{className:l,"aria-label":__("Pagination control")},(0,c.times)(n,(e=>(0,o.createElement)("li",{key:`${n}-${e}`,"aria-current":e===t?"page":void 0},(0,o.createElement)("button",{className:s()("pagination-control__page",{"is-current":e===t}),disabled:e===t,"aria-label":(0,r.sprintf)(__("Page %1$d of %2$d"),e+1,n),onClick:()=>i(e)})))),u&&(0,o.createElement)("li",{className:"pagination-control__last-item"},u))}},849:function(e,t,n){"use strict";n.d(t,{Iw:function(){return u},bU:function(){return d}});var o=n(7896),r=n(9307),i=n(4333),s=n(5736),c=n(9196);const a=(0,c.createContext)(null),u=e=>{let{children:t,localeSlug:n}=e;return(0,r.createElement)(a.Provider,{value:n},t)};function l(){var e,t;return function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";if(!e)return"";const t=["pt_br","pt-br","zh_tw","zh-tw","zh_cn","zh-cn","zh_sg","zh-sg"],n=e.toLowerCase();return(t.includes(n)?n.replace("_","-"):n.replace(/([-_].*)$/i,""))||"en"}(s.getLocaleData?null===(e=s.getLocaleData())||void 0===e||null===(t=e[""])||void 0===t?void 0:t.language:"")}function d(){const e=(0,c.useContext)(a),t=!!e,[n,o]=(0,c.useState)(l());return(0,c.useEffect)((()=>{if(!t)return o(l()),s.subscribe((()=>{o(l())}))}),[t]),e||n||"en"}(0,i.createHigherOrderComponent)((e=>t=>{const n=d();return(0,r.createElement)(e,(0,o.Z)({locale:n},t))}),"withLocale")},4655:function(e,t,n){"use strict";n.d(t,{OP:function(){return o},GG:function(){return r},iT:function(){return i},xn:function(){return s},Xb:function(){return c},hI:function(){return a},mL:function(){return u},vS:function(){return l},_r:function(){return d}});const o="en",r=["en","ja","es","pt","fr","pt-br"],i=["en","fr","de","es"],s=["en","fr","de","es"],c={"pt-br":"br",br:"bre",zh:"zh-cn","zh-hk":"zh-tw","zh-sg":"zh-cn",kr:"ko"},a=["ar","de","en","es","fr","he","id","it","ja","ko","nl","pt-br","ru","sv","tr","zh-cn","zh-tw"],u=["ar","de","el","en","es","fa","fi","fr","id","it","ja","nl","pt","pt-br","ru","sv","th","tl","tr"],l=["es","pt-br","de","fr","he","ja","it","nl","ru","tr","id","zh-cn","zh-tw","ko","ar","sv"],d=["en","ar","de","es","fr","he","id","it","ja","ko","nl","pt-br","ro","ru","sv","tr","zh-cn","zh-tw"]},7498:function(e,t,n){"use strict";n.d(t,{aq:function(){return h}});var o=n(7896),r=n(9307),i=n(4333),s=n(9196),c=n(849),a=n(4655);const u="http://__domain__.invalid",l=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];return(n,o)=>(t.includes(o)&&"en"!==o&&n.pathname.substr(0,o.length+2)!=="/"+o+"/"&&(n.host=`${a.Xb[o]||o}.${e}`),n)},d=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;return(o,r)=>(o.host="wordpress.com","object"==typeof n&&n instanceof RegExp&&!n.test(o.pathname)&&(t=[]),o.pathname=e+o.pathname,t.includes(r)&&"en"!==r&&(o.pathname=r+o.pathname),o)},p=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=arguments.length>2?arguments[2]:void 0;return(o,r)=>"object"==typeof t&&t instanceof RegExp&&!t.test(o.pathname)?o:e.includes(r)&&"en"!==r?("prefix"===n?o.pathname=r+o.pathname:"suffix"===n&&(o.pathname.endsWith("/")?o.pathname+=r+"/":o.pathname+="/"+r),o):o},f=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return(n,o)=>p(e,t,"prefix")(n,o)},m={"wordpress.com/support/":f(a.hI),"wordpress.com/forums/":f(a.mL),"wordpress.com/blog/":f(a.GG,/^\/blog\/?$/),"wordpress.com/tos/":f(a.vS),"wordpress.com/wp-admin/":l("wordpress.com",a.vS),"wordpress.com/wp-login.php":l("wordpress.com",a.vS),"jetpack.com":l("jetpack.com",a._r),"en.support.wordpress.com":d("/support",a.hI),"en.blog.wordpress.com":d("/blog",a.GG,/^\/$/),"en.forums.wordpress.com":d("/forums",a.mL),"automattic.com/privacy/":f(a.iT),"automattic.com/cookies/":f(a.xn),"wordpress.com/help/contact/":(e,t,n)=>n?e:(e.pathname=e.pathname.replace(/\/help\//,"/support/"),f(a.hI)(e,t)),"wordpress.com":(e,t)=>/^\/(checkout|me)(\/|$)/.test(e.pathname)||/\/([a-z0-9-]+\.)+[a-z]{2,}\/?$/.test(e.pathname)?e:f(a.vS)(e,t),"wordpress.com/theme/":(e,t,n)=>n?e:f(a.vS)(e,t),"wordpress.com/themes/":(e,t,n)=>n?e:f(a.vS)(e,t),"wordpress.com/log-in/":(e,t,n)=>n?e:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return(n,o)=>p(e,t,"suffix")(n,o)}(a.vS)(e,t)};function h(e,t){let n,o=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];try{n=new URL(String(e),u)}catch(s){return e}if(n.origin===u)return e;n.protocol="https:",n.hostname="",n.pathname.endsWith(".php")||(n.pathname=(n.pathname+"/").replace(/\/+$/,"/"));const r=n.pathname.substr(0,1+n.pathname.indexOf("/",1));if("en.wordpress.com"===n.host&&(n.host="wordpress.com"),"/"+t+"/"===r)return e;const i=[n.host,n.host+r,n.host+n.pathname];for(let c=i.length-1;c>=0;c--)if(i[c]in m)return m[i[c]](n,t,o).href;return e}function g(){const e=(0,c.bU)();return(0,s.useCallback)(((t,n,o)=>h(t,n||e,o)),[e])}(0,i.createHigherOrderComponent)((e=>t=>{const n=g();return(0,r.createElement)(e,(0,o.Z)({localizeUrl:n},t))}),"withLocalizeUrl")},3340:function(e,t,n){"use strict";n.d(t,{hg:function(){return c},lZ:function(){return a},_W:function(){return l},Yt:function(){return d}});var o=n(8049);const r=n.n(o)()("lib/load-script/callback-handler"),i=new Map;function s(){return i}function c(e){return s().has(e)}function a(e,t){const n=s();c(e)?(r(`Adding a callback for an existing script from "${e}"`),n.get(e).add(t)):(r(`Adding a callback for a new script from "${e}"`),n.set(e,new Set([t])))}function u(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;const n=s(),o=n.get(e);if(o){r(`Executing callbacks for "${e}"`+(null===t?" with success":` with error "${t}"`)),o.forEach((e=>{"function"==typeof e&&e(t)})),n.delete(e)}}function l(){const e=this.getAttribute("src");r(`Handling successful request for "${e}"`),u(e),this.onload=null}function d(){const e=this.getAttribute("src");r(`Handling failed request for "${e}"`),u(e,new Error(`Failed to load script "${e}"`)),this.onerror=null}},5606:function(e,t,n){"use strict";n.d(t,{C:function(){return c},k:function(){return a}});var o=n(8049),r=n.n(o),i=n(3340);const s=r()("lib/load-script/dom-operations");function c(e){s(`Creating script element for "${e}"`);const t=document.createElement("script");return t.src=e,t.type="text/javascript",t.async=!0,t.onload=i._W,t.onerror=i.Yt,t}function a(e){s("Attaching element to head"),document.head.appendChild(e)}},4898:function(e,t,n){"use strict";n.d(t,{ve:function(){return c}});var o=n(8049),r=n.n(o),i=n(3340),s=n(5606);r()("package/load-script");function c(e,t){if(!(0,i.hg)(e)&&(0,s.k)((0,s.C)(e)),"function"!=typeof t)return new Promise(((t,n)=>{(0,i.lZ)(e,(e=>{null===e?t():n(e)}))}));(0,i.lZ)(e,t)}},8626:function(e,t,n){"use strict";var o=n(9307),r=(n(9196),n(7474)),i=n(5386),s=n(9946);t.Z=e=>{let{onMinimize:t,onDismiss:n,onNextStepProgression:c,onPreviousStepProgression:a,tourContainerRef:u,isMinimized:l}=e;return(0,r.Z)(u)?l?(0,o.createElement)((function(){return(0,s.Z)({onEscape:n("esc-key-minimized")}),null}),null):(0,o.createElement)((function(){return(0,s.Z)({onEscape:t,onArrowRight:c,onArrowLeft:a}),(0,i.Z)(u),null}),null):null}},9549:function(e,t,n){"use strict";n.d(t,{S:function(){return i}});var o=n(9307);const r=(0,o.createContext)({}),i=()=>(0,o.useContext)(r);t.Z=e=>{let{config:t,children:n}=e;return(0,o.createElement)(r.Provider,{value:{config:t}},n)}},4065:function(e,t,n){"use strict";var o=n(7896),r=n(9307),i=n(6951),s=n(2779),c=n.n(s),a=n(6194),u=n(9207),l=n(2036),d=n(8626),p=n(6165),f=n(7858),m=n(8074),h=n(301);const g=(e,t)=>{"function"==typeof t&&t(e)};t.Z=e=>{var t,n,s,v,w,y,b,_,E,k,x,S,Z,C,O,M,P,F,L,R,N,T,j,A;let{config:z}=e;const[W,I]=(0,r.useState)(0),[G,D]=(0,r.useState)(null),[B,U]=(0,r.useState)(!1),[$,H]=(0,r.useState)(null),[V,q]=(0,r.useState)(!1),Y=(0,r.useRef)(null),K=(0,i._z)(),X=z.steps.length-1,J=(null===(t=z.steps[W].referenceElements)||void 0===t?void 0:t[K?"mobile":"desktop"])||null,Q=J?document.querySelector(J):null,ee=(0,r.useCallback)((()=>{var e,t;return!1!==(null===(e=z.options)||void 0===e||null===(t=e.effects)||void 0===t?void 0:t.arrowIndicator)&&!(!Q||B||!V)}),[null===(n=z.options)||void 0===n||null===(s=n.effects)||void 0===s?void 0:s.arrowIndicator,B,Q,V]),te=(0,r.useCallback)((()=>{var e,t;return!(null===(e=z.options)||void 0===e||null===(t=e.effects)||void 0===t||!t.spotlight)&&!B}),[null===(v=z.options)||void 0===v||null===(w=v.effects)||void 0===w?void 0:w.spotlight,B]),ne=(0,r.useCallback)((()=>{var e,t;return!(te()||null===(e=z.options)||void 0===e||null===(t=e.effects)||void 0===t||!t.overlay)&&!B}),[null===(y=z.options)||void 0===y||null===(b=y.effects)||void 0===b?void 0:b.overlay,B,te]),oe=(0,r.useCallback)((e=>()=>{z.closeHandler(z.steps,W,e)}),[z,W]),re=(0,r.useCallback)((()=>{var e,t;X>W&&I(W+1),g(W,null===(e=z.options)||void 0===e||null===(t=e.callbacks)||void 0===t?void 0:t.onNextStep)}),[null===(_=z.options)||void 0===_||null===(E=_.callbacks)||void 0===E?void 0:E.onNextStep,W,X]),ie=(0,r.useCallback)((()=>{var e,t;W&&I(W-1),g(W,null===(e=z.options)||void 0===e||null===(t=e.callbacks)||void 0===t?void 0:t.onPreviousStep)}),[null===(k=z.options)||void 0===k||null===(x=k.callbacks)||void 0===x?void 0:x.onPreviousStep,W]),se=(0,r.useCallback)((e=>{var t,n;I(e),g(W,null===(t=z.options)||void 0===t||null===(n=t.callbacks)||void 0===n?void 0:n.onGoToStep)}),[null===(S=z.options)||void 0===S||null===(Z=S.callbacks)||void 0===Z?void 0:Z.onGoToStep,W]),ce=(0,r.useCallback)((()=>{var e,t;U(!0),g(W,null===(e=z.options)||void 0===e||null===(t=e.callbacks)||void 0===t?void 0:t.onMinimize)}),[null===(C=z.options)||void 0===C||null===(O=C.callbacks)||void 0===O?void 0:O.onMinimize,W]),ae=(0,r.useCallback)((()=>{var e,t;U(!1),g(W,null===(e=z.options)||void 0===e||null===(t=e.callbacks)||void 0===t?void 0:t.onMaximize)}),[null===(M=z.options)||void 0===M||null===(P=M.callbacks)||void 0===P?void 0:P.onMaximize,W]),{styles:ue,attributes:le,update:de}=(0,a.D)(Q,$,{strategy:"fixed",placement:"bottom",modifiers:[{name:"preventOverflow",options:{rootBoundary:"document",padding:16}},{name:"arrow",options:{padding:12}},{name:"offset",options:{offset:[0,ee()?12:10]}},{name:"flip",options:{fallbackPlacements:["top","left","right"]}},...(null===(F=z.options)||void 0===F?void 0:F.popperModifiers)||[]]}),pe=!B&&Q&&V?{style:null==ue?void 0:ue.popper,...null==le?void 0:le.popper}:null,fe=!B&&Q&&V?{style:null==ue?void 0:ue.arrow,...null==le?void 0:le.arrow}:null;(0,r.useEffect)((()=>{setTimeout((()=>null==G?void 0:G.focus()))}),[G]),(0,r.useEffect)((()=>{Q?(q(!1),de&&de().then((()=>q(!0))).catch((()=>q(!0)))):q(!0)}),[de,Q]);const me=c()("tour-kit-frame",K?"is-mobile":"is-desktop",{"is-visible":V},(0,l.s)(null===(L=z.options)||void 0===L?void 0:L.classNames));return(0,u.Z)(W,null===(R=z.options)||void 0===R||null===(N=R.callbacks)||void 0===N?void 0:N.onStepViewOnce),(0,r.createElement)(r.Fragment,null,(0,r.createElement)(d.Z,{onMinimize:ce,onDismiss:oe,onNextStepProgression:re,onPreviousStepProgression:ie,tourContainerRef:Y,isMinimized:B}),(0,r.createElement)("div",{className:me,ref:Y},ne()&&(0,r.createElement)(f.Z,{visible:!0}),te()&&(0,r.createElement)(m.Z,{referenceElement:Q,styles:null===(T=z.options)||void 0===T||null===(j=T.effects)||void 0===j||null===(A=j.spotlight)||void 0===A?void 0:A.styles}),(0,r.createElement)("div",(0,o.Z)({className:"tour-kit-frame__container",ref:H},pe),ee()&&(0,r.createElement)("div",(0,o.Z)({className:"tour-kit-frame__arrow","data-popper-arrow":!0},fe)),B?(0,r.createElement)(p.Z,{config:z,steps:z.steps,currentStepIndex:W,onMaximize:ae,onDismiss:oe}):(0,r.createElement)(h.Z,{config:z,steps:z.steps,currentStepIndex:W,onMinimize:ce,onDismiss:oe,onNextStep:re,onPreviousStep:ie,onGoToStep:se,setInitialFocusedElement:D}))))}},6165:function(e,t,n){"use strict";var o=n(9307);t.Z=e=>{let{config:t,steps:n,currentStepIndex:r,onMaximize:i,onDismiss:s}=e;return(0,o.createElement)("div",{className:"tour-kit-minimized"},(0,o.createElement)(t.renderers.tourMinimized,{steps:n,currentStepIndex:r,onMaximize:i,onDismiss:s}))}},7858:function(e,t,n){"use strict";var o=n(9307),r=n(2779),i=n.n(r);t.Z=e=>{let{visible:t}=e;return(0,o.createElement)("div",{className:i()("tour-kit-overlay",{"is-visible":t})})}},8074:function(e,t,n){"use strict";var o=n(7896),r=n(9307),i=n(2779),s=n.n(i),c=n(6194),a=n(7858);t.Z=e=>{let{referenceElement:t,styles:n}=e;const[i,u]=(0,r.useState)(null),l=null==t?void 0:t.getBoundingClientRect(),d=[{name:"flip",enabled:!1},{name:"preventOverflow",options:{mainAxis:!1}},(0,r.useMemo)((()=>({name:"offset",options:{offset:e=>{let{placement:t,reference:n,popper:o}=e;return"bottom"===t?[0,-(n.height+(o.height-n.height)/2)]:[0,0]}}})),[])],{styles:p,attributes:f}=(0,c.D)(t,i,{strategy:"fixed",placement:"bottom",modifiers:d}),m=l?{width:`${l.width}px`,height:`${l.height}px`}:null,h=t?{style:{...m&&m,...null==p?void 0:p.popper,...n&&n},...null==f?void 0:f.popper}:null;return(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.Z,{visible:!h}),(0,r.createElement)("div",(0,o.Z)({className:s()("tour-kit-spotlight",{"is-visible":!!h}),ref:u},h)))}},301:function(e,t,n){"use strict";var o=n(9307),r=n(6951),i=n(2779),s=n.n(i),c=n(2036);t.Z=e=>{var t,n;let{config:i,steps:a,currentStepIndex:u,onMinimize:l,onDismiss:d,onNextStep:p,onPreviousStep:f,setInitialFocusedElement:m,onGoToStep:h}=e;const g=(0,r._z)(),v=s()("tour-kit-step",`is-step-${u}`,(0,c.s)(null===(t=i.steps[u].options)||void 0===t||null===(n=t.classNames)||void 0===n?void 0:n[g?"mobile":"desktop"]));return(0,o.createElement)("div",{className:v},(0,o.createElement)(i.renderers.tourStep,{steps:a,currentStepIndex:u,onDismiss:d,onNextStep:p,onPreviousStep:f,onMinimize:l,setInitialFocusedElement:m,onGoToStep:h}))}},2313:function(e,t,n){"use strict";var o=n(9307),r=n(1415),i=n(9549),s=n(4065);n(6372);t.Z=e=>{let{config:t,__temp__className:n}=e;const c=(0,o.useRef)(document.createElement("div")).current;return(0,o.useEffect)((()=>{const e=["tour-kit",...n?[n]:[]];return c.classList.add(...e),document.body.appendChild(c),()=>{document.body.removeChild(c)}}),[n,c]),(0,o.createElement)(r.Z,null,(0,o.createElement)(i.Z,{config:t},(0,o.createElement)("div",null,(0,o.createPortal)((0,o.createElement)(s.Z,{config:t}),c))))}},1415:function(e,t,n){"use strict";var o=n(6666),r=n(9307),i=n(9196),s=n.n(i);class c extends s().Component{constructor(){super(...arguments),(0,o.Z)(this,"state",{hasError:!1})}static getDerivedStateFromError(){return{hasError:!0}}componentDidCatch(e,t){console.error(e,t)}render(){return this.state.hasError?(0,r.createElement)("h1",null,"Something went wrong."):this.props.children}}t.Z=c},7474:function(e,t,n){"use strict";var o=n(9307);t.Z=e=>{const[t,n]=(0,o.useState)(!1),r=(0,o.useCallback)((()=>{var t;document.hasFocus()&&null!==(t=e.current)&&void 0!==t&&t.contains(document.activeElement)?n(!0):n(!1)}),[e]),i=(0,o.useCallback)((t=>{var o;null!==(o=e.current)&&void 0!==o&&o.contains(t.target)?n(!0):n(!1)}),[e]),s=(0,o.useCallback)((t=>{var o;"Tab"===t.key&&(null!==(o=e.current)&&void 0!==o&&o.contains(t.target)?n(!0):n(!1))}),[e]);return(0,o.useEffect)((()=>(document.addEventListener("focusin",r),document.addEventListener("mousedown",i),document.addEventListener("keyup",s),()=>{document.removeEventListener("focusin",r),document.removeEventListener("mousedown",i),document.removeEventListener("keyup",s)})),[e,r,s,i]),t}},5386:function(e,t,n){"use strict";var o=n(5904),r=n(9307);t.Z=e=>{const[t,n]=(0,r.useState)(),[i,s]=(0,r.useState)(),c=(0,r.useCallback)((e=>{let n=!1;"Tab"===e.key&&(e.shiftKey?document.activeElement===t&&(null==i||i.focus(),n=!0):document.activeElement===i&&(null==t||t.focus(),n=!0)),n&&(e.preventDefault(),e.stopPropagation())}),[t,i]);(0,r.useEffect)((()=>{const t=o.focus.focusable.find(e.current);return t&&t.length&&(n(t[0]),s(t[t.length-1])),document.addEventListener("keydown",c),()=>{document.removeEventListener("keydown",c)}}),[e,c])}},9946:function(e,t,n){"use strict";var o=n(9307);t.Z=e=>{let{onEscape:t,onArrowRight:n,onArrowLeft:r}=e;const i=(0,o.useCallback)((e=>{let o=!1;switch(e.key){case"Escape":t&&(t(),o=!0);break;case"ArrowRight":n&&(n(),o=!0);break;case"ArrowLeft":r&&(r(),o=!0)}o&&(e.preventDefault(),e.stopPropagation())}),[t,n,r]);(0,o.useEffect)((()=>(document.addEventListener("keydown",i),()=>{document.removeEventListener("keydown",i)})),[i])}},9207:function(e,t,n){"use strict";var o=n(9307);t.Z=(e,t)=>{const[n,r]=(0,o.useState)([]);(0,o.useEffect)((()=>{n.includes(e)||(r((t=>[...t,e])),null==t||t(e))}),[e,t,n])}},2036:function(e,t,n){"use strict";function o(e){return null!=e&&e.length?e.toString().split(","):null}n.d(t,{s:function(){return o}})},2639:function(e,t,n){"use strict";var o=n(9307),r=n(5609),i=n(5736),s=n(5869),c=n(8565),a=n(9045);const __=i.__;t.Z=e=>{let{steps:t,onMaximize:n,onDismiss:u,currentStepIndex:l}=e;const d=l+1,p=t.length-1+1;return(0,o.createElement)(r.Flex,{gap:0,className:"wpcom-tour-kit-minimized"},(0,o.createElement)(r.Button,{onClick:n,"aria-label":__("Resume Tour")},(0,o.createElement)(r.Flex,{gap:13},(0,o.createElement)("p",null,(0,o.createInterpolateElement)((0,i.sprintf)(__("Resume tour <span>(%1$d/%2$d)</span>"),d,p),{span:(0,o.createElement)("span",{className:"wpcom-tour-kit-minimized__tour-index"})})),(0,o.createElement)(s.Z,{icon:a.Z,size:24}))),(0,o.createElement)(r.Button,{onClick:u("close-btn-minimized"),"aria-label":__("Close Tour")},(0,o.createElement)(s.Z,{icon:c.Z,size:24})))}},8428:function(e,t,n){"use strict";var o=n(9307),r=n(5609),i=n(5736),s=n(2779),c=n.n(s),a=n(9549),u=n(658),l=n(5168);const __=i.__;t.Z=()=>{var e,t,n,i,s;const[d,p]=(0,o.useState)(),f=(0,a.S)().config,m=(null===(e=f.options)||void 0===e||null===(t=e.tourRating)||void 0===t||null===(n=t.useTourRating)||void 0===n?void 0:n.call(t))??d;let h=!1;if(null===(i=f.options)||void 0===i||null===(s=i.tourRating)||void 0===s||!s.enabled)return null;h||void 0===d||(h=!0);const g=e=>{if(h)return;const t=e?"thumbs-up":"thumbs-down";var n,o,r;t!==m&&(h=!0,p(t),null===(n=f.options)||void 0===n||null===(o=n.tourRating)||void 0===o||null===(r=o.onTourRate)||void 0===r||r.call(o,t))};return(0,o.createElement)(o.Fragment,null,(0,o.createElement)("p",{className:"wpcom-tour-kit-rating__end-text"},__("Did you find this guide helpful?")),(0,o.createElement)("div",null,(0,o.createElement)(r.Button,{"aria-label":__("Rate thumbs up"),className:c()("wpcom-tour-kit-rating__end-icon",{active:"thumbs-up"===m}),disabled:h,icon:l.Z,onClick:()=>g(!0),iconSize:24}),(0,o.createElement)(r.Button,{"aria-label":__("Rate thumbs down"),className:c()("wpcom-tour-kit-rating__end-icon",{active:"thumbs-down"===m}),disabled:h,icon:u.Z,onClick:()=>g(!1),iconSize:24})))}},6827:function(e,t,n){"use strict";var o=n(9307),r=n(3668),i=n(5609),s=n(5736);const __=s.__;t.Z=e=>{let{currentStepIndex:t,onDismiss:n,onGoToStep:s,onNextStep:c,onPreviousStep:a,setInitialFocusedElement:u,steps:l}=e;const d=0===t,p=l.length-1;return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(r.Z,{activePageIndex:t,numberOfPages:p+1,onChange:s},d?(0,o.createElement)("div",null,(0,o.createElement)(i.Button,{isTertiary:!0,onClick:n("no-thanks-btn")},__("Skip")),(0,o.createElement)(i.Button,{className:"wpcom-tour-kit-step-card-navigation__next-btn",isPrimary:!0,onClick:c,ref:u},__("Try it out!"))):(0,o.createElement)("div",null,(0,o.createElement)(i.Button,{isTertiary:!0,onClick:a},__("Back")),(0,o.createElement)(i.Button,{className:"wpcom-tour-kit-step-card-navigation__next-btn",isPrimary:!0,onClick:c,ref:u},__("Next")))))}},7208:function(e,t,n){"use strict";var o=n(9307),r=n(5609),i=n(5736),s=n(8565),c=n(6920);const __=i.__;t.Z=e=>{let{onMinimize:t,onDismiss:n}=e;return(0,o.createElement)("div",{className:"wpcom-tour-kit-step-card-overlay-controls"},(0,o.createElement)(r.Flex,null,(0,o.createElement)(r.Button,{label:__("Minimize Tour"),isPrimary:!0,className:"wpcom-tour-kit-step-card-overlay-controls__minimize-icon",icon:c.Z,iconSize:24,onClick:t}),(0,o.createElement)(r.Button,{label:__("Close Tour"),isPrimary:!0,icon:s.Z,iconSize:24,onClick:n("close-btn")})))}},809:function(e,t,n){"use strict";var o=n(9307),r=n(9321),i=n(5609),s=n(5736),c=n(8428),a=n(6827),u=n(7208);const __=s.__;t.Z=e=>{var t;let{steps:n,currentStepIndex:s,onMinimize:l,onDismiss:d,onGoToStep:p,onNextStep:f,onPreviousStep:m,setInitialFocusedElement:h}=e;const g=n.length-1,{descriptions:v,heading:w,imgSrc:y}=n[s].meta,b=s===g,_=v[(0,r.tq)()?"mobile":"desktop"]??v.desktop,E=(0,r.O9)(r.Gh);return(0,o.createElement)(i.Card,{className:"wpcom-tour-kit-step-card",isElevated:!0},(0,o.createElement)(u.Z,{onDismiss:d,onMinimize:l}),y&&(0,o.createElement)(i.CardMedia,{className:"wpcom-tour-kit-step-card__media"},(0,o.createElement)("picture",null,y.mobile&&(0,o.createElement)("source",{srcSet:y.mobile.src,type:y.mobile.type,media:null==E?void 0:E.media}),(0,o.createElement)("img",{alt:__("Tour Media"),src:null===(t=y.desktop)||void 0===t?void 0:t.src}))),(0,o.createElement)(i.CardBody,null,(0,o.createElement)("h2",{className:"wpcom-tour-kit-step-card__heading"},w),(0,o.createElement)("p",{className:"wpcom-tour-kit-step-card__description"},_,b?(0,o.createElement)(i.Button,{className:"wpcom-tour-kit-step-card__description",isTertiary:!0,onClick:()=>p(0),ref:h},__("Restart tour")):null)),(0,o.createElement)(i.CardFooter,null,b?(0,o.createElement)(c.Z,null):(0,o.createElement)(a.Z,{currentStepIndex:s,onDismiss:d,onGoToStep:p,onNextStep:f,onPreviousStep:m,setInitialFocusedElement:h,steps:n})))}},825:function(e,t,n){"use strict";var o=n(9307),r=n(809);t.Z=e=>{let{steps:t,currentStepIndex:n,onDismiss:i,onNextStep:s,onPreviousStep:c,onMinimize:a,setInitialFocusedElement:u,onGoToStep:l}=e;return(0,o.createElement)(r.Z,{steps:t,currentStepIndex:n,onDismiss:i,onMinimize:a,onGoToStep:l,onNextStep:s,onPreviousStep:c,setInitialFocusedElement:u})}},8038:function(e,t,n){"use strict";var o=n(9307),r=n(2313),i=n(5585),s=n(2639),c=n(825);n(4422);t.Z=e=>{let{config:t}=e;return(0,i.Z)(t.steps),(0,o.createElement)(r.Z,{__temp__className:"wpcom-tour-kit",config:{...t,renderers:{tourStep:c.Z,tourMinimized:s.Z}}})}},5585:function(e,t,n){"use strict";n.d(t,{Z:function(){return r}});var o=n(9307);function r(e){(0,o.useEffect)((()=>{e.forEach((e=>{var t,n;(null===(t=e.meta.imgSrc)||void 0===t?void 0:t.mobile)&&((new window.Image).src=e.meta.imgSrc.mobile.src),(null===(n=e.meta.imgSrc)||void 0===n?void 0:n.desktop)&&((new window.Image).src=e.meta.imgSrc.desktop.src)}))}),[e])}},9045:function(e,t,n){"use strict";var o=n(9307),r=n(444);const i=(0,o.createElement)(r.SVG,{width:"24",height:"24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)(r.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M14.086 5.412l3.476-.015c-.627.625-1.225 1.22-1.82 1.81l-.03.031c-.977.971-1.944 1.934-3.015 3.004l1.06 1.061c1.07-1.07 2.036-2.03 3.013-3.002l.03-.03 1.817-1.808-.03 3.448 1.5.013.046-5.28.007-.759-.76.003-5.301.024.007 1.5zM9.914 18.587l-3.476.016c.627-.625 1.225-1.22 1.82-1.81l.03-.031c.977-.971 1.944-1.934 3.015-3.004l-1.06-1.061c-1.07 1.069-2.036 2.03-3.012 3.001l-.001.001-.03.03-1.817 1.808.03-3.448-1.5-.013-.046 5.279-.007.76.76-.003 5.301-.024-.007-1.5z"}));t.Z=i},6920:function(e,t,n){"use strict";var o=n(9307),r=n(444);const i=(0,o.createElement)(r.SVG,{width:"24",height:"24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)(r.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.514 9.988l-3.476.016c.627-.626 1.225-1.22 1.82-1.811l.03-.03v-.001c.977-.971 1.944-1.933 3.015-3.004l-1.06-1.06c-1.07 1.069-2.037 2.03-3.013 3.001l-.03.03-1.818 1.809.03-3.449-1.5-.013-.045 5.28-.007.76.76-.004 5.301-.024-.007-1.5zM5.486 14.012l3.477-.016-1.82 1.811-.03.03c-.977.972-1.945 1.934-3.015 3.005l1.06 1.06c1.07-1.068 2.035-2.03 3.012-3V16.9l.03-.03 1.818-1.809-.03 3.449 1.5.013.046-5.28.006-.76-.76.004-5.3.024.006 1.5z",fill:"#fff"}));t.Z=i},658:function(e,t,n){"use strict";var o=n(9307),r=n(444);const i=(0,o.createElement)(r.SVG,{width:"24",height:"24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)(r.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M13.131 19.12a.667.667 0 001.227-.417l-.436-4.989h3.88c.954 0 1.64-.916 1.37-1.831L17.42 5.919a.286.286 0 00-.274-.205H9.429v7.588l3.702 5.818zm-5.417-5.977V5.714h-2v7.429h2zm5.98 8a2.381 2.381 0 01-2.01-1.103l-3.297-5.183H4V4h13.145a2 2 0 011.919 1.436l1.753 5.963a3.143 3.143 0 01-3.015 4.03h-2.01l.274 3.125a2.381 2.381 0 01-2.372 2.589z",fill:"#000"}));t.Z=i},5168:function(e,t,n){"use strict";var o=n(9307),r=n(444);const i=(0,o.createElement)(r.SVG,{width:"24",height:"24",fill:"none",xmlns:"http://www.w3.org/2000/SVG"},(0,o.createElement)(r.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M13.131 4.023a.667.667 0 011.227.416l-.436 4.99h3.88c.954 0 1.64.916 1.37 1.831l-1.753 5.963a.286.286 0 01-.274.206H9.429V9.84l3.702-5.818zM7.714 10v7.428h-2V10h2zm5.98-8c-.814 0-1.572.416-2.01 1.103L8.388 8.286H4v10.857h13.145a2 2 0 001.919-1.436l1.753-5.963a3.143 3.143 0 00-3.015-4.03h-2.01l.274-3.125A2.381 2.381 0 0013.694 2z",fill:"#000"}));t.Z=i},6951:function(e,t,n){"use strict";n.d(t,{_z:function(){return u}});var o=n(7896),r=n(9307),i=n(9321),s=n(4333),c=n(9196);function a(e){const[t,n]=(0,c.useState)((()=>({isActive:(0,i.kV)(e),breakpoint:e})));return(0,c.useEffect)((()=>(0,i.Sp)(e,(function(t){n((n=>n.isActive===t&&n.breakpoint===e?n:{isActive:t,breakpoint:e}))}))),[e]),e===t.breakpoint?t.isActive:(0,i.kV)(e)}function u(){return a(i.Gh)}(0,s.createHigherOrderComponent)((e=>(0,c.forwardRef)(((t,n)=>{const s=a(i.Gh);return(0,r.createElement)(e,(0,o.Z)({},t,{isBreakpointActive:s,ref:n}))}))),"WithMobileBreakpoint"),(0,s.createHigherOrderComponent)((e=>(0,c.forwardRef)(((t,n)=>{const s=a(i.oh);return(0,r.createElement)(e,(0,o.Z)({},t,{isBreakpointActive:s,ref:n}))}))),"WithDesktopBreakpoint")},9321:function(e,t,n){"use strict";n.d(t,{Gh:function(){return r},oh:function(){return i},O9:function(){return d},kV:function(){return p},Sp:function(){return f},tq:function(){return m}});const o=769,r="<480px",i=">960px",s="undefined"==typeof window||!window.matchMedia,c=()=>null;function a(e){return{addListener:()=>{},removeListener:()=>{},...e}}function u(e){const{min:t,max:n}=e??{};return void 0!==t&&void 0!==n?s?a({matches:o>t&&o<=n}):window.matchMedia(`(min-width: ${t+1}px) and (max-width: ${n}px)`):void 0!==t?s?a({matches:o>t}):window.matchMedia(`(min-width: ${t+1}px)`):void 0!==n&&(s?a({matches:o<=n}):window.matchMedia(`(max-width: ${n}px)`))}const l={"<480px":u({max:480}),"<660px":u({max:660}),"<782px":u({max:782}),"<800px":u({max:800}),"<960px":u({max:960}),"<1040px":u({max:1040}),"<1280px":u({max:1280}),"<1400px":u({max:1400}),">480px":u({min:480}),">660px":u({min:660}),">782px":u({min:782}),">800px":u({min:800}),">960px":u({min:960}),">1040px":u({min:1040}),">1280px":u({min:1280}),">1400px":u({min:1400}),"480px-660px":u({min:480,max:660}),"660px-960px":u({min:660,max:960}),"480px-960px":u({min:480,max:960})};function d(e){if(l.hasOwnProperty(e))return l[e];try{console.warn("Undefined breakpoint used in `mobile-first-breakpoint`",e)}catch(t){}}function p(e){const t=d(e);return t?t.matches:void 0}function f(e,t){if(!t)return c;const n=d(e);if(n&&!s){const e=e=>t(e.matches);return n.addListener(e),()=>n.removeListener(e)}return c}function m(){return p(r)}},8049:function(e,t,n){t.formatArgs=function(t){if(t[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+t[0]+(this.useColors?"%c ":" ")+"+"+e.exports.humanize(this.diff),!this.useColors)return;const n="color: "+this.color;t.splice(1,0,n,"color: inherit");let o=0,r=0;t[0].replace(/%[a-zA-Z%]/g,(e=>{"%%"!==e&&(o++,"%c"===e&&(r=o))})),t.splice(r,0,n)},t.save=function(e){try{e?t.storage.setItem("debug",e):t.storage.removeItem("debug")}catch(n){}},t.load=function(){let e;try{e=t.storage.getItem("debug")}catch(n){}!e&&"undefined"!=typeof process&&"env"in process&&(e=process.env.DEBUG);return e},t.useColors=function(){if("undefined"!=typeof window&&window.process&&("renderer"===window.process.type||window.process.__nwjs))return!0;if("undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/))return!1;return"undefined"!=typeof document&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||"undefined"!=typeof window&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)&&parseInt(RegExp.$1,10)>=31||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)},t.storage=function(){try{return localStorage}catch(e){}}(),t.destroy=(()=>{let e=!1;return()=>{e||(e=!0,console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."))}})(),t.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"],t.log=console.debug||console.log||(()=>{}),e.exports=n(2632)(t);const{formatters:o}=e.exports;o.j=function(e){try{return JSON.stringify(e)}catch(t){return"[UnexpectedJSONParseError]: "+t.message}}},2632:function(e,t,n){e.exports=function(e){function t(e){let n,r,i,s=null;function c(){for(var e=arguments.length,o=new Array(e),r=0;r<e;r++)o[r]=arguments[r];if(!c.enabled)return;const i=c,s=Number(new Date),a=s-(n||s);i.diff=a,i.prev=n,i.curr=s,n=s,o[0]=t.coerce(o[0]),"string"!=typeof o[0]&&o.unshift("%O");let u=0;o[0]=o[0].replace(/%([a-zA-Z%])/g,((e,n)=>{if("%%"===e)return"%";u++;const r=t.formatters[n];if("function"==typeof r){const t=o[u];e=r.call(i,t),o.splice(u,1),u--}return e})),t.formatArgs.call(i,o);const l=i.log||t.log;l.apply(i,o)}return c.namespace=e,c.useColors=t.useColors(),c.color=t.selectColor(e),c.extend=o,c.destroy=t.destroy,Object.defineProperty(c,"enabled",{enumerable:!0,configurable:!1,get:()=>null!==s?s:(r!==t.namespaces&&(r=t.namespaces,i=t.enabled(e)),i),set:e=>{s=e}}),"function"==typeof t.init&&t.init(c),c}function o(e,n){const o=t(this.namespace+(void 0===n?":":n)+e);return o.log=this.log,o}function r(e){return e.toString().substring(2,e.toString().length-2).replace(/\.\*\?$/,"*")}return t.debug=t,t.default=t,t.coerce=function(e){if(e instanceof Error)return e.stack||e.message;return e},t.disable=function(){const e=[...t.names.map(r),...t.skips.map(r).map((e=>"-"+e))].join(",");return t.enable(""),e},t.enable=function(e){let n;t.save(e),t.namespaces=e,t.names=[],t.skips=[];const o=("string"==typeof e?e:"").split(/[\s,]+/),r=o.length;for(n=0;n<r;n++)o[n]&&("-"===(e=o[n].replace(/\*/g,".*?"))[0]?t.skips.push(new RegExp("^"+e.substr(1)+"$")):t.names.push(new RegExp("^"+e+"$")))},t.enabled=function(e){if("*"===e[e.length-1])return!0;let n,o;for(n=0,o=t.skips.length;n<o;n++)if(t.skips[n].test(e))return!1;for(n=0,o=t.names.length;n<o;n++)if(t.names[n].test(e))return!0;return!1},t.humanize=n(1378),t.destroy=function(){console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.")},Object.keys(e).forEach((n=>{t[n]=e[n]})),t.names=[],t.skips=[],t.formatters={},t.selectColor=function(e){let n=0;for(let t=0;t<e.length;t++)n=(n<<5)-n+e.charCodeAt(t),n|=0;return t.colors[Math.abs(n)%t.colors.length]},t.enable(t.load()),t}},3790:function(e,t,n){"use strict";e.exports=n.p+"images/draft-post-19715e868be3c82bb350.svg"},5275:function(e,t,n){"use strict";e.exports=n.p+"images/post-published-ca9ddfc04a7c889a72d2.svg"},4242:function(e,t,n){"use strict";e.exports=n.p+"images/product-published-f8461fe85ee7eb5713c8.svg"},9711:function(e,t,n){"use strict";e.exports=n.p+"images/block-picker-baad989c3eaa6c60cc56.svg"},6595:function(e,t,n){"use strict";e.exports=n.p+"images/editor-a1965f46cfb792664a14.svg"},5486:function(e,t,n){"use strict";e.exports=n.p+"images/preview-a3fa241fd59995b1fc42.svg"},7821:function(e,t,n){"use strict";e.exports=n.p+"images/private-761a5407869f32039248.svg"},9196:function(e){"use strict";e.exports=window.React},3288:function(e){"use strict";e.exports=window["a8c-fse-common-data-stores"]},2819:function(e){"use strict";e.exports=window.lodash},6989:function(e){"use strict";e.exports=window.wp.apiFetch},5609:function(e){"use strict";e.exports=window.wp.components},4333:function(e){"use strict";e.exports=window.wp.compose},9818:function(e){"use strict";e.exports=window.wp.data},3418:function(e){"use strict";e.exports=window.wp.dataControls},5904:function(e){"use strict";e.exports=window.wp.dom},9307:function(e){"use strict";e.exports=window.wp.element},2694:function(e){"use strict";e.exports=window.wp.hooks},5736:function(e){"use strict";e.exports=window.wp.i18n},462:function(e){"use strict";e.exports=window.wp.nux},8817:function(e){"use strict";e.exports=window.wp.plugins},444:function(e){"use strict";e.exports=window.wp.primitives},6483:function(e){"use strict";e.exports=window.wp.url},6666:function(e,t,n){"use strict";function o(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}n.d(t,{Z:function(){return o}})},7896:function(e,t,n){"use strict";function o(){return o=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var o in n)Object.prototype.hasOwnProperty.call(n,o)&&(e[o]=n[o])}return e},o.apply(this,arguments)}n.d(t,{Z:function(){return o}})}},t={};function n(o){var r=t[o];if(void 0!==r)return r.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,n),i.exports}n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,{a:t}),t},n.d=function(e,t){for(var o in t)n.o(t,o)&&!n.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},function(){var e;n.g.importScripts&&(e=n.g.location+"");var t=n.g.document;if(!e&&t&&(t.currentScript&&(e=t.currentScript.src),!e)){var o=t.getElementsByTagName("script");o.length&&(e=o[o.length-1].src)}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),n.p=e}();var o={};!function(){"use strict";n.r(o);var e=n(1970);n(1568),n(7869);(0,e.z2)()}(),window.EditingToolkit=o}();
|
wpcom-block-editor-nux/dist/wpcom-block-editor-nux.rtl.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.wpcom-block-editor-nux-modal .components-modal__header{background-color:transparent;border-bottom:0;height:auto;left:0;margin:0;padding:10px;position:absolute;right:0}.wpcom-block-editor-nux-modal .components-modal__header button{right:unset}.wpcom-block-editor-nux-modal .components-modal__header button svg path{transform:scale(1.4);transform-origin:center}.wpcom-block-editor-nux-modal .components-modal__content{margin-top:0;padding:84px 20px 20px}.wpcom-block-editor-nux-modal .components-modal__content:before{margin:0}@media(min-width:480px){.wpcom-block-editor-nux-modal .components-modal__content{text-align:center}}.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__image-container{display:flex;justify-content:center}.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__title{font-size:2.25rem;font-weight:500;line-height:1.2;margin:34px 0 0}@media(min-width:480px){.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__title{margin-top:24px}}.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__description{font-size:1rem;margin:16px 0 0;max-width:352px}@media(min-width:480px){.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__description{font-size:1.125rem;margin:20px auto 0}}.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__buttons{display:flex;flex-direction:column;justify-content:center;margin-top:24px}.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__buttons .components-button{border-radius:3px;font-size:.875rem;height:40px;justify-content:center;min-width:130px}.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__buttons .components-button+.components-button{margin-top:12px}@media(min-width:480px){.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__buttons{flex-direction:row;margin-top:28px}.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__buttons .components-button+.components-button{margin-right:16px;margin-top:0}}@media(min-width:600px){.wpcom-block-editor-draft-post-modal .components-modal__content{padding:48px 128px}}.wpcom-block-editor-draft-post-modal .wpcom-block-editor-nux-modal__image-container img{height:95px;width:209px}@media(min-width:600px){.wpcom-block-editor-post-published-modal .components-modal__content{padding:48px 90px}}.wpcom-block-editor-post-published-modal .wpcom-block-editor-nux-modal__image-container img{height:85px;width:158px}.wpcom-block-editor-post-published-modal .wpcom-block-editor-nux-modal__buttons .components-button{min-width:113px}@font-face{font-display:swap;font-family:Recoleta;font-weight:400;src:url(https://s1.wp.com/i/fonts/recoleta/400.woff2) format("woff2"),url(https://s1.wp.com/i/fonts/recoleta/400.woff) format("woff")}.wp-brand-font{font-family:"Noto Serif",Georgia,Times New Roman,Times,serif;font-weight:400}[lang*=af] .wp-brand-font,[lang*=ca] .wp-brand-font,[lang*=cs] .wp-brand-font,[lang*=da] .wp-brand-font,[lang*=de] .wp-brand-font,[lang*=en] .wp-brand-font,[lang*=es] .wp-brand-font,[lang*=eu] .wp-brand-font,[lang*=fi] .wp-brand-font,[lang*=fr] .wp-brand-font,[lang*=gl] .wp-brand-font,[lang*=hr] .wp-brand-font,[lang*=hu] .wp-brand-font,[lang*=id] .wp-brand-font,[lang*=is] .wp-brand-font,[lang*=it] .wp-brand-font,[lang*=lv] .wp-brand-font,[lang*=mt] .wp-brand-font,[lang*=nb] .wp-brand-font,[lang*=nl] .wp-brand-font,[lang*=pl] .wp-brand-font,[lang*=pt] .wp-brand-font,[lang*=ro] .wp-brand-font,[lang*=ru] .wp-brand-font,[lang*=sk] .wp-brand-font,[lang*=sl] .wp-brand-font,[lang*=sq] .wp-brand-font,[lang*=sr] .wp-brand-font,[lang*=sv] .wp-brand-font,[lang*=sw] .wp-brand-font,[lang*=tr] .wp-brand-font,[lang*=uz] .wp-brand-font{font-family:Recoleta,"Noto Serif",Georgia,Times New Roman,Times,serif}@keyframes onboarding-loading-pulse{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}.wpcom-block-editor-nux.components-modal__frame{height:65vh;overflow:visible;top:calc(17.5vh - 35px)}@media(max-width:660px){.wpcom-block-editor-nux.components-modal__frame{left:5vw;min-width:90vw;right:5vw;width:90vw}}@media(min-width:660px){.wpcom-block-editor-nux.components-modal__frame{height:350px;top:calc(50% - 35px);width:720px}}.wpcom-block-editor-nux .components-modal__header{max-width:90%;position:absolute;right:5%}@media(min-width:660px){.wpcom-block-editor-nux .components-modal__header{display:none}}.wpcom-block-editor-nux .components-guide__container{margin-top:0}.wpcom-block-editor-nux .components-guide__footer{background:#fff;border-top:1px solid #dcdcde;bottom:-70px;display:flex;height:70px;justify-content:center;margin:0;padding:20px 0;position:absolute;right:0;width:100%}@media(min-width:660px){.wpcom-block-editor-nux .components-guide__footer{border-top:none}}.wpcom-block-editor-nux .components-guide__page{height:100%;justify-content:start;max-width:90vw;position:absolute;width:100%}@media(min-width:660px){.wpcom-block-editor-nux .components-guide__page{max-width:100%}}.wpcom-block-editor-nux .components-guide__page-control{display:none;height:0;margin:0 auto;overflow:visible;position:relative;top:100%;z-index:2}.wpcom-block-editor-nux .components-guide__page-control:before{content:"";display:inline-block;height:70px;vertical-align:middle}.wpcom-block-editor-nux .components-guide__page-control li{margin-bottom:0;vertical-align:middle}@media(min-width:660px){.wpcom-block-editor-nux .components-guide__page-control{display:block}}.wpcom-block-editor-nux__page{background:#fff;display:flex;flex-direction:column-reverse;height:90%;justify-content:flex-end;max-width:90vw;width:100%}@media(min-width:660px){.wpcom-block-editor-nux__page{bottom:0;flex-direction:row;justify-content:flex-start;max-width:100%;min-height:350px;position:absolute}.wpcom-block-editor-nux__text,.wpcom-block-editor-nux__visual{flex:1 0 50%;min-width:290px}}.wpcom-block-editor-nux__text{height:60%;padding:0 25px 25px}@media(min-width:660px){.wpcom-block-editor-nux__text{height:auto;padding:40px 50px}}.wpcom-block-editor-nux__visual{background:#1381d8;height:40%;text-align:center}@media(min-width:660px){.wpcom-block-editor-nux__visual{height:auto}}.wpcom-block-editor-nux__heading{color:#1d2327;font-family:Recoleta,"Noto Serif",Georgia,Times New Roman,Times,serif;font-size:32px;font-weight:400;letter-spacing:-.4px;line-height:1.19}@media(min-width:660px){.wpcom-block-editor-nux__heading{font-size:42px}}body.locale-de .wpcom-block-editor-nux__heading{font-size:24px}@media(min-width:660px){body.locale-de .wpcom-block-editor-nux__heading{font-size:28px}}.wpcom-block-editor-nux__description{color:#50575e;font-size:15px;line-height:22px}@media(min-width:660px){.wpcom-block-editor-nux__description{font-size:17px;line-height:26px}}.wpcom-block-editor-nux__image{align-self:center;flex:1;height:auto;max-height:100%;max-width:100%}.wpcom-block-editor-nux__image.align-bottom{align-self:flex-end}@media(min-width:660px){.wpcom-block-editor-nux__image{max-height:none}}.welcome-tour-card__heading{font-size:1.125rem;margin:.5rem 0}.welcome-tour-card__description{font-size:.875rem;line-height:1.5rem;margin:0}.welcome-tour-card__description .components-button{height:auto;line-height:1;padding:0 4px 0 0;text-decoration:underline}.wpcom-editor-welcome-tour__minimized{background-color:#fff;border-radius:2px;box-shadow:0 2px 6px rgba(60,66,87,.08),0 0 0 1px rgba(60,66,87,.16),0 1px 1px rgba(0,0,0,.08);color:#000}.wpcom-editor-welcome-tour__minimized .components-button{height:44px}.wpcom-editor-welcome-tour__minimized .components-button .wpcom-editor-welcome-tour__minimized-tour-index{color:#949494}.wpcom-editor-welcome-tour__minimized .components-button svg{color:#50575e}.wpcom-editor-welcome-tour__minimized .components-button:hover .wpcom-editor-welcome-tour__minimized-tour-index,.wpcom-editor-welcome-tour__minimized .components-button:hover svg{color:inherit}.wpcom-editor-welcome-tour-card-frame{position:relative}.wpcom-editor-welcome-tour-card-frame .components-guide__page-control{bottom:0;margin:0;position:absolute;right:16px}.wpcom-editor-welcome-tour-card-frame .components-guide__page-control li{margin-bottom:0}.wpcom-editor-welcome-tour>.tour-kit-frame__container{box-shadow:none}.welcome-tour-card{max-width:92vw;width:400px}.welcome-tour-card.welcome-tour-card.is-elevated{box-shadow:none;box-shadow:0 0 0 1px rgba(0,0,0,.1),0 2px 4px 0 rgba(0,0,0,.1)}.welcome-tour-card.components-card{border:none;border-radius:4px;box-shadow:none}.welcome-tour-card .components-card__body{min-height:114px}.welcome-tour-card .components-card__body,.welcome-tour-card .components-card__footer{border-top:none;padding:16px!important}.welcome-tour-card .components-card__footer .welcome-tour__end-text{color:#949494;font-size:.875rem;font-style:italic}.welcome-tour-card .components-card__footer .welcome-tour__end-icon.components-button.has-icon{background-color:#f6f7f7;border-radius:50%;color:#949494;margin-right:8px}.welcome-tour-card .components-card__footer .welcome-tour__end-icon.components-button.has-icon path{fill:#949494}.welcome-tour-card .components-card__footer .welcome-tour__end-icon.components-button.has-icon.active{background-color:#000;opacity:1}.welcome-tour-card .components-card__footer .welcome-tour__end-icon.components-button.has-icon.active path{fill:#fff}.welcome-tour-card .components-card__media{background-color:#e7eaeb;height:0;padding-top:66%;position:relative;width:100%}.welcome-tour-card .components-card__media img{position:absolute;right:0;top:0;width:100%}.welcome-tour-card .components-guide__page-control{margin:0}.welcome-tour-card .components-guide__page-control .components-button{min-width:auto}.welcome-tour-card .components-guide__page-control .components-button.has-icon{padding:3px}.welcome-tour-card .components-guide__page-control li{margin-bottom:0}.welcome-tour-card__minimize-icon svg{position:relative;right:-2px}.welcome-tour-card__overlay-controls{left:0;padding:12px;position:absolute;right:0;z-index:1}.welcome-tour-card__overlay-controls .components-button{background:#32373c;height:32px;min-width:32px;opacity:.7;transition:opacity .2s;width:32px}.welcome-tour-card__overlay-controls .components-button:active{opacity:.9}@media(hover:hover)and (pointer:fine){.welcome-tour-card__overlay-controls .components-button{opacity:0}.tour-kit-frame__container:focus-within .welcome-tour-card__overlay-controls .components-button,.tour-kit-frame__container:hover .welcome-tour-card__overlay-controls .components-button{opacity:.7}.tour-kit-frame__container:focus-within .welcome-tour-card__overlay-controls .components-button:focus,.tour-kit-frame__container:focus-within .welcome-tour-card__overlay-controls .components-button:hover,.tour-kit-frame__container:hover .welcome-tour-card__overlay-controls .components-button:focus,.tour-kit-frame__container:hover .welcome-tour-card__overlay-controls .components-button:hover{opacity:.9}}.welcome-tour-card__next-btn{justify-content:center;margin-right:12px;min-width:85px}.welcome-tour-card__media img{display:block;height:auto;max-width:100%;width:100%}.wpcom-editor-welcome-tour .wpcom-editor-welcome-tour__step.is-with-extra-padding .components-card__media img{right:14%;top:14%;width:86%}:root{--studio-white:#fff;--studio-black:#000;--studio-gray-0:#f6f7f7;--studio-gray-5:#dcdcde;--studio-gray-10:#c3c4c7;--studio-gray-20:#a7aaad;--studio-gray-30:#8c8f94;--studio-gray-40:#787c82;--studio-gray-50:#646970;--studio-gray-60:#50575e;--studio-gray-70:#3c434a;--studio-gray-80:#2c3338;--studio-gray-90:#1d2327;--studio-gray-100:#101517;--studio-gray:#646970;--studio-blue-0:#e9f0f5;--studio-blue-5:#bbe0fa;--studio-blue-10:#91caf2;--studio-blue-20:#68b3e8;--studio-blue-30:#399ce3;--studio-blue-40:#1689db;--studio-blue-50:#0675c4;--studio-blue-60:#055d9c;--studio-blue-70:#044b7a;--studio-blue-80:#02395c;--studio-blue-90:#01283d;--studio-blue-100:#001621;--studio-blue:#0675c4;--studio-purple-0:#f2e9ed;--studio-purple-5:#ebcee0;--studio-purple-10:#e3afd5;--studio-purple-20:#d48fc8;--studio-purple-30:#c475bd;--studio-purple-40:#b35eb1;--studio-purple-50:#984a9c;--studio-purple-60:#7c3982;--studio-purple-70:#662c6e;--studio-purple-80:#4d2054;--studio-purple-90:#35163b;--studio-purple-100:#1e0c21;--studio-purple:#984a9c;--studio-pink-0:#f5e9ed;--studio-pink-5:#f2ceda;--studio-pink-10:#f7a8c3;--studio-pink-20:#f283aa;--studio-pink-30:#eb6594;--studio-pink-40:#e34c84;--studio-pink-50:#c9356e;--studio-pink-60:#ab235a;--studio-pink-70:#8c1749;--studio-pink-80:#700f3b;--studio-pink-90:#4f092a;--studio-pink-100:#260415;--studio-pink:#c9356e;--studio-red-0:#f7ebec;--studio-red-5:#facfd2;--studio-red-10:#ffabaf;--studio-red-20:#ff8085;--studio-red-30:#f86368;--studio-red-40:#e65054;--studio-red-50:#d63638;--studio-red-60:#b32d2e;--studio-red-70:#8a2424;--studio-red-80:#691c1c;--studio-red-90:#451313;--studio-red-100:#240a0a;--studio-red:#d63638;--studio-orange-0:#f5ece6;--studio-orange-5:#f7dcc6;--studio-orange-10:#ffbf86;--studio-orange-20:#faa754;--studio-orange-30:#e68b28;--studio-orange-40:#d67709;--studio-orange-50:#b26200;--studio-orange-60:#8a4d00;--studio-orange-70:#704000;--studio-orange-80:#543100;--studio-orange-90:#361f00;--studio-orange-100:#1f1200;--studio-orange:#b26200;--studio-yellow-0:#f5f1e1;--studio-yellow-5:#f5e6b3;--studio-yellow-10:#f2d76b;--studio-yellow-20:#f0c930;--studio-yellow-30:#deb100;--studio-yellow-40:#c08c00;--studio-yellow-50:#9d6e00;--studio-yellow-60:#7d5600;--studio-yellow-70:#674600;--studio-yellow-80:#4f3500;--studio-yellow-90:#320;--studio-yellow-100:#1c1300;--studio-yellow:#9d6e00;--studio-green-0:#e6f2e8;--studio-green-5:#b8e6bf;--studio-green-10:#68de86;--studio-green-20:#1ed15a;--studio-green-30:#00ba37;--studio-green-40:#00a32a;--studio-green-50:#008a20;--studio-green-60:#007017;--studio-green-70:#005c12;--studio-green-80:#00450c;--studio-green-90:#003008;--studio-green-100:#001c05;--studio-green:#008a20;--studio-celadon-0:#e4f2ed;--studio-celadon-5:#a7e8d3;--studio-celadon-10:#66deb9;--studio-celadon-20:#31cc9f;--studio-celadon-30:#09b585;--studio-celadon-40:#009e73;--studio-celadon-50:#008763;--studio-celadon-60:#007053;--studio-celadon-70:#005c44;--studio-celadon-80:#004533;--studio-celadon-90:#003024;--studio-celadon-100:#001c15;--studio-celadon:#008763;--studio-wordpress-blue-0:#e6f1f5;--studio-wordpress-blue-5:#bedae6;--studio-wordpress-blue-10:#98c6d9;--studio-wordpress-blue-20:#6ab3d0;--studio-wordpress-blue-30:#3895ba;--studio-wordpress-blue-40:#187aa2;--studio-wordpress-blue-50:#006088;--studio-wordpress-blue-60:#004e6e;--studio-wordpress-blue-70:#003c56;--studio-wordpress-blue-80:#002c40;--studio-wordpress-blue-90:#001d2d;--studio-wordpress-blue-100:#00101c;--studio-wordpress-blue:#006088;--studio-simplenote-blue-0:#e9ecf5;--studio-simplenote-blue-5:#ced9f2;--studio-simplenote-blue-10:#abc1f5;--studio-simplenote-blue-20:#84a4f0;--studio-simplenote-blue-30:#618df2;--studio-simplenote-blue-40:#4678eb;--studio-simplenote-blue-50:#3361cc;--studio-simplenote-blue-60:#1d4fc4;--studio-simplenote-blue-70:#113ead;--studio-simplenote-blue-80:#0d2f85;--studio-simplenote-blue-90:#09205c;--studio-simplenote-blue-100:#05102e;--studio-simplenote-blue:#3361cc;--studio-woocommerce-purple-0:#f7edf7;--studio-woocommerce-purple-5:#e5cfe8;--studio-woocommerce-purple-10:#d6b4e0;--studio-woocommerce-purple-20:#c792e0;--studio-woocommerce-purple-30:#af7dd1;--studio-woocommerce-purple-40:#9a69c7;--studio-woocommerce-purple-50:#7f54b3;--studio-woocommerce-purple-60:#674399;--studio-woocommerce-purple-70:#533582;--studio-woocommerce-purple-80:#3c2861;--studio-woocommerce-purple-90:#271b3d;--studio-woocommerce-purple-100:#140e1f;--studio-woocommerce-purple:#7f54b3;--studio-jetpack-green-0:#f0f2eb;--studio-jetpack-green-5:#d0e6b8;--studio-jetpack-green-10:#9dd977;--studio-jetpack-green-20:#64ca43;--studio-jetpack-green-30:#2fb41f;--studio-jetpack-green-40:#069e08;--studio-jetpack-green-50:#008710;--studio-jetpack-green-60:#007117;--studio-jetpack-green-70:#005b18;--studio-jetpack-green-80:#004515;--studio-jetpack-green-90:#003010;--studio-jetpack-green-100:#001c09;--studio-jetpack-green:#069e08;--studio-white-rgb:255,255,255;--studio-black-rgb:0,0,0;--studio-gray-0-rgb:246,247,247;--studio-gray-5-rgb:220,220,222;--studio-gray-10-rgb:195,196,199;--studio-gray-20-rgb:167,170,173;--studio-gray-30-rgb:140,143,148;--studio-gray-40-rgb:120,124,130;--studio-gray-50-rgb:100,105,112;--studio-gray-60-rgb:80,87,94;--studio-gray-70-rgb:60,67,74;--studio-gray-80-rgb:44,51,56;--studio-gray-90-rgb:29,35,39;--studio-gray-100-rgb:16,21,23;--studio-gray-rgb:100,105,112;--studio-blue-0-rgb:233,240,245;--studio-blue-5-rgb:187,224,250;--studio-blue-10-rgb:145,202,242;--studio-blue-20-rgb:104,179,232;--studio-blue-30-rgb:57,156,227;--studio-blue-40-rgb:22,137,219;--studio-blue-50-rgb:6,117,196;--studio-blue-60-rgb:5,93,156;--studio-blue-70-rgb:4,75,122;--studio-blue-80-rgb:2,57,92;--studio-blue-90-rgb:1,40,61;--studio-blue-100-rgb:0,22,33;--studio-blue-rgb:6,117,196;--studio-purple-0-rgb:242,233,237;--studio-purple-5-rgb:235,206,224;--studio-purple-10-rgb:227,175,213;--studio-purple-20-rgb:212,143,200;--studio-purple-30-rgb:196,117,189;--studio-purple-40-rgb:179,94,177;--studio-purple-50-rgb:152,74,156;--studio-purple-60-rgb:124,57,130;--studio-purple-70-rgb:102,44,110;--studio-purple-80-rgb:77,32,84;--studio-purple-90-rgb:53,22,59;--studio-purple-100-rgb:30,12,33;--studio-purple-rgb:152,74,156;--studio-pink-0-rgb:245,233,237;--studio-pink-5-rgb:242,206,218;--studio-pink-10-rgb:247,168,195;--studio-pink-20-rgb:242,131,170;--studio-pink-30-rgb:235,101,148;--studio-pink-40-rgb:227,76,132;--studio-pink-50-rgb:201,53,110;--studio-pink-60-rgb:171,35,90;--studio-pink-70-rgb:140,23,73;--studio-pink-80-rgb:112,15,59;--studio-pink-90-rgb:79,9,42;--studio-pink-100-rgb:38,4,21;--studio-pink-rgb:201,53,110;--studio-red-0-rgb:247,235,236;--studio-red-5-rgb:250,207,210;--studio-red-10-rgb:255,171,175;--studio-red-20-rgb:255,128,133;--studio-red-30-rgb:248,99,104;--studio-red-40-rgb:230,80,84;--studio-red-50-rgb:214,54,56;--studio-red-60-rgb:179,45,46;--studio-red-70-rgb:138,36,36;--studio-red-80-rgb:105,28,28;--studio-red-90-rgb:69,19,19;--studio-red-100-rgb:36,10,10;--studio-red-rgb:214,54,56;--studio-orange-0-rgb:245,236,230;--studio-orange-5-rgb:247,220,198;--studio-orange-10-rgb:255,191,134;--studio-orange-20-rgb:250,167,84;--studio-orange-30-rgb:230,139,40;--studio-orange-40-rgb:214,119,9;--studio-orange-50-rgb:178,98,0;--studio-orange-60-rgb:138,77,0;--studio-orange-70-rgb:112,64,0;--studio-orange-80-rgb:84,49,0;--studio-orange-90-rgb:54,31,0;--studio-orange-100-rgb:31,18,0;--studio-orange-rgb:178,98,0;--studio-yellow-0-rgb:245,241,225;--studio-yellow-5-rgb:245,230,179;--studio-yellow-10-rgb:242,215,107;--studio-yellow-20-rgb:240,201,48;--studio-yellow-30-rgb:222,177,0;--studio-yellow-40-rgb:192,140,0;--studio-yellow-50-rgb:157,110,0;--studio-yellow-60-rgb:125,86,0;--studio-yellow-70-rgb:103,70,0;--studio-yellow-80-rgb:79,53,0;--studio-yellow-90-rgb:51,34,0;--studio-yellow-100-rgb:28,19,0;--studio-yellow-rgb:157,110,0;--studio-green-0-rgb:230,242,232;--studio-green-5-rgb:184,230,191;--studio-green-10-rgb:104,222,134;--studio-green-20-rgb:30,209,90;--studio-green-30-rgb:0,186,55;--studio-green-40-rgb:0,163,42;--studio-green-50-rgb:0,138,32;--studio-green-60-rgb:0,112,23;--studio-green-70-rgb:0,92,18;--studio-green-80-rgb:0,69,12;--studio-green-90-rgb:0,48,8;--studio-green-100-rgb:0,28,5;--studio-green-rgb:0,138,32;--studio-celadon-0-rgb:228,242,237;--studio-celadon-5-rgb:167,232,211;--studio-celadon-10-rgb:102,222,185;--studio-celadon-20-rgb:49,204,159;--studio-celadon-30-rgb:9,181,133;--studio-celadon-40-rgb:0,158,115;--studio-celadon-50-rgb:0,135,99;--studio-celadon-60-rgb:0,112,83;--studio-celadon-70-rgb:0,92,68;--studio-celadon-80-rgb:0,69,51;--studio-celadon-90-rgb:0,48,36;--studio-celadon-100-rgb:0,28,21;--studio-celadon-rgb:0,135,99;--studio-wordpress-blue-0-rgb:230,241,245;--studio-wordpress-blue-5-rgb:190,218,230;--studio-wordpress-blue-10-rgb:152,198,217;--studio-wordpress-blue-20-rgb:106,179,208;--studio-wordpress-blue-30-rgb:56,149,186;--studio-wordpress-blue-40-rgb:24,122,162;--studio-wordpress-blue-50-rgb:0,96,136;--studio-wordpress-blue-60-rgb:0,78,110;--studio-wordpress-blue-70-rgb:0,60,86;--studio-wordpress-blue-80-rgb:0,44,64;--studio-wordpress-blue-90-rgb:0,29,45;--studio-wordpress-blue-100-rgb:0,16,28;--studio-wordpress-blue-rgb:0,96,136;--studio-simplenote-blue-0-rgb:233,236,245;--studio-simplenote-blue-5-rgb:206,217,242;--studio-simplenote-blue-10-rgb:171,193,245;--studio-simplenote-blue-20-rgb:132,164,240;--studio-simplenote-blue-30-rgb:97,141,242;--studio-simplenote-blue-40-rgb:70,120,235;--studio-simplenote-blue-50-rgb:51,97,204;--studio-simplenote-blue-60-rgb:29,79,196;--studio-simplenote-blue-70-rgb:17,62,173;--studio-simplenote-blue-80-rgb:13,47,133;--studio-simplenote-blue-90-rgb:9,32,92;--studio-simplenote-blue-100-rgb:5,16,46;--studio-simplenote-blue-rgb:51,97,204;--studio-woocommerce-purple-0-rgb:247,237,247;--studio-woocommerce-purple-5-rgb:229,207,232;--studio-woocommerce-purple-10-rgb:214,180,224;--studio-woocommerce-purple-20-rgb:199,146,224;--studio-woocommerce-purple-30-rgb:175,125,209;--studio-woocommerce-purple-40-rgb:154,105,199;--studio-woocommerce-purple-50-rgb:127,84,179;--studio-woocommerce-purple-60-rgb:103,67,153;--studio-woocommerce-purple-70-rgb:83,53,130;--studio-woocommerce-purple-80-rgb:60,40,97;--studio-woocommerce-purple-90-rgb:39,27,61;--studio-woocommerce-purple-100-rgb:20,14,31;--studio-woocommerce-purple-rgb:127,84,179;--studio-jetpack-green-0-rgb:240,242,235;--studio-jetpack-green-5-rgb:208,230,184;--studio-jetpack-green-10-rgb:157,217,119;--studio-jetpack-green-20-rgb:100,202,67;--studio-jetpack-green-30-rgb:47,180,31;--studio-jetpack-green-40-rgb:6,158,8;--studio-jetpack-green-50-rgb:0,135,16;--studio-jetpack-green-60-rgb:0,113,23;--studio-jetpack-green-70-rgb:0,91,24;--studio-jetpack-green-80-rgb:0,69,21;--studio-jetpack-green-90-rgb:0,48,16;--studio-jetpack-green-100-rgb:0,28,9;--studio-jetpack-green-rgb:6,158,8}.color-scheme.is-classic-bright.is-nav-unification,:root{--color-primary:var( --studio-blue-50 );--color-primary-rgb:var( --studio-blue-50-rgb );--color-primary-dark:var( --studio-blue-70 );--color-primary-dark-rgb:var( --studio-blue-70-rgb );--color-primary-light:var( --studio-blue-30 );--color-primary-light-rgb:var( --studio-blue-30-rgb );--color-primary-0:var( --studio-blue-0 );--color-primary-0-rgb:var( --studio-blue-0-rgb );--color-primary-5:var( --studio-blue-5 );--color-primary-5-rgb:var( --studio-blue-5-rgb );--color-primary-10:var( --studio-blue-10 );--color-primary-10-rgb:var( --studio-blue-10-rgb );--color-primary-20:var( --studio-blue-20 );--color-primary-20-rgb:var( --studio-blue-20-rgb );--color-primary-30:var( --studio-blue-30 );--color-primary-30-rgb:var( --studio-blue-30-rgb );--color-primary-40:var( --studio-blue-40 );--color-primary-40-rgb:var( --studio-blue-40-rgb );--color-primary-50:var( --studio-blue-50 );--color-primary-50-rgb:var( --studio-blue-50-rgb );--color-primary-60:var( --studio-blue-60 );--color-primary-60-rgb:var( --studio-blue-60-rgb );--color-primary-70:var( --studio-blue-70 );--color-primary-70-rgb:var( --studio-blue-70-rgb );--color-primary-80:var( --studio-blue-80 );--color-primary-80-rgb:var( --studio-blue-80-rgb );--color-primary-90:var( --studio-blue-90 );--color-primary-90-rgb:var( --studio-blue-90-rgb );--color-primary-100:var( --studio-blue-100 );--color-primary-100-rgb:var( --studio-blue-100-rgb );--color-accent:var( --studio-pink-50 );--color-accent-rgb:var( --studio-pink-50-rgb );--color-accent-dark:var( --studio-pink-70 );--color-accent-dark-rgb:var( --studio-pink-70-rgb );--color-accent-light:var( --studio-pink-30 );--color-accent-light-rgb:var( --studio-pink-30-rgb );--color-accent-0:var( --studio-pink-0 );--color-accent-0-rgb:var( --studio-pink-0-rgb );--color-accent-5:var( --studio-pink-5 );--color-accent-5-rgb:var( --studio-pink-5-rgb );--color-accent-10:var( --studio-pink-10 );--color-accent-10-rgb:var( --studio-pink-10-rgb );--color-accent-20:var( --studio-pink-20 );--color-accent-20-rgb:var( --studio-pink-20-rgb );--color-accent-30:var( --studio-pink-30 );--color-accent-30-rgb:var( --studio-pink-30-rgb );--color-accent-40:var( --studio-pink-40 );--color-accent-40-rgb:var( --studio-pink-40-rgb );--color-accent-50:var( --studio-pink-50 );--color-accent-50-rgb:var( --studio-pink-50-rgb );--color-accent-60:var( --studio-pink-60 );--color-accent-60-rgb:var( --studio-pink-60-rgb );--color-accent-70:var( --studio-pink-70 );--color-accent-70-rgb:var( --studio-pink-70-rgb );--color-accent-80:var( --studio-pink-80 );--color-accent-80-rgb:var( --studio-pink-80-rgb );--color-accent-90:var( --studio-pink-90 );--color-accent-90-rgb:var( --studio-pink-90-rgb );--color-accent-100:var( --studio-pink-100 );--color-accent-100-rgb:var( --studio-pink-100-rgb );--color-neutral:var( --studio-gray-50 );--color-neutral-rgb:var( --studio-gray-50-rgb );--color-neutral-dark:var( --studio-gray-70 );--color-neutral-dark-rgb:var( --studio-gray-70-rgb );--color-neutral-light:var( --studio-gray-30 );--color-neutral-light-rgb:var( --studio-gray-30-rgb );--color-neutral-0:var( --studio-gray-0 );--color-neutral-0-rgb:var( --studio-gray-0-rgb );--color-neutral-5:var( --studio-gray-5 );--color-neutral-5-rgb:var( --studio-gray-5-rgb );--color-neutral-10:var( --studio-gray-10 );--color-neutral-10-rgb:var( --studio-gray-10-rgb );--color-neutral-20:var( --studio-gray-20 );--color-neutral-20-rgb:var( --studio-gray-20-rgb );--color-neutral-30:var( --studio-gray-30 );--color-neutral-30-rgb:var( --studio-gray-30-rgb );--color-neutral-40:var( --studio-gray-40 );--color-neutral-40-rgb:var( --studio-gray-40-rgb );--color-neutral-50:var( --studio-gray-50 );--color-neutral-50-rgb:var( --studio-gray-50-rgb );--color-neutral-60:var( --studio-gray-60 );--color-neutral-60-rgb:var( --studio-gray-60-rgb );--color-neutral-70:var( --studio-gray-70 );--color-neutral-70-rgb:var( --studio-gray-70-rgb );--color-neutral-80:var( --studio-gray-80 );--color-neutral-80-rgb:var( --studio-gray-80-rgb );--color-neutral-90:var( --studio-gray-90 );--color-neutral-90-rgb:var( --studio-gray-90-rgb );--color-neutral-100:var( --studio-gray-100 );--color-neutral-100-rgb:var( --studio-gray-100-rgb );--color-success:var( --studio-green-50 );--color-success-rgb:var( --studio-green-50-rgb );--color-success-dark:var( --studio-green-70 );--color-success-dark-rgb:var( --studio-green-70-rgb );--color-success-light:var( --studio-green-30 );--color-success-light-rgb:var( --studio-green-30-rgb );--color-success-0:var( --studio-green-0 );--color-success-0-rgb:var( --studio-green-0-rgb );--color-success-5:var( --studio-green-5 );--color-success-5-rgb:var( --studio-green-5-rgb );--color-success-10:var( --studio-green-10 );--color-success-10-rgb:var( --studio-green-10-rgb );--color-success-20:var( --studio-green-20 );--color-success-20-rgb:var( --studio-green-20-rgb );--color-success-30:var( --studio-green-30 );--color-success-30-rgb:var( --studio-green-30-rgb );--color-success-40:var( --studio-green-40 );--color-success-40-rgb:var( --studio-green-40-rgb );--color-success-50:var( --studio-green-50 );--color-success-50-rgb:var( --studio-green-50-rgb );--color-success-60:var( --studio-green-60 );--color-success-60-rgb:var( --studio-green-60-rgb );--color-success-70:var( --studio-green-70 );--color-success-70-rgb:var( --studio-green-70-rgb );--color-success-80:var( --studio-green-80 );--color-success-80-rgb:var( --studio-green-80-rgb );--color-success-90:var( --studio-green-90 );--color-success-90-rgb:var( --studio-green-90-rgb );--color-success-100:var( --studio-green-100 );--color-success-100-rgb:var( --studio-green-100-rgb );--color-warning:var( --studio-yellow-50 );--color-warning-rgb:var( --studio-yellow-50-rgb );--color-warning-dark:var( --studio-yellow-70 );--color-warning-dark-rgb:var( --studio-yellow-70-rgb );--color-warning-light:var( --studio-yellow-30 );--color-warning-light-rgb:var( --studio-yellow-30-rgb );--color-warning-0:var( --studio-yellow-0 );--color-warning-0-rgb:var( --studio-yellow-0-rgb );--color-warning-5:var( --studio-yellow-5 );--color-warning-5-rgb:var( --studio-yellow-5-rgb );--color-warning-10:var( --studio-yellow-10 );--color-warning-10-rgb:var( --studio-yellow-10-rgb );--color-warning-20:var( --studio-yellow-20 );--color-warning-20-rgb:var( --studio-yellow-20-rgb );--color-warning-30:var( --studio-yellow-30 );--color-warning-30-rgb:var( --studio-yellow-30-rgb );--color-warning-40:var( --studio-yellow-40 );--color-warning-40-rgb:var( --studio-yellow-40-rgb );--color-warning-50:var( --studio-yellow-50 );--color-warning-50-rgb:var( --studio-yellow-50-rgb );--color-warning-60:var( --studio-yellow-60 );--color-warning-60-rgb:var( --studio-yellow-60-rgb );--color-warning-70:var( --studio-yellow-70 );--color-warning-70-rgb:var( --studio-yellow-70-rgb );--color-warning-80:var( --studio-yellow-80 );--color-warning-80-rgb:var( --studio-yellow-80-rgb );--color-warning-90:var( --studio-yellow-90 );--color-warning-90-rgb:var( --studio-yellow-90-rgb );--color-warning-100:var( --studio-yellow-100 );--color-warning-100-rgb:var( --studio-yellow-100-rgb );--color-error:var( --studio-red-50 );--color-error-rgb:var( --studio-red-50-rgb );--color-error-dark:var( --studio-red-70 );--color-error-dark-rgb:var( --studio-red-70-rgb );--color-error-light:var( --studio-red-30 );--color-error-light-rgb:var( --studio-red-30-rgb );--color-error-0:var( --studio-red-0 );--color-error-0-rgb:var( --studio-red-0-rgb );--color-error-5:var( --studio-red-5 );--color-error-5-rgb:var( --studio-red-5-rgb );--color-error-10:var( --studio-red-10 );--color-error-10-rgb:var( --studio-red-10-rgb );--color-error-20:var( --studio-red-20 );--color-error-20-rgb:var( --studio-red-20-rgb );--color-error-30:var( --studio-red-30 );--color-error-30-rgb:var( --studio-red-30-rgb );--color-error-40:var( --studio-red-40 );--color-error-40-rgb:var( --studio-red-40-rgb );--color-error-50:var( --studio-red-50 );--color-error-50-rgb:var( --studio-red-50-rgb );--color-error-60:var( --studio-red-60 );--color-error-60-rgb:var( --studio-red-60-rgb );--color-error-70:var( --studio-red-70 );--color-error-70-rgb:var( --studio-red-70-rgb );--color-error-80:var( --studio-red-80 );--color-error-80-rgb:var( --studio-red-80-rgb );--color-error-90:var( --studio-red-90 );--color-error-90-rgb:var( --studio-red-90-rgb );--color-error-100:var( --studio-red-100 );--color-error-100-rgb:var( --studio-red-100-rgb );--color-surface:var( --studio-white );--color-surface-rgb:var( --studio-white-rgb );--color-surface-backdrop:var( --studio-gray-0 );--color-surface-backdrop-rgb:var( --studio-gray-0-rgb );--color-text:var( --studio-gray-80 );--color-text-rgb:var( --studio-gray-80-rgb );--color-text-subtle:var( --studio-gray-50 );--color-text-subtle-rgb:var( --studio-gray-50-rgb );--color-text-inverted:var( --studio-white );--color-text-inverted-rgb:var( --studio-white-rgb );--color-border:var( --color-neutral-20 );--color-border-rgb:var( --color-neutral-20-rgb );--color-border-subtle:var( --color-neutral-5 );--color-border-subtle-rgb:var( --color-neutral-5-rgb );--color-border-shadow:var( --color-neutral-0 );--color-border-shadow-rgb:var( --color-neutral-0-rgb );--color-border-inverted:var( --studio-white );--color-border-inverted-rgb:var( --studio-white-rgb );--color-link:var( --studio-blue-50 );--color-link-rgb:var( --studio-blue-50-rgb );--color-link-dark:var( --studio-blue-70 );--color-link-dark-rgb:var( --studio-blue-70-rgb );--color-link-light:var( --studio-blue-30 );--color-link-light-rgb:var( --studio-blue-30-rgb );--color-link-0:var( --studio-blue-0 );--color-link-0-rgb:var( --studio-blue-0-rgb );--color-link-5:var( --studio-blue-5 );--color-link-5-rgb:var( --studio-blue-5-rgb );--color-link-10:var( --studio-blue-10 );--color-link-10-rgb:var( --studio-blue-10-rgb );--color-link-20:var( --studio-blue-20 );--color-link-20-rgb:var( --studio-blue-20-rgb );--color-link-30:var( --studio-blue-30 );--color-link-30-rgb:var( --studio-blue-30-rgb );--color-link-40:var( --studio-blue-40 );--color-link-40-rgb:var( --studio-blue-40-rgb );--color-link-50:var( --studio-blue-50 );--color-link-50-rgb:var( --studio-blue-50-rgb );--color-link-60:var( --studio-blue-60 );--color-link-60-rgb:var( --studio-blue-60-rgb );--color-link-70:var( --studio-blue-70 );--color-link-70-rgb:var( --studio-blue-70-rgb );--color-link-80:var( --studio-blue-80 );--color-link-80-rgb:var( --studio-blue-80-rgb );--color-link-90:var( --studio-blue-90 );--color-link-90-rgb:var( --studio-blue-90-rgb );--color-link-100:var( --studio-blue-100 );--color-link-100-rgb:var( --studio-blue-100-rgb );--color-plan-free:var( --studio-gray-30 );--color-plan-blogger:var( --studio-celadon-30 );--color-plan-personal:var( --studio-blue-30 );--color-plan-premium:var( --studio-yellow-30 );--color-plan-business:var( --studio-orange-30 );--color-plan-ecommerce:var( --studio-purple-30 );--color-premium-domain:var( --studio-wordpress-blue-60 );--color-jetpack-plan-free:var( --studio-blue-30 );--color-jetpack-plan-personal:var( --studio-yellow-30 );--color-jetpack-plan-premium:var( --studio-jetpack-green-30 );--color-jetpack-plan-professional:var( --studio-purple-30 );--color-masterbar-background:var( --studio-blue-60 );--color-masterbar-border:var( --studio-blue-70 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-blue-70 );--color-masterbar-item-active-background:var( --studio-blue-90 );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-40 );--color-masterbar-unread-dot-background:var( --color-accent-20 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-jetpack-masterbar-background:var( --studio-white );--color-jetpack-masterbar-border:var( --studio-gray-5 );--color-jetpack-masterbar-text:var( --studio-gray-50 );--color-jetpack-masterbar-item-hover-background:var( --studio-gray-5 );--color-jetpack-masterbar-item-active-background:var( --studio-gray-20 );--color-sidebar-background:var( --color-surface );--color-sidebar-background-rgb:var( --studio-white-rgb );--color-sidebar-border:var( --studio-gray-5 );--color-sidebar-text:var( --studio-gray-80 );--color-sidebar-text-rgb:var( --studio-gray-80-rgb );--color-sidebar-text-alternative:var( --studio-gray-50 );--color-sidebar-gridicon-fill:var( --studio-gray-50 );--color-sidebar-menu-selected-background:var( --studio-blue-5 );--color-sidebar-menu-selected-background-rgb:var( --studio-blue-5-rgb );--color-sidebar-menu-selected-text:var( --studio-blue-70 );--color-sidebar-menu-selected-text-rgb:var( --studio-blue-70-rgb );--color-sidebar-menu-hover-background:var( --studio-gray-5 );--color-sidebar-menu-hover-background-rgb:var( --studio-gray-5-rgb );--color-sidebar-menu-hover-text:var( --studio-gray-90 );--color-jetpack-onboarding-text:var( --studio-white );--color-jetpack-onboarding-text-rgb:var( --studio-white-rgb );--color-jetpack-onboarding-background:var( --studio-blue-100 );--color-jetpack-onboarding-background-rgb:var( --studio-blue-100-rgb );--color-automattic:var( --studio-blue-40 );--color-jetpack:var( --studio-jetpack-green );--color-simplenote:var( --studio-simplenote-blue );--color-woocommerce:var( --studio-woocommerce-purple );--color-wordpress-com:var( --studio-wordpress-blue );--color-wordpress-org:#585c60;--color-blogger:#ff5722;--color-eventbrite:#ff8000;--color-facebook:#39579a;--color-godaddy:#5ea95a;--color-google-plus:#df4a32;--color-instagram:#d93174;--color-linkedin:#0976b4;--color-medium:#12100e;--color-pinterest:#cc2127;--color-pocket:#ee4256;--color-print:#f8f8f8;--color-reddit:#5f99cf;--color-skype:#00aff0;--color-stumbleupon:#eb4924;--color-substack:#ff6719;--color-squarespace:#222;--color-telegram:#08c;--color-tumblr:#35465c;--color-twitter:#55acee;--color-whatsapp:#43d854;--color-wix:#faad4d;--color-email:var( --studio-gray-0 );--color-podcasting:#9b4dd5;--color-wp-admin-button-background:#008ec2;--color-wp-admin-button-border:#006799;--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#23282d;--theme-base-color-rgb:35,40,45;--theme-submenu-background-color:#131619;--theme-icon-color:#e1eaf2;--theme-highlight-color:#0073aa;--theme-highlight-color-rgb:0,115,170;--theme-notification-color:#d54e21;--color-sidebar-submenu-background:var( --studio-blue-0 );--color-sidebar-submenu-text:var( --studio-blue-70 );--color-sidebar-submenu-hover-text:var( --color-accent );--color-sidebar-submenu-selected-text:var( --color-accent )}.color-scheme.is-aquatic,.color-scheme.is-aquatic.is-nav-unification{--color-primary:var( --studio-blue-50 );--color-primary-rgb:var( --studio-blue-50-rgb );--color-primary-dark:var( --studio-blue-70 );--color-primary-dark-rgb:var( --studio-blue-70-rgb );--color-primary-light:var( --studio-blue-30 );--color-primary-light-rgb:var( --studio-blue-30-rgb );--color-primary-0:var( --studio-blue-0 );--color-primary-0-rgb:var( --studio-blue-0-rgb );--color-primary-5:var( --studio-blue-5 );--color-primary-5-rgb:var( --studio-blue-5-rgb );--color-primary-10:var( --studio-blue-10 );--color-primary-10-rgb:var( --studio-blue-10-rgb );--color-primary-20:var( --studio-blue-20 );--color-primary-20-rgb:var( --studio-blue-20-rgb );--color-primary-30:var( --studio-blue-30 );--color-primary-30-rgb:var( --studio-blue-30-rgb );--color-primary-40:var( --studio-blue-40 );--color-primary-40-rgb:var( --studio-blue-40-rgb );--color-primary-50:var( --studio-blue-50 );--color-primary-50-rgb:var( --studio-blue-50-rgb );--color-primary-60:var( --studio-blue-60 );--color-primary-60-rgb:var( --studio-blue-60-rgb );--color-primary-70:var( --studio-blue-70 );--color-primary-70-rgb:var( --studio-blue-70-rgb );--color-primary-80:var( --studio-blue-80 );--color-primary-80-rgb:var( --studio-blue-80-rgb );--color-primary-90:var( --studio-blue-90 );--color-primary-90-rgb:var( --studio-blue-90-rgb );--color-primary-100:var( --studio-blue-100 );--color-primary-100-rgb:var( --studio-blue-100-rgb );--color-accent:var( --studio-celadon-50 );--color-accent-rgb:var( --studio-celadon-50-rgb );--color-accent-dark:var( --studio-celadon-70 );--color-accent-dark-rgb:var( --studio-celadon-70-rgb );--color-accent-light:var( --studio-celadon-30 );--color-accent-light-rgb:var( --studio-celadon-30-rgb );--color-accent-0:var( --studio-celadon-0 );--color-accent-0-rgb:var( --studio-celadon-0-rgb );--color-accent-5:var( --studio-celadon-5 );--color-accent-5-rgb:var( --studio-celadon-5-rgb );--color-accent-10:var( --studio-celadon-10 );--color-accent-10-rgb:var( --studio-celadon-10-rgb );--color-accent-20:var( --studio-celadon-20 );--color-accent-20-rgb:var( --studio-celadon-20-rgb );--color-accent-30:var( --studio-celadon-30 );--color-accent-30-rgb:var( --studio-celadon-30-rgb );--color-accent-40:var( --studio-celadon-40 );--color-accent-40-rgb:var( --studio-celadon-40-rgb );--color-accent-50:var( --studio-celadon-50 );--color-accent-50-rgb:var( --studio-celadon-50-rgb );--color-accent-60:var( --studio-celadon-60 );--color-accent-60-rgb:var( --studio-celadon-60-rgb );--color-accent-70:var( --studio-celadon-70 );--color-accent-70-rgb:var( --studio-celadon-70-rgb );--color-accent-80:var( --studio-celadon-80 );--color-accent-80-rgb:var( --studio-celadon-80-rgb );--color-accent-90:var( --studio-celadon-90 );--color-accent-90-rgb:var( --studio-celadon-90-rgb );--color-accent-100:var( --studio-celadon-100 );--color-accent-100-rgb:var( --studio-celadon-100-rgb );--color-link:var( --studio-celadon-50 );--color-link-rgb:var( --studio-celadon-50-rgb );--color-link-dark:var( --studio-celadon-70 );--color-link-dark-rgb:var( --studio-celadon-70-rgb );--color-link-light:var( --studio-celadon-30 );--color-link-light-rgb:var( --studio-celadon-30-rgb );--color-link-0:var( --studio-celadon-0 );--color-link-0-rgb:var( --studio-celadon-0-rgb );--color-link-5:var( --studio-celadon-5 );--color-link-5-rgb:var( --studio-celadon-5-rgb );--color-link-10:var( --studio-celadon-10 );--color-link-10-rgb:var( --studio-celadon-10-rgb );--color-link-20:var( --studio-celadon-20 );--color-link-20-rgb:var( --studio-celadon-20-rgb );--color-link-30:var( --studio-celadon-30 );--color-link-30-rgb:var( --studio-celadon-30-rgb );--color-link-40:var( --studio-celadon-40 );--color-link-40-rgb:var( --studio-celadon-40-rgb );--color-link-50:var( --studio-celadon-50 );--color-link-50-rgb:var( --studio-celadon-50-rgb );--color-link-60:var( --studio-celadon-60 );--color-link-60-rgb:var( --studio-celadon-60-rgb );--color-link-70:var( --studio-celadon-70 );--color-link-70-rgb:var( --studio-celadon-70-rgb );--color-link-80:var( --studio-celadon-80 );--color-link-80-rgb:var( --studio-celadon-80-rgb );--color-link-90:var( --studio-celadon-90 );--color-link-90-rgb:var( --studio-celadon-90-rgb );--color-link-100:var( --studio-celadon-100 );--color-link-100-rgb:var( --studio-celadon-100-rgb );--color-masterbar-background:var( --studio-blue-80 );--color-masterbar-border:var( --studio-blue-80 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-blue-90 );--color-masterbar-item-active-background:var( --studio-blue-100 );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-unread-dot-background:var( --color-accent-30 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --studio-blue-60 );--color-sidebar-background-rgb:var( --studio-blue-60-rgb );--color-sidebar-border:var( --studio-blue-70 );--color-sidebar-text:var( --studio-white );--color-sidebar-text-rgb:var( --studio-white-rgb );--color-sidebar-text-alternative:var( --studio-blue-5 );--color-sidebar-gridicon-fill:var( --studio-blue-5 );--color-sidebar-menu-selected-background:var( --studio-yellow-20 );--color-sidebar-menu-selected-background-rgb:var( --studio-yellow-20-rgb );--color-sidebar-menu-selected-text:var( --studio-blue-90 );--color-sidebar-menu-selected-text-rgb:var( --studio-blue-90-rgb );--color-sidebar-menu-hover-background:var( --studio-blue-50 );--color-sidebar-menu-hover-background-rgb:var( --studio-blue-50-rgb );--color-sidebar-menu-hover-text:var( --studio-white );--color-sidebar-submenu-background:var( --studio-blue-80 );--color-sidebar-submenu-text:var( --studio-white );--color-sidebar-submenu-hover-text:var( --studio-yellow-20 )}.color-scheme.is-blue,.color-scheme.is-blue.is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#52accc;--theme-base-color-rgb:82,172,204;--theme-submenu-text-color:#cbe6f0;--theme-submenu-background-color:#4796b3;--theme-icon-color:#e5f8ff;--theme-highlight-color:#096484;--theme-highlight-color-rgb:9,100,132;--theme-notification-color:#e1a948;--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --studio-blue-70 );--color-primary-dark-rgb:var( --studio-blue-70-rgb );--color-primary-light:var( --studio-blue-30 );--color-primary-light-rgb:var( --studio-blue-30-rgb );--color-primary-0:var( --studio-blue-0 );--color-primary-0-rgb:var( --studio-blue-0-rgb );--color-primary-5:var( --studio-blue-5 );--color-primary-5-rgb:var( --studio-blue-5-rgb );--color-primary-10:var( --studio-blue-10 );--color-primary-10-rgb:var( --studio-blue-10-rgb );--color-primary-20:var( --studio-blue-20 );--color-primary-20-rgb:var( --studio-blue-20-rgb );--color-primary-30:var( --studio-blue-30 );--color-primary-30-rgb:var( --studio-blue-30-rgb );--color-primary-40:var( --studio-blue-40 );--color-primary-40-rgb:var( --studio-blue-40-rgb );--color-primary-50:var( --studio-blue-50 );--color-primary-50-rgb:var( --studio-blue-50-rgb );--color-primary-60:var( --studio-blue-60 );--color-primary-60-rgb:var( --studio-blue-60-rgb );--color-primary-70:var( --studio-blue-70 );--color-primary-70-rgb:var( --studio-blue-70-rgb );--color-primary-80:var( --studio-blue-80 );--color-primary-80-rgb:var( --studio-blue-80-rgb );--color-primary-90:var( --studio-blue-90 );--color-primary-90-rgb:var( --studio-blue-90-rgb );--color-primary-100:var( --studio-blue-100 );--color-primary-100-rgb:var( --studio-blue-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --studio-blue-70 );--color-accent-dark-rgb:var( --studio-blue-70-rgb );--color-accent-light:var( --studio-blue-30 );--color-accent-light-rgb:var( --studio-blue-30-rgb );--color-accent-0:var( --studio-blue-0 );--color-accent-0-rgb:var( --studio-blue-0-rgb );--color-accent-5:var( --studio-blue-5 );--color-accent-5-rgb:var( --studio-blue-5-rgb );--color-accent-10:var( --studio-blue-10 );--color-accent-10-rgb:var( --studio-blue-10-rgb );--color-accent-20:var( --studio-blue-20 );--color-accent-20-rgb:var( --studio-blue-20-rgb );--color-accent-30:var( --studio-blue-30 );--color-accent-30-rgb:var( --studio-blue-30-rgb );--color-accent-40:var( --studio-blue-40 );--color-accent-40-rgb:var( --studio-blue-40-rgb );--color-accent-50:var( --studio-blue-50 );--color-accent-50-rgb:var( --studio-blue-50-rgb );--color-accent-60:var( --studio-blue-60 );--color-accent-60-rgb:var( --studio-blue-60-rgb );--color-accent-70:var( --studio-blue-70 );--color-accent-70-rgb:var( --studio-blue-70-rgb );--color-accent-80:var( --studio-blue-80 );--color-accent-80-rgb:var( --studio-blue-80-rgb );--color-accent-90:var( --studio-blue-90 );--color-accent-90-rgb:var( --studio-blue-90-rgb );--color-accent-100:var( --studio-blue-100 );--color-accent-100-rgb:var( --studio-blue-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-white );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:#e2ecf1;--color-sidebar-gridicon-fill:var( --theme-icon-color );--color-sidebar-menu-selected-background:var( --theme-highlight-color );--color-sidebar-menu-selected-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-selected-text:var( --theme-text-color );--color-sidebar-menu-selected-text-rgb:var( --theme-text-color-rgb );--color-sidebar-menu-hover-background:var( --theme-highlight-color );--color-sidebar-menu-hover-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-hover-text:var( --theme-text-color );--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var( --theme-text-color )}.color-scheme.is-classic-blue,.color-scheme.is-classic-blue.is-nav-unification{--color-primary:var( --studio-blue-50 );--color-primary-rgb:var( --studio-blue-50-rgb );--color-primary-dark:var( --studio-blue-70 );--color-primary-dark-rgb:var( --studio-blue-70-rgb );--color-primary-light:var( --studio-blue-30 );--color-primary-light-rgb:var( --studio-blue-30-rgb );--color-primary-0:var( --studio-blue-0 );--color-primary-0-rgb:var( --studio-blue-0-rgb );--color-primary-5:var( --studio-blue-5 );--color-primary-5-rgb:var( --studio-blue-5-rgb );--color-primary-10:var( --studio-blue-10 );--color-primary-10-rgb:var( --studio-blue-10-rgb );--color-primary-20:var( --studio-blue-20 );--color-primary-20-rgb:var( --studio-blue-20-rgb );--color-primary-30:var( --studio-blue-30 );--color-primary-30-rgb:var( --studio-blue-30-rgb );--color-primary-40:var( --studio-blue-40 );--color-primary-40-rgb:var( --studio-blue-40-rgb );--color-primary-50:var( --studio-blue-50 );--color-primary-50-rgb:var( --studio-blue-50-rgb );--color-primary-60:var( --studio-blue-60 );--color-primary-60-rgb:var( --studio-blue-60-rgb );--color-primary-70:var( --studio-blue-70 );--color-primary-70-rgb:var( --studio-blue-70-rgb );--color-primary-80:var( --studio-blue-80 );--color-primary-80-rgb:var( --studio-blue-80-rgb );--color-primary-90:var( --studio-blue-90 );--color-primary-90-rgb:var( --studio-blue-90-rgb );--color-primary-100:var( --studio-blue-100 );--color-primary-100-rgb:var( --studio-blue-100-rgb );--color-accent:var( --studio-orange-50 );--color-accent-rgb:var( --studio-orange-50-rgb );--color-accent-dark:var( --studio-orange-70 );--color-accent-dark-rgb:var( --studio-orange-70-rgb );--color-accent-light:var( --studio-orange-30 );--color-accent-light-rgb:var( --studio-orange-30-rgb );--color-accent-0:var( --studio-orange-0 );--color-accent-0-rgb:var( --studio-orange-0-rgb );--color-accent-5:var( --studio-orange-5 );--color-accent-5-rgb:var( --studio-orange-5-rgb );--color-accent-10:var( --studio-orange-10 );--color-accent-10-rgb:var( --studio-orange-10-rgb );--color-accent-20:var( --studio-orange-20 );--color-accent-20-rgb:var( --studio-orange-20-rgb );--color-accent-30:var( --studio-orange-30 );--color-accent-30-rgb:var( --studio-orange-30-rgb );--color-accent-40:var( --studio-orange-40 );--color-accent-40-rgb:var( --studio-orange-40-rgb );--color-accent-50:var( --studio-orange-50 );--color-accent-50-rgb:var( --studio-orange-50-rgb );--color-accent-60:var( --studio-orange-60 );--color-accent-60-rgb:var( --studio-orange-60-rgb );--color-accent-70:var( --studio-orange-70 );--color-accent-70-rgb:var( --studio-orange-70-rgb );--color-accent-80:var( --studio-orange-80 );--color-accent-80-rgb:var( --studio-orange-80-rgb );--color-accent-90:var( --studio-orange-90 );--color-accent-90-rgb:var( --studio-orange-90-rgb );--color-accent-100:var( --studio-orange-100 );--color-accent-100-rgb:var( --studio-orange-100-rgb );--color-masterbar-background:var( --studio-blue-60 );--color-masterbar-border:var( --studio-blue-70 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-blue-70 );--color-masterbar-item-active-background:var( --studio-blue-90 );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-40 );--color-masterbar-unread-dot-background:var( --color-accent-30 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --studio-gray-5 );--color-sidebar-background-rgb:var( --studio-gray-5-rgb );--color-sidebar-border:var( --studio-gray-10 );--color-sidebar-text:var( --studio-gray-80 );--color-sidebar-text-alternative:var( --studio-gray-50 );--color-sidebar-gridicon-fill:var( --studio-gray-50 );--color-sidebar-menu-selected-background:var( --studio-gray-60 );--color-sidebar-menu-selected-background-rgb:var( --studio-gray-60-rgb );--color-sidebar-menu-selected-text:var( --studio-white );--color-sidebar-menu-selected-text-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-background:var( --color-surface );--color-sidebar-menu-hover-background-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-text:var( --studio-blue-50 );--color-sidebar-submenu-background:var( --studio-blue-60 );--color-sidebar-submenu-text:var( --studio-white );--color-sidebar-submenu-hover-text:var( --studio-orange-30 )}.color-scheme.is-classic-dark,.color-scheme.is-classic-dark.is-nav-unification{--color-primary:var( --studio-gray-90 );--color-primary-rgb:var( --studio-gray-90-rgb );--color-primary-dark:var( --studio-gray-70 );--color-primary-dark-rgb:var( --studio-gray-70-rgb );--color-primary-light:var( --studio-gray-30 );--color-primary-light-rgb:var( --studio-gray-30-rgb );--color-primary-0:var( --studio-gray-0 );--color-primary-0-rgb:var( --studio-gray-0-rgb );--color-primary-5:var( --studio-gray-5 );--color-primary-5-rgb:var( --studio-gray-5-rgb );--color-primary-10:var( --studio-gray-10 );--color-primary-10-rgb:var( --studio-gray-10-rgb );--color-primary-20:var( --studio-gray-20 );--color-primary-20-rgb:var( --studio-gray-20-rgb );--color-primary-30:var( --studio-gray-30 );--color-primary-30-rgb:var( --studio-gray-30-rgb );--color-primary-40:var( --studio-gray-40 );--color-primary-40-rgb:var( --studio-gray-40-rgb );--color-primary-50:var( --studio-gray-50 );--color-primary-50-rgb:var( --studio-gray-50-rgb );--color-primary-60:var( --studio-gray-60 );--color-primary-60-rgb:var( --studio-gray-60-rgb );--color-primary-70:var( --studio-gray-70 );--color-primary-70-rgb:var( --studio-gray-70-rgb );--color-primary-80:var( --studio-gray-80 );--color-primary-80-rgb:var( --studio-gray-80-rgb );--color-primary-90:var( --studio-gray-90 );--color-primary-90-rgb:var( --studio-gray-90-rgb );--color-primary-100:var( --studio-gray-100 );--color-primary-100-rgb:var( --studio-gray-100-rgb );--color-accent:var( --studio-pink-50 );--color-accent-rgb:var( --studio-pink-50-rgb );--color-accent-dark:var( --studio-pink-70 );--color-accent-dark-rgb:var( --studio-pink-70-rgb );--color-accent-light:var( --studio-pink-30 );--color-accent-light-rgb:var( --studio-pink-30-rgb );--color-accent-0:var( --studio-pink-0 );--color-accent-0-rgb:var( --studio-pink-0-rgb );--color-accent-5:var( --studio-pink-5 );--color-accent-5-rgb:var( --studio-pink-5-rgb );--color-accent-10:var( --studio-pink-10 );--color-accent-10-rgb:var( --studio-pink-10-rgb );--color-accent-20:var( --studio-pink-20 );--color-accent-20-rgb:var( --studio-pink-20-rgb );--color-accent-30:var( --studio-pink-30 );--color-accent-30-rgb:var( --studio-pink-30-rgb );--color-accent-40:var( --studio-pink-40 );--color-accent-40-rgb:var( --studio-pink-40-rgb );--color-accent-50:var( --studio-pink-50 );--color-accent-50-rgb:var( --studio-pink-50-rgb );--color-accent-60:var( --studio-pink-60 );--color-accent-60-rgb:var( --studio-pink-60-rgb );--color-accent-70:var( --studio-pink-70 );--color-accent-70-rgb:var( --studio-pink-70-rgb );--color-accent-80:var( --studio-pink-80 );--color-accent-80-rgb:var( --studio-pink-80-rgb );--color-accent-90:var( --studio-pink-90 );--color-accent-90-rgb:var( --studio-pink-90-rgb );--color-accent-100:var( --studio-pink-100 );--color-accent-100-rgb:var( --studio-pink-100-rgb );--color-neutral:var( --studio-gray-50 );--color-neutral-rgb:var( --studio-gray-50-rgb );--color-neutral-dark:var( --studio-gray-70 );--color-neutral-dark-rgb:var( --studio-gray-70-rgb );--color-neutral-light:var( --studio-gray-30 );--color-neutral-light-rgb:var( --studio-gray-30-rgb );--color-neutral-0:var( --studio-gray-0 );--color-neutral-0-rgb:var( --studio-gray-0-rgb );--color-neutral-5:var( --studio-gray-5 );--color-neutral-5-rgb:var( --studio-gray-5-rgb );--color-neutral-10:var( --studio-gray-10 );--color-neutral-10-rgb:var( --studio-gray-10-rgb );--color-neutral-20:var( --studio-gray-20 );--color-neutral-20-rgb:var( --studio-gray-20-rgb );--color-neutral-30:var( --studio-gray-30 );--color-neutral-30-rgb:var( --studio-gray-30-rgb );--color-neutral-40:var( --studio-gray-40 );--color-neutral-40-rgb:var( --studio-gray-40-rgb );--color-neutral-50:var( --studio-gray-50 );--color-neutral-50-rgb:var( --studio-gray-50-rgb );--color-neutral-60:var( --studio-gray-60 );--color-neutral-60-rgb:var( --studio-gray-60-rgb );--color-neutral-70:var( --studio-gray-70 );--color-neutral-70-rgb:var( --studio-gray-70-rgb );--color-neutral-80:var( --studio-gray-80 );--color-neutral-80-rgb:var( --studio-gray-80-rgb );--color-neutral-90:var( --studio-gray-90 );--color-neutral-90-rgb:var( --studio-gray-90-rgb );--color-neutral-100:var( --studio-gray-100 );--color-neutral-100-rgb:var( --studio-gray-100-rgb );--color-success:var( --studio-green-50 );--color-success-rgb:var( --studio-green-50-rgb );--color-success-dark:var( --studio-green-70 );--color-success-dark-rgb:var( --studio-green-70-rgb );--color-success-light:var( --studio-green-30 );--color-success-light-rgb:var( --studio-green-30-rgb );--color-success-0:var( --studio-green-0 );--color-success-0-rgb:var( --studio-green-0-rgb );--color-success-5:var( --studio-green-5 );--color-success-5-rgb:var( --studio-green-5-rgb );--color-success-10:var( --studio-green-10 );--color-success-10-rgb:var( --studio-green-10-rgb );--color-success-20:var( --studio-green-20 );--color-success-20-rgb:var( --studio-green-20-rgb );--color-success-30:var( --studio-green-30 );--color-success-30-rgb:var( --studio-green-30-rgb );--color-success-40:var( --studio-green-40 );--color-success-40-rgb:var( --studio-green-40-rgb );--color-success-50:var( --studio-green-50 );--color-success-50-rgb:var( --studio-green-50-rgb );--color-success-60:var( --studio-green-60 );--color-success-60-rgb:var( --studio-green-60-rgb );--color-success-70:var( --studio-green-70 );--color-success-70-rgb:var( --studio-green-70-rgb );--color-success-80:var( --studio-green-80 );--color-success-80-rgb:var( --studio-green-80-rgb );--color-success-90:var( --studio-green-90 );--color-success-90-rgb:var( --studio-green-90-rgb );--color-success-100:var( --studio-green-100 );--color-success-100-rgb:var( --studio-green-100-rgb );--color-warning:var( --studio-yellow-50 );--color-warning-rgb:var( --studio-yellow-50-rgb );--color-warning-dark:var( --studio-yellow-70 );--color-warning-dark-rgb:var( --studio-yellow-70-rgb );--color-warning-light:var( --studio-yellow-30 );--color-warning-light-rgb:var( --studio-yellow-30-rgb );--color-warning-0:var( --studio-yellow-0 );--color-warning-0-rgb:var( --studio-yellow-0-rgb );--color-warning-5:var( --studio-yellow-5 );--color-warning-5-rgb:var( --studio-yellow-5-rgb );--color-warning-10:var( --studio-yellow-10 );--color-warning-10-rgb:var( --studio-yellow-10-rgb );--color-warning-20:var( --studio-yellow-20 );--color-warning-20-rgb:var( --studio-yellow-20-rgb );--color-warning-30:var( --studio-yellow-30 );--color-warning-30-rgb:var( --studio-yellow-30-rgb );--color-warning-40:var( --studio-yellow-40 );--color-warning-40-rgb:var( --studio-yellow-40-rgb );--color-warning-50:var( --studio-yellow-50 );--color-warning-50-rgb:var( --studio-yellow-50-rgb );--color-warning-60:var( --studio-yellow-60 );--color-warning-60-rgb:var( --studio-yellow-60-rgb );--color-warning-70:var( --studio-yellow-70 );--color-warning-70-rgb:var( --studio-yellow-70-rgb );--color-warning-80:var( --studio-yellow-80 );--color-warning-80-rgb:var( --studio-yellow-80-rgb );--color-warning-90:var( --studio-yellow-90 );--color-warning-90-rgb:var( --studio-yellow-90-rgb );--color-warning-100:var( --studio-yellow-100 );--color-warning-100-rgb:var( --studio-yellow-100-rgb );--color-error:var( --studio-red-50 );--color-error-rgb:var( --studio-red-50-rgb );--color-error-dark:var( --studio-red-70 );--color-error-dark-rgb:var( --studio-red-70-rgb );--color-error-light:var( --studio-red-30 );--color-error-light-rgb:var( --studio-red-30-rgb );--color-error-0:var( --studio-red-0 );--color-error-0-rgb:var( --studio-red-0-rgb );--color-error-5:var( --studio-red-5 );--color-error-5-rgb:var( --studio-red-5-rgb );--color-error-10:var( --studio-red-10 );--color-error-10-rgb:var( --studio-red-10-rgb );--color-error-20:var( --studio-red-20 );--color-error-20-rgb:var( --studio-red-20-rgb );--color-error-30:var( --studio-red-30 );--color-error-30-rgb:var( --studio-red-30-rgb );--color-error-40:var( --studio-red-40 );--color-error-40-rgb:var( --studio-red-40-rgb );--color-error-50:var( --studio-red-50 );--color-error-50-rgb:var( --studio-red-50-rgb );--color-error-60:var( --studio-red-60 );--color-error-60-rgb:var( --studio-red-60-rgb );--color-error-70:var( --studio-red-70 );--color-error-70-rgb:var( --studio-red-70-rgb );--color-error-80:var( --studio-red-80 );--color-error-80-rgb:var( --studio-red-80-rgb );--color-error-90:var( --studio-red-90 );--color-error-90-rgb:var( --studio-red-90-rgb );--color-error-100:var( --studio-red-100 );--color-error-100-rgb:var( --studio-red-100-rgb );--color-surface:var( --studio-white );--color-surface-rgb:var( --studio-white-rgb );--color-surface-backdrop:var( --studio-gray-0 );--color-surface-backdrop-rgb:var( --studio-gray-0-rgb );--color-text:var( --studio-gray-80 );--color-text-rgb:var( --studio-gray-80-rgb );--color-text-subtle:var( --studio-gray-50 );--color-text-subtle-rgb:var( --studio-gray-50-rgb );--color-text-inverted:var( --studio-white );--color-text-inverted-rgb:var( --studio-white-rgb );--color-border:var( --color-neutral-20 );--color-border-rgb:var( --color-neutral-20-rgb );--color-border-subtle:var( --color-neutral-5 );--color-border-subtle-rgb:var( --color-neutral-5-rgb );--color-border-shadow:var( --color-neutral-0 );--color-border-shadow-rgb:var( --color-neutral-0-rgb );--color-border-inverted:var( --studio-white );--color-border-inverted-rgb:var( --studio-white-rgb );--color-link:var( --studio-blue-50 );--color-link-rgb:var( --studio-blue-50-rgb );--color-link-dark:var( --studio-blue-70 );--color-link-dark-rgb:var( --studio-blue-70-rgb );--color-link-light:var( --studio-blue-30 );--color-link-light-rgb:var( --studio-blue-30-rgb );--color-link-0:var( --studio-blue-0 );--color-link-0-rgb:var( --studio-blue-0-rgb );--color-link-5:var( --studio-blue-5 );--color-link-5-rgb:var( --studio-blue-5-rgb );--color-link-10:var( --studio-blue-10 );--color-link-10-rgb:var( --studio-blue-10-rgb );--color-link-20:var( --studio-blue-20 );--color-link-20-rgb:var( --studio-blue-20-rgb );--color-link-30:var( --studio-blue-30 );--color-link-30-rgb:var( --studio-blue-30-rgb );--color-link-40:var( --studio-blue-40 );--color-link-40-rgb:var( --studio-blue-40-rgb );--color-link-50:var( --studio-blue-50 );--color-link-50-rgb:var( --studio-blue-50-rgb );--color-link-60:var( --studio-blue-60 );--color-link-60-rgb:var( --studio-blue-60-rgb );--color-link-70:var( --studio-blue-70 );--color-link-70-rgb:var( --studio-blue-70-rgb );--color-link-80:var( --studio-blue-80 );--color-link-80-rgb:var( --studio-blue-80-rgb );--color-link-90:var( --studio-blue-90 );--color-link-90-rgb:var( --studio-blue-90-rgb );--color-link-100:var( --studio-blue-100 );--color-link-100-rgb:var( --studio-blue-100-rgb );--color-plan-free:var( --studio-gray-30 );--color-plan-blogger:var( --studio-celadon-30 );--color-plan-personal:var( --studio-blue-30 );--color-plan-premium:var( --studio-yellow-30 );--color-plan-business:var( --studio-orange-30 );--color-plan-ecommerce:var( --studio-purple-30 );--color-premium-domain:var( --studio-wordpress-blue-60 );--color-jetpack-plan-free:var( --studio-blue-30 );--color-jetpack-plan-personal:var( --studio-yellow-30 );--color-jetpack-plan-premium:var( --studio-jetpack-green-30 );--color-jetpack-plan-professional:var( --studio-purple-30 );--color-masterbar-background:#101517;--color-masterbar-border:#333;--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:#333;--color-masterbar-item-active-background:#23282d;--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-40 );--color-masterbar-unread-dot-background:var( --color-accent-20 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-jetpack-masterbar-background:var( --studio-white );--color-jetpack-masterbar-border:var( --studio-gray-5 );--color-jetpack-masterbar-text:var( --studio-gray-50 );--color-jetpack-masterbar-item-hover-background:var( --studio-gray-5 );--color-jetpack-masterbar-item-active-background:var( --studio-gray-20 );--color-sidebar-background:#23282d;--color-sidebar-background-rgb:35,40,45;--color-sidebar-border:#333;--color-sidebar-text:#eee;--color-sidebar-text-rgb:238,238,238;--color-sidebar-text-alternative:#a2aab2;--color-sidebar-gridicon-fill:#a2aab2;--color-sidebar-menu-selected-background:#0073aa;--color-sidebar-menu-selected-background-rgb:0,115,170;--color-sidebar-menu-selected-text:var( --studio-white );--color-sidebar-menu-selected-text-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-background:#1a1e23;--color-sidebar-menu-hover-background-rgb:26,30,35;--color-sidebar-menu-hover-text:#00b9eb;--color-jetpack-onboarding-text:var( --studio-white );--color-jetpack-onboarding-text-rgb:var( --studio-white-rgb );--color-jetpack-onboarding-background:var( --studio-blue-100 );--color-jetpack-onboarding-background-rgb:var( --studio-blue-100-rgb );--color-automattic:var( --studio-blue-40 );--color-jetpack:var( --studio-jetpack-green );--color-simplenote:var( --studio-simplenote-blue );--color-woocommerce:var( --studio-woocommerce-purple );--color-wordpress-com:var( --studio-wordpress-blue );--color-wordpress-org:#585c60;--color-blogger:#ff5722;--color-eventbrite:#ff8000;--color-facebook:#39579a;--color-godaddy:#5ea95a;--color-google-plus:#df4a32;--color-instagram:#d93174;--color-linkedin:#0976b4;--color-medium:#12100e;--color-pinterest:#cc2127;--color-pocket:#ee4256;--color-print:#f8f8f8;--color-reddit:#5f99cf;--color-skype:#00aff0;--color-stumbleupon:#eb4924;--color-substack:#ff6719;--color-squarespace:#222;--color-telegram:#08c;--color-tumblr:#35465c;--color-twitter:#55acee;--color-whatsapp:#43d854;--color-wix:#faad4d;--color-email:var( --studio-gray-0 );--color-podcasting:#9b4dd5;--color-wp-admin-button-background:#008ec2;--color-wp-admin-button-border:#006799;--color-sidebar-submenu-background:#32373c;--color-sidebar-submenu-text:#b4b9be;--color-sidebar-submenu-hover-text:#00b9eb;--color-sidebar-submenu-selected-text:var( --studio-white )}.color-scheme.is-coffee,.color-scheme.is-coffee.is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#59524c;--theme-base-color-rgb:89,82,76;--theme-submenu-text-color:#cdcbc9;--theme-submenu-background-color:#46403c;--theme-icon-color:#ece6f6;--theme-highlight-color:#c7a589;--theme-highlight-color-rgb:199,165,137;--theme-notification-color:#9ea476;--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --studio-orange-70 );--color-primary-dark-rgb:var( --studio-orange-70-rgb );--color-primary-light:var( --studio-orange-30 );--color-primary-light-rgb:var( --studio-orange-30-rgb );--color-primary-0:var( --studio-orange-0 );--color-primary-0-rgb:var( --studio-orange-0-rgb );--color-primary-5:var( --studio-orange-5 );--color-primary-5-rgb:var( --studio-orange-5-rgb );--color-primary-10:var( --studio-orange-10 );--color-primary-10-rgb:var( --studio-orange-10-rgb );--color-primary-20:var( --studio-orange-20 );--color-primary-20-rgb:var( --studio-orange-20-rgb );--color-primary-30:var( --studio-orange-30 );--color-primary-30-rgb:var( --studio-orange-30-rgb );--color-primary-40:var( --studio-orange-40 );--color-primary-40-rgb:var( --studio-orange-40-rgb );--color-primary-50:var( --studio-orange-50 );--color-primary-50-rgb:var( --studio-orange-50-rgb );--color-primary-60:var( --studio-orange-60 );--color-primary-60-rgb:var( --studio-orange-60-rgb );--color-primary-70:var( --studio-orange-70 );--color-primary-70-rgb:var( --studio-orange-70-rgb );--color-primary-80:var( --studio-orange-80 );--color-primary-80-rgb:var( --studio-orange-80-rgb );--color-primary-90:var( --studio-orange-90 );--color-primary-90-rgb:var( --studio-orange-90-rgb );--color-primary-100:var( --studio-orange-100 );--color-primary-100-rgb:var( --studio-orange-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --studio-orange-70 );--color-accent-dark-rgb:var( --studio-orange-70-rgb );--color-accent-light:var( --studio-orange-30 );--color-accent-light-rgb:var( --studio-orange-30-rgb );--color-accent-0:var( --studio-orange-0 );--color-accent-0-rgb:var( --studio-orange-0-rgb );--color-accent-5:var( --studio-orange-5 );--color-accent-5-rgb:var( --studio-orange-5-rgb );--color-accent-10:var( --studio-orange-10 );--color-accent-10-rgb:var( --studio-orange-10-rgb );--color-accent-20:var( --studio-orange-20 );--color-accent-20-rgb:var( --studio-orange-20-rgb );--color-accent-30:var( --studio-orange-30 );--color-accent-30-rgb:var( --studio-orange-30-rgb );--color-accent-40:var( --studio-orange-40 );--color-accent-40-rgb:var( --studio-orange-40-rgb );--color-accent-50:var( --studio-orange-50 );--color-accent-50-rgb:var( --studio-orange-50-rgb );--color-accent-60:var( --studio-orange-60 );--color-accent-60-rgb:var( --studio-orange-60-rgb );--color-accent-70:var( --studio-orange-70 );--color-accent-70-rgb:var( --studio-orange-70-rgb );--color-accent-80:var( --studio-orange-80 );--color-accent-80-rgb:var( --studio-orange-80-rgb );--color-accent-90:var( --studio-orange-90 );--color-accent-90-rgb:var( --studio-orange-90-rgb );--color-accent-100:var( --studio-orange-100 );--color-accent-100-rgb:var( --studio-orange-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-white );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:var( --studio-gray-0 );--color-sidebar-gridicon-fill:var( --studio-gray-0 );--color-sidebar-menu-selected-background:var( --theme-highlight-color );--color-sidebar-menu-selected-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-selected-text:var( --theme-text-color );--color-sidebar-menu-selected-text-rgb:var( --theme-text-color-rgb );--color-sidebar-menu-hover-background:var( --theme-highlight-color );--color-sidebar-menu-hover-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-hover-text:var( --theme-text-color );--color-sidebar-menu-hover:var( --theme-text-color );--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var( --theme-highlight-color )}.color-scheme.is-contrast,.color-scheme.is-contrast.is-nav-unification{--color-primary:var( --studio-gray-80 );--color-primary-rgb:var( --studio-gray-80-rgb );--color-primary-dark:var( --studio-gray-100 );--color-primary-dark-rgb:var( --studio-gray-100-rgb );--color-primary-light:var( --studio-gray-60 );--color-primary-light-rgb:var( --studio-gray-60-rgb );--color-primary-0:var( --studio-gray-0 );--color-primary-0-rgb:var( --studio-gray-0-rgb );--color-primary-5:var( --studio-gray-5 );--color-primary-5-rgb:var( --studio-gray-5-rgb );--color-primary-10:var( --studio-gray-10 );--color-primary-10-rgb:var( --studio-gray-10-rgb );--color-primary-20:var( --studio-gray-20 );--color-primary-20-rgb:var( --studio-gray-20-rgb );--color-primary-30:var( --studio-gray-30 );--color-primary-30-rgb:var( --studio-gray-30-rgb );--color-primary-40:var( --studio-gray-40 );--color-primary-40-rgb:var( --studio-gray-40-rgb );--color-primary-50:var( --studio-gray-50 );--color-primary-50-rgb:var( --studio-gray-50-rgb );--color-primary-60:var( --studio-gray-60 );--color-primary-60-rgb:var( --studio-gray-60-rgb );--color-primary-70:var( --studio-gray-70 );--color-primary-70-rgb:var( --studio-gray-70-rgb );--color-primary-80:var( --studio-gray-80 );--color-primary-80-rgb:var( --studio-gray-80-rgb );--color-primary-90:var( --studio-gray-90 );--color-primary-90-rgb:var( --studio-gray-90-rgb );--color-primary-100:var( --studio-gray-100 );--color-primary-100-rgb:var( --studio-gray-100-rgb );--color-accent:var( --studio-blue-70 );--color-accent-rgb:var( --studio-blue-70-rgb );--color-accent-dark:var( --studio-blue-90 );--color-accent-dark-rgb:var( --studio-blue-90-rgb );--color-accent-light:var( --studio-blue-50 );--color-accent-light-rgb:var( --studio-blue-50-rgb );--color-accent-0:var( --studio-blue-0 );--color-accent-0-rgb:var( --studio-blue-0-rgb );--color-accent-5:var( --studio-blue-5 );--color-accent-5-rgb:var( --studio-blue-5-rgb );--color-accent-10:var( --studio-blue-10 );--color-accent-10-rgb:var( --studio-blue-10-rgb );--color-accent-20:var( --studio-blue-20 );--color-accent-20-rgb:var( --studio-blue-20-rgb );--color-accent-30:var( --studio-blue-30 );--color-accent-30-rgb:var( --studio-blue-30-rgb );--color-accent-40:var( --studio-blue-40 );--color-accent-40-rgb:var( --studio-blue-40-rgb );--color-accent-50:var( --studio-blue-50 );--color-accent-50-rgb:var( --studio-blue-50-rgb );--color-accent-60:var( --studio-blue-60 );--color-accent-60-rgb:var( --studio-blue-60-rgb );--color-accent-70:var( --studio-blue-70 );--color-accent-70-rgb:var( --studio-blue-70-rgb );--color-accent-80:var( --studio-blue-80 );--color-accent-80-rgb:var( --studio-blue-80-rgb );--color-accent-90:var( --studio-blue-90 );--color-accent-90-rgb:var( --studio-blue-90-rgb );--color-accent-100:var( --studio-blue-100 );--color-accent-100-rgb:var( --studio-blue-100-rgb );--color-surface-backdrop:var( --studio-white );--color-surface-backdrop-rgb:var( --studio-white-rgb );--color-text:var( --studio-gray-100 );--color-text-rgb:var( --studio-gray-100-rgb );--color-text-subtle:var( --studio-gray-70 );--color-text-subtle-rgb:var( --studio-gray-70-rgb );--color-link:var( --studio-blue-70 );--color-link-rgb:var( --studio-blue-70-rgb );--color-link-dark:var( --studio-blue-100 );--color-link-dark-rgb:var( --studio-blue-100-rgb );--color-link-light:var( --studio-blue-50 );--color-link-light-rgb:var( --studio-blue-50-rgb );--color-link-0:var( --studio-blue-0 );--color-link-0-rgb:var( --studio-blue-0-rgb );--color-link-5:var( --studio-blue-5 );--color-link-5-rgb:var( --studio-blue-5-rgb );--color-link-10:var( --studio-blue-10 );--color-link-10-rgb:var( --studio-blue-10-rgb );--color-link-20:var( --studio-blue-20 );--color-link-20-rgb:var( --studio-blue-20-rgb );--color-link-30:var( --studio-blue-30 );--color-link-30-rgb:var( --studio-blue-30-rgb );--color-link-40:var( --studio-blue-40 );--color-link-40-rgb:var( --studio-blue-40-rgb );--color-link-50:var( --studio-blue-50 );--color-link-50-rgb:var( --studio-blue-50-rgb );--color-link-60:var( --studio-blue-60 );--color-link-60-rgb:var( --studio-blue-60-rgb );--color-link-70:var( --studio-blue-70 );--color-link-70-rgb:var( --studio-blue-70-rgb );--color-link-80:var( --studio-blue-80 );--color-link-80-rgb:var( --studio-blue-80-rgb );--color-link-90:var( --studio-blue-90 );--color-link-90-rgb:var( --studio-blue-90-rgb );--color-link-100:var( --studio-blue-100 );--color-link-100-rgb:var( --studio-blue-100-rgb );--color-premium-domain:var( --studio-gray-100 );--color-masterbar-background:var( --studio-gray-100 );--color-masterbar-border:var( --studio-gray-90 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-gray-80 );--color-masterbar-item-active-background:var( --studio-gray-60 );--color-masterbar-item-new-editor-background:var( --studio-gray-70 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-90 );--color-masterbar-unread-dot-background:var( --studio-yellow-20 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-70 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-70 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --color-surface );--color-sidebar-background-rgb:var( --studio-white-rgb );--color-sidebar-border:var( --studio-gray-5 );--color-sidebar-text:var( --studio-gray-90 );--color-sidebar-text-rgb:var( --studio-gray-90-rgb );--color-sidebar-text-alternative:var( --studio-gray-90 );--color-sidebar-gridicon-fill:var( --studio-gray-90 );--color-sidebar-menu-selected-background:var( --studio-gray-100 );--color-sidebar-menu-selected-background-rgb:var( --studio-gray-100-rgb );--color-sidebar-menu-selected-text:var( --studio-white );--color-sidebar-menu-selected-text-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-background:var( --studio-gray-60 );--color-sidebar-menu-hover-background-rgb:var( --studio-gray-60-rgb );--color-sidebar-menu-hover-text:var( --studio-white );--color-sidebar-submenu-background:var( --studio-gray-90 );--color-sidebar-submenu-text:var( --studio-gray-10 );--color-sidebar-submenu-hover-text:var( --color-masterbar-unread-dot-background );--color-sidebar-submenu-selected-text:var( --studio-white )}.color-scheme.is-ectoplasm,.color-scheme.is-ectoplasm.is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#523f6d;--theme-base-color-rgb:82,63,109;--theme-submenu-text-color:#cbc5d3;--theme-submenu-background-color:#413256;--theme-icon-color:#ece6f6;--theme-highlight-color:#a3b745;--theme-highlight-color-rgb:163,183,69;--theme-notification-color:#d46f15;--ectoplasm-green-0:#f2f5e1;--ectoplasm-green-5:#e9f5b3;--ectoplasm-green-10:#daf26b;--ectoplasm-green-20:#cdf030;--ectoplasm-green-30:#b5de00;--ectoplasm-green-40:#9bc000;--ectoplasm-green-50:#7f9d00;--ectoplasm-green-60:#647d00;--ectoplasm-green-70:#536700;--ectoplasm-green-80:#3f4f00;--ectoplasm-green-90:#293300;--ectoplasm-green-100:#161c00;--ectoplasm-green:#7f9d00;--ectoplasm-green-0-rgb:242,245,225;--ectoplasm-green-5-rgb:233,245,179;--ectoplasm-green-10-rgb:218,242,107;--ectoplasm-green-20-rgb:205,240,48;--ectoplasm-green-30-rgb:181,222,0;--ectoplasm-green-40-rgb:155,192,0;--ectoplasm-green-50-rgb:127,157,0;--ectoplasm-green-60-rgb:100,125,0;--ectoplasm-green-70-rgb:83,103,0;--ectoplasm-green-80-rgb:63,79,0;--ectoplasm-green-90-rgb:41,51,0;--ectoplasm-green-100-rgb:22,28,0;--ectoplasm-green-rgb:127,157,0;--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --ectoplasm-green-70 );--color-primary-dark-rgb:var( --ectoplasm-green-70-rgb );--color-primary-light:var( --ectoplasm-green-30 );--color-primary-light-rgb:var( --ectoplasm-green-30-rgb );--color-primary-0:var( --ectoplasm-green-0 );--color-primary-0-rgb:var( --ectoplasm-green-0-rgb );--color-primary-5:var( --ectoplasm-green-5 );--color-primary-5-rgb:var( --ectoplasm-green-5-rgb );--color-primary-10:var( --ectoplasm-green-10 );--color-primary-10-rgb:var( --ectoplasm-green-10-rgb );--color-primary-20:var( --ectoplasm-green-20 );--color-primary-20-rgb:var( --ectoplasm-green-20-rgb );--color-primary-30:var( --ectoplasm-green-30 );--color-primary-30-rgb:var( --ectoplasm-green-30-rgb );--color-primary-40:var( --ectoplasm-green-40 );--color-primary-40-rgb:var( --ectoplasm-green-40-rgb );--color-primary-50:var( --ectoplasm-green-50 );--color-primary-50-rgb:var( --ectoplasm-green-50-rgb );--color-primary-60:var( --ectoplasm-green-60 );--color-primary-60-rgb:var( --ectoplasm-green-60-rgb );--color-primary-70:var( --ectoplasm-green-70 );--color-primary-70-rgb:var( --ectoplasm-green-70-rgb );--color-primary-80:var( --ectoplasm-green-80 );--color-primary-80-rgb:var( --ectoplasm-green-80-rgb );--color-primary-90:var( --ectoplasm-green-90 );--color-primary-90-rgb:var( --ectoplasm-green-90-rgb );--color-primary-100:var( --ectoplasm-green-100 );--color-primary-100-rgb:var( --ectoplasm-green-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --ectoplasm-green-70 );--color-accent-dark-rgb:var( --ectoplasm-green-70-rgb );--color-accent-light:var( --ectoplasm-green-30 );--color-accent-light-rgb:var( --ectoplasm-green-30-rgb );--color-accent-0:var( --ectoplasm-green-0 );--color-accent-0-rgb:var( --ectoplasm-green-0-rgb );--color-accent-5:var( --ectoplasm-green-5 );--color-accent-5-rgb:var( --ectoplasm-green-5-rgb );--color-accent-10:var( --ectoplasm-green-10 );--color-accent-10-rgb:var( --ectoplasm-green-10-rgb );--color-accent-20:var( --ectoplasm-green-20 );--color-accent-20-rgb:var( --ectoplasm-green-20-rgb );--color-accent-30:var( --ectoplasm-green-30 );--color-accent-30-rgb:var( --ectoplasm-green-30-rgb );--color-accent-40:var( --ectoplasm-green-40 );--color-accent-40-rgb:var( --ectoplasm-green-40-rgb );--color-accent-50:var( --ectoplasm-green-50 );--color-accent-50-rgb:var( --ectoplasm-green-50-rgb );--color-accent-60:var( --ectoplasm-green-60 );--color-accent-60-rgb:var( --ectoplasm-green-60-rgb );--color-accent-70:var( --ectoplasm-green-70 );--color-accent-70-rgb:var( --ectoplasm-green-70-rgb );--color-accent-80:var( --ectoplasm-green-80 );--color-accent-80-rgb:var( --ectoplasm-green-80-rgb );--color-accent-90:var( --ectoplasm-green-90 );--color-accent-90-rgb:var( --ectoplasm-green-90-rgb );--color-accent-100:var( --ectoplasm-green-100 );--color-accent-100-rgb:var( --ectoplasm-green-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-white );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:var( --theme-text-color );--color-sidebar-gridicon-fill:var( --theme-icon-color );--color-sidebar-menu-selected-background:var( --theme-highlight-color );--color-sidebar-menu-selected-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-selected-text:var( --theme-text-color );--color-sidebar-menu-selected-text-rgb:var( --theme-text-color-rgb );--color-sidebar-menu-hover-background:var( --theme-highlight-color );--color-sidebar-menu-hover-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-hover-text:var( --theme-text-color );--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var( --theme-highlight-color )}.color-scheme.is-light,.color-scheme.is-light.is-nav-unification{--theme-text-color:#333;--theme-text-color-rgb:51,51,51;--theme-base-color:#e5e5e5;--theme-base-color-rgb:229,229,229;--theme-submenu-text-color:#686868;--theme-submenu-background-color:#fff;--theme-icon-color:#999;--theme-highlight-color:#04a4cc;--theme-highlight-color-rgb:4,164,204;--theme-notification-color:#d64e07;--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --studio-blue-70 );--color-primary-dark-rgb:var( --studio-blue-70-rgb );--color-primary-light:var( --studio-blue-30 );--color-primary-light-rgb:var( --studio-blue-30-rgb );--color-primary-0:var( --studio-blue-0 );--color-primary-0-rgb:var( --studio-blue-0-rgb );--color-primary-5:var( --studio-blue-5 );--color-primary-5-rgb:var( --studio-blue-5-rgb );--color-primary-10:var( --studio-blue-10 );--color-primary-10-rgb:var( --studio-blue-10-rgb );--color-primary-20:var( --studio-blue-20 );--color-primary-20-rgb:var( --studio-blue-20-rgb );--color-primary-30:var( --studio-blue-30 );--color-primary-30-rgb:var( --studio-blue-30-rgb );--color-primary-40:var( --studio-blue-40 );--color-primary-40-rgb:var( --studio-blue-40-rgb );--color-primary-50:var( --studio-blue-50 );--color-primary-50-rgb:var( --studio-blue-50-rgb );--color-primary-60:var( --studio-blue-60 );--color-primary-60-rgb:var( --studio-blue-60-rgb );--color-primary-70:var( --studio-blue-70 );--color-primary-70-rgb:var( --studio-blue-70-rgb );--color-primary-80:var( --studio-blue-80 );--color-primary-80-rgb:var( --studio-blue-80-rgb );--color-primary-90:var( --studio-blue-90 );--color-primary-90-rgb:var( --studio-blue-90-rgb );--color-primary-100:var( --studio-blue-100 );--color-primary-100-rgb:var( --studio-blue-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --studio-blue-70 );--color-accent-dark-rgb:var( --studio-blue-70-rgb );--color-accent-light:var( --studio-blue-30 );--color-accent-light-rgb:var( --studio-blue-30-rgb );--color-accent-0:var( --studio-blue-0 );--color-accent-0-rgb:var( --studio-blue-0-rgb );--color-accent-5:var( --studio-blue-5 );--color-accent-5-rgb:var( --studio-blue-5-rgb );--color-accent-10:var( --studio-blue-10 );--color-accent-10-rgb:var( --studio-blue-10-rgb );--color-accent-20:var( --studio-blue-20 );--color-accent-20-rgb:var( --studio-blue-20-rgb );--color-accent-30:var( --studio-blue-30 );--color-accent-30-rgb:var( --studio-blue-30-rgb );--color-accent-40:var( --studio-blue-40 );--color-accent-40-rgb:var( --studio-blue-40-rgb );--color-accent-50:var( --studio-blue-50 );--color-accent-50-rgb:var( --studio-blue-50-rgb );--color-accent-60:var( --studio-blue-60 );--color-accent-60-rgb:var( --studio-blue-60-rgb );--color-accent-70:var( --studio-blue-70 );--color-accent-70-rgb:var( --studio-blue-70-rgb );--color-accent-80:var( --studio-blue-80 );--color-accent-80-rgb:var( --studio-blue-80-rgb );--color-accent-90:var( --studio-blue-90 );--color-accent-90-rgb:var( --studio-blue-90-rgb );--color-accent-100:var( --studio-blue-100 );--color-accent-100-rgb:var( --studio-blue-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-black );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-90 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:var( --studio-gray-90 );--color-sidebar-gridicon-fill:var( --theme-icon-color );--color-sidebar-menu-selected-background:#888;--color-sidebar-menu-selected-background-rgb:136,136,136;--color-sidebar-menu-selected-text:#fff;--color-sidebar-menu-selected-text-rgb:255,255,255;--color-sidebar-menu-hover-background:#888;--color-sidebar-menu-hover-background-rgb:136,136,136;--color-sidebar-menu-hover-text:#fff;--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var( --theme-highlight-color );--color-sidebar-submenu-selected-text:#333}.color-scheme.is-light.is-nav-unification .masterbar__item-notifications .gridicon,.color-scheme.is-light .masterbar__item-notifications .gridicon{fill:#000}.color-scheme.is-midnight,.color-scheme.is-midnight.is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#363b3f;--theme-base-color-rgb:54,59,63;--theme-submenu-text-color:#c3c4c5;--theme-submenu-background-color:#26292c;--theme-icon-color:#ece6f6;--theme-highlight-color:#e14d43;--theme-highlight-color-rgb:225,77,67;--theme-notification-color:#69a8bb;--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --studio-red-70 );--color-primary-dark-rgb:var( --studio-red-70-rgb );--color-primary-light:var( --studio-red-30 );--color-primary-light-rgb:var( --studio-red-30-rgb );--color-primary-0:var( --studio-red-0 );--color-primary-0-rgb:var( --studio-red-0-rgb );--color-primary-5:var( --studio-red-5 );--color-primary-5-rgb:var( --studio-red-5-rgb );--color-primary-10:var( --studio-red-10 );--color-primary-10-rgb:var( --studio-red-10-rgb );--color-primary-20:var( --studio-red-20 );--color-primary-20-rgb:var( --studio-red-20-rgb );--color-primary-30:var( --studio-red-30 );--color-primary-30-rgb:var( --studio-red-30-rgb );--color-primary-40:var( --studio-red-40 );--color-primary-40-rgb:var( --studio-red-40-rgb );--color-primary-50:var( --studio-red-50 );--color-primary-50-rgb:var( --studio-red-50-rgb );--color-primary-60:var( --studio-red-60 );--color-primary-60-rgb:var( --studio-red-60-rgb );--color-primary-70:var( --studio-red-70 );--color-primary-70-rgb:var( --studio-red-70-rgb );--color-primary-80:var( --studio-red-80 );--color-primary-80-rgb:var( --studio-red-80-rgb );--color-primary-90:var( --studio-red-90 );--color-primary-90-rgb:var( --studio-red-90-rgb );--color-primary-100:var( --studio-red-100 );--color-primary-100-rgb:var( --studio-red-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --studio-red-70 );--color-accent-dark-rgb:var( --studio-red-70-rgb );--color-accent-light:var( --studio-red-30 );--color-accent-light-rgb:var( --studio-red-30-rgb );--color-accent-0:var( --studio-red-0 );--color-accent-0-rgb:var( --studio-red-0-rgb );--color-accent-5:var( --studio-red-5 );--color-accent-5-rgb:var( --studio-red-5-rgb );--color-accent-10:var( --studio-red-10 );--color-accent-10-rgb:var( --studio-red-10-rgb );--color-accent-20:var( --studio-red-20 );--color-accent-20-rgb:var( --studio-red-20-rgb );--color-accent-30:var( --studio-red-30 );--color-accent-30-rgb:var( --studio-red-30-rgb );--color-accent-40:var( --studio-red-40 );--color-accent-40-rgb:var( --studio-red-40-rgb );--color-accent-50:var( --studio-red-50 );--color-accent-50-rgb:var( --studio-red-50-rgb );--color-accent-60:var( --studio-red-60 );--color-accent-60-rgb:var( --studio-red-60-rgb );--color-accent-70:var( --studio-red-70 );--color-accent-70-rgb:var( --studio-red-70-rgb );--color-accent-80:var( --studio-red-80 );--color-accent-80-rgb:var( --studio-red-80-rgb );--color-accent-90:var( --studio-red-90 );--color-accent-90-rgb:var( --studio-red-90-rgb );--color-accent-100:var( --studio-red-100 );--color-accent-100-rgb:var( --studio-red-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-white );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:var( --theme-text-color );--color-sidebar-gridicon-fill:var( --theme-icon-color );--color-sidebar-menu-selected-background:var( --theme-highlight-color );--color-sidebar-menu-selected-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-selected-text:var( --theme-text-color );--color-sidebar-menu-selected-text-rgb:var( --theme-text-color-rgb );--color-sidebar-menu-hover-background:var( --theme-highlight-color );--color-sidebar-menu-hover-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-hover-text:var( --theme-text-color );--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var( --theme-highlight-color )}.color-scheme.is-modern,.color-scheme.is-modern.is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#1e1e1e;--theme-base-color-rgb:30,30,30;--theme-submenu-text-color:#bcbcbc;--theme-submenu-background-color:#0c0c0c;--theme-icon-color:#ece6f6;--theme-highlight-color:#3858e9;--theme-highlight-color-rgb:56,88,233;--theme-notification-color:#3858e9;--theme-highlight-color-0:#d5dffa;--theme-highlight-color-0-rgb:213,223,250;--theme-highlight-color-10:#abc0f5;--theme-highlight-color-10-rgb:171,192,245;--theme-highlight-color-20:#82a1f0;--theme-highlight-color-20-rgb:130,161,240;--theme-highlight-color-30:#5882eb;--theme-highlight-color-30-rgb:88,130,235;--theme-highlight-color-40:#2f63e6;--theme-highlight-color-40-rgb:47,99,230;--theme-highlight-color-50:var( --theme-highlight-color );--theme-highlight-color-50-rgb:var( --theme-highlight-color-rgb );--theme-highlight-color-60:#2145e6;--theme-highlight-color-60-rgb:33,69,230;--theme-highlight-color-70:#133ca6;--theme-highlight-color-70-rgb:19,60,166;--theme-highlight-color-80:#0e2d7c;--theme-highlight-color-80-rgb:14,45,124;--theme-highlight-color-90:#091e53;--theme-highlight-color-90-rgb:9,30,83;--theme-highlight-color-100:#040f29;--theme-highlight-color-100-rgb:4,15,41;--color-link:var( --theme-highlight-color );--color-link-dark:var( --theme-highlight-color-70 );--color-link-light:var( --theme-highlight-color-30 );--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --theme-highlight-color-70 );--color-primary-dark-rgb:var( --theme-highlight-color-70-rgb );--color-primary-light:var( --theme-highlight-color-30 );--color-primary-light-rgb:var( --theme-highlight-color-30-rgb );--color-primary-0:var( --theme-highlight-color-0 );--color-primary-0-rgb:var( --theme-highlight-color-0-rgb );--color-primary-5:var( --theme-highlight-color-5 );--color-primary-5-rgb:var( --theme-highlight-color-5-rgb );--color-primary-10:var( --theme-highlight-color-10 );--color-primary-10-rgb:var( --theme-highlight-color-10-rgb );--color-primary-20:var( --theme-highlight-color-20 );--color-primary-20-rgb:var( --theme-highlight-color-20-rgb );--color-primary-30:var( --theme-highlight-color-30 );--color-primary-30-rgb:var( --theme-highlight-color-30-rgb );--color-primary-40:var( --theme-highlight-color-40 );--color-primary-40-rgb:var( --theme-highlight-color-40-rgb );--color-primary-50:var( --theme-highlight-color-50 );--color-primary-50-rgb:var( --theme-highlight-color-50-rgb );--color-primary-60:var( --theme-highlight-color-60 );--color-primary-60-rgb:var( --theme-highlight-color-60-rgb );--color-primary-70:var( --theme-highlight-color-70 );--color-primary-70-rgb:var( --theme-highlight-color-70-rgb );--color-primary-80:var( --theme-highlight-color-80 );--color-primary-80-rgb:var( --theme-highlight-color-80-rgb );--color-primary-90:var( --theme-highlight-color-90 );--color-primary-90-rgb:var( --theme-highlight-color-90-rgb );--color-primary-100:var( --theme-highlight-color-100 );--color-primary-100-rgb:var( --theme-highlight-color-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --theme-highlight-color-70 );--color-accent-dark-rgb:var( --theme-highlight-color-70-rgb );--color-accent-light:var( --theme-highlight-color-30 );--color-accent-light-rgb:var( --theme-highlight-color-30-rgb );--color-accent-0:var( --theme-highlight-color-0 );--color-accent-0-rgb:var( --theme-highlight-color-0-rgb );--color-accent-5:var( --theme-highlight-color-5 );--color-accent-5-rgb:var( --theme-highlight-color-5-rgb );--color-accent-10:var( --theme-highlight-color-10 );--color-accent-10-rgb:var( --theme-highlight-color-10-rgb );--color-accent-20:var( --theme-highlight-color-20 );--color-accent-20-rgb:var( --theme-highlight-color-20-rgb );--color-accent-30:var( --theme-highlight-color-30 );--color-accent-30-rgb:var( --theme-highlight-color-30-rgb );--color-accent-40:var( --theme-highlight-color-40 );--color-accent-40-rgb:var( --theme-highlight-color-40-rgb );--color-accent-50:var( --theme-highlight-color-50 );--color-accent-50-rgb:var( --theme-highlight-color-50-rgb );--color-accent-60:var( --theme-highlight-color-60 );--color-accent-60-rgb:var( --theme-highlight-color-60-rgb );--color-accent-70:var( --theme-highlight-color-70 );--color-accent-70-rgb:var( --theme-highlight-color-70-rgb );--color-accent-80:var( --theme-highlight-color-80 );--color-accent-80-rgb:var( --theme-highlight-color-80-rgb );--color-accent-90:var( --theme-highlight-color-90 );--color-accent-90-rgb:var( --theme-highlight-color-90-rgb );--color-accent-100:var( --theme-highlight-color-100 );--color-accent-100-rgb:var( --theme-highlight-color-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-white );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:var( --studio-gray-10 );--color-sidebar-gridicon-fill:var( --studio-gray-0 );--color-sidebar-menu-selected-background:var( --theme-highlight-color );--color-sidebar-menu-selected-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-selected-text:var( --theme-text-color );--color-sidebar-menu-selected-text-rgb:var( --theme-text-color-rgb );--color-sidebar-menu-hover-background:var( --theme-highlight-color );--color-sidebar-menu-hover-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-hover-text:var( --theme-text-color );--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:#33f078}.color-scheme.is-nightfall,.color-scheme.is-nightfall.is-nav-unification{--color-primary:var( --studio-gray-90 );--color-primary-rgb:var( --studio-gray-90-rgb );--color-primary-dark:var( --studio-gray-70 );--color-primary-dark-rgb:var( --studio-gray-70-rgb );--color-primary-light:var( --studio-gray-30 );--color-primary-light-rgb:var( --studio-gray-30-rgb );--color-primary-0:var( --studio-gray-0 );--color-primary-0-rgb:var( --studio-gray-0-rgb );--color-primary-5:var( --studio-gray-5 );--color-primary-5-rgb:var( --studio-gray-5-rgb );--color-primary-10:var( --studio-gray-10 );--color-primary-10-rgb:var( --studio-gray-10-rgb );--color-primary-20:var( --studio-gray-20 );--color-primary-20-rgb:var( --studio-gray-20-rgb );--color-primary-30:var( --studio-gray-30 );--color-primary-30-rgb:var( --studio-gray-30-rgb );--color-primary-40:var( --studio-gray-40 );--color-primary-40-rgb:var( --studio-gray-40-rgb );--color-primary-50:var( --studio-gray-50 );--color-primary-50-rgb:var( --studio-gray-50-rgb );--color-primary-60:var( --studio-gray-60 );--color-primary-60-rgb:var( --studio-gray-60-rgb );--color-primary-70:var( --studio-gray-70 );--color-primary-70-rgb:var( --studio-gray-70-rgb );--color-primary-80:var( --studio-gray-80 );--color-primary-80-rgb:var( --studio-gray-80-rgb );--color-primary-90:var( --studio-gray-90 );--color-primary-90-rgb:var( --studio-gray-90-rgb );--color-primary-100:var( --studio-gray-100 );--color-primary-100-rgb:var( --studio-gray-100-rgb );--color-accent:var( --studio-blue-50 );--color-accent-rgb:var( --studio-blue-50-rgb );--color-accent-dark:var( --studio-blue-70 );--color-accent-dark-rgb:var( --studio-blue-70-rgb );--color-accent-light:var( --studio-blue-30 );--color-accent-light-rgb:var( --studio-blue-30-rgb );--color-accent-0:var( --studio-blue-0 );--color-accent-0-rgb:var( --studio-blue-0-rgb );--color-accent-5:var( --studio-blue-5 );--color-accent-5-rgb:var( --studio-blue-5-rgb );--color-accent-10:var( --studio-blue-10 );--color-accent-10-rgb:var( --studio-blue-10-rgb );--color-accent-20:var( --studio-blue-20 );--color-accent-20-rgb:var( --studio-blue-20-rgb );--color-accent-30:var( --studio-blue-30 );--color-accent-30-rgb:var( --studio-blue-30-rgb );--color-accent-40:var( --studio-blue-40 );--color-accent-40-rgb:var( --studio-blue-40-rgb );--color-accent-50:var( --studio-blue-50 );--color-accent-50-rgb:var( --studio-blue-50-rgb );--color-accent-60:var( --studio-blue-60 );--color-accent-60-rgb:var( --studio-blue-60-rgb );--color-accent-70:var( --studio-blue-70 );--color-accent-70-rgb:var( --studio-blue-70-rgb );--color-accent-80:var( --studio-blue-80 );--color-accent-80-rgb:var( --studio-blue-80-rgb );--color-accent-90:var( --studio-blue-90 );--color-accent-90-rgb:var( --studio-blue-90-rgb );--color-accent-100:var( --studio-blue-100 );--color-accent-100-rgb:var( --studio-blue-100-rgb );--color-link:var( --studio-blue-50 );--color-link-rgb:var( --studio-blue-50-rgb );--color-link-dark:var( --studio-blue-70 );--color-link-dark-rgb:var( --studio-blue-70-rgb );--color-link-light:var( --studio-blue-30 );--color-link-light-rgb:var( --studio-blue-30-rgb );--color-link-0:var( --studio-blue-0 );--color-link-0-rgb:var( --studio-blue-0-rgb );--color-link-5:var( --studio-blue-5 );--color-link-5-rgb:var( --studio-blue-5-rgb );--color-link-10:var( --studio-blue-10 );--color-link-10-rgb:var( --studio-blue-10-rgb );--color-link-20:var( --studio-blue-20 );--color-link-20-rgb:var( --studio-blue-20-rgb );--color-link-30:var( --studio-blue-30 );--color-link-30-rgb:var( --studio-blue-30-rgb );--color-link-40:var( --studio-blue-40 );--color-link-40-rgb:var( --studio-blue-40-rgb );--color-link-50:var( --studio-blue-50 );--color-link-50-rgb:var( --studio-blue-50-rgb );--color-link-60:var( --studio-blue-60 );--color-link-60-rgb:var( --studio-blue-60-rgb );--color-link-70:var( --studio-blue-70 );--color-link-70-rgb:var( --studio-blue-70-rgb );--color-link-80:var( --studio-blue-80 );--color-link-80-rgb:var( --studio-blue-80-rgb );--color-link-90:var( --studio-blue-90 );--color-link-90-rgb:var( --studio-blue-90-rgb );--color-link-100:var( --studio-blue-100 );--color-link-100-rgb:var( --studio-blue-100-rgb );--color-masterbar-background:var( --studio-blue-100 );--color-masterbar-border:var( --studio-blue-100 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-blue-90 );--color-masterbar-item-active-background:var( --studio-blue-80 );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-40 );--color-masterbar-unread-dot-background:var( --color-accent-30 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --studio-blue-80 );--color-sidebar-background-rgb:var( --studio-blue-80-rgb );--color-sidebar-border:var( --studio-blue-90 );--color-sidebar-text:var( --studio-blue-5 );--color-sidebar-text-rgb:var( --studio-blue-5-rgb );--color-sidebar-text-alternative:var( --studio-blue-20 );--color-sidebar-gridicon-fill:var( --studio-blue-10 );--color-sidebar-menu-selected-background:var( --studio-blue-100 );--color-sidebar-menu-selected-background-rgb:var( --studio-blue-100-rgb );--color-sidebar-menu-selected-text:var( --studio-white );--color-sidebar-menu-selected-text-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-background:var( --studio-blue-70 );--color-sidebar-menu-hover-background-rgb:var( --studio-blue-70-rgb );--color-sidebar-menu-hover-text:var( --studio-white );--color-sidebar-submenu-background:var( --studio-blue-90 );--color-sidebar-submenu-text:var( --studio-white );--color-sidebar-submenu-hover-text:var( --studio-blue-20 );--color-sidebar-submenu-selected-text:var( --studio-white )}.color-scheme.is-ocean,.color-scheme.is-ocean.is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#738e96;--theme-base-color-rgb:115,142,150;--theme-submenu-text-color:#d5dde0;--theme-submenu-background-color:#627c83;--theme-icon-color:#f2fcff;--theme-highlight-color:#9ebaa0;--theme-highlight-color-rgb:158,186,160;--theme-notification-color:#aa9d88;--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --studio-celadon-70 );--color-primary-dark-rgb:var( --studio-celadon-70-rgb );--color-primary-light:var( --studio-celadon-30 );--color-primary-light-rgb:var( --studio-celadon-30-rgb );--color-primary-0:var( --studio-celadon-0 );--color-primary-0-rgb:var( --studio-celadon-0-rgb );--color-primary-5:var( --studio-celadon-5 );--color-primary-5-rgb:var( --studio-celadon-5-rgb );--color-primary-10:var( --studio-celadon-10 );--color-primary-10-rgb:var( --studio-celadon-10-rgb );--color-primary-20:var( --studio-celadon-20 );--color-primary-20-rgb:var( --studio-celadon-20-rgb );--color-primary-30:var( --studio-celadon-30 );--color-primary-30-rgb:var( --studio-celadon-30-rgb );--color-primary-40:var( --studio-celadon-40 );--color-primary-40-rgb:var( --studio-celadon-40-rgb );--color-primary-50:var( --studio-celadon-50 );--color-primary-50-rgb:var( --studio-celadon-50-rgb );--color-primary-60:var( --studio-celadon-60 );--color-primary-60-rgb:var( --studio-celadon-60-rgb );--color-primary-70:var( --studio-celadon-70 );--color-primary-70-rgb:var( --studio-celadon-70-rgb );--color-primary-80:var( --studio-celadon-80 );--color-primary-80-rgb:var( --studio-celadon-80-rgb );--color-primary-90:var( --studio-celadon-90 );--color-primary-90-rgb:var( --studio-celadon-90-rgb );--color-primary-100:var( --studio-celadon-100 );--color-primary-100-rgb:var( --studio-celadon-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --studio-celadon-70 );--color-accent-dark-rgb:var( --studio-celadon-70-rgb );--color-accent-light:var( --studio-celadon-30 );--color-accent-light-rgb:var( --studio-celadon-30-rgb );--color-accent-0:var( --studio-celadon-0 );--color-accent-0-rgb:var( --studio-celadon-0-rgb );--color-accent-5:var( --studio-celadon-5 );--color-accent-5-rgb:var( --studio-celadon-5-rgb );--color-accent-10:var( --studio-celadon-10 );--color-accent-10-rgb:var( --studio-celadon-10-rgb );--color-accent-20:var( --studio-celadon-20 );--color-accent-20-rgb:var( --studio-celadon-20-rgb );--color-accent-30:var( --studio-celadon-30 );--color-accent-30-rgb:var( --studio-celadon-30-rgb );--color-accent-40:var( --studio-celadon-40 );--color-accent-40-rgb:var( --studio-celadon-40-rgb );--color-accent-50:var( --studio-celadon-50 );--color-accent-50-rgb:var( --studio-celadon-50-rgb );--color-accent-60:var( --studio-celadon-60 );--color-accent-60-rgb:var( --studio-celadon-60-rgb );--color-accent-70:var( --studio-celadon-70 );--color-accent-70-rgb:var( --studio-celadon-70-rgb );--color-accent-80:var( --studio-celadon-80 );--color-accent-80-rgb:var( --studio-celadon-80-rgb );--color-accent-90:var( --studio-celadon-90 );--color-accent-90-rgb:var( --studio-celadon-90-rgb );--color-accent-100:var( --studio-celadon-100 );--color-accent-100-rgb:var( --studio-celadon-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-white );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:var( --theme-text-color );--color-sidebar-gridicon-fill:var( --theme-icon-color );--color-sidebar-menu-selected-background:var( --theme-highlight-color );--color-sidebar-menu-selected-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-selected-text:var( --theme-text-color );--color-sidebar-menu-selected-text-rgb:var( --theme-text-color-rgb );--color-sidebar-menu-hover-background:var( --theme-highlight-color );--color-sidebar-menu-hover-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-hover-text:var( --theme-text-color );--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var( --theme-highlight-color )}.color-scheme.is-powder-snow,.color-scheme.is-powder-snow.is-nav-unification{--color-primary:var( --studio-gray-90 );--color-primary-rgb:var( --studio-gray-90-rgb );--color-primary-dark:var( --studio-gray-70 );--color-primary-dark-rgb:var( --studio-gray-70-rgb );--color-primary-light:var( --studio-gray-30 );--color-primary-light-rgb:var( --studio-gray-30-rgb );--color-primary-0:var( --studio-gray-0 );--color-primary-0-rgb:var( --studio-gray-0-rgb );--color-primary-5:var( --studio-gray-5 );--color-primary-5-rgb:var( --studio-gray-5-rgb );--color-primary-10:var( --studio-gray-10 );--color-primary-10-rgb:var( --studio-gray-10-rgb );--color-primary-20:var( --studio-gray-20 );--color-primary-20-rgb:var( --studio-gray-20-rgb );--color-primary-30:var( --studio-gray-30 );--color-primary-30-rgb:var( --studio-gray-30-rgb );--color-primary-40:var( --studio-gray-40 );--color-primary-40-rgb:var( --studio-gray-40-rgb );--color-primary-50:var( --studio-gray-50 );--color-primary-50-rgb:var( --studio-gray-50-rgb );--color-primary-60:var( --studio-gray-60 );--color-primary-60-rgb:var( --studio-gray-60-rgb );--color-primary-70:var( --studio-gray-70 );--color-primary-70-rgb:var( --studio-gray-70-rgb );--color-primary-80:var( --studio-gray-80 );--color-primary-80-rgb:var( --studio-gray-80-rgb );--color-primary-90:var( --studio-gray-90 );--color-primary-90-rgb:var( --studio-gray-90-rgb );--color-primary-100:var( --studio-gray-100 );--color-primary-100-rgb:var( --studio-gray-100-rgb );--color-accent:var( --studio-blue-50 );--color-accent-rgb:var( --studio-blue-50-rgb );--color-accent-dark:var( --studio-blue-70 );--color-accent-dark-rgb:var( --studio-blue-70-rgb );--color-accent-light:var( --studio-blue-30 );--color-accent-light-rgb:var( --studio-blue-30-rgb );--color-accent-0:var( --studio-blue-0 );--color-accent-0-rgb:var( --studio-blue-0-rgb );--color-accent-5:var( --studio-blue-5 );--color-accent-5-rgb:var( --studio-blue-5-rgb );--color-accent-10:var( --studio-blue-10 );--color-accent-10-rgb:var( --studio-blue-10-rgb );--color-accent-20:var( --studio-blue-20 );--color-accent-20-rgb:var( --studio-blue-20-rgb );--color-accent-30:var( --studio-blue-30 );--color-accent-30-rgb:var( --studio-blue-30-rgb );--color-accent-40:var( --studio-blue-40 );--color-accent-40-rgb:var( --studio-blue-40-rgb );--color-accent-50:var( --studio-blue-50 );--color-accent-50-rgb:var( --studio-blue-50-rgb );--color-accent-60:var( --studio-blue-60 );--color-accent-60-rgb:var( --studio-blue-60-rgb );--color-accent-70:var( --studio-blue-70 );--color-accent-70-rgb:var( --studio-blue-70-rgb );--color-accent-80:var( --studio-blue-80 );--color-accent-80-rgb:var( --studio-blue-80-rgb );--color-accent-90:var( --studio-blue-90 );--color-accent-90-rgb:var( --studio-blue-90-rgb );--color-accent-100:var( --studio-blue-100 );--color-accent-100-rgb:var( --studio-blue-100-rgb );--color-link:var( --studio-blue-50 );--color-link-rgb:var( --studio-blue-50-rgb );--color-link-dark:var( --studio-blue-70 );--color-link-dark-rgb:var( --studio-blue-70-rgb );--color-link-light:var( --studio-blue-30 );--color-link-light-rgb:var( --studio-blue-30-rgb );--color-link-0:var( --studio-blue-0 );--color-link-0-rgb:var( --studio-blue-0-rgb );--color-link-5:var( --studio-blue-5 );--color-link-5-rgb:var( --studio-blue-5-rgb );--color-link-10:var( --studio-blue-10 );--color-link-10-rgb:var( --studio-blue-10-rgb );--color-link-20:var( --studio-blue-20 );--color-link-20-rgb:var( --studio-blue-20-rgb );--color-link-30:var( --studio-blue-30 );--color-link-30-rgb:var( --studio-blue-30-rgb );--color-link-40:var( --studio-blue-40 );--color-link-40-rgb:var( --studio-blue-40-rgb );--color-link-50:var( --studio-blue-50 );--color-link-50-rgb:var( --studio-blue-50-rgb );--color-link-60:var( --studio-blue-60 );--color-link-60-rgb:var( --studio-blue-60-rgb );--color-link-70:var( --studio-blue-70 );--color-link-70-rgb:var( --studio-blue-70-rgb );--color-link-80:var( --studio-blue-80 );--color-link-80-rgb:var( --studio-blue-80-rgb );--color-link-90:var( --studio-blue-90 );--color-link-90-rgb:var( --studio-blue-90-rgb );--color-link-100:var( --studio-blue-100 );--color-link-100-rgb:var( --studio-blue-100-rgb );--color-masterbar-background:var( --studio-gray-100 );--color-masterbar-border:var( --studio-gray-90 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-gray-80 );--color-masterbar-item-active-background:var( --studio-gray-70 );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-40 );--color-masterbar-unread-dot-background:var( --color-accent-30 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --studio-gray-5 );--color-sidebar-background-rgb:var( --studio-gray-5-rgb );--color-sidebar-border:var( --studio-gray-10 );--color-sidebar-text:var( --studio-gray-80 );--color-sidebar-text-rgb:var( --studio-gray-80-rgb );--color-sidebar-text-alternative:var( --studio-gray-60 );--color-sidebar-gridicon-fill:var( --studio-gray-50 );--color-sidebar-menu-selected-background:var( --studio-gray-60 );--color-sidebar-menu-selected-background-rgb:var( --studio-gray-60-rgb );--color-sidebar-menu-selected-text:var( --studio-white );--color-sidebar-menu-selected-text-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-background:var( --color-surface );--color-sidebar-menu-hover-background-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-text:var( --studio-blue-60 );--color-sidebar-submenu-background:var( --studio-gray-10 );--color-sidebar-submenu-text:var( --studio-gray-80 );--color-sidebar-submenu-hover-text:var( --studio-blue-60 );--color-sidebar-submenu-selected-text:var( --studio-gray-80 )}.color-scheme.is-sakura,.color-scheme.is-sakura.is-nav-unification{--color-primary:var( --studio-celadon-50 );--color-primary-rgb:var( --studio-celadon-50-rgb );--color-primary-dark:var( --studio-celadon-70 );--color-primary-dark-rgb:var( --studio-celadon-70-rgb );--color-primary-light:var( --studio-celadon-30 );--color-primary-light-rgb:var( --studio-celadon-30-rgb );--color-primary-0:var( --studio-celadon-0 );--color-primary-0-rgb:var( --studio-celadon-0-rgb );--color-primary-5:var( --studio-celadon-5 );--color-primary-5-rgb:var( --studio-celadon-5-rgb );--color-primary-10:var( --studio-celadon-10 );--color-primary-10-rgb:var( --studio-celadon-10-rgb );--color-primary-20:var( --studio-celadon-20 );--color-primary-20-rgb:var( --studio-celadon-20-rgb );--color-primary-30:var( --studio-celadon-30 );--color-primary-30-rgb:var( --studio-celadon-30-rgb );--color-primary-40:var( --studio-celadon-40 );--color-primary-40-rgb:var( --studio-celadon-40-rgb );--color-primary-50:var( --studio-celadon-50 );--color-primary-50-rgb:var( --studio-celadon-50-rgb );--color-primary-60:var( --studio-celadon-60 );--color-primary-60-rgb:var( --studio-celadon-60-rgb );--color-primary-70:var( --studio-celadon-70 );--color-primary-70-rgb:var( --studio-celadon-70-rgb );--color-primary-80:var( --studio-celadon-80 );--color-primary-80-rgb:var( --studio-celadon-80-rgb );--color-primary-90:var( --studio-celadon-90 );--color-primary-90-rgb:var( --studio-celadon-90-rgb );--color-primary-100:var( --studio-celadon-100 );--color-primary-100-rgb:var( --studio-celadon-100-rgb );--color-accent:var( --studio-blue-50 );--color-accent-rgb:var( --studio-blue-50-rgb );--color-accent-dark:var( --studio-blue-70 );--color-accent-dark-rgb:var( --studio-blue-70-rgb );--color-accent-light:var( --studio-blue-30 );--color-accent-light-rgb:var( --studio-blue-30-rgb );--color-accent-0:var( --studio-blue-0 );--color-accent-0-rgb:var( --studio-blue-0-rgb );--color-accent-5:var( --studio-blue-5 );--color-accent-5-rgb:var( --studio-blue-5-rgb );--color-accent-10:var( --studio-blue-10 );--color-accent-10-rgb:var( --studio-blue-10-rgb );--color-accent-20:var( --studio-blue-20 );--color-accent-20-rgb:var( --studio-blue-20-rgb );--color-accent-30:var( --studio-blue-30 );--color-accent-30-rgb:var( --studio-blue-30-rgb );--color-accent-40:var( --studio-blue-40 );--color-accent-40-rgb:var( --studio-blue-40-rgb );--color-accent-50:var( --studio-blue-50 );--color-accent-50-rgb:var( --studio-blue-50-rgb );--color-accent-60:var( --studio-blue-60 );--color-accent-60-rgb:var( --studio-blue-60-rgb );--color-accent-70:var( --studio-blue-70 );--color-accent-70-rgb:var( --studio-blue-70-rgb );--color-accent-80:var( --studio-blue-80 );--color-accent-80-rgb:var( --studio-blue-80-rgb );--color-accent-90:var( --studio-blue-90 );--color-accent-90-rgb:var( --studio-blue-90-rgb );--color-accent-100:var( --studio-blue-100 );--color-accent-100-rgb:var( --studio-blue-100-rgb );--color-link:var( --studio-celadon-50 );--color-link-rgb:var( --studio-celadon-50-rgb );--color-link-dark:var( --studio-celadon-70 );--color-link-dark-rgb:var( --studio-celadon-70-rgb );--color-link-light:var( --studio-celadon-30 );--color-link-light-rgb:var( --studio-celadon-30-rgb );--color-link-0:var( --studio-celadon-0 );--color-link-0-rgb:var( --studio-celadon-0-rgb );--color-link-5:var( --studio-celadon-5 );--color-link-5-rgb:var( --studio-celadon-5-rgb );--color-link-10:var( --studio-celadon-10 );--color-link-10-rgb:var( --studio-celadon-10-rgb );--color-link-20:var( --studio-celadon-20 );--color-link-20-rgb:var( --studio-celadon-20-rgb );--color-link-30:var( --studio-celadon-30 );--color-link-30-rgb:var( --studio-celadon-30-rgb );--color-link-40:var( --studio-celadon-40 );--color-link-40-rgb:var( --studio-celadon-40-rgb );--color-link-50:var( --studio-celadon-50 );--color-link-50-rgb:var( --studio-celadon-50-rgb );--color-link-60:var( --studio-celadon-60 );--color-link-60-rgb:var( --studio-celadon-60-rgb );--color-link-70:var( --studio-celadon-70 );--color-link-70-rgb:var( --studio-celadon-70-rgb );--color-link-80:var( --studio-celadon-80 );--color-link-80-rgb:var( --studio-celadon-80-rgb );--color-link-90:var( --studio-celadon-90 );--color-link-90-rgb:var( --studio-celadon-90-rgb );--color-link-100:var( --studio-celadon-100 );--color-link-100-rgb:var( --studio-celadon-100-rgb );--color-masterbar-background:var( --studio-celadon-70 );--color-masterbar-border:var( --studio-celadon-80 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-celadon-80 );--color-masterbar-item-active-background:var( --studio-celadon-90 );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --studio-pink-5 );--color-sidebar-background-rgb:var( --studio-pink-5-rgb );--color-sidebar-border:var( --studio-pink-10 );--color-sidebar-text:var( --studio-pink-80 );--color-sidebar-text-rgb:var( --studio-pink-80-rgb );--color-sidebar-text-alternative:var( --studio-pink-60 );--color-sidebar-gridicon-fill:var( --studio-pink-70 );--color-sidebar-menu-selected-background:var( --studio-blue-50 );--color-sidebar-menu-selected-background-rgb:var( --studio-blue-50-rgb );--color-sidebar-menu-selected-text:var( --studio-white );--color-sidebar-menu-selected-text-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-background:var( --studio-pink-10 );--color-sidebar-menu-hover-background-rgb:var( --studio-pink-10-rgb );--color-sidebar-menu-hover-text:var( --studio-pink-90 );--color-sidebar-submenu-background:var( --studio-pink-90 );--color-sidebar-submenu-text:var( --studio-pink-0 );--color-sidebar-submenu-hover-text:var( --studio-blue-20 );--color-sidebar-submenu-selected-text:var( --studio-pink-0 )}.color-scheme.is-sunrise,.color-scheme.is-sunrise.is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#cf4944;--theme-base-color-rgb:207,73,68;--theme-submenu-text-color:#f1c8c7;--theme-submenu-background-color:#be3631;--theme-submenu-hover-text-color:#f7e3d3;--theme-icon-color:#f3f1f1;--theme-highlight-color:#dd823b;--theme-highlight-color-rgb:221,130,59;--theme-notification-color:#ccaf0b;--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --studio-orange-70 );--color-primary-dark-rgb:var( --studio-orange-70-rgb );--color-primary-light:var( --studio-orange-30 );--color-primary-light-rgb:var( --studio-orange-30-rgb );--color-primary-0:var( --studio-orange-0 );--color-primary-0-rgb:var( --studio-orange-0-rgb );--color-primary-5:var( --studio-orange-5 );--color-primary-5-rgb:var( --studio-orange-5-rgb );--color-primary-10:var( --studio-orange-10 );--color-primary-10-rgb:var( --studio-orange-10-rgb );--color-primary-20:var( --studio-orange-20 );--color-primary-20-rgb:var( --studio-orange-20-rgb );--color-primary-30:var( --studio-orange-30 );--color-primary-30-rgb:var( --studio-orange-30-rgb );--color-primary-40:var( --studio-orange-40 );--color-primary-40-rgb:var( --studio-orange-40-rgb );--color-primary-50:var( --studio-orange-50 );--color-primary-50-rgb:var( --studio-orange-50-rgb );--color-primary-60:var( --studio-orange-60 );--color-primary-60-rgb:var( --studio-orange-60-rgb );--color-primary-70:var( --studio-orange-70 );--color-primary-70-rgb:var( --studio-orange-70-rgb );--color-primary-80:var( --studio-orange-80 );--color-primary-80-rgb:var( --studio-orange-80-rgb );--color-primary-90:var( --studio-orange-90 );--color-primary-90-rgb:var( --studio-orange-90-rgb );--color-primary-100:var( --studio-orange-100 );--color-primary-100-rgb:var( --studio-orange-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --studio-orange-70 );--color-accent-dark-rgb:var( --studio-orange-70-rgb );--color-accent-light:var( --studio-orange-30 );--color-accent-light-rgb:var( --studio-orange-30-rgb );--color-accent-0:var( --studio-orange-0 );--color-accent-0-rgb:var( --studio-orange-0-rgb );--color-accent-5:var( --studio-orange-5 );--color-accent-5-rgb:var( --studio-orange-5-rgb );--color-accent-10:var( --studio-orange-10 );--color-accent-10-rgb:var( --studio-orange-10-rgb );--color-accent-20:var( --studio-orange-20 );--color-accent-20-rgb:var( --studio-orange-20-rgb );--color-accent-30:var( --studio-orange-30 );--color-accent-30-rgb:var( --studio-orange-30-rgb );--color-accent-40:var( --studio-orange-40 );--color-accent-40-rgb:var( --studio-orange-40-rgb );--color-accent-50:var( --studio-orange-50 );--color-accent-50-rgb:var( --studio-orange-50-rgb );--color-accent-60:var( --studio-orange-60 );--color-accent-60-rgb:var( --studio-orange-60-rgb );--color-accent-70:var( --studio-orange-70 );--color-accent-70-rgb:var( --studio-orange-70-rgb );--color-accent-80:var( --studio-orange-80 );--color-accent-80-rgb:var( --studio-orange-80-rgb );--color-accent-90:var( --studio-orange-90 );--color-accent-90-rgb:var( --studio-orange-90-rgb );--color-accent-100:var( --studio-orange-100 );--color-accent-100-rgb:var( --studio-orange-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-white );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:var( --studio-gray-0 );--color-sidebar-gridicon-fill:var( --theme-icon-color );--color-sidebar-menu-selected-background:var( --theme-highlight-color );--color-sidebar-menu-selected-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-selected-text:var( --theme-text-color );--color-sidebar-menu-selected-text-rgb:var( --theme-text-color-rgb );--color-sidebar-menu-hover-background:var( --theme-highlight-color );--color-sidebar-menu-hover-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-hover-text:var( --theme-text-color );--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var( --theme-submenu-hover-text-color )}.color-scheme.is-sunset,.color-scheme.is-sunset.is-nav-unification{--color-primary:var( --studio-red-50 );--color-primary-rgb:var( --studio-red-50-rgb );--color-primary-dark:var( --studio-red-70 );--color-primary-dark-rgb:var( --studio-red-70-rgb );--color-primary-light:var( --studio-red-30 );--color-primary-light-rgb:var( --studio-red-30-rgb );--color-primary-0:var( --studio-red-0 );--color-primary-0-rgb:var( --studio-red-0-rgb );--color-primary-5:var( --studio-red-5 );--color-primary-5-rgb:var( --studio-red-5-rgb );--color-primary-10:var( --studio-red-10 );--color-primary-10-rgb:var( --studio-red-10-rgb );--color-primary-20:var( --studio-red-20 );--color-primary-20-rgb:var( --studio-red-20-rgb );--color-primary-30:var( --studio-red-30 );--color-primary-30-rgb:var( --studio-red-30-rgb );--color-primary-40:var( --studio-red-40 );--color-primary-40-rgb:var( --studio-red-40-rgb );--color-primary-50:var( --studio-red-50 );--color-primary-50-rgb:var( --studio-red-50-rgb );--color-primary-60:var( --studio-red-60 );--color-primary-60-rgb:var( --studio-red-60-rgb );--color-primary-70:var( --studio-red-70 );--color-primary-70-rgb:var( --studio-red-70-rgb );--color-primary-80:var( --studio-red-80 );--color-primary-80-rgb:var( --studio-red-80-rgb );--color-primary-90:var( --studio-red-90 );--color-primary-90-rgb:var( --studio-red-90-rgb );--color-primary-100:var( --studio-red-100 );--color-primary-100-rgb:var( --studio-red-100-rgb );--color-accent:var( --studio-orange-50 );--color-accent-rgb:var( --studio-orange-50-rgb );--color-accent-dark:var( --studio-orange-70 );--color-accent-dark-rgb:var( --studio-orange-70-rgb );--color-accent-light:var( --studio-orange-30 );--color-accent-light-rgb:var( --studio-orange-30-rgb );--color-accent-0:var( --studio-orange-0 );--color-accent-0-rgb:var( --studio-orange-0-rgb );--color-accent-5:var( --studio-orange-5 );--color-accent-5-rgb:var( --studio-orange-5-rgb );--color-accent-10:var( --studio-orange-10 );--color-accent-10-rgb:var( --studio-orange-10-rgb );--color-accent-20:var( --studio-orange-20 );--color-accent-20-rgb:var( --studio-orange-20-rgb );--color-accent-30:var( --studio-orange-30 );--color-accent-30-rgb:var( --studio-orange-30-rgb );--color-accent-40:var( --studio-orange-40 );--color-accent-40-rgb:var( --studio-orange-40-rgb );--color-accent-50:var( --studio-orange-50 );--color-accent-50-rgb:var( --studio-orange-50-rgb );--color-accent-60:var( --studio-orange-60 );--color-accent-60-rgb:var( --studio-orange-60-rgb );--color-accent-70:var( --studio-orange-70 );--color-accent-70-rgb:var( --studio-orange-70-rgb );--color-accent-80:var( --studio-orange-80 );--color-accent-80-rgb:var( --studio-orange-80-rgb );--color-accent-90:var( --studio-orange-90 );--color-accent-90-rgb:var( --studio-orange-90-rgb );--color-accent-100:var( --studio-orange-100 );--color-accent-100-rgb:var( --studio-orange-100-rgb );--color-link:var( --studio-orange-50 );--color-link-rgb:var( --studio-orange-50-rgb );--color-link-dark:var( --studio-orange-70 );--color-link-dark-rgb:var( --studio-orange-70-rgb );--color-link-light:var( --studio-orange-30 );--color-link-light-rgb:var( --studio-orange-30-rgb );--color-link-0:var( --studio-orange-0 );--color-link-0-rgb:var( --studio-orange-0-rgb );--color-link-5:var( --studio-orange-5 );--color-link-5-rgb:var( --studio-orange-5-rgb );--color-link-10:var( --studio-orange-10 );--color-link-10-rgb:var( --studio-orange-10-rgb );--color-link-20:var( --studio-orange-20 );--color-link-20-rgb:var( --studio-orange-20-rgb );--color-link-30:var( --studio-orange-30 );--color-link-30-rgb:var( --studio-orange-30-rgb );--color-link-40:var( --studio-orange-40 );--color-link-40-rgb:var( --studio-orange-40-rgb );--color-link-50:var( --studio-orange-50 );--color-link-50-rgb:var( --studio-orange-50-rgb );--color-link-60:var( --studio-orange-60 );--color-link-60-rgb:var( --studio-orange-60-rgb );--color-link-70:var( --studio-orange-70 );--color-link-70-rgb:var( --studio-orange-70-rgb );--color-link-80:var( --studio-orange-80 );--color-link-80-rgb:var( --studio-orange-80-rgb );--color-link-90:var( --studio-orange-90 );--color-link-90-rgb:var( --studio-orange-90-rgb );--color-link-100:var( --studio-orange-100 );--color-link-100-rgb:var( --studio-orange-100-rgb );--color-masterbar-background:var( --studio-red-80 );--color-masterbar-border:var( --studio-red-80 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-red-90 );--color-masterbar-item-active-background:var( --studio-red-100 );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --studio-red-70 );--color-sidebar-background-rgb:var( --studio-red-70-rgb );--color-sidebar-border:var( --studio-red-80 );--color-sidebar-text:var( --studio-white );--color-sidebar-text-rgb:var( --studio-white-rgb );--color-sidebar-text-alternative:var( --studio-red-10 );--color-sidebar-gridicon-fill:var( --studio-red-5 );--color-sidebar-menu-selected-background:var( --studio-yellow-20 );--color-sidebar-menu-selected-background-rgb:var( --studio-yellow-20-rgb );--color-sidebar-menu-selected-text:var( --studio-yellow-80 );--color-sidebar-menu-selected-text-rgb:var( --studio-yellow-80-rgb );--color-sidebar-menu-hover-background:var( --studio-red-80 );--color-sidebar-menu-hover-background-rgb:var( --studio-red-80-rgb );--color-sidebar-menu-hover-text:var( --studio-white );--color-sidebar-submenu-background:var( --studio-red-60 );--color-sidebar-submenu-text:var( --studio-white );--color-sidebar-submenu-hover-text:var( --studio-yellow-20 );--color-sidebar-submenu-selected-text:var( --studio-white )}.color-scheme.is-jetpack-cloud,.theme-jetpack-cloud{--color-primary:var( --studio-black );--color-primary-rgb:var( --studio-black-rgb );--color-primary-dark:var( --studio-gray-70 );--color-primary-dark-rgb:var( --studio-gray-70-rgb );--color-primary-light:var( --studio-gray-30 );--color-primary-light-rgb:var( --studio-gray-30-rgb );--color-primary-0:var( --studio-gray-0 );--color-primary-0-rgb:var( --studio-gray-0-rgb );--color-primary-5:var( --studio-gray-5 );--color-primary-5-rgb:var( --studio-gray-5-rgb );--color-primary-10:var( --studio-gray-10 );--color-primary-10-rgb:var( --studio-gray-10-rgb );--color-primary-20:var( --studio-gray-20 );--color-primary-20-rgb:var( --studio-gray-20-rgb );--color-primary-30:var( --studio-gray-30 );--color-primary-30-rgb:var( --studio-gray-30-rgb );--color-primary-40:var( --studio-gray-40 );--color-primary-40-rgb:var( --studio-gray-40-rgb );--color-primary-50:var( --studio-gray-50 );--color-primary-50-rgb:var( --studio-gray-rgb );--color-primary-60:var( --studio-gray-60 );--color-primary-60-rgb:var( --studio-gray-60-rgb );--color-primary-70:var( --studio-gray-70 );--color-primary-70-rgb:var( --studio-gray-70-rgb );--color-primary-80:var( --studio-gray-80 );--color-primary-80-rgb:var( --studio-gray-80-rgb );--color-primary-90:var( --studio-gray-90 );--color-primary-90-rgb:var( --studio-gray-90-rgb );--color-primary-100:var( --studio-gray-100 );--color-primary-100-rgb:var( --studio-gray-100-rgb );--color-accent:var( --studio-black );--color-accent-rgb:var( --studio-black-rgb );--color-accent-dark:var( --studio-gray-70 );--color-accent-dark-rgb:var( --studio-gray-70-rgb );--color-accent-light:var( --studio-gray-30 );--color-accent-light-rgb:var( --studio-gray-30-rgb );--color-accent-0:var( --studio-gray-0 );--color-accent-0-rgb:var( --studio-gray-0-rgb );--color-accent-5:var( --studio-gray-5 );--color-accent-5-rgb:var( --studio-gray-5-rgb );--color-accent-10:var( --studio-gray-10 );--color-accent-10-rgb:var( --studio-gray-10-rgb );--color-accent-20:var( --studio-gray-20 );--color-accent-20-rgb:var( --studio-gray-20-rgb );--color-accent-30:var( --studio-gray-30 );--color-accent-30-rgb:var( --studio-gray-30-rgb );--color-accent-40:var( --studio-gray-40 );--color-accent-40-rgb:var( --studio-gray-40-rgb );--color-accent-50:var( --studio-gray-50 );--color-accent-50-rgb:var( --studio-gray-50-rgb );--color-accent-60:var( --studio-gray-60 );--color-accent-60-rgb:var( --studio-gray-60-rgb );--color-accent-70:var( --studio-gray-70 );--color-accent-70-rgb:var( --studio-gray-70-rgb );--color-accent-80:var( --studio-gray-80 );--color-accent-80-rgb:var( --studio-gray-80-rgb );--color-accent-90:var( --studio-gray-90 );--color-accent-90-rgb:var( --studio-gray-90-rgb );--color-accent-100:var( --studio-gray-100 );--color-accent-100-rgb:var( --studio-gray-100-rgb );--color-link:var( --studio-jetpack-green-50 );--color-link-rgb:var( --studio-jetpack-green-50-rgb );--color-link-dark:var( --studio-jetpack-green-70 );--color-link-dark-rgb:var( --studio-jetpack-green-70-rgb );--color-link-light:var( --studio-jetpack-green-30 );--color-link-light-rgb:var( --studio-jetpack-green-30-rgb );--color-link-0:var( --studio-jetpack-green-0 );--color-link-0-rgb:var( --studio-jetpack-green-0-rgb );--color-link-5:var( --studio-jetpack-green-5 );--color-link-5-rgb:var( --studio-jetpack-green-5-rgb );--color-link-10:var( --studio-jetpack-green-10 );--color-link-10-rgb:var( --studio-jetpack-green-10-rgb );--color-link-20:var( --studio-jetpack-green-20 );--color-link-20-rgb:var( --studio-jetpack-green-20-rgb );--color-link-30:var( --studio-jetpack-green-30 );--color-link-30-rgb:var( --studio-jetpack-green-30-rgb );--color-link-40:var( --studio-jetpack-green-40 );--color-link-40-rgb:var( --studio-jetpack-green-40-rgb );--color-link-50:var( --studio-gray-50 );--color-link-50-rgb:var( --studio-gray-50-rgb );--color-link-60:var( --studio-jetpack-green-60 );--color-link-60-rgb:var( --studio-jetpack-green-60-rgb );--color-link-70:var( --studio-jetpack-green-70 );--color-link-70-rgb:var( --studio-jetpack-green-70-rgb );--color-link-80:var( --studio-jetpack-green-80 );--color-link-80-rgb:var( --studio-jetpack-green-80-rgb );--color-link-90:var( --studio-jetpack-green-90 );--color-link-90-rgb:var( --studio-jetpack-green-90-rgb );--color-link-100:var( --studio-jetpack-green-100 );--color-link-100-rgb:var( --studio-jetpack-green-100-rgb );--color-masterbar-background:var( --studio-white );--color-masterbar-border:var( --studio-gray-5 );--color-masterbar-text:var( --studio-gray-50 );--color-masterbar-item-hover-background:var( --studio-white );--color-masterbar-item-active-background:var( --studio-white );--color-masterbar-item-new-editor-background:var( --studio-white );--color-masterbar-item-new-editor-hover-background:var( --studio-white );--color-masterbar-unread-dot-background:var( --color-accent-30 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --studio-white );--color-sidebar-background-rgb:var( --studio-white-rgb );--color-sidebar-border:var( --studio-gray-5 );--color-sidebar-text:var( --studio-gray-60 );--color-sidebar-text-rgb:var( --studio-gray-60-rgb );--color-sidebar-text-alternative:var( --studio-gray-60 );--color-sidebar-gridicon-fill:var( --studio-gray-60 );--color-sidebar-menu-selected-text:var( --studio-gray-90 );--color-sidebar-menu-selected-text-rgb:var( --studio-gray-90-rgb );--color-sidebar-menu-selected-background:var( --studio-gray-0 );--color-sidebar-menu-selected-background-rgb:var( --studio-gray-0-rgb );--color-sidebar-menu-selected-gridicon-fill:var( --studio-jetpack-green-50 );--color-sidebar-menu-hover-text:var( --studio-gray-90 );--color-sidebar-menu-hover-background:var( --studio-gray-0 );--color-sidebar-menu-hover-background-rgb:var( --studio-gray-0-rgb );--color-scary-0:var( --studio-red-0 );--color-scary-5:var( --studio-red-5 );--color-scary-40:var( --studio-red-40 );--color-scary-50:var( --studio-red-50 );--color-scary-60:var( --studio-red-60 );--color-scary-70:var( --studio-red-70 )}.pagination-control{display:flex;justify-content:center;margin:0;width:100%}.pagination-control li{align-items:center;border:none;display:inline-flex;height:18px;margin:auto 4px}.pagination-control li.pagination-control__last-item{height:32px;margin-right:auto}.pagination-control button.pagination-control__page{background-color:#c3c4c7;background-color:var(--color-neutral-10);border:none;border-radius:50%;cursor:pointer;height:6px;padding:0;transition:all .2s ease-in-out;width:6px}.pagination-control button.pagination-control__page:hover{background-color:#787c82;background-color:var(--color-neutral-40)}.pagination-control button.pagination-control__page:disabled{cursor:default}.pagination-control button.pagination-control__page.is-current{background-color:var(--wp-admin-theme-color)}.tour-kit-frame{visibility:hidden}.tour-kit-frame.is-visible{visibility:visible}.tour-kit-frame__container{background:#fff;border-radius:2px;bottom:44px;box-shadow:0 0 3px 0 rgba(0,0,0,.25);cursor:default;display:inline;position:fixed;right:16px;z-index:9999}.tour-kit-overlay{background:#000;height:100vh;opacity:0;position:fixed;right:0;top:0;width:100vw}.tour-kit-overlay.is-visible{opacity:.5}.tour-kit-spotlight.is-visible{outline:99999px solid rgba(0,0,0,.5);overflow:hidden;position:fixed;z-index:1}.tour-kit-frame__arrow{visibility:hidden}.tour-kit-frame__arrow,.tour-kit-frame__arrow:before{background:inherit;height:12px;position:absolute;width:12px;z-index:-1}.tour-kit-frame__arrow:before{content:"";transform:rotate(-45deg);visibility:visible}.tour-kit-frame__container[data-popper-placement^=top]>.tour-kit-frame__arrow{bottom:-6px}.tour-kit-frame__container[data-popper-placement^=top]>.tour-kit-frame__arrow:before{box-shadow:-1px 1px 2px -1px rgba(0,0,0,.25)}.tour-kit-frame__container[data-popper-placement^=bottom]>.tour-kit-frame__arrow{top:-6px}.tour-kit-frame__container[data-popper-placement^=bottom]>.tour-kit-frame__arrow:before{box-shadow:1px -1px 2px -1px rgba(0,0,0,.25)}.tour-kit-frame__container[data-popper-placement^=left]>.tour-kit-frame__arrow{left:-6px}.tour-kit-frame__container[data-popper-placement^=left]>.tour-kit-frame__arrow:before{box-shadow:-1px -1px 2px -1px rgba(0,0,0,.25)}.tour-kit-frame__container[data-popper-placement^=right]>.tour-kit-frame__arrow{right:-6px}.tour-kit-frame__container[data-popper-placement^=right]>.tour-kit-frame__arrow:before{box-shadow:1px 1px 2px -1px rgba(0,0,0,.25)}
|
1 |
+
.wpcom-block-editor-nux-modal .components-modal__header{background-color:transparent;border-bottom:0;height:auto;left:0;margin:0;padding:10px;position:absolute;right:0}.wpcom-block-editor-nux-modal .components-modal__header button{right:unset}.wpcom-block-editor-nux-modal .components-modal__header button svg path{transform:scale(1.4);transform-origin:center}.wpcom-block-editor-nux-modal .components-modal__content{margin-top:0;padding:84px 20px 20px}.wpcom-block-editor-nux-modal .components-modal__content:before{margin:0}@media(min-width:480px){.wpcom-block-editor-nux-modal .components-modal__content{text-align:center}}.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__image-container{display:flex;justify-content:center}.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__title{font-size:2.25rem;font-weight:500;line-height:1.2;margin:34px 0 0}@media(min-width:480px){.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__title{margin-top:24px}}.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__description{font-size:1rem;margin:16px 0 0;max-width:352px}@media(min-width:480px){.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__description{font-size:1.125rem;margin:20px auto 0}}.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__buttons{display:flex;flex-direction:column;justify-content:center;margin-top:24px}.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__buttons .components-button{border-radius:3px;font-size:.875rem;height:40px;justify-content:center;min-width:130px}.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__buttons .components-button+.components-button{margin-top:12px}@media(min-width:480px){.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__buttons{flex-direction:row;margin-top:28px}.wpcom-block-editor-nux-modal .wpcom-block-editor-nux-modal__buttons .components-button+.components-button{margin-right:16px;margin-top:0}}@media(min-width:600px){.wpcom-block-editor-draft-post-modal .components-modal__content{padding:48px 128px}}.wpcom-block-editor-draft-post-modal .wpcom-block-editor-nux-modal__image-container img{height:95px;width:209px}@media(min-width:600px){.wpcom-block-editor-post-published-modal .components-modal__content{padding:48px 90px}}.wpcom-block-editor-post-published-modal .wpcom-block-editor-nux-modal__image-container img{height:85px;width:158px}.wpcom-block-editor-post-published-modal .wpcom-block-editor-nux-modal__buttons .components-button{min-width:113px}@media(min-width:600px){.wpcom-site-editor-seller-celebration-modal .components-modal__content{padding:48px 90px}}.wpcom-site-editor-seller-celebration-modal .wpcom-block-editor-nux-modal__image-container img{height:85px;width:158px}.wpcom-site-editor-seller-celebration-modal .wpcom-block-editor-nux-modal__buttons .components-button{min-width:113px}.wpcom-site-editor-seller-celebration-modal .wpcom-block-editor-nux-modal__buttons .components-button:not(.is-primary){border:1px solid #c3c4c7;border-radius:4px}@font-face{font-display:swap;font-family:Recoleta;font-weight:400;src:url(https://s1.wp.com/i/fonts/recoleta/400.woff2) format("woff2"),url(https://s1.wp.com/i/fonts/recoleta/400.woff) format("woff")}.wp-brand-font{font-family:"Noto Serif",Georgia,Times New Roman,Times,serif;font-weight:400}[lang*=af] .wp-brand-font,[lang*=ca] .wp-brand-font,[lang*=cs] .wp-brand-font,[lang*=da] .wp-brand-font,[lang*=de] .wp-brand-font,[lang*=en] .wp-brand-font,[lang*=es] .wp-brand-font,[lang*=eu] .wp-brand-font,[lang*=fi] .wp-brand-font,[lang*=fr] .wp-brand-font,[lang*=gl] .wp-brand-font,[lang*=hr] .wp-brand-font,[lang*=hu] .wp-brand-font,[lang*=id] .wp-brand-font,[lang*=is] .wp-brand-font,[lang*=it] .wp-brand-font,[lang*=lv] .wp-brand-font,[lang*=mt] .wp-brand-font,[lang*=nb] .wp-brand-font,[lang*=nl] .wp-brand-font,[lang*=pl] .wp-brand-font,[lang*=pt] .wp-brand-font,[lang*=ro] .wp-brand-font,[lang*=ru] .wp-brand-font,[lang*=sk] .wp-brand-font,[lang*=sl] .wp-brand-font,[lang*=sq] .wp-brand-font,[lang*=sr] .wp-brand-font,[lang*=sv] .wp-brand-font,[lang*=sw] .wp-brand-font,[lang*=tr] .wp-brand-font,[lang*=uz] .wp-brand-font{font-family:Recoleta,"Noto Serif",Georgia,Times New Roman,Times,serif}@keyframes onboarding-loading-pulse{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}.wpcom-block-editor-nux.components-modal__frame{height:65vh;overflow:visible;top:calc(17.5vh - 35px)}@media(max-width:660px){.wpcom-block-editor-nux.components-modal__frame{left:5vw;min-width:90vw;right:5vw;width:90vw}}@media(min-width:660px){.wpcom-block-editor-nux.components-modal__frame{height:350px;top:calc(50% - 35px);width:720px}}.wpcom-block-editor-nux .components-modal__header{max-width:90%;position:absolute;right:5%}@media(min-width:660px){.wpcom-block-editor-nux .components-modal__header{display:none}}.wpcom-block-editor-nux .components-guide__container{margin-top:0}.wpcom-block-editor-nux .components-guide__footer{background:#fff;border-top:1px solid #dcdcde;bottom:-70px;display:flex;height:70px;justify-content:center;margin:0;padding:20px 0;position:absolute;right:0;width:100%}@media(min-width:660px){.wpcom-block-editor-nux .components-guide__footer{border-top:none}}.wpcom-block-editor-nux .components-guide__page{height:100%;justify-content:start;max-width:90vw;position:absolute;width:100%}@media(min-width:660px){.wpcom-block-editor-nux .components-guide__page{max-width:100%}}.wpcom-block-editor-nux .components-guide__page-control{display:none;height:0;margin:0 auto;overflow:visible;position:relative;top:100%;z-index:2}.wpcom-block-editor-nux .components-guide__page-control:before{content:"";display:inline-block;height:70px;vertical-align:middle}.wpcom-block-editor-nux .components-guide__page-control li{margin-bottom:0;vertical-align:middle}@media(min-width:660px){.wpcom-block-editor-nux .components-guide__page-control{display:block}}.wpcom-block-editor-nux__page{background:#fff;display:flex;flex-direction:column-reverse;height:90%;justify-content:flex-end;max-width:90vw;width:100%}@media(min-width:660px){.wpcom-block-editor-nux__page{bottom:0;flex-direction:row;justify-content:flex-start;max-width:100%;min-height:350px;position:absolute}.wpcom-block-editor-nux__text,.wpcom-block-editor-nux__visual{flex:1 0 50%;min-width:290px}}.wpcom-block-editor-nux__text{height:60%;padding:0 25px 25px}@media(min-width:660px){.wpcom-block-editor-nux__text{height:auto;padding:40px 50px}}.wpcom-block-editor-nux__visual{background:#1381d8;height:40%;text-align:center}@media(min-width:660px){.wpcom-block-editor-nux__visual{height:auto}}.wpcom-block-editor-nux__heading{color:#1d2327;font-family:Recoleta,"Noto Serif",Georgia,Times New Roman,Times,serif;font-size:32px;font-weight:400;letter-spacing:-.4px;line-height:1.19}@media(min-width:660px){.wpcom-block-editor-nux__heading{font-size:42px}}body.locale-de .wpcom-block-editor-nux__heading{font-size:24px}@media(min-width:660px){body.locale-de .wpcom-block-editor-nux__heading{font-size:28px}}.wpcom-block-editor-nux__description{color:#50575e;font-size:15px;line-height:22px}@media(min-width:660px){.wpcom-block-editor-nux__description{font-size:17px;line-height:26px}}.wpcom-block-editor-nux__image{align-self:center;flex:1;height:auto;max-height:100%;max-width:100%}.wpcom-block-editor-nux__image.align-bottom{align-self:flex-end}@media(min-width:660px){.wpcom-block-editor-nux__image{max-height:none}}.wpcom-editor-welcome-tour .wpcom-editor-welcome-tour__step.is-with-extra-padding .components-card__media{background-color:#e7eaeb}.wpcom-editor-welcome-tour .wpcom-editor-welcome-tour__step.is-with-extra-padding .components-card__media img{right:14%;top:14%;width:86%}.wpcom-editor-welcome-tour .wpcom-tour-kit-step-card-overlay-controls{position:absolute}.wpcom-editor-welcome-tour-card-frame{position:relative}.wpcom-editor-welcome-tour-card-frame .components-guide__page-control{bottom:0;margin:0;position:absolute;right:16px}.wpcom-editor-welcome-tour-card-frame .components-guide__page-control li{margin-bottom:0}.wpcom-tour-kit-minimized{background-color:#fff;border-radius:2px;box-shadow:0 2px 6px rgba(60,66,87,.08),0 0 0 1px rgba(60,66,87,.16),0 1px 1px rgba(0,0,0,.08);color:#000}.wpcom-tour-kit-minimized .components-button{height:44px}.wpcom-tour-kit-minimized .components-button .wpcom-tour-kit-minimized__tour-index{color:#949494}.wpcom-tour-kit-minimized .components-button svg{color:#50575e}.wpcom-tour-kit-minimized .components-button:hover .wpcom-tour-kit-minimized__tour-index,.wpcom-tour-kit-minimized .components-button:hover svg{color:inherit}.wpcom-tour-kit-step-card__heading{font-size:1.125rem;margin:.5rem 0}.wpcom-tour-kit-step-card__description{font-size:.875rem;line-height:1.5rem;margin:0}.wpcom-tour-kit-step-card__description .components-button{height:auto;line-height:1;padding:0 4px 0 0;text-decoration:underline}.wpcom-tour-kit .tour-kit-frame__container{box-shadow:none}.wpcom-tour-kit-step-card{max-width:92vw;width:400px}.wpcom-tour-kit-step-card.wpcom-tour-kit-step-card.is-elevated{box-shadow:none;box-shadow:0 0 0 1px rgba(0,0,0,.1),0 2px 4px 0 rgba(0,0,0,.1)}.wpcom-tour-kit-step-card.components-card{border:none;border-radius:4px;box-shadow:none}.wpcom-tour-kit-step-card .components-card__body{min-height:114px}.wpcom-tour-kit-step-card .components-card__body,.wpcom-tour-kit-step-card .components-card__footer{border-top:none;padding:16px!important}.wpcom-tour-kit-step-card .components-card__footer .wpcom-tour-kit-rating__end-text{color:#949494;font-size:.875rem;font-style:italic}.wpcom-tour-kit-step-card .components-card__footer .wpcom-tour-kit-rating__end-icon.components-button.has-icon{background-color:#f6f7f7;border-radius:50%;color:#949494;margin-right:8px}.wpcom-tour-kit-step-card .components-card__footer .wpcom-tour-kit-rating__end-icon.components-button.has-icon path{fill:#949494}.wpcom-tour-kit-step-card .components-card__footer .wpcom-tour-kit-rating__end-icon.components-button.has-icon.active{background-color:#000;opacity:1}.wpcom-tour-kit-step-card .components-card__footer .wpcom-tour-kit-rating__end-icon.components-button.has-icon.active path{fill:#fff}.wpcom-tour-kit-step-card .components-card__media{height:0;padding-top:66%;position:relative;width:100%}.wpcom-tour-kit-step-card .components-card__media img{position:absolute;right:0;top:0;width:100%}.wpcom-tour-kit-step-card .components-guide__page-control{margin:0}.wpcom-tour-kit-step-card .components-guide__page-control .components-button{min-width:auto}.wpcom-tour-kit-step-card .components-guide__page-control .components-button.has-icon{padding:3px}.wpcom-tour-kit-step-card .components-guide__page-control li{margin-bottom:0}.wpcom-tour-kit-step-card-overlay-controls__minimize-icon svg{position:relative;right:-2px}.wpcom-tour-kit-step-card-overlay-controls{left:0;padding:12px;right:0;z-index:1}.wpcom-tour-kit-step-card-overlay-controls .components-button{background:#32373c;height:32px;min-width:32px;opacity:.7;transition:opacity .2s;width:32px}.wpcom-tour-kit-step-card-overlay-controls .components-button:active{opacity:.9}@media(hover:hover)and (pointer:fine){.wpcom-tour-kit-step-card-overlay-controls .components-button{opacity:0}.tour-kit-frame__container:focus-within .wpcom-tour-kit-step-card-overlay-controls .components-button,.tour-kit-frame__container:hover .wpcom-tour-kit-step-card-overlay-controls .components-button{opacity:.7}.tour-kit-frame__container:focus-within .wpcom-tour-kit-step-card-overlay-controls .components-button:focus,.tour-kit-frame__container:focus-within .wpcom-tour-kit-step-card-overlay-controls .components-button:hover,.tour-kit-frame__container:hover .wpcom-tour-kit-step-card-overlay-controls .components-button:focus,.tour-kit-frame__container:hover .wpcom-tour-kit-step-card-overlay-controls .components-button:hover{opacity:.9}}.wpcom-tour-kit-step-card-navigation__next-btn{justify-content:center;margin-right:12px;min-width:85px}.wpcom-tour-kit-step-card__media img{display:block;height:auto;max-width:100%;width:100%}.tour-kit-frame{visibility:hidden}.tour-kit-frame.is-visible{visibility:visible}.tour-kit-frame__container{background:#fff;border-radius:2px;bottom:44px;box-shadow:0 0 3px 0 rgba(0,0,0,.25);cursor:default;display:inline;position:fixed;right:16px;z-index:9999}.tour-kit-overlay{background:#000;height:100vh;opacity:0;position:fixed;right:0;top:0;width:100vw}.tour-kit-overlay.is-visible{opacity:.5}.tour-kit-spotlight.is-visible{outline:99999px solid rgba(0,0,0,.5);overflow:hidden;position:fixed;z-index:1}.tour-kit-frame__arrow{visibility:hidden}.tour-kit-frame__arrow,.tour-kit-frame__arrow:before{background:inherit;height:12px;position:absolute;width:12px;z-index:-1}.tour-kit-frame__arrow:before{content:"";transform:rotate(-45deg);visibility:visible}.tour-kit-frame__container[data-popper-placement^=top]>.tour-kit-frame__arrow{bottom:-6px}.tour-kit-frame__container[data-popper-placement^=top]>.tour-kit-frame__arrow:before{box-shadow:-1px 1px 2px -1px rgba(0,0,0,.25)}.tour-kit-frame__container[data-popper-placement^=bottom]>.tour-kit-frame__arrow{top:-6px}.tour-kit-frame__container[data-popper-placement^=bottom]>.tour-kit-frame__arrow:before{box-shadow:1px -1px 2px -1px rgba(0,0,0,.25)}.tour-kit-frame__container[data-popper-placement^=left]>.tour-kit-frame__arrow{left:-6px}.tour-kit-frame__container[data-popper-placement^=left]>.tour-kit-frame__arrow:before{box-shadow:-1px -1px 2px -1px rgba(0,0,0,.25)}.tour-kit-frame__container[data-popper-placement^=right]>.tour-kit-frame__arrow{right:-6px}.tour-kit-frame__container[data-popper-placement^=right]>.tour-kit-frame__arrow:before{box-shadow:1px 1px 2px -1px rgba(0,0,0,.25)}:root{--studio-white:#fff;--studio-black:#000;--studio-gray-0:#f6f7f7;--studio-gray-5:#dcdcde;--studio-gray-10:#c3c4c7;--studio-gray-20:#a7aaad;--studio-gray-30:#8c8f94;--studio-gray-40:#787c82;--studio-gray-50:#646970;--studio-gray-60:#50575e;--studio-gray-70:#3c434a;--studio-gray-80:#2c3338;--studio-gray-90:#1d2327;--studio-gray-100:#101517;--studio-gray:#646970;--studio-blue-0:#e9f0f5;--studio-blue-5:#bbe0fa;--studio-blue-10:#91caf2;--studio-blue-20:#68b3e8;--studio-blue-30:#399ce3;--studio-blue-40:#1689db;--studio-blue-50:#0675c4;--studio-blue-60:#055d9c;--studio-blue-70:#044b7a;--studio-blue-80:#02395c;--studio-blue-90:#01283d;--studio-blue-100:#001621;--studio-blue:#0675c4;--studio-purple-0:#f2e9ed;--studio-purple-5:#ebcee0;--studio-purple-10:#e3afd5;--studio-purple-20:#d48fc8;--studio-purple-30:#c475bd;--studio-purple-40:#b35eb1;--studio-purple-50:#984a9c;--studio-purple-60:#7c3982;--studio-purple-70:#662c6e;--studio-purple-80:#4d2054;--studio-purple-90:#35163b;--studio-purple-100:#1e0c21;--studio-purple:#984a9c;--studio-pink-0:#f5e9ed;--studio-pink-5:#f2ceda;--studio-pink-10:#f7a8c3;--studio-pink-20:#f283aa;--studio-pink-30:#eb6594;--studio-pink-40:#e34c84;--studio-pink-50:#c9356e;--studio-pink-60:#ab235a;--studio-pink-70:#8c1749;--studio-pink-80:#700f3b;--studio-pink-90:#4f092a;--studio-pink-100:#260415;--studio-pink:#c9356e;--studio-red-0:#f7ebec;--studio-red-5:#facfd2;--studio-red-10:#ffabaf;--studio-red-20:#ff8085;--studio-red-30:#f86368;--studio-red-40:#e65054;--studio-red-50:#d63638;--studio-red-60:#b32d2e;--studio-red-70:#8a2424;--studio-red-80:#691c1c;--studio-red-90:#451313;--studio-red-100:#240a0a;--studio-red:#d63638;--studio-orange-0:#f5ece6;--studio-orange-5:#f7dcc6;--studio-orange-10:#ffbf86;--studio-orange-20:#faa754;--studio-orange-30:#e68b28;--studio-orange-40:#d67709;--studio-orange-50:#b26200;--studio-orange-60:#8a4d00;--studio-orange-70:#704000;--studio-orange-80:#543100;--studio-orange-90:#361f00;--studio-orange-100:#1f1200;--studio-orange:#b26200;--studio-yellow-0:#f5f1e1;--studio-yellow-5:#f5e6b3;--studio-yellow-10:#f2d76b;--studio-yellow-20:#f0c930;--studio-yellow-30:#deb100;--studio-yellow-40:#c08c00;--studio-yellow-50:#9d6e00;--studio-yellow-60:#7d5600;--studio-yellow-70:#674600;--studio-yellow-80:#4f3500;--studio-yellow-90:#320;--studio-yellow-100:#1c1300;--studio-yellow:#9d6e00;--studio-green-0:#e6f2e8;--studio-green-5:#b8e6bf;--studio-green-10:#68de86;--studio-green-20:#1ed15a;--studio-green-30:#00ba37;--studio-green-40:#00a32a;--studio-green-50:#008a20;--studio-green-60:#007017;--studio-green-70:#005c12;--studio-green-80:#00450c;--studio-green-90:#003008;--studio-green-100:#001c05;--studio-green:#008a20;--studio-celadon-0:#e4f2ed;--studio-celadon-5:#a7e8d3;--studio-celadon-10:#66deb9;--studio-celadon-20:#31cc9f;--studio-celadon-30:#09b585;--studio-celadon-40:#009e73;--studio-celadon-50:#008763;--studio-celadon-60:#007053;--studio-celadon-70:#005c44;--studio-celadon-80:#004533;--studio-celadon-90:#003024;--studio-celadon-100:#001c15;--studio-celadon:#008763;--studio-wordpress-blue-0:#e6f1f5;--studio-wordpress-blue-5:#bedae6;--studio-wordpress-blue-10:#98c6d9;--studio-wordpress-blue-20:#6ab3d0;--studio-wordpress-blue-30:#3895ba;--studio-wordpress-blue-40:#187aa2;--studio-wordpress-blue-50:#006088;--studio-wordpress-blue-60:#004e6e;--studio-wordpress-blue-70:#003c56;--studio-wordpress-blue-80:#002c40;--studio-wordpress-blue-90:#001d2d;--studio-wordpress-blue-100:#00101c;--studio-wordpress-blue:#006088;--studio-simplenote-blue-0:#e9ecf5;--studio-simplenote-blue-5:#ced9f2;--studio-simplenote-blue-10:#abc1f5;--studio-simplenote-blue-20:#84a4f0;--studio-simplenote-blue-30:#618df2;--studio-simplenote-blue-40:#4678eb;--studio-simplenote-blue-50:#3361cc;--studio-simplenote-blue-60:#1d4fc4;--studio-simplenote-blue-70:#113ead;--studio-simplenote-blue-80:#0d2f85;--studio-simplenote-blue-90:#09205c;--studio-simplenote-blue-100:#05102e;--studio-simplenote-blue:#3361cc;--studio-woocommerce-purple-0:#f7edf7;--studio-woocommerce-purple-5:#e5cfe8;--studio-woocommerce-purple-10:#d6b4e0;--studio-woocommerce-purple-20:#c792e0;--studio-woocommerce-purple-30:#af7dd1;--studio-woocommerce-purple-40:#9a69c7;--studio-woocommerce-purple-50:#7f54b3;--studio-woocommerce-purple-60:#674399;--studio-woocommerce-purple-70:#533582;--studio-woocommerce-purple-80:#3c2861;--studio-woocommerce-purple-90:#271b3d;--studio-woocommerce-purple-100:#140e1f;--studio-woocommerce-purple:#7f54b3;--studio-jetpack-green-0:#f0f2eb;--studio-jetpack-green-5:#d0e6b8;--studio-jetpack-green-10:#9dd977;--studio-jetpack-green-20:#64ca43;--studio-jetpack-green-30:#2fb41f;--studio-jetpack-green-40:#069e08;--studio-jetpack-green-50:#008710;--studio-jetpack-green-60:#007117;--studio-jetpack-green-70:#005b18;--studio-jetpack-green-80:#004515;--studio-jetpack-green-90:#003010;--studio-jetpack-green-100:#001c09;--studio-jetpack-green:#069e08;--studio-white-rgb:255,255,255;--studio-black-rgb:0,0,0;--studio-gray-0-rgb:246,247,247;--studio-gray-5-rgb:220,220,222;--studio-gray-10-rgb:195,196,199;--studio-gray-20-rgb:167,170,173;--studio-gray-30-rgb:140,143,148;--studio-gray-40-rgb:120,124,130;--studio-gray-50-rgb:100,105,112;--studio-gray-60-rgb:80,87,94;--studio-gray-70-rgb:60,67,74;--studio-gray-80-rgb:44,51,56;--studio-gray-90-rgb:29,35,39;--studio-gray-100-rgb:16,21,23;--studio-gray-rgb:100,105,112;--studio-blue-0-rgb:233,240,245;--studio-blue-5-rgb:187,224,250;--studio-blue-10-rgb:145,202,242;--studio-blue-20-rgb:104,179,232;--studio-blue-30-rgb:57,156,227;--studio-blue-40-rgb:22,137,219;--studio-blue-50-rgb:6,117,196;--studio-blue-60-rgb:5,93,156;--studio-blue-70-rgb:4,75,122;--studio-blue-80-rgb:2,57,92;--studio-blue-90-rgb:1,40,61;--studio-blue-100-rgb:0,22,33;--studio-blue-rgb:6,117,196;--studio-purple-0-rgb:242,233,237;--studio-purple-5-rgb:235,206,224;--studio-purple-10-rgb:227,175,213;--studio-purple-20-rgb:212,143,200;--studio-purple-30-rgb:196,117,189;--studio-purple-40-rgb:179,94,177;--studio-purple-50-rgb:152,74,156;--studio-purple-60-rgb:124,57,130;--studio-purple-70-rgb:102,44,110;--studio-purple-80-rgb:77,32,84;--studio-purple-90-rgb:53,22,59;--studio-purple-100-rgb:30,12,33;--studio-purple-rgb:152,74,156;--studio-pink-0-rgb:245,233,237;--studio-pink-5-rgb:242,206,218;--studio-pink-10-rgb:247,168,195;--studio-pink-20-rgb:242,131,170;--studio-pink-30-rgb:235,101,148;--studio-pink-40-rgb:227,76,132;--studio-pink-50-rgb:201,53,110;--studio-pink-60-rgb:171,35,90;--studio-pink-70-rgb:140,23,73;--studio-pink-80-rgb:112,15,59;--studio-pink-90-rgb:79,9,42;--studio-pink-100-rgb:38,4,21;--studio-pink-rgb:201,53,110;--studio-red-0-rgb:247,235,236;--studio-red-5-rgb:250,207,210;--studio-red-10-rgb:255,171,175;--studio-red-20-rgb:255,128,133;--studio-red-30-rgb:248,99,104;--studio-red-40-rgb:230,80,84;--studio-red-50-rgb:214,54,56;--studio-red-60-rgb:179,45,46;--studio-red-70-rgb:138,36,36;--studio-red-80-rgb:105,28,28;--studio-red-90-rgb:69,19,19;--studio-red-100-rgb:36,10,10;--studio-red-rgb:214,54,56;--studio-orange-0-rgb:245,236,230;--studio-orange-5-rgb:247,220,198;--studio-orange-10-rgb:255,191,134;--studio-orange-20-rgb:250,167,84;--studio-orange-30-rgb:230,139,40;--studio-orange-40-rgb:214,119,9;--studio-orange-50-rgb:178,98,0;--studio-orange-60-rgb:138,77,0;--studio-orange-70-rgb:112,64,0;--studio-orange-80-rgb:84,49,0;--studio-orange-90-rgb:54,31,0;--studio-orange-100-rgb:31,18,0;--studio-orange-rgb:178,98,0;--studio-yellow-0-rgb:245,241,225;--studio-yellow-5-rgb:245,230,179;--studio-yellow-10-rgb:242,215,107;--studio-yellow-20-rgb:240,201,48;--studio-yellow-30-rgb:222,177,0;--studio-yellow-40-rgb:192,140,0;--studio-yellow-50-rgb:157,110,0;--studio-yellow-60-rgb:125,86,0;--studio-yellow-70-rgb:103,70,0;--studio-yellow-80-rgb:79,53,0;--studio-yellow-90-rgb:51,34,0;--studio-yellow-100-rgb:28,19,0;--studio-yellow-rgb:157,110,0;--studio-green-0-rgb:230,242,232;--studio-green-5-rgb:184,230,191;--studio-green-10-rgb:104,222,134;--studio-green-20-rgb:30,209,90;--studio-green-30-rgb:0,186,55;--studio-green-40-rgb:0,163,42;--studio-green-50-rgb:0,138,32;--studio-green-60-rgb:0,112,23;--studio-green-70-rgb:0,92,18;--studio-green-80-rgb:0,69,12;--studio-green-90-rgb:0,48,8;--studio-green-100-rgb:0,28,5;--studio-green-rgb:0,138,32;--studio-celadon-0-rgb:228,242,237;--studio-celadon-5-rgb:167,232,211;--studio-celadon-10-rgb:102,222,185;--studio-celadon-20-rgb:49,204,159;--studio-celadon-30-rgb:9,181,133;--studio-celadon-40-rgb:0,158,115;--studio-celadon-50-rgb:0,135,99;--studio-celadon-60-rgb:0,112,83;--studio-celadon-70-rgb:0,92,68;--studio-celadon-80-rgb:0,69,51;--studio-celadon-90-rgb:0,48,36;--studio-celadon-100-rgb:0,28,21;--studio-celadon-rgb:0,135,99;--studio-wordpress-blue-0-rgb:230,241,245;--studio-wordpress-blue-5-rgb:190,218,230;--studio-wordpress-blue-10-rgb:152,198,217;--studio-wordpress-blue-20-rgb:106,179,208;--studio-wordpress-blue-30-rgb:56,149,186;--studio-wordpress-blue-40-rgb:24,122,162;--studio-wordpress-blue-50-rgb:0,96,136;--studio-wordpress-blue-60-rgb:0,78,110;--studio-wordpress-blue-70-rgb:0,60,86;--studio-wordpress-blue-80-rgb:0,44,64;--studio-wordpress-blue-90-rgb:0,29,45;--studio-wordpress-blue-100-rgb:0,16,28;--studio-wordpress-blue-rgb:0,96,136;--studio-simplenote-blue-0-rgb:233,236,245;--studio-simplenote-blue-5-rgb:206,217,242;--studio-simplenote-blue-10-rgb:171,193,245;--studio-simplenote-blue-20-rgb:132,164,240;--studio-simplenote-blue-30-rgb:97,141,242;--studio-simplenote-blue-40-rgb:70,120,235;--studio-simplenote-blue-50-rgb:51,97,204;--studio-simplenote-blue-60-rgb:29,79,196;--studio-simplenote-blue-70-rgb:17,62,173;--studio-simplenote-blue-80-rgb:13,47,133;--studio-simplenote-blue-90-rgb:9,32,92;--studio-simplenote-blue-100-rgb:5,16,46;--studio-simplenote-blue-rgb:51,97,204;--studio-woocommerce-purple-0-rgb:247,237,247;--studio-woocommerce-purple-5-rgb:229,207,232;--studio-woocommerce-purple-10-rgb:214,180,224;--studio-woocommerce-purple-20-rgb:199,146,224;--studio-woocommerce-purple-30-rgb:175,125,209;--studio-woocommerce-purple-40-rgb:154,105,199;--studio-woocommerce-purple-50-rgb:127,84,179;--studio-woocommerce-purple-60-rgb:103,67,153;--studio-woocommerce-purple-70-rgb:83,53,130;--studio-woocommerce-purple-80-rgb:60,40,97;--studio-woocommerce-purple-90-rgb:39,27,61;--studio-woocommerce-purple-100-rgb:20,14,31;--studio-woocommerce-purple-rgb:127,84,179;--studio-jetpack-green-0-rgb:240,242,235;--studio-jetpack-green-5-rgb:208,230,184;--studio-jetpack-green-10-rgb:157,217,119;--studio-jetpack-green-20-rgb:100,202,67;--studio-jetpack-green-30-rgb:47,180,31;--studio-jetpack-green-40-rgb:6,158,8;--studio-jetpack-green-50-rgb:0,135,16;--studio-jetpack-green-60-rgb:0,113,23;--studio-jetpack-green-70-rgb:0,91,24;--studio-jetpack-green-80-rgb:0,69,21;--studio-jetpack-green-90-rgb:0,48,16;--studio-jetpack-green-100-rgb:0,28,9;--studio-jetpack-green-rgb:6,158,8}.color-scheme.is-classic-bright.is-nav-unification,:root{--color-primary:var( --studio-blue-50 );--color-primary-rgb:var( --studio-blue-50-rgb );--color-primary-dark:var( --studio-blue-70 );--color-primary-dark-rgb:var( --studio-blue-70-rgb );--color-primary-light:var( --studio-blue-30 );--color-primary-light-rgb:var( --studio-blue-30-rgb );--color-primary-0:var( --studio-blue-0 );--color-primary-0-rgb:var( --studio-blue-0-rgb );--color-primary-5:var( --studio-blue-5 );--color-primary-5-rgb:var( --studio-blue-5-rgb );--color-primary-10:var( --studio-blue-10 );--color-primary-10-rgb:var( --studio-blue-10-rgb );--color-primary-20:var( --studio-blue-20 );--color-primary-20-rgb:var( --studio-blue-20-rgb );--color-primary-30:var( --studio-blue-30 );--color-primary-30-rgb:var( --studio-blue-30-rgb );--color-primary-40:var( --studio-blue-40 );--color-primary-40-rgb:var( --studio-blue-40-rgb );--color-primary-50:var( --studio-blue-50 );--color-primary-50-rgb:var( --studio-blue-50-rgb );--color-primary-60:var( --studio-blue-60 );--color-primary-60-rgb:var( --studio-blue-60-rgb );--color-primary-70:var( --studio-blue-70 );--color-primary-70-rgb:var( --studio-blue-70-rgb );--color-primary-80:var( --studio-blue-80 );--color-primary-80-rgb:var( --studio-blue-80-rgb );--color-primary-90:var( --studio-blue-90 );--color-primary-90-rgb:var( --studio-blue-90-rgb );--color-primary-100:var( --studio-blue-100 );--color-primary-100-rgb:var( --studio-blue-100-rgb );--color-accent:var( --studio-pink-50 );--color-accent-rgb:var( --studio-pink-50-rgb );--color-accent-dark:var( --studio-pink-70 );--color-accent-dark-rgb:var( --studio-pink-70-rgb );--color-accent-light:var( --studio-pink-30 );--color-accent-light-rgb:var( --studio-pink-30-rgb );--color-accent-0:var( --studio-pink-0 );--color-accent-0-rgb:var( --studio-pink-0-rgb );--color-accent-5:var( --studio-pink-5 );--color-accent-5-rgb:var( --studio-pink-5-rgb );--color-accent-10:var( --studio-pink-10 );--color-accent-10-rgb:var( --studio-pink-10-rgb );--color-accent-20:var( --studio-pink-20 );--color-accent-20-rgb:var( --studio-pink-20-rgb );--color-accent-30:var( --studio-pink-30 );--color-accent-30-rgb:var( --studio-pink-30-rgb );--color-accent-40:var( --studio-pink-40 );--color-accent-40-rgb:var( --studio-pink-40-rgb );--color-accent-50:var( --studio-pink-50 );--color-accent-50-rgb:var( --studio-pink-50-rgb );--color-accent-60:var( --studio-pink-60 );--color-accent-60-rgb:var( --studio-pink-60-rgb );--color-accent-70:var( --studio-pink-70 );--color-accent-70-rgb:var( --studio-pink-70-rgb );--color-accent-80:var( --studio-pink-80 );--color-accent-80-rgb:var( --studio-pink-80-rgb );--color-accent-90:var( --studio-pink-90 );--color-accent-90-rgb:var( --studio-pink-90-rgb );--color-accent-100:var( --studio-pink-100 );--color-accent-100-rgb:var( --studio-pink-100-rgb );--color-neutral:var( --studio-gray-50 );--color-neutral-rgb:var( --studio-gray-50-rgb );--color-neutral-dark:var( --studio-gray-70 );--color-neutral-dark-rgb:var( --studio-gray-70-rgb );--color-neutral-light:var( --studio-gray-30 );--color-neutral-light-rgb:var( --studio-gray-30-rgb );--color-neutral-0:var( --studio-gray-0 );--color-neutral-0-rgb:var( --studio-gray-0-rgb );--color-neutral-5:var( --studio-gray-5 );--color-neutral-5-rgb:var( --studio-gray-5-rgb );--color-neutral-10:var( --studio-gray-10 );--color-neutral-10-rgb:var( --studio-gray-10-rgb );--color-neutral-20:var( --studio-gray-20 );--color-neutral-20-rgb:var( --studio-gray-20-rgb );--color-neutral-30:var( --studio-gray-30 );--color-neutral-30-rgb:var( --studio-gray-30-rgb );--color-neutral-40:var( --studio-gray-40 );--color-neutral-40-rgb:var( --studio-gray-40-rgb );--color-neutral-50:var( --studio-gray-50 );--color-neutral-50-rgb:var( --studio-gray-50-rgb );--color-neutral-60:var( --studio-gray-60 );--color-neutral-60-rgb:var( --studio-gray-60-rgb );--color-neutral-70:var( --studio-gray-70 );--color-neutral-70-rgb:var( --studio-gray-70-rgb );--color-neutral-80:var( --studio-gray-80 );--color-neutral-80-rgb:var( --studio-gray-80-rgb );--color-neutral-90:var( --studio-gray-90 );--color-neutral-90-rgb:var( --studio-gray-90-rgb );--color-neutral-100:var( --studio-gray-100 );--color-neutral-100-rgb:var( --studio-gray-100-rgb );--color-success:var( --studio-green-50 );--color-success-rgb:var( --studio-green-50-rgb );--color-success-dark:var( --studio-green-70 );--color-success-dark-rgb:var( --studio-green-70-rgb );--color-success-light:var( --studio-green-30 );--color-success-light-rgb:var( --studio-green-30-rgb );--color-success-0:var( --studio-green-0 );--color-success-0-rgb:var( --studio-green-0-rgb );--color-success-5:var( --studio-green-5 );--color-success-5-rgb:var( --studio-green-5-rgb );--color-success-10:var( --studio-green-10 );--color-success-10-rgb:var( --studio-green-10-rgb );--color-success-20:var( --studio-green-20 );--color-success-20-rgb:var( --studio-green-20-rgb );--color-success-30:var( --studio-green-30 );--color-success-30-rgb:var( --studio-green-30-rgb );--color-success-40:var( --studio-green-40 );--color-success-40-rgb:var( --studio-green-40-rgb );--color-success-50:var( --studio-green-50 );--color-success-50-rgb:var( --studio-green-50-rgb );--color-success-60:var( --studio-green-60 );--color-success-60-rgb:var( --studio-green-60-rgb );--color-success-70:var( --studio-green-70 );--color-success-70-rgb:var( --studio-green-70-rgb );--color-success-80:var( --studio-green-80 );--color-success-80-rgb:var( --studio-green-80-rgb );--color-success-90:var( --studio-green-90 );--color-success-90-rgb:var( --studio-green-90-rgb );--color-success-100:var( --studio-green-100 );--color-success-100-rgb:var( --studio-green-100-rgb );--color-warning:var( --studio-yellow-50 );--color-warning-rgb:var( --studio-yellow-50-rgb );--color-warning-dark:var( --studio-yellow-70 );--color-warning-dark-rgb:var( --studio-yellow-70-rgb );--color-warning-light:var( --studio-yellow-30 );--color-warning-light-rgb:var( --studio-yellow-30-rgb );--color-warning-0:var( --studio-yellow-0 );--color-warning-0-rgb:var( --studio-yellow-0-rgb );--color-warning-5:var( --studio-yellow-5 );--color-warning-5-rgb:var( --studio-yellow-5-rgb );--color-warning-10:var( --studio-yellow-10 );--color-warning-10-rgb:var( --studio-yellow-10-rgb );--color-warning-20:var( --studio-yellow-20 );--color-warning-20-rgb:var( --studio-yellow-20-rgb );--color-warning-30:var( --studio-yellow-30 );--color-warning-30-rgb:var( --studio-yellow-30-rgb );--color-warning-40:var( --studio-yellow-40 );--color-warning-40-rgb:var( --studio-yellow-40-rgb );--color-warning-50:var( --studio-yellow-50 );--color-warning-50-rgb:var( --studio-yellow-50-rgb );--color-warning-60:var( --studio-yellow-60 );--color-warning-60-rgb:var( --studio-yellow-60-rgb );--color-warning-70:var( --studio-yellow-70 );--color-warning-70-rgb:var( --studio-yellow-70-rgb );--color-warning-80:var( --studio-yellow-80 );--color-warning-80-rgb:var( --studio-yellow-80-rgb );--color-warning-90:var( --studio-yellow-90 );--color-warning-90-rgb:var( --studio-yellow-90-rgb );--color-warning-100:var( --studio-yellow-100 );--color-warning-100-rgb:var( --studio-yellow-100-rgb );--color-error:var( --studio-red-50 );--color-error-rgb:var( --studio-red-50-rgb );--color-error-dark:var( --studio-red-70 );--color-error-dark-rgb:var( --studio-red-70-rgb );--color-error-light:var( --studio-red-30 );--color-error-light-rgb:var( --studio-red-30-rgb );--color-error-0:var( --studio-red-0 );--color-error-0-rgb:var( --studio-red-0-rgb );--color-error-5:var( --studio-red-5 );--color-error-5-rgb:var( --studio-red-5-rgb );--color-error-10:var( --studio-red-10 );--color-error-10-rgb:var( --studio-red-10-rgb );--color-error-20:var( --studio-red-20 );--color-error-20-rgb:var( --studio-red-20-rgb );--color-error-30:var( --studio-red-30 );--color-error-30-rgb:var( --studio-red-30-rgb );--color-error-40:var( --studio-red-40 );--color-error-40-rgb:var( --studio-red-40-rgb );--color-error-50:var( --studio-red-50 );--color-error-50-rgb:var( --studio-red-50-rgb );--color-error-60:var( --studio-red-60 );--color-error-60-rgb:var( --studio-red-60-rgb );--color-error-70:var( --studio-red-70 );--color-error-70-rgb:var( --studio-red-70-rgb );--color-error-80:var( --studio-red-80 );--color-error-80-rgb:var( --studio-red-80-rgb );--color-error-90:var( --studio-red-90 );--color-error-90-rgb:var( --studio-red-90-rgb );--color-error-100:var( --studio-red-100 );--color-error-100-rgb:var( --studio-red-100-rgb );--color-surface:var( --studio-white );--color-surface-rgb:var( --studio-white-rgb );--color-surface-backdrop:var( --studio-gray-0 );--color-surface-backdrop-rgb:var( --studio-gray-0-rgb );--color-text:var( --studio-gray-80 );--color-text-rgb:var( --studio-gray-80-rgb );--color-text-subtle:var( --studio-gray-50 );--color-text-subtle-rgb:var( --studio-gray-50-rgb );--color-text-inverted:var( --studio-white );--color-text-inverted-rgb:var( --studio-white-rgb );--color-border:var( --color-neutral-20 );--color-border-rgb:var( --color-neutral-20-rgb );--color-border-subtle:var( --color-neutral-5 );--color-border-subtle-rgb:var( --color-neutral-5-rgb );--color-border-shadow:var( --color-neutral-0 );--color-border-shadow-rgb:var( --color-neutral-0-rgb );--color-border-inverted:var( --studio-white );--color-border-inverted-rgb:var( --studio-white-rgb );--color-link:var( --studio-blue-50 );--color-link-rgb:var( --studio-blue-50-rgb );--color-link-dark:var( --studio-blue-70 );--color-link-dark-rgb:var( --studio-blue-70-rgb );--color-link-light:var( --studio-blue-30 );--color-link-light-rgb:var( --studio-blue-30-rgb );--color-link-0:var( --studio-blue-0 );--color-link-0-rgb:var( --studio-blue-0-rgb );--color-link-5:var( --studio-blue-5 );--color-link-5-rgb:var( --studio-blue-5-rgb );--color-link-10:var( --studio-blue-10 );--color-link-10-rgb:var( --studio-blue-10-rgb );--color-link-20:var( --studio-blue-20 );--color-link-20-rgb:var( --studio-blue-20-rgb );--color-link-30:var( --studio-blue-30 );--color-link-30-rgb:var( --studio-blue-30-rgb );--color-link-40:var( --studio-blue-40 );--color-link-40-rgb:var( --studio-blue-40-rgb );--color-link-50:var( --studio-blue-50 );--color-link-50-rgb:var( --studio-blue-50-rgb );--color-link-60:var( --studio-blue-60 );--color-link-60-rgb:var( --studio-blue-60-rgb );--color-link-70:var( --studio-blue-70 );--color-link-70-rgb:var( --studio-blue-70-rgb );--color-link-80:var( --studio-blue-80 );--color-link-80-rgb:var( --studio-blue-80-rgb );--color-link-90:var( --studio-blue-90 );--color-link-90-rgb:var( --studio-blue-90-rgb );--color-link-100:var( --studio-blue-100 );--color-link-100-rgb:var( --studio-blue-100-rgb );--color-plan-free:var( --studio-gray-30 );--color-plan-blogger:var( --studio-celadon-30 );--color-plan-personal:var( --studio-blue-30 );--color-plan-premium:var( --studio-yellow-30 );--color-plan-business:var( --studio-orange-30 );--color-plan-ecommerce:var( --studio-purple-30 );--color-premium-domain:var( --studio-wordpress-blue-60 );--color-jetpack-plan-free:var( --studio-blue-30 );--color-jetpack-plan-personal:var( --studio-yellow-30 );--color-jetpack-plan-premium:var( --studio-jetpack-green-30 );--color-jetpack-plan-professional:var( --studio-purple-30 );--color-masterbar-background:var( --studio-blue-60 );--color-masterbar-border:var( --studio-blue-70 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-blue-70 );--color-masterbar-item-active-background:var( --studio-blue-90 );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-40 );--color-masterbar-unread-dot-background:var( --color-accent-20 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-jetpack-masterbar-background:var( --studio-white );--color-jetpack-masterbar-border:var( --studio-gray-5 );--color-jetpack-masterbar-text:var( --studio-gray-50 );--color-jetpack-masterbar-item-hover-background:var( --studio-gray-5 );--color-jetpack-masterbar-item-active-background:var( --studio-gray-20 );--color-sidebar-background:var( --color-surface );--color-sidebar-background-rgb:var( --studio-white-rgb );--color-sidebar-border:var( --studio-gray-5 );--color-sidebar-text:var( --studio-gray-80 );--color-sidebar-text-rgb:var( --studio-gray-80-rgb );--color-sidebar-text-alternative:var( --studio-gray-50 );--color-sidebar-gridicon-fill:var( --studio-gray-50 );--color-sidebar-menu-selected-background:var( --studio-blue-5 );--color-sidebar-menu-selected-background-rgb:var( --studio-blue-5-rgb );--color-sidebar-menu-selected-text:var( --studio-blue-70 );--color-sidebar-menu-selected-text-rgb:var( --studio-blue-70-rgb );--color-sidebar-menu-hover-background:var( --studio-gray-5 );--color-sidebar-menu-hover-background-rgb:var( --studio-gray-5-rgb );--color-sidebar-menu-hover-text:var( --studio-gray-90 );--color-jetpack-onboarding-text:var( --studio-white );--color-jetpack-onboarding-text-rgb:var( --studio-white-rgb );--color-jetpack-onboarding-background:var( --studio-blue-100 );--color-jetpack-onboarding-background-rgb:var( --studio-blue-100-rgb );--color-automattic:var( --studio-blue-40 );--color-jetpack:var( --studio-jetpack-green );--color-simplenote:var( --studio-simplenote-blue );--color-woocommerce:var( --studio-woocommerce-purple );--color-wordpress-com:var( --studio-wordpress-blue );--color-wordpress-org:#585c60;--color-blogger:#ff5722;--color-eventbrite:#ff8000;--color-facebook:#39579a;--color-godaddy:#5ea95a;--color-google-plus:#df4a32;--color-instagram:#d93174;--color-linkedin:#0976b4;--color-medium:#12100e;--color-pinterest:#cc2127;--color-pocket:#ee4256;--color-print:#f8f8f8;--color-reddit:#5f99cf;--color-skype:#00aff0;--color-stumbleupon:#eb4924;--color-substack:#ff6719;--color-squarespace:#222;--color-telegram:#08c;--color-tumblr:#35465c;--color-twitter:#55acee;--color-whatsapp:#43d854;--color-wix:#faad4d;--color-email:var( --studio-gray-0 );--color-podcasting:#9b4dd5;--color-wp-admin-button-background:#008ec2;--color-wp-admin-button-border:#006799;--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#23282d;--theme-base-color-rgb:35,40,45;--theme-submenu-background-color:#131619;--theme-icon-color:#e1eaf2;--theme-highlight-color:#0073aa;--theme-highlight-color-rgb:0,115,170;--theme-notification-color:#d54e21;--color-sidebar-submenu-background:var( --studio-blue-0 );--color-sidebar-submenu-text:var( --studio-blue-70 );--color-sidebar-submenu-hover-text:var( --color-accent );--color-sidebar-submenu-selected-text:var( --color-accent )}.color-scheme.is-aquatic,.color-scheme.is-aquatic.is-nav-unification{--color-primary:var( --studio-blue-50 );--color-primary-rgb:var( --studio-blue-50-rgb );--color-primary-dark:var( --studio-blue-70 );--color-primary-dark-rgb:var( --studio-blue-70-rgb );--color-primary-light:var( --studio-blue-30 );--color-primary-light-rgb:var( --studio-blue-30-rgb );--color-primary-0:var( --studio-blue-0 );--color-primary-0-rgb:var( --studio-blue-0-rgb );--color-primary-5:var( --studio-blue-5 );--color-primary-5-rgb:var( --studio-blue-5-rgb );--color-primary-10:var( --studio-blue-10 );--color-primary-10-rgb:var( --studio-blue-10-rgb );--color-primary-20:var( --studio-blue-20 );--color-primary-20-rgb:var( --studio-blue-20-rgb );--color-primary-30:var( --studio-blue-30 );--color-primary-30-rgb:var( --studio-blue-30-rgb );--color-primary-40:var( --studio-blue-40 );--color-primary-40-rgb:var( --studio-blue-40-rgb );--color-primary-50:var( --studio-blue-50 );--color-primary-50-rgb:var( --studio-blue-50-rgb );--color-primary-60:var( --studio-blue-60 );--color-primary-60-rgb:var( --studio-blue-60-rgb );--color-primary-70:var( --studio-blue-70 );--color-primary-70-rgb:var( --studio-blue-70-rgb );--color-primary-80:var( --studio-blue-80 );--color-primary-80-rgb:var( --studio-blue-80-rgb );--color-primary-90:var( --studio-blue-90 );--color-primary-90-rgb:var( --studio-blue-90-rgb );--color-primary-100:var( --studio-blue-100 );--color-primary-100-rgb:var( --studio-blue-100-rgb );--color-accent:var( --studio-celadon-50 );--color-accent-rgb:var( --studio-celadon-50-rgb );--color-accent-dark:var( --studio-celadon-70 );--color-accent-dark-rgb:var( --studio-celadon-70-rgb );--color-accent-light:var( --studio-celadon-30 );--color-accent-light-rgb:var( --studio-celadon-30-rgb );--color-accent-0:var( --studio-celadon-0 );--color-accent-0-rgb:var( --studio-celadon-0-rgb );--color-accent-5:var( --studio-celadon-5 );--color-accent-5-rgb:var( --studio-celadon-5-rgb );--color-accent-10:var( --studio-celadon-10 );--color-accent-10-rgb:var( --studio-celadon-10-rgb );--color-accent-20:var( --studio-celadon-20 );--color-accent-20-rgb:var( --studio-celadon-20-rgb );--color-accent-30:var( --studio-celadon-30 );--color-accent-30-rgb:var( --studio-celadon-30-rgb );--color-accent-40:var( --studio-celadon-40 );--color-accent-40-rgb:var( --studio-celadon-40-rgb );--color-accent-50:var( --studio-celadon-50 );--color-accent-50-rgb:var( --studio-celadon-50-rgb );--color-accent-60:var( --studio-celadon-60 );--color-accent-60-rgb:var( --studio-celadon-60-rgb );--color-accent-70:var( --studio-celadon-70 );--color-accent-70-rgb:var( --studio-celadon-70-rgb );--color-accent-80:var( --studio-celadon-80 );--color-accent-80-rgb:var( --studio-celadon-80-rgb );--color-accent-90:var( --studio-celadon-90 );--color-accent-90-rgb:var( --studio-celadon-90-rgb );--color-accent-100:var( --studio-celadon-100 );--color-accent-100-rgb:var( --studio-celadon-100-rgb );--color-link:var( --studio-celadon-50 );--color-link-rgb:var( --studio-celadon-50-rgb );--color-link-dark:var( --studio-celadon-70 );--color-link-dark-rgb:var( --studio-celadon-70-rgb );--color-link-light:var( --studio-celadon-30 );--color-link-light-rgb:var( --studio-celadon-30-rgb );--color-link-0:var( --studio-celadon-0 );--color-link-0-rgb:var( --studio-celadon-0-rgb );--color-link-5:var( --studio-celadon-5 );--color-link-5-rgb:var( --studio-celadon-5-rgb );--color-link-10:var( --studio-celadon-10 );--color-link-10-rgb:var( --studio-celadon-10-rgb );--color-link-20:var( --studio-celadon-20 );--color-link-20-rgb:var( --studio-celadon-20-rgb );--color-link-30:var( --studio-celadon-30 );--color-link-30-rgb:var( --studio-celadon-30-rgb );--color-link-40:var( --studio-celadon-40 );--color-link-40-rgb:var( --studio-celadon-40-rgb );--color-link-50:var( --studio-celadon-50 );--color-link-50-rgb:var( --studio-celadon-50-rgb );--color-link-60:var( --studio-celadon-60 );--color-link-60-rgb:var( --studio-celadon-60-rgb );--color-link-70:var( --studio-celadon-70 );--color-link-70-rgb:var( --studio-celadon-70-rgb );--color-link-80:var( --studio-celadon-80 );--color-link-80-rgb:var( --studio-celadon-80-rgb );--color-link-90:var( --studio-celadon-90 );--color-link-90-rgb:var( --studio-celadon-90-rgb );--color-link-100:var( --studio-celadon-100 );--color-link-100-rgb:var( --studio-celadon-100-rgb );--color-masterbar-background:var( --studio-blue-80 );--color-masterbar-border:var( --studio-blue-80 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-blue-90 );--color-masterbar-item-active-background:var( --studio-blue-100 );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-unread-dot-background:var( --color-accent-30 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --studio-blue-60 );--color-sidebar-background-rgb:var( --studio-blue-60-rgb );--color-sidebar-border:var( --studio-blue-70 );--color-sidebar-text:var( --studio-white );--color-sidebar-text-rgb:var( --studio-white-rgb );--color-sidebar-text-alternative:var( --studio-blue-5 );--color-sidebar-gridicon-fill:var( --studio-blue-5 );--color-sidebar-menu-selected-background:var( --studio-yellow-20 );--color-sidebar-menu-selected-background-rgb:var( --studio-yellow-20-rgb );--color-sidebar-menu-selected-text:var( --studio-blue-90 );--color-sidebar-menu-selected-text-rgb:var( --studio-blue-90-rgb );--color-sidebar-menu-hover-background:var( --studio-blue-50 );--color-sidebar-menu-hover-background-rgb:var( --studio-blue-50-rgb );--color-sidebar-menu-hover-text:var( --studio-white );--color-sidebar-submenu-background:var( --studio-blue-80 );--color-sidebar-submenu-text:var( --studio-white );--color-sidebar-submenu-hover-text:var( --studio-yellow-20 )}.color-scheme.is-blue,.color-scheme.is-blue.is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#52accc;--theme-base-color-rgb:82,172,204;--theme-submenu-text-color:#cbe6f0;--theme-submenu-background-color:#4796b3;--theme-icon-color:#e5f8ff;--theme-highlight-color:#096484;--theme-highlight-color-rgb:9,100,132;--theme-notification-color:#e1a948;--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --studio-blue-70 );--color-primary-dark-rgb:var( --studio-blue-70-rgb );--color-primary-light:var( --studio-blue-30 );--color-primary-light-rgb:var( --studio-blue-30-rgb );--color-primary-0:var( --studio-blue-0 );--color-primary-0-rgb:var( --studio-blue-0-rgb );--color-primary-5:var( --studio-blue-5 );--color-primary-5-rgb:var( --studio-blue-5-rgb );--color-primary-10:var( --studio-blue-10 );--color-primary-10-rgb:var( --studio-blue-10-rgb );--color-primary-20:var( --studio-blue-20 );--color-primary-20-rgb:var( --studio-blue-20-rgb );--color-primary-30:var( --studio-blue-30 );--color-primary-30-rgb:var( --studio-blue-30-rgb );--color-primary-40:var( --studio-blue-40 );--color-primary-40-rgb:var( --studio-blue-40-rgb );--color-primary-50:var( --studio-blue-50 );--color-primary-50-rgb:var( --studio-blue-50-rgb );--color-primary-60:var( --studio-blue-60 );--color-primary-60-rgb:var( --studio-blue-60-rgb );--color-primary-70:var( --studio-blue-70 );--color-primary-70-rgb:var( --studio-blue-70-rgb );--color-primary-80:var( --studio-blue-80 );--color-primary-80-rgb:var( --studio-blue-80-rgb );--color-primary-90:var( --studio-blue-90 );--color-primary-90-rgb:var( --studio-blue-90-rgb );--color-primary-100:var( --studio-blue-100 );--color-primary-100-rgb:var( --studio-blue-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --studio-blue-70 );--color-accent-dark-rgb:var( --studio-blue-70-rgb );--color-accent-light:var( --studio-blue-30 );--color-accent-light-rgb:var( --studio-blue-30-rgb );--color-accent-0:var( --studio-blue-0 );--color-accent-0-rgb:var( --studio-blue-0-rgb );--color-accent-5:var( --studio-blue-5 );--color-accent-5-rgb:var( --studio-blue-5-rgb );--color-accent-10:var( --studio-blue-10 );--color-accent-10-rgb:var( --studio-blue-10-rgb );--color-accent-20:var( --studio-blue-20 );--color-accent-20-rgb:var( --studio-blue-20-rgb );--color-accent-30:var( --studio-blue-30 );--color-accent-30-rgb:var( --studio-blue-30-rgb );--color-accent-40:var( --studio-blue-40 );--color-accent-40-rgb:var( --studio-blue-40-rgb );--color-accent-50:var( --studio-blue-50 );--color-accent-50-rgb:var( --studio-blue-50-rgb );--color-accent-60:var( --studio-blue-60 );--color-accent-60-rgb:var( --studio-blue-60-rgb );--color-accent-70:var( --studio-blue-70 );--color-accent-70-rgb:var( --studio-blue-70-rgb );--color-accent-80:var( --studio-blue-80 );--color-accent-80-rgb:var( --studio-blue-80-rgb );--color-accent-90:var( --studio-blue-90 );--color-accent-90-rgb:var( --studio-blue-90-rgb );--color-accent-100:var( --studio-blue-100 );--color-accent-100-rgb:var( --studio-blue-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-white );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:#e2ecf1;--color-sidebar-gridicon-fill:var( --theme-icon-color );--color-sidebar-menu-selected-background:var( --theme-highlight-color );--color-sidebar-menu-selected-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-selected-text:var( --theme-text-color );--color-sidebar-menu-selected-text-rgb:var( --theme-text-color-rgb );--color-sidebar-menu-hover-background:var( --theme-highlight-color );--color-sidebar-menu-hover-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-hover-text:var( --theme-text-color );--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var( --theme-text-color )}.color-scheme.is-classic-blue,.color-scheme.is-classic-blue.is-nav-unification{--color-primary:var( --studio-blue-50 );--color-primary-rgb:var( --studio-blue-50-rgb );--color-primary-dark:var( --studio-blue-70 );--color-primary-dark-rgb:var( --studio-blue-70-rgb );--color-primary-light:var( --studio-blue-30 );--color-primary-light-rgb:var( --studio-blue-30-rgb );--color-primary-0:var( --studio-blue-0 );--color-primary-0-rgb:var( --studio-blue-0-rgb );--color-primary-5:var( --studio-blue-5 );--color-primary-5-rgb:var( --studio-blue-5-rgb );--color-primary-10:var( --studio-blue-10 );--color-primary-10-rgb:var( --studio-blue-10-rgb );--color-primary-20:var( --studio-blue-20 );--color-primary-20-rgb:var( --studio-blue-20-rgb );--color-primary-30:var( --studio-blue-30 );--color-primary-30-rgb:var( --studio-blue-30-rgb );--color-primary-40:var( --studio-blue-40 );--color-primary-40-rgb:var( --studio-blue-40-rgb );--color-primary-50:var( --studio-blue-50 );--color-primary-50-rgb:var( --studio-blue-50-rgb );--color-primary-60:var( --studio-blue-60 );--color-primary-60-rgb:var( --studio-blue-60-rgb );--color-primary-70:var( --studio-blue-70 );--color-primary-70-rgb:var( --studio-blue-70-rgb );--color-primary-80:var( --studio-blue-80 );--color-primary-80-rgb:var( --studio-blue-80-rgb );--color-primary-90:var( --studio-blue-90 );--color-primary-90-rgb:var( --studio-blue-90-rgb );--color-primary-100:var( --studio-blue-100 );--color-primary-100-rgb:var( --studio-blue-100-rgb );--color-accent:var( --studio-orange-50 );--color-accent-rgb:var( --studio-orange-50-rgb );--color-accent-dark:var( --studio-orange-70 );--color-accent-dark-rgb:var( --studio-orange-70-rgb );--color-accent-light:var( --studio-orange-30 );--color-accent-light-rgb:var( --studio-orange-30-rgb );--color-accent-0:var( --studio-orange-0 );--color-accent-0-rgb:var( --studio-orange-0-rgb );--color-accent-5:var( --studio-orange-5 );--color-accent-5-rgb:var( --studio-orange-5-rgb );--color-accent-10:var( --studio-orange-10 );--color-accent-10-rgb:var( --studio-orange-10-rgb );--color-accent-20:var( --studio-orange-20 );--color-accent-20-rgb:var( --studio-orange-20-rgb );--color-accent-30:var( --studio-orange-30 );--color-accent-30-rgb:var( --studio-orange-30-rgb );--color-accent-40:var( --studio-orange-40 );--color-accent-40-rgb:var( --studio-orange-40-rgb );--color-accent-50:var( --studio-orange-50 );--color-accent-50-rgb:var( --studio-orange-50-rgb );--color-accent-60:var( --studio-orange-60 );--color-accent-60-rgb:var( --studio-orange-60-rgb );--color-accent-70:var( --studio-orange-70 );--color-accent-70-rgb:var( --studio-orange-70-rgb );--color-accent-80:var( --studio-orange-80 );--color-accent-80-rgb:var( --studio-orange-80-rgb );--color-accent-90:var( --studio-orange-90 );--color-accent-90-rgb:var( --studio-orange-90-rgb );--color-accent-100:var( --studio-orange-100 );--color-accent-100-rgb:var( --studio-orange-100-rgb );--color-masterbar-background:var( --studio-blue-60 );--color-masterbar-border:var( --studio-blue-70 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-blue-70 );--color-masterbar-item-active-background:var( --studio-blue-90 );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-40 );--color-masterbar-unread-dot-background:var( --color-accent-30 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --studio-gray-5 );--color-sidebar-background-rgb:var( --studio-gray-5-rgb );--color-sidebar-border:var( --studio-gray-10 );--color-sidebar-text:var( --studio-gray-80 );--color-sidebar-text-alternative:var( --studio-gray-50 );--color-sidebar-gridicon-fill:var( --studio-gray-50 );--color-sidebar-menu-selected-background:var( --studio-gray-60 );--color-sidebar-menu-selected-background-rgb:var( --studio-gray-60-rgb );--color-sidebar-menu-selected-text:var( --studio-white );--color-sidebar-menu-selected-text-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-background:var( --color-surface );--color-sidebar-menu-hover-background-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-text:var( --studio-blue-50 );--color-sidebar-submenu-background:var( --studio-blue-60 );--color-sidebar-submenu-text:var( --studio-white );--color-sidebar-submenu-hover-text:var( --studio-orange-30 )}.color-scheme.is-classic-dark,.color-scheme.is-classic-dark.is-nav-unification{--color-primary:var( --studio-gray-90 );--color-primary-rgb:var( --studio-gray-90-rgb );--color-primary-dark:var( --studio-gray-70 );--color-primary-dark-rgb:var( --studio-gray-70-rgb );--color-primary-light:var( --studio-gray-30 );--color-primary-light-rgb:var( --studio-gray-30-rgb );--color-primary-0:var( --studio-gray-0 );--color-primary-0-rgb:var( --studio-gray-0-rgb );--color-primary-5:var( --studio-gray-5 );--color-primary-5-rgb:var( --studio-gray-5-rgb );--color-primary-10:var( --studio-gray-10 );--color-primary-10-rgb:var( --studio-gray-10-rgb );--color-primary-20:var( --studio-gray-20 );--color-primary-20-rgb:var( --studio-gray-20-rgb );--color-primary-30:var( --studio-gray-30 );--color-primary-30-rgb:var( --studio-gray-30-rgb );--color-primary-40:var( --studio-gray-40 );--color-primary-40-rgb:var( --studio-gray-40-rgb );--color-primary-50:var( --studio-gray-50 );--color-primary-50-rgb:var( --studio-gray-50-rgb );--color-primary-60:var( --studio-gray-60 );--color-primary-60-rgb:var( --studio-gray-60-rgb );--color-primary-70:var( --studio-gray-70 );--color-primary-70-rgb:var( --studio-gray-70-rgb );--color-primary-80:var( --studio-gray-80 );--color-primary-80-rgb:var( --studio-gray-80-rgb );--color-primary-90:var( --studio-gray-90 );--color-primary-90-rgb:var( --studio-gray-90-rgb );--color-primary-100:var( --studio-gray-100 );--color-primary-100-rgb:var( --studio-gray-100-rgb );--color-accent:var( --studio-pink-50 );--color-accent-rgb:var( --studio-pink-50-rgb );--color-accent-dark:var( --studio-pink-70 );--color-accent-dark-rgb:var( --studio-pink-70-rgb );--color-accent-light:var( --studio-pink-30 );--color-accent-light-rgb:var( --studio-pink-30-rgb );--color-accent-0:var( --studio-pink-0 );--color-accent-0-rgb:var( --studio-pink-0-rgb );--color-accent-5:var( --studio-pink-5 );--color-accent-5-rgb:var( --studio-pink-5-rgb );--color-accent-10:var( --studio-pink-10 );--color-accent-10-rgb:var( --studio-pink-10-rgb );--color-accent-20:var( --studio-pink-20 );--color-accent-20-rgb:var( --studio-pink-20-rgb );--color-accent-30:var( --studio-pink-30 );--color-accent-30-rgb:var( --studio-pink-30-rgb );--color-accent-40:var( --studio-pink-40 );--color-accent-40-rgb:var( --studio-pink-40-rgb );--color-accent-50:var( --studio-pink-50 );--color-accent-50-rgb:var( --studio-pink-50-rgb );--color-accent-60:var( --studio-pink-60 );--color-accent-60-rgb:var( --studio-pink-60-rgb );--color-accent-70:var( --studio-pink-70 );--color-accent-70-rgb:var( --studio-pink-70-rgb );--color-accent-80:var( --studio-pink-80 );--color-accent-80-rgb:var( --studio-pink-80-rgb );--color-accent-90:var( --studio-pink-90 );--color-accent-90-rgb:var( --studio-pink-90-rgb );--color-accent-100:var( --studio-pink-100 );--color-accent-100-rgb:var( --studio-pink-100-rgb );--color-neutral:var( --studio-gray-50 );--color-neutral-rgb:var( --studio-gray-50-rgb );--color-neutral-dark:var( --studio-gray-70 );--color-neutral-dark-rgb:var( --studio-gray-70-rgb );--color-neutral-light:var( --studio-gray-30 );--color-neutral-light-rgb:var( --studio-gray-30-rgb );--color-neutral-0:var( --studio-gray-0 );--color-neutral-0-rgb:var( --studio-gray-0-rgb );--color-neutral-5:var( --studio-gray-5 );--color-neutral-5-rgb:var( --studio-gray-5-rgb );--color-neutral-10:var( --studio-gray-10 );--color-neutral-10-rgb:var( --studio-gray-10-rgb );--color-neutral-20:var( --studio-gray-20 );--color-neutral-20-rgb:var( --studio-gray-20-rgb );--color-neutral-30:var( --studio-gray-30 );--color-neutral-30-rgb:var( --studio-gray-30-rgb );--color-neutral-40:var( --studio-gray-40 );--color-neutral-40-rgb:var( --studio-gray-40-rgb );--color-neutral-50:var( --studio-gray-50 );--color-neutral-50-rgb:var( --studio-gray-50-rgb );--color-neutral-60:var( --studio-gray-60 );--color-neutral-60-rgb:var( --studio-gray-60-rgb );--color-neutral-70:var( --studio-gray-70 );--color-neutral-70-rgb:var( --studio-gray-70-rgb );--color-neutral-80:var( --studio-gray-80 );--color-neutral-80-rgb:var( --studio-gray-80-rgb );--color-neutral-90:var( --studio-gray-90 );--color-neutral-90-rgb:var( --studio-gray-90-rgb );--color-neutral-100:var( --studio-gray-100 );--color-neutral-100-rgb:var( --studio-gray-100-rgb );--color-success:var( --studio-green-50 );--color-success-rgb:var( --studio-green-50-rgb );--color-success-dark:var( --studio-green-70 );--color-success-dark-rgb:var( --studio-green-70-rgb );--color-success-light:var( --studio-green-30 );--color-success-light-rgb:var( --studio-green-30-rgb );--color-success-0:var( --studio-green-0 );--color-success-0-rgb:var( --studio-green-0-rgb );--color-success-5:var( --studio-green-5 );--color-success-5-rgb:var( --studio-green-5-rgb );--color-success-10:var( --studio-green-10 );--color-success-10-rgb:var( --studio-green-10-rgb );--color-success-20:var( --studio-green-20 );--color-success-20-rgb:var( --studio-green-20-rgb );--color-success-30:var( --studio-green-30 );--color-success-30-rgb:var( --studio-green-30-rgb );--color-success-40:var( --studio-green-40 );--color-success-40-rgb:var( --studio-green-40-rgb );--color-success-50:var( --studio-green-50 );--color-success-50-rgb:var( --studio-green-50-rgb );--color-success-60:var( --studio-green-60 );--color-success-60-rgb:var( --studio-green-60-rgb );--color-success-70:var( --studio-green-70 );--color-success-70-rgb:var( --studio-green-70-rgb );--color-success-80:var( --studio-green-80 );--color-success-80-rgb:var( --studio-green-80-rgb );--color-success-90:var( --studio-green-90 );--color-success-90-rgb:var( --studio-green-90-rgb );--color-success-100:var( --studio-green-100 );--color-success-100-rgb:var( --studio-green-100-rgb );--color-warning:var( --studio-yellow-50 );--color-warning-rgb:var( --studio-yellow-50-rgb );--color-warning-dark:var( --studio-yellow-70 );--color-warning-dark-rgb:var( --studio-yellow-70-rgb );--color-warning-light:var( --studio-yellow-30 );--color-warning-light-rgb:var( --studio-yellow-30-rgb );--color-warning-0:var( --studio-yellow-0 );--color-warning-0-rgb:var( --studio-yellow-0-rgb );--color-warning-5:var( --studio-yellow-5 );--color-warning-5-rgb:var( --studio-yellow-5-rgb );--color-warning-10:var( --studio-yellow-10 );--color-warning-10-rgb:var( --studio-yellow-10-rgb );--color-warning-20:var( --studio-yellow-20 );--color-warning-20-rgb:var( --studio-yellow-20-rgb );--color-warning-30:var( --studio-yellow-30 );--color-warning-30-rgb:var( --studio-yellow-30-rgb );--color-warning-40:var( --studio-yellow-40 );--color-warning-40-rgb:var( --studio-yellow-40-rgb );--color-warning-50:var( --studio-yellow-50 );--color-warning-50-rgb:var( --studio-yellow-50-rgb );--color-warning-60:var( --studio-yellow-60 );--color-warning-60-rgb:var( --studio-yellow-60-rgb );--color-warning-70:var( --studio-yellow-70 );--color-warning-70-rgb:var( --studio-yellow-70-rgb );--color-warning-80:var( --studio-yellow-80 );--color-warning-80-rgb:var( --studio-yellow-80-rgb );--color-warning-90:var( --studio-yellow-90 );--color-warning-90-rgb:var( --studio-yellow-90-rgb );--color-warning-100:var( --studio-yellow-100 );--color-warning-100-rgb:var( --studio-yellow-100-rgb );--color-error:var( --studio-red-50 );--color-error-rgb:var( --studio-red-50-rgb );--color-error-dark:var( --studio-red-70 );--color-error-dark-rgb:var( --studio-red-70-rgb );--color-error-light:var( --studio-red-30 );--color-error-light-rgb:var( --studio-red-30-rgb );--color-error-0:var( --studio-red-0 );--color-error-0-rgb:var( --studio-red-0-rgb );--color-error-5:var( --studio-red-5 );--color-error-5-rgb:var( --studio-red-5-rgb );--color-error-10:var( --studio-red-10 );--color-error-10-rgb:var( --studio-red-10-rgb );--color-error-20:var( --studio-red-20 );--color-error-20-rgb:var( --studio-red-20-rgb );--color-error-30:var( --studio-red-30 );--color-error-30-rgb:var( --studio-red-30-rgb );--color-error-40:var( --studio-red-40 );--color-error-40-rgb:var( --studio-red-40-rgb );--color-error-50:var( --studio-red-50 );--color-error-50-rgb:var( --studio-red-50-rgb );--color-error-60:var( --studio-red-60 );--color-error-60-rgb:var( --studio-red-60-rgb );--color-error-70:var( --studio-red-70 );--color-error-70-rgb:var( --studio-red-70-rgb );--color-error-80:var( --studio-red-80 );--color-error-80-rgb:var( --studio-red-80-rgb );--color-error-90:var( --studio-red-90 );--color-error-90-rgb:var( --studio-red-90-rgb );--color-error-100:var( --studio-red-100 );--color-error-100-rgb:var( --studio-red-100-rgb );--color-surface:var( --studio-white );--color-surface-rgb:var( --studio-white-rgb );--color-surface-backdrop:var( --studio-gray-0 );--color-surface-backdrop-rgb:var( --studio-gray-0-rgb );--color-text:var( --studio-gray-80 );--color-text-rgb:var( --studio-gray-80-rgb );--color-text-subtle:var( --studio-gray-50 );--color-text-subtle-rgb:var( --studio-gray-50-rgb );--color-text-inverted:var( --studio-white );--color-text-inverted-rgb:var( --studio-white-rgb );--color-border:var( --color-neutral-20 );--color-border-rgb:var( --color-neutral-20-rgb );--color-border-subtle:var( --color-neutral-5 );--color-border-subtle-rgb:var( --color-neutral-5-rgb );--color-border-shadow:var( --color-neutral-0 );--color-border-shadow-rgb:var( --color-neutral-0-rgb );--color-border-inverted:var( --studio-white );--color-border-inverted-rgb:var( --studio-white-rgb );--color-link:var( --studio-blue-50 );--color-link-rgb:var( --studio-blue-50-rgb );--color-link-dark:var( --studio-blue-70 );--color-link-dark-rgb:var( --studio-blue-70-rgb );--color-link-light:var( --studio-blue-30 );--color-link-light-rgb:var( --studio-blue-30-rgb );--color-link-0:var( --studio-blue-0 );--color-link-0-rgb:var( --studio-blue-0-rgb );--color-link-5:var( --studio-blue-5 );--color-link-5-rgb:var( --studio-blue-5-rgb );--color-link-10:var( --studio-blue-10 );--color-link-10-rgb:var( --studio-blue-10-rgb );--color-link-20:var( --studio-blue-20 );--color-link-20-rgb:var( --studio-blue-20-rgb );--color-link-30:var( --studio-blue-30 );--color-link-30-rgb:var( --studio-blue-30-rgb );--color-link-40:var( --studio-blue-40 );--color-link-40-rgb:var( --studio-blue-40-rgb );--color-link-50:var( --studio-blue-50 );--color-link-50-rgb:var( --studio-blue-50-rgb );--color-link-60:var( --studio-blue-60 );--color-link-60-rgb:var( --studio-blue-60-rgb );--color-link-70:var( --studio-blue-70 );--color-link-70-rgb:var( --studio-blue-70-rgb );--color-link-80:var( --studio-blue-80 );--color-link-80-rgb:var( --studio-blue-80-rgb );--color-link-90:var( --studio-blue-90 );--color-link-90-rgb:var( --studio-blue-90-rgb );--color-link-100:var( --studio-blue-100 );--color-link-100-rgb:var( --studio-blue-100-rgb );--color-plan-free:var( --studio-gray-30 );--color-plan-blogger:var( --studio-celadon-30 );--color-plan-personal:var( --studio-blue-30 );--color-plan-premium:var( --studio-yellow-30 );--color-plan-business:var( --studio-orange-30 );--color-plan-ecommerce:var( --studio-purple-30 );--color-premium-domain:var( --studio-wordpress-blue-60 );--color-jetpack-plan-free:var( --studio-blue-30 );--color-jetpack-plan-personal:var( --studio-yellow-30 );--color-jetpack-plan-premium:var( --studio-jetpack-green-30 );--color-jetpack-plan-professional:var( --studio-purple-30 );--color-masterbar-background:#101517;--color-masterbar-border:#333;--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:#333;--color-masterbar-item-active-background:#23282d;--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-40 );--color-masterbar-unread-dot-background:var( --color-accent-20 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-jetpack-masterbar-background:var( --studio-white );--color-jetpack-masterbar-border:var( --studio-gray-5 );--color-jetpack-masterbar-text:var( --studio-gray-50 );--color-jetpack-masterbar-item-hover-background:var( --studio-gray-5 );--color-jetpack-masterbar-item-active-background:var( --studio-gray-20 );--color-sidebar-background:#23282d;--color-sidebar-background-rgb:35,40,45;--color-sidebar-border:#333;--color-sidebar-text:#eee;--color-sidebar-text-rgb:238,238,238;--color-sidebar-text-alternative:#a2aab2;--color-sidebar-gridicon-fill:#a2aab2;--color-sidebar-menu-selected-background:#0073aa;--color-sidebar-menu-selected-background-rgb:0,115,170;--color-sidebar-menu-selected-text:var( --studio-white );--color-sidebar-menu-selected-text-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-background:#1a1e23;--color-sidebar-menu-hover-background-rgb:26,30,35;--color-sidebar-menu-hover-text:#00b9eb;--color-jetpack-onboarding-text:var( --studio-white );--color-jetpack-onboarding-text-rgb:var( --studio-white-rgb );--color-jetpack-onboarding-background:var( --studio-blue-100 );--color-jetpack-onboarding-background-rgb:var( --studio-blue-100-rgb );--color-automattic:var( --studio-blue-40 );--color-jetpack:var( --studio-jetpack-green );--color-simplenote:var( --studio-simplenote-blue );--color-woocommerce:var( --studio-woocommerce-purple );--color-wordpress-com:var( --studio-wordpress-blue );--color-wordpress-org:#585c60;--color-blogger:#ff5722;--color-eventbrite:#ff8000;--color-facebook:#39579a;--color-godaddy:#5ea95a;--color-google-plus:#df4a32;--color-instagram:#d93174;--color-linkedin:#0976b4;--color-medium:#12100e;--color-pinterest:#cc2127;--color-pocket:#ee4256;--color-print:#f8f8f8;--color-reddit:#5f99cf;--color-skype:#00aff0;--color-stumbleupon:#eb4924;--color-substack:#ff6719;--color-squarespace:#222;--color-telegram:#08c;--color-tumblr:#35465c;--color-twitter:#55acee;--color-whatsapp:#43d854;--color-wix:#faad4d;--color-email:var( --studio-gray-0 );--color-podcasting:#9b4dd5;--color-wp-admin-button-background:#008ec2;--color-wp-admin-button-border:#006799;--color-sidebar-submenu-background:#32373c;--color-sidebar-submenu-text:#b4b9be;--color-sidebar-submenu-hover-text:#00b9eb;--color-sidebar-submenu-selected-text:var( --studio-white )}.color-scheme.is-coffee,.color-scheme.is-coffee.is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#59524c;--theme-base-color-rgb:89,82,76;--theme-submenu-text-color:#cdcbc9;--theme-submenu-background-color:#46403c;--theme-icon-color:#ece6f6;--theme-highlight-color:#c7a589;--theme-highlight-color-rgb:199,165,137;--theme-notification-color:#9ea476;--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --studio-orange-70 );--color-primary-dark-rgb:var( --studio-orange-70-rgb );--color-primary-light:var( --studio-orange-30 );--color-primary-light-rgb:var( --studio-orange-30-rgb );--color-primary-0:var( --studio-orange-0 );--color-primary-0-rgb:var( --studio-orange-0-rgb );--color-primary-5:var( --studio-orange-5 );--color-primary-5-rgb:var( --studio-orange-5-rgb );--color-primary-10:var( --studio-orange-10 );--color-primary-10-rgb:var( --studio-orange-10-rgb );--color-primary-20:var( --studio-orange-20 );--color-primary-20-rgb:var( --studio-orange-20-rgb );--color-primary-30:var( --studio-orange-30 );--color-primary-30-rgb:var( --studio-orange-30-rgb );--color-primary-40:var( --studio-orange-40 );--color-primary-40-rgb:var( --studio-orange-40-rgb );--color-primary-50:var( --studio-orange-50 );--color-primary-50-rgb:var( --studio-orange-50-rgb );--color-primary-60:var( --studio-orange-60 );--color-primary-60-rgb:var( --studio-orange-60-rgb );--color-primary-70:var( --studio-orange-70 );--color-primary-70-rgb:var( --studio-orange-70-rgb );--color-primary-80:var( --studio-orange-80 );--color-primary-80-rgb:var( --studio-orange-80-rgb );--color-primary-90:var( --studio-orange-90 );--color-primary-90-rgb:var( --studio-orange-90-rgb );--color-primary-100:var( --studio-orange-100 );--color-primary-100-rgb:var( --studio-orange-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --studio-orange-70 );--color-accent-dark-rgb:var( --studio-orange-70-rgb );--color-accent-light:var( --studio-orange-30 );--color-accent-light-rgb:var( --studio-orange-30-rgb );--color-accent-0:var( --studio-orange-0 );--color-accent-0-rgb:var( --studio-orange-0-rgb );--color-accent-5:var( --studio-orange-5 );--color-accent-5-rgb:var( --studio-orange-5-rgb );--color-accent-10:var( --studio-orange-10 );--color-accent-10-rgb:var( --studio-orange-10-rgb );--color-accent-20:var( --studio-orange-20 );--color-accent-20-rgb:var( --studio-orange-20-rgb );--color-accent-30:var( --studio-orange-30 );--color-accent-30-rgb:var( --studio-orange-30-rgb );--color-accent-40:var( --studio-orange-40 );--color-accent-40-rgb:var( --studio-orange-40-rgb );--color-accent-50:var( --studio-orange-50 );--color-accent-50-rgb:var( --studio-orange-50-rgb );--color-accent-60:var( --studio-orange-60 );--color-accent-60-rgb:var( --studio-orange-60-rgb );--color-accent-70:var( --studio-orange-70 );--color-accent-70-rgb:var( --studio-orange-70-rgb );--color-accent-80:var( --studio-orange-80 );--color-accent-80-rgb:var( --studio-orange-80-rgb );--color-accent-90:var( --studio-orange-90 );--color-accent-90-rgb:var( --studio-orange-90-rgb );--color-accent-100:var( --studio-orange-100 );--color-accent-100-rgb:var( --studio-orange-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-white );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:var( --studio-gray-0 );--color-sidebar-gridicon-fill:var( --studio-gray-0 );--color-sidebar-menu-selected-background:var( --theme-highlight-color );--color-sidebar-menu-selected-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-selected-text:var( --theme-text-color );--color-sidebar-menu-selected-text-rgb:var( --theme-text-color-rgb );--color-sidebar-menu-hover-background:var( --theme-highlight-color );--color-sidebar-menu-hover-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-hover-text:var( --theme-text-color );--color-sidebar-menu-hover:var( --theme-text-color );--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var( --theme-highlight-color )}.color-scheme.is-contrast,.color-scheme.is-contrast.is-nav-unification{--color-primary:var( --studio-gray-80 );--color-primary-rgb:var( --studio-gray-80-rgb );--color-primary-dark:var( --studio-gray-100 );--color-primary-dark-rgb:var( --studio-gray-100-rgb );--color-primary-light:var( --studio-gray-60 );--color-primary-light-rgb:var( --studio-gray-60-rgb );--color-primary-0:var( --studio-gray-0 );--color-primary-0-rgb:var( --studio-gray-0-rgb );--color-primary-5:var( --studio-gray-5 );--color-primary-5-rgb:var( --studio-gray-5-rgb );--color-primary-10:var( --studio-gray-10 );--color-primary-10-rgb:var( --studio-gray-10-rgb );--color-primary-20:var( --studio-gray-20 );--color-primary-20-rgb:var( --studio-gray-20-rgb );--color-primary-30:var( --studio-gray-30 );--color-primary-30-rgb:var( --studio-gray-30-rgb );--color-primary-40:var( --studio-gray-40 );--color-primary-40-rgb:var( --studio-gray-40-rgb );--color-primary-50:var( --studio-gray-50 );--color-primary-50-rgb:var( --studio-gray-50-rgb );--color-primary-60:var( --studio-gray-60 );--color-primary-60-rgb:var( --studio-gray-60-rgb );--color-primary-70:var( --studio-gray-70 );--color-primary-70-rgb:var( --studio-gray-70-rgb );--color-primary-80:var( --studio-gray-80 );--color-primary-80-rgb:var( --studio-gray-80-rgb );--color-primary-90:var( --studio-gray-90 );--color-primary-90-rgb:var( --studio-gray-90-rgb );--color-primary-100:var( --studio-gray-100 );--color-primary-100-rgb:var( --studio-gray-100-rgb );--color-accent:var( --studio-blue-70 );--color-accent-rgb:var( --studio-blue-70-rgb );--color-accent-dark:var( --studio-blue-90 );--color-accent-dark-rgb:var( --studio-blue-90-rgb );--color-accent-light:var( --studio-blue-50 );--color-accent-light-rgb:var( --studio-blue-50-rgb );--color-accent-0:var( --studio-blue-0 );--color-accent-0-rgb:var( --studio-blue-0-rgb );--color-accent-5:var( --studio-blue-5 );--color-accent-5-rgb:var( --studio-blue-5-rgb );--color-accent-10:var( --studio-blue-10 );--color-accent-10-rgb:var( --studio-blue-10-rgb );--color-accent-20:var( --studio-blue-20 );--color-accent-20-rgb:var( --studio-blue-20-rgb );--color-accent-30:var( --studio-blue-30 );--color-accent-30-rgb:var( --studio-blue-30-rgb );--color-accent-40:var( --studio-blue-40 );--color-accent-40-rgb:var( --studio-blue-40-rgb );--color-accent-50:var( --studio-blue-50 );--color-accent-50-rgb:var( --studio-blue-50-rgb );--color-accent-60:var( --studio-blue-60 );--color-accent-60-rgb:var( --studio-blue-60-rgb );--color-accent-70:var( --studio-blue-70 );--color-accent-70-rgb:var( --studio-blue-70-rgb );--color-accent-80:var( --studio-blue-80 );--color-accent-80-rgb:var( --studio-blue-80-rgb );--color-accent-90:var( --studio-blue-90 );--color-accent-90-rgb:var( --studio-blue-90-rgb );--color-accent-100:var( --studio-blue-100 );--color-accent-100-rgb:var( --studio-blue-100-rgb );--color-surface-backdrop:var( --studio-white );--color-surface-backdrop-rgb:var( --studio-white-rgb );--color-text:var( --studio-gray-100 );--color-text-rgb:var( --studio-gray-100-rgb );--color-text-subtle:var( --studio-gray-70 );--color-text-subtle-rgb:var( --studio-gray-70-rgb );--color-link:var( --studio-blue-70 );--color-link-rgb:var( --studio-blue-70-rgb );--color-link-dark:var( --studio-blue-100 );--color-link-dark-rgb:var( --studio-blue-100-rgb );--color-link-light:var( --studio-blue-50 );--color-link-light-rgb:var( --studio-blue-50-rgb );--color-link-0:var( --studio-blue-0 );--color-link-0-rgb:var( --studio-blue-0-rgb );--color-link-5:var( --studio-blue-5 );--color-link-5-rgb:var( --studio-blue-5-rgb );--color-link-10:var( --studio-blue-10 );--color-link-10-rgb:var( --studio-blue-10-rgb );--color-link-20:var( --studio-blue-20 );--color-link-20-rgb:var( --studio-blue-20-rgb );--color-link-30:var( --studio-blue-30 );--color-link-30-rgb:var( --studio-blue-30-rgb );--color-link-40:var( --studio-blue-40 );--color-link-40-rgb:var( --studio-blue-40-rgb );--color-link-50:var( --studio-blue-50 );--color-link-50-rgb:var( --studio-blue-50-rgb );--color-link-60:var( --studio-blue-60 );--color-link-60-rgb:var( --studio-blue-60-rgb );--color-link-70:var( --studio-blue-70 );--color-link-70-rgb:var( --studio-blue-70-rgb );--color-link-80:var( --studio-blue-80 );--color-link-80-rgb:var( --studio-blue-80-rgb );--color-link-90:var( --studio-blue-90 );--color-link-90-rgb:var( --studio-blue-90-rgb );--color-link-100:var( --studio-blue-100 );--color-link-100-rgb:var( --studio-blue-100-rgb );--color-premium-domain:var( --studio-gray-100 );--color-masterbar-background:var( --studio-gray-100 );--color-masterbar-border:var( --studio-gray-90 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-gray-80 );--color-masterbar-item-active-background:var( --studio-gray-60 );--color-masterbar-item-new-editor-background:var( --studio-gray-70 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-90 );--color-masterbar-unread-dot-background:var( --studio-yellow-20 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-70 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-70 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --color-surface );--color-sidebar-background-rgb:var( --studio-white-rgb );--color-sidebar-border:var( --studio-gray-5 );--color-sidebar-text:var( --studio-gray-90 );--color-sidebar-text-rgb:var( --studio-gray-90-rgb );--color-sidebar-text-alternative:var( --studio-gray-90 );--color-sidebar-gridicon-fill:var( --studio-gray-90 );--color-sidebar-menu-selected-background:var( --studio-gray-100 );--color-sidebar-menu-selected-background-rgb:var( --studio-gray-100-rgb );--color-sidebar-menu-selected-text:var( --studio-white );--color-sidebar-menu-selected-text-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-background:var( --studio-gray-60 );--color-sidebar-menu-hover-background-rgb:var( --studio-gray-60-rgb );--color-sidebar-menu-hover-text:var( --studio-white );--color-sidebar-submenu-background:var( --studio-gray-90 );--color-sidebar-submenu-text:var( --studio-gray-10 );--color-sidebar-submenu-hover-text:var( --color-masterbar-unread-dot-background );--color-sidebar-submenu-selected-text:var( --studio-white )}.color-scheme.is-ectoplasm,.color-scheme.is-ectoplasm.is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#523f6d;--theme-base-color-rgb:82,63,109;--theme-submenu-text-color:#cbc5d3;--theme-submenu-background-color:#413256;--theme-icon-color:#ece6f6;--theme-highlight-color:#a3b745;--theme-highlight-color-rgb:163,183,69;--theme-notification-color:#d46f15;--ectoplasm-green-0:#f2f5e1;--ectoplasm-green-5:#e9f5b3;--ectoplasm-green-10:#daf26b;--ectoplasm-green-20:#cdf030;--ectoplasm-green-30:#b5de00;--ectoplasm-green-40:#9bc000;--ectoplasm-green-50:#7f9d00;--ectoplasm-green-60:#647d00;--ectoplasm-green-70:#536700;--ectoplasm-green-80:#3f4f00;--ectoplasm-green-90:#293300;--ectoplasm-green-100:#161c00;--ectoplasm-green:#7f9d00;--ectoplasm-green-0-rgb:242,245,225;--ectoplasm-green-5-rgb:233,245,179;--ectoplasm-green-10-rgb:218,242,107;--ectoplasm-green-20-rgb:205,240,48;--ectoplasm-green-30-rgb:181,222,0;--ectoplasm-green-40-rgb:155,192,0;--ectoplasm-green-50-rgb:127,157,0;--ectoplasm-green-60-rgb:100,125,0;--ectoplasm-green-70-rgb:83,103,0;--ectoplasm-green-80-rgb:63,79,0;--ectoplasm-green-90-rgb:41,51,0;--ectoplasm-green-100-rgb:22,28,0;--ectoplasm-green-rgb:127,157,0;--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --ectoplasm-green-70 );--color-primary-dark-rgb:var( --ectoplasm-green-70-rgb );--color-primary-light:var( --ectoplasm-green-30 );--color-primary-light-rgb:var( --ectoplasm-green-30-rgb );--color-primary-0:var( --ectoplasm-green-0 );--color-primary-0-rgb:var( --ectoplasm-green-0-rgb );--color-primary-5:var( --ectoplasm-green-5 );--color-primary-5-rgb:var( --ectoplasm-green-5-rgb );--color-primary-10:var( --ectoplasm-green-10 );--color-primary-10-rgb:var( --ectoplasm-green-10-rgb );--color-primary-20:var( --ectoplasm-green-20 );--color-primary-20-rgb:var( --ectoplasm-green-20-rgb );--color-primary-30:var( --ectoplasm-green-30 );--color-primary-30-rgb:var( --ectoplasm-green-30-rgb );--color-primary-40:var( --ectoplasm-green-40 );--color-primary-40-rgb:var( --ectoplasm-green-40-rgb );--color-primary-50:var( --ectoplasm-green-50 );--color-primary-50-rgb:var( --ectoplasm-green-50-rgb );--color-primary-60:var( --ectoplasm-green-60 );--color-primary-60-rgb:var( --ectoplasm-green-60-rgb );--color-primary-70:var( --ectoplasm-green-70 );--color-primary-70-rgb:var( --ectoplasm-green-70-rgb );--color-primary-80:var( --ectoplasm-green-80 );--color-primary-80-rgb:var( --ectoplasm-green-80-rgb );--color-primary-90:var( --ectoplasm-green-90 );--color-primary-90-rgb:var( --ectoplasm-green-90-rgb );--color-primary-100:var( --ectoplasm-green-100 );--color-primary-100-rgb:var( --ectoplasm-green-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --ectoplasm-green-70 );--color-accent-dark-rgb:var( --ectoplasm-green-70-rgb );--color-accent-light:var( --ectoplasm-green-30 );--color-accent-light-rgb:var( --ectoplasm-green-30-rgb );--color-accent-0:var( --ectoplasm-green-0 );--color-accent-0-rgb:var( --ectoplasm-green-0-rgb );--color-accent-5:var( --ectoplasm-green-5 );--color-accent-5-rgb:var( --ectoplasm-green-5-rgb );--color-accent-10:var( --ectoplasm-green-10 );--color-accent-10-rgb:var( --ectoplasm-green-10-rgb );--color-accent-20:var( --ectoplasm-green-20 );--color-accent-20-rgb:var( --ectoplasm-green-20-rgb );--color-accent-30:var( --ectoplasm-green-30 );--color-accent-30-rgb:var( --ectoplasm-green-30-rgb );--color-accent-40:var( --ectoplasm-green-40 );--color-accent-40-rgb:var( --ectoplasm-green-40-rgb );--color-accent-50:var( --ectoplasm-green-50 );--color-accent-50-rgb:var( --ectoplasm-green-50-rgb );--color-accent-60:var( --ectoplasm-green-60 );--color-accent-60-rgb:var( --ectoplasm-green-60-rgb );--color-accent-70:var( --ectoplasm-green-70 );--color-accent-70-rgb:var( --ectoplasm-green-70-rgb );--color-accent-80:var( --ectoplasm-green-80 );--color-accent-80-rgb:var( --ectoplasm-green-80-rgb );--color-accent-90:var( --ectoplasm-green-90 );--color-accent-90-rgb:var( --ectoplasm-green-90-rgb );--color-accent-100:var( --ectoplasm-green-100 );--color-accent-100-rgb:var( --ectoplasm-green-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-white );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:var( --theme-text-color );--color-sidebar-gridicon-fill:var( --theme-icon-color );--color-sidebar-menu-selected-background:var( --theme-highlight-color );--color-sidebar-menu-selected-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-selected-text:var( --theme-text-color );--color-sidebar-menu-selected-text-rgb:var( --theme-text-color-rgb );--color-sidebar-menu-hover-background:var( --theme-highlight-color );--color-sidebar-menu-hover-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-hover-text:var( --theme-text-color );--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var( --theme-highlight-color )}.color-scheme.is-light,.color-scheme.is-light.is-nav-unification{--theme-text-color:#333;--theme-text-color-rgb:51,51,51;--theme-base-color:#e5e5e5;--theme-base-color-rgb:229,229,229;--theme-submenu-text-color:#686868;--theme-submenu-background-color:#fff;--theme-icon-color:#999;--theme-highlight-color:#04a4cc;--theme-highlight-color-rgb:4,164,204;--theme-notification-color:#d64e07;--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --studio-blue-70 );--color-primary-dark-rgb:var( --studio-blue-70-rgb );--color-primary-light:var( --studio-blue-30 );--color-primary-light-rgb:var( --studio-blue-30-rgb );--color-primary-0:var( --studio-blue-0 );--color-primary-0-rgb:var( --studio-blue-0-rgb );--color-primary-5:var( --studio-blue-5 );--color-primary-5-rgb:var( --studio-blue-5-rgb );--color-primary-10:var( --studio-blue-10 );--color-primary-10-rgb:var( --studio-blue-10-rgb );--color-primary-20:var( --studio-blue-20 );--color-primary-20-rgb:var( --studio-blue-20-rgb );--color-primary-30:var( --studio-blue-30 );--color-primary-30-rgb:var( --studio-blue-30-rgb );--color-primary-40:var( --studio-blue-40 );--color-primary-40-rgb:var( --studio-blue-40-rgb );--color-primary-50:var( --studio-blue-50 );--color-primary-50-rgb:var( --studio-blue-50-rgb );--color-primary-60:var( --studio-blue-60 );--color-primary-60-rgb:var( --studio-blue-60-rgb );--color-primary-70:var( --studio-blue-70 );--color-primary-70-rgb:var( --studio-blue-70-rgb );--color-primary-80:var( --studio-blue-80 );--color-primary-80-rgb:var( --studio-blue-80-rgb );--color-primary-90:var( --studio-blue-90 );--color-primary-90-rgb:var( --studio-blue-90-rgb );--color-primary-100:var( --studio-blue-100 );--color-primary-100-rgb:var( --studio-blue-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --studio-blue-70 );--color-accent-dark-rgb:var( --studio-blue-70-rgb );--color-accent-light:var( --studio-blue-30 );--color-accent-light-rgb:var( --studio-blue-30-rgb );--color-accent-0:var( --studio-blue-0 );--color-accent-0-rgb:var( --studio-blue-0-rgb );--color-accent-5:var( --studio-blue-5 );--color-accent-5-rgb:var( --studio-blue-5-rgb );--color-accent-10:var( --studio-blue-10 );--color-accent-10-rgb:var( --studio-blue-10-rgb );--color-accent-20:var( --studio-blue-20 );--color-accent-20-rgb:var( --studio-blue-20-rgb );--color-accent-30:var( --studio-blue-30 );--color-accent-30-rgb:var( --studio-blue-30-rgb );--color-accent-40:var( --studio-blue-40 );--color-accent-40-rgb:var( --studio-blue-40-rgb );--color-accent-50:var( --studio-blue-50 );--color-accent-50-rgb:var( --studio-blue-50-rgb );--color-accent-60:var( --studio-blue-60 );--color-accent-60-rgb:var( --studio-blue-60-rgb );--color-accent-70:var( --studio-blue-70 );--color-accent-70-rgb:var( --studio-blue-70-rgb );--color-accent-80:var( --studio-blue-80 );--color-accent-80-rgb:var( --studio-blue-80-rgb );--color-accent-90:var( --studio-blue-90 );--color-accent-90-rgb:var( --studio-blue-90-rgb );--color-accent-100:var( --studio-blue-100 );--color-accent-100-rgb:var( --studio-blue-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-black );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-90 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:var( --studio-gray-90 );--color-sidebar-gridicon-fill:var( --theme-icon-color );--color-sidebar-menu-selected-background:#888;--color-sidebar-menu-selected-background-rgb:136,136,136;--color-sidebar-menu-selected-text:#fff;--color-sidebar-menu-selected-text-rgb:255,255,255;--color-sidebar-menu-hover-background:#888;--color-sidebar-menu-hover-background-rgb:136,136,136;--color-sidebar-menu-hover-text:#fff;--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var( --theme-highlight-color );--color-sidebar-submenu-selected-text:#333}.color-scheme.is-light.is-nav-unification .masterbar__item-notifications .gridicon,.color-scheme.is-light .masterbar__item-notifications .gridicon{fill:#000}.color-scheme.is-midnight,.color-scheme.is-midnight.is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#363b3f;--theme-base-color-rgb:54,59,63;--theme-submenu-text-color:#c3c4c5;--theme-submenu-background-color:#26292c;--theme-icon-color:#ece6f6;--theme-highlight-color:#e14d43;--theme-highlight-color-rgb:225,77,67;--theme-notification-color:#69a8bb;--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --studio-red-70 );--color-primary-dark-rgb:var( --studio-red-70-rgb );--color-primary-light:var( --studio-red-30 );--color-primary-light-rgb:var( --studio-red-30-rgb );--color-primary-0:var( --studio-red-0 );--color-primary-0-rgb:var( --studio-red-0-rgb );--color-primary-5:var( --studio-red-5 );--color-primary-5-rgb:var( --studio-red-5-rgb );--color-primary-10:var( --studio-red-10 );--color-primary-10-rgb:var( --studio-red-10-rgb );--color-primary-20:var( --studio-red-20 );--color-primary-20-rgb:var( --studio-red-20-rgb );--color-primary-30:var( --studio-red-30 );--color-primary-30-rgb:var( --studio-red-30-rgb );--color-primary-40:var( --studio-red-40 );--color-primary-40-rgb:var( --studio-red-40-rgb );--color-primary-50:var( --studio-red-50 );--color-primary-50-rgb:var( --studio-red-50-rgb );--color-primary-60:var( --studio-red-60 );--color-primary-60-rgb:var( --studio-red-60-rgb );--color-primary-70:var( --studio-red-70 );--color-primary-70-rgb:var( --studio-red-70-rgb );--color-primary-80:var( --studio-red-80 );--color-primary-80-rgb:var( --studio-red-80-rgb );--color-primary-90:var( --studio-red-90 );--color-primary-90-rgb:var( --studio-red-90-rgb );--color-primary-100:var( --studio-red-100 );--color-primary-100-rgb:var( --studio-red-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --studio-red-70 );--color-accent-dark-rgb:var( --studio-red-70-rgb );--color-accent-light:var( --studio-red-30 );--color-accent-light-rgb:var( --studio-red-30-rgb );--color-accent-0:var( --studio-red-0 );--color-accent-0-rgb:var( --studio-red-0-rgb );--color-accent-5:var( --studio-red-5 );--color-accent-5-rgb:var( --studio-red-5-rgb );--color-accent-10:var( --studio-red-10 );--color-accent-10-rgb:var( --studio-red-10-rgb );--color-accent-20:var( --studio-red-20 );--color-accent-20-rgb:var( --studio-red-20-rgb );--color-accent-30:var( --studio-red-30 );--color-accent-30-rgb:var( --studio-red-30-rgb );--color-accent-40:var( --studio-red-40 );--color-accent-40-rgb:var( --studio-red-40-rgb );--color-accent-50:var( --studio-red-50 );--color-accent-50-rgb:var( --studio-red-50-rgb );--color-accent-60:var( --studio-red-60 );--color-accent-60-rgb:var( --studio-red-60-rgb );--color-accent-70:var( --studio-red-70 );--color-accent-70-rgb:var( --studio-red-70-rgb );--color-accent-80:var( --studio-red-80 );--color-accent-80-rgb:var( --studio-red-80-rgb );--color-accent-90:var( --studio-red-90 );--color-accent-90-rgb:var( --studio-red-90-rgb );--color-accent-100:var( --studio-red-100 );--color-accent-100-rgb:var( --studio-red-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-white );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:var( --theme-text-color );--color-sidebar-gridicon-fill:var( --theme-icon-color );--color-sidebar-menu-selected-background:var( --theme-highlight-color );--color-sidebar-menu-selected-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-selected-text:var( --theme-text-color );--color-sidebar-menu-selected-text-rgb:var( --theme-text-color-rgb );--color-sidebar-menu-hover-background:var( --theme-highlight-color );--color-sidebar-menu-hover-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-hover-text:var( --theme-text-color );--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var( --theme-highlight-color )}.color-scheme.is-modern,.color-scheme.is-modern.is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#1e1e1e;--theme-base-color-rgb:30,30,30;--theme-submenu-text-color:#bcbcbc;--theme-submenu-background-color:#0c0c0c;--theme-icon-color:#ece6f6;--theme-highlight-color:#3858e9;--theme-highlight-color-rgb:56,88,233;--theme-notification-color:#3858e9;--theme-highlight-color-0:#d5dffa;--theme-highlight-color-0-rgb:213,223,250;--theme-highlight-color-10:#abc0f5;--theme-highlight-color-10-rgb:171,192,245;--theme-highlight-color-20:#82a1f0;--theme-highlight-color-20-rgb:130,161,240;--theme-highlight-color-30:#5882eb;--theme-highlight-color-30-rgb:88,130,235;--theme-highlight-color-40:#2f63e6;--theme-highlight-color-40-rgb:47,99,230;--theme-highlight-color-50:var( --theme-highlight-color );--theme-highlight-color-50-rgb:var( --theme-highlight-color-rgb );--theme-highlight-color-60:#2145e6;--theme-highlight-color-60-rgb:33,69,230;--theme-highlight-color-70:#133ca6;--theme-highlight-color-70-rgb:19,60,166;--theme-highlight-color-80:#0e2d7c;--theme-highlight-color-80-rgb:14,45,124;--theme-highlight-color-90:#091e53;--theme-highlight-color-90-rgb:9,30,83;--theme-highlight-color-100:#040f29;--theme-highlight-color-100-rgb:4,15,41;--color-link:var( --theme-highlight-color );--color-link-dark:var( --theme-highlight-color-70 );--color-link-light:var( --theme-highlight-color-30 );--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --theme-highlight-color-70 );--color-primary-dark-rgb:var( --theme-highlight-color-70-rgb );--color-primary-light:var( --theme-highlight-color-30 );--color-primary-light-rgb:var( --theme-highlight-color-30-rgb );--color-primary-0:var( --theme-highlight-color-0 );--color-primary-0-rgb:var( --theme-highlight-color-0-rgb );--color-primary-5:var( --theme-highlight-color-5 );--color-primary-5-rgb:var( --theme-highlight-color-5-rgb );--color-primary-10:var( --theme-highlight-color-10 );--color-primary-10-rgb:var( --theme-highlight-color-10-rgb );--color-primary-20:var( --theme-highlight-color-20 );--color-primary-20-rgb:var( --theme-highlight-color-20-rgb );--color-primary-30:var( --theme-highlight-color-30 );--color-primary-30-rgb:var( --theme-highlight-color-30-rgb );--color-primary-40:var( --theme-highlight-color-40 );--color-primary-40-rgb:var( --theme-highlight-color-40-rgb );--color-primary-50:var( --theme-highlight-color-50 );--color-primary-50-rgb:var( --theme-highlight-color-50-rgb );--color-primary-60:var( --theme-highlight-color-60 );--color-primary-60-rgb:var( --theme-highlight-color-60-rgb );--color-primary-70:var( --theme-highlight-color-70 );--color-primary-70-rgb:var( --theme-highlight-color-70-rgb );--color-primary-80:var( --theme-highlight-color-80 );--color-primary-80-rgb:var( --theme-highlight-color-80-rgb );--color-primary-90:var( --theme-highlight-color-90 );--color-primary-90-rgb:var( --theme-highlight-color-90-rgb );--color-primary-100:var( --theme-highlight-color-100 );--color-primary-100-rgb:var( --theme-highlight-color-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --theme-highlight-color-70 );--color-accent-dark-rgb:var( --theme-highlight-color-70-rgb );--color-accent-light:var( --theme-highlight-color-30 );--color-accent-light-rgb:var( --theme-highlight-color-30-rgb );--color-accent-0:var( --theme-highlight-color-0 );--color-accent-0-rgb:var( --theme-highlight-color-0-rgb );--color-accent-5:var( --theme-highlight-color-5 );--color-accent-5-rgb:var( --theme-highlight-color-5-rgb );--color-accent-10:var( --theme-highlight-color-10 );--color-accent-10-rgb:var( --theme-highlight-color-10-rgb );--color-accent-20:var( --theme-highlight-color-20 );--color-accent-20-rgb:var( --theme-highlight-color-20-rgb );--color-accent-30:var( --theme-highlight-color-30 );--color-accent-30-rgb:var( --theme-highlight-color-30-rgb );--color-accent-40:var( --theme-highlight-color-40 );--color-accent-40-rgb:var( --theme-highlight-color-40-rgb );--color-accent-50:var( --theme-highlight-color-50 );--color-accent-50-rgb:var( --theme-highlight-color-50-rgb );--color-accent-60:var( --theme-highlight-color-60 );--color-accent-60-rgb:var( --theme-highlight-color-60-rgb );--color-accent-70:var( --theme-highlight-color-70 );--color-accent-70-rgb:var( --theme-highlight-color-70-rgb );--color-accent-80:var( --theme-highlight-color-80 );--color-accent-80-rgb:var( --theme-highlight-color-80-rgb );--color-accent-90:var( --theme-highlight-color-90 );--color-accent-90-rgb:var( --theme-highlight-color-90-rgb );--color-accent-100:var( --theme-highlight-color-100 );--color-accent-100-rgb:var( --theme-highlight-color-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-white );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:var( --studio-gray-10 );--color-sidebar-gridicon-fill:var( --studio-gray-0 );--color-sidebar-menu-selected-background:var( --theme-highlight-color );--color-sidebar-menu-selected-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-selected-text:var( --theme-text-color );--color-sidebar-menu-selected-text-rgb:var( --theme-text-color-rgb );--color-sidebar-menu-hover-background:var( --theme-highlight-color );--color-sidebar-menu-hover-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-hover-text:var( --theme-text-color );--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:#33f078}.color-scheme.is-nightfall,.color-scheme.is-nightfall.is-nav-unification{--color-primary:var( --studio-gray-90 );--color-primary-rgb:var( --studio-gray-90-rgb );--color-primary-dark:var( --studio-gray-70 );--color-primary-dark-rgb:var( --studio-gray-70-rgb );--color-primary-light:var( --studio-gray-30 );--color-primary-light-rgb:var( --studio-gray-30-rgb );--color-primary-0:var( --studio-gray-0 );--color-primary-0-rgb:var( --studio-gray-0-rgb );--color-primary-5:var( --studio-gray-5 );--color-primary-5-rgb:var( --studio-gray-5-rgb );--color-primary-10:var( --studio-gray-10 );--color-primary-10-rgb:var( --studio-gray-10-rgb );--color-primary-20:var( --studio-gray-20 );--color-primary-20-rgb:var( --studio-gray-20-rgb );--color-primary-30:var( --studio-gray-30 );--color-primary-30-rgb:var( --studio-gray-30-rgb );--color-primary-40:var( --studio-gray-40 );--color-primary-40-rgb:var( --studio-gray-40-rgb );--color-primary-50:var( --studio-gray-50 );--color-primary-50-rgb:var( --studio-gray-50-rgb );--color-primary-60:var( --studio-gray-60 );--color-primary-60-rgb:var( --studio-gray-60-rgb );--color-primary-70:var( --studio-gray-70 );--color-primary-70-rgb:var( --studio-gray-70-rgb );--color-primary-80:var( --studio-gray-80 );--color-primary-80-rgb:var( --studio-gray-80-rgb );--color-primary-90:var( --studio-gray-90 );--color-primary-90-rgb:var( --studio-gray-90-rgb );--color-primary-100:var( --studio-gray-100 );--color-primary-100-rgb:var( --studio-gray-100-rgb );--color-accent:var( --studio-blue-50 );--color-accent-rgb:var( --studio-blue-50-rgb );--color-accent-dark:var( --studio-blue-70 );--color-accent-dark-rgb:var( --studio-blue-70-rgb );--color-accent-light:var( --studio-blue-30 );--color-accent-light-rgb:var( --studio-blue-30-rgb );--color-accent-0:var( --studio-blue-0 );--color-accent-0-rgb:var( --studio-blue-0-rgb );--color-accent-5:var( --studio-blue-5 );--color-accent-5-rgb:var( --studio-blue-5-rgb );--color-accent-10:var( --studio-blue-10 );--color-accent-10-rgb:var( --studio-blue-10-rgb );--color-accent-20:var( --studio-blue-20 );--color-accent-20-rgb:var( --studio-blue-20-rgb );--color-accent-30:var( --studio-blue-30 );--color-accent-30-rgb:var( --studio-blue-30-rgb );--color-accent-40:var( --studio-blue-40 );--color-accent-40-rgb:var( --studio-blue-40-rgb );--color-accent-50:var( --studio-blue-50 );--color-accent-50-rgb:var( --studio-blue-50-rgb );--color-accent-60:var( --studio-blue-60 );--color-accent-60-rgb:var( --studio-blue-60-rgb );--color-accent-70:var( --studio-blue-70 );--color-accent-70-rgb:var( --studio-blue-70-rgb );--color-accent-80:var( --studio-blue-80 );--color-accent-80-rgb:var( --studio-blue-80-rgb );--color-accent-90:var( --studio-blue-90 );--color-accent-90-rgb:var( --studio-blue-90-rgb );--color-accent-100:var( --studio-blue-100 );--color-accent-100-rgb:var( --studio-blue-100-rgb );--color-link:var( --studio-blue-50 );--color-link-rgb:var( --studio-blue-50-rgb );--color-link-dark:var( --studio-blue-70 );--color-link-dark-rgb:var( --studio-blue-70-rgb );--color-link-light:var( --studio-blue-30 );--color-link-light-rgb:var( --studio-blue-30-rgb );--color-link-0:var( --studio-blue-0 );--color-link-0-rgb:var( --studio-blue-0-rgb );--color-link-5:var( --studio-blue-5 );--color-link-5-rgb:var( --studio-blue-5-rgb );--color-link-10:var( --studio-blue-10 );--color-link-10-rgb:var( --studio-blue-10-rgb );--color-link-20:var( --studio-blue-20 );--color-link-20-rgb:var( --studio-blue-20-rgb );--color-link-30:var( --studio-blue-30 );--color-link-30-rgb:var( --studio-blue-30-rgb );--color-link-40:var( --studio-blue-40 );--color-link-40-rgb:var( --studio-blue-40-rgb );--color-link-50:var( --studio-blue-50 );--color-link-50-rgb:var( --studio-blue-50-rgb );--color-link-60:var( --studio-blue-60 );--color-link-60-rgb:var( --studio-blue-60-rgb );--color-link-70:var( --studio-blue-70 );--color-link-70-rgb:var( --studio-blue-70-rgb );--color-link-80:var( --studio-blue-80 );--color-link-80-rgb:var( --studio-blue-80-rgb );--color-link-90:var( --studio-blue-90 );--color-link-90-rgb:var( --studio-blue-90-rgb );--color-link-100:var( --studio-blue-100 );--color-link-100-rgb:var( --studio-blue-100-rgb );--color-masterbar-background:var( --studio-blue-100 );--color-masterbar-border:var( --studio-blue-100 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-blue-90 );--color-masterbar-item-active-background:var( --studio-blue-80 );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-40 );--color-masterbar-unread-dot-background:var( --color-accent-30 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --studio-blue-80 );--color-sidebar-background-rgb:var( --studio-blue-80-rgb );--color-sidebar-border:var( --studio-blue-90 );--color-sidebar-text:var( --studio-blue-5 );--color-sidebar-text-rgb:var( --studio-blue-5-rgb );--color-sidebar-text-alternative:var( --studio-blue-20 );--color-sidebar-gridicon-fill:var( --studio-blue-10 );--color-sidebar-menu-selected-background:var( --studio-blue-100 );--color-sidebar-menu-selected-background-rgb:var( --studio-blue-100-rgb );--color-sidebar-menu-selected-text:var( --studio-white );--color-sidebar-menu-selected-text-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-background:var( --studio-blue-70 );--color-sidebar-menu-hover-background-rgb:var( --studio-blue-70-rgb );--color-sidebar-menu-hover-text:var( --studio-white );--color-sidebar-submenu-background:var( --studio-blue-90 );--color-sidebar-submenu-text:var( --studio-white );--color-sidebar-submenu-hover-text:var( --studio-blue-20 );--color-sidebar-submenu-selected-text:var( --studio-white )}.color-scheme.is-ocean,.color-scheme.is-ocean.is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#738e96;--theme-base-color-rgb:115,142,150;--theme-submenu-text-color:#d5dde0;--theme-submenu-background-color:#627c83;--theme-icon-color:#f2fcff;--theme-highlight-color:#9ebaa0;--theme-highlight-color-rgb:158,186,160;--theme-notification-color:#aa9d88;--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --studio-celadon-70 );--color-primary-dark-rgb:var( --studio-celadon-70-rgb );--color-primary-light:var( --studio-celadon-30 );--color-primary-light-rgb:var( --studio-celadon-30-rgb );--color-primary-0:var( --studio-celadon-0 );--color-primary-0-rgb:var( --studio-celadon-0-rgb );--color-primary-5:var( --studio-celadon-5 );--color-primary-5-rgb:var( --studio-celadon-5-rgb );--color-primary-10:var( --studio-celadon-10 );--color-primary-10-rgb:var( --studio-celadon-10-rgb );--color-primary-20:var( --studio-celadon-20 );--color-primary-20-rgb:var( --studio-celadon-20-rgb );--color-primary-30:var( --studio-celadon-30 );--color-primary-30-rgb:var( --studio-celadon-30-rgb );--color-primary-40:var( --studio-celadon-40 );--color-primary-40-rgb:var( --studio-celadon-40-rgb );--color-primary-50:var( --studio-celadon-50 );--color-primary-50-rgb:var( --studio-celadon-50-rgb );--color-primary-60:var( --studio-celadon-60 );--color-primary-60-rgb:var( --studio-celadon-60-rgb );--color-primary-70:var( --studio-celadon-70 );--color-primary-70-rgb:var( --studio-celadon-70-rgb );--color-primary-80:var( --studio-celadon-80 );--color-primary-80-rgb:var( --studio-celadon-80-rgb );--color-primary-90:var( --studio-celadon-90 );--color-primary-90-rgb:var( --studio-celadon-90-rgb );--color-primary-100:var( --studio-celadon-100 );--color-primary-100-rgb:var( --studio-celadon-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --studio-celadon-70 );--color-accent-dark-rgb:var( --studio-celadon-70-rgb );--color-accent-light:var( --studio-celadon-30 );--color-accent-light-rgb:var( --studio-celadon-30-rgb );--color-accent-0:var( --studio-celadon-0 );--color-accent-0-rgb:var( --studio-celadon-0-rgb );--color-accent-5:var( --studio-celadon-5 );--color-accent-5-rgb:var( --studio-celadon-5-rgb );--color-accent-10:var( --studio-celadon-10 );--color-accent-10-rgb:var( --studio-celadon-10-rgb );--color-accent-20:var( --studio-celadon-20 );--color-accent-20-rgb:var( --studio-celadon-20-rgb );--color-accent-30:var( --studio-celadon-30 );--color-accent-30-rgb:var( --studio-celadon-30-rgb );--color-accent-40:var( --studio-celadon-40 );--color-accent-40-rgb:var( --studio-celadon-40-rgb );--color-accent-50:var( --studio-celadon-50 );--color-accent-50-rgb:var( --studio-celadon-50-rgb );--color-accent-60:var( --studio-celadon-60 );--color-accent-60-rgb:var( --studio-celadon-60-rgb );--color-accent-70:var( --studio-celadon-70 );--color-accent-70-rgb:var( --studio-celadon-70-rgb );--color-accent-80:var( --studio-celadon-80 );--color-accent-80-rgb:var( --studio-celadon-80-rgb );--color-accent-90:var( --studio-celadon-90 );--color-accent-90-rgb:var( --studio-celadon-90-rgb );--color-accent-100:var( --studio-celadon-100 );--color-accent-100-rgb:var( --studio-celadon-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-white );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:var( --theme-text-color );--color-sidebar-gridicon-fill:var( --theme-icon-color );--color-sidebar-menu-selected-background:var( --theme-highlight-color );--color-sidebar-menu-selected-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-selected-text:var( --theme-text-color );--color-sidebar-menu-selected-text-rgb:var( --theme-text-color-rgb );--color-sidebar-menu-hover-background:var( --theme-highlight-color );--color-sidebar-menu-hover-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-hover-text:var( --theme-text-color );--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var( --theme-highlight-color )}.color-scheme.is-powder-snow,.color-scheme.is-powder-snow.is-nav-unification{--color-primary:var( --studio-gray-90 );--color-primary-rgb:var( --studio-gray-90-rgb );--color-primary-dark:var( --studio-gray-70 );--color-primary-dark-rgb:var( --studio-gray-70-rgb );--color-primary-light:var( --studio-gray-30 );--color-primary-light-rgb:var( --studio-gray-30-rgb );--color-primary-0:var( --studio-gray-0 );--color-primary-0-rgb:var( --studio-gray-0-rgb );--color-primary-5:var( --studio-gray-5 );--color-primary-5-rgb:var( --studio-gray-5-rgb );--color-primary-10:var( --studio-gray-10 );--color-primary-10-rgb:var( --studio-gray-10-rgb );--color-primary-20:var( --studio-gray-20 );--color-primary-20-rgb:var( --studio-gray-20-rgb );--color-primary-30:var( --studio-gray-30 );--color-primary-30-rgb:var( --studio-gray-30-rgb );--color-primary-40:var( --studio-gray-40 );--color-primary-40-rgb:var( --studio-gray-40-rgb );--color-primary-50:var( --studio-gray-50 );--color-primary-50-rgb:var( --studio-gray-50-rgb );--color-primary-60:var( --studio-gray-60 );--color-primary-60-rgb:var( --studio-gray-60-rgb );--color-primary-70:var( --studio-gray-70 );--color-primary-70-rgb:var( --studio-gray-70-rgb );--color-primary-80:var( --studio-gray-80 );--color-primary-80-rgb:var( --studio-gray-80-rgb );--color-primary-90:var( --studio-gray-90 );--color-primary-90-rgb:var( --studio-gray-90-rgb );--color-primary-100:var( --studio-gray-100 );--color-primary-100-rgb:var( --studio-gray-100-rgb );--color-accent:var( --studio-blue-50 );--color-accent-rgb:var( --studio-blue-50-rgb );--color-accent-dark:var( --studio-blue-70 );--color-accent-dark-rgb:var( --studio-blue-70-rgb );--color-accent-light:var( --studio-blue-30 );--color-accent-light-rgb:var( --studio-blue-30-rgb );--color-accent-0:var( --studio-blue-0 );--color-accent-0-rgb:var( --studio-blue-0-rgb );--color-accent-5:var( --studio-blue-5 );--color-accent-5-rgb:var( --studio-blue-5-rgb );--color-accent-10:var( --studio-blue-10 );--color-accent-10-rgb:var( --studio-blue-10-rgb );--color-accent-20:var( --studio-blue-20 );--color-accent-20-rgb:var( --studio-blue-20-rgb );--color-accent-30:var( --studio-blue-30 );--color-accent-30-rgb:var( --studio-blue-30-rgb );--color-accent-40:var( --studio-blue-40 );--color-accent-40-rgb:var( --studio-blue-40-rgb );--color-accent-50:var( --studio-blue-50 );--color-accent-50-rgb:var( --studio-blue-50-rgb );--color-accent-60:var( --studio-blue-60 );--color-accent-60-rgb:var( --studio-blue-60-rgb );--color-accent-70:var( --studio-blue-70 );--color-accent-70-rgb:var( --studio-blue-70-rgb );--color-accent-80:var( --studio-blue-80 );--color-accent-80-rgb:var( --studio-blue-80-rgb );--color-accent-90:var( --studio-blue-90 );--color-accent-90-rgb:var( --studio-blue-90-rgb );--color-accent-100:var( --studio-blue-100 );--color-accent-100-rgb:var( --studio-blue-100-rgb );--color-link:var( --studio-blue-50 );--color-link-rgb:var( --studio-blue-50-rgb );--color-link-dark:var( --studio-blue-70 );--color-link-dark-rgb:var( --studio-blue-70-rgb );--color-link-light:var( --studio-blue-30 );--color-link-light-rgb:var( --studio-blue-30-rgb );--color-link-0:var( --studio-blue-0 );--color-link-0-rgb:var( --studio-blue-0-rgb );--color-link-5:var( --studio-blue-5 );--color-link-5-rgb:var( --studio-blue-5-rgb );--color-link-10:var( --studio-blue-10 );--color-link-10-rgb:var( --studio-blue-10-rgb );--color-link-20:var( --studio-blue-20 );--color-link-20-rgb:var( --studio-blue-20-rgb );--color-link-30:var( --studio-blue-30 );--color-link-30-rgb:var( --studio-blue-30-rgb );--color-link-40:var( --studio-blue-40 );--color-link-40-rgb:var( --studio-blue-40-rgb );--color-link-50:var( --studio-blue-50 );--color-link-50-rgb:var( --studio-blue-50-rgb );--color-link-60:var( --studio-blue-60 );--color-link-60-rgb:var( --studio-blue-60-rgb );--color-link-70:var( --studio-blue-70 );--color-link-70-rgb:var( --studio-blue-70-rgb );--color-link-80:var( --studio-blue-80 );--color-link-80-rgb:var( --studio-blue-80-rgb );--color-link-90:var( --studio-blue-90 );--color-link-90-rgb:var( --studio-blue-90-rgb );--color-link-100:var( --studio-blue-100 );--color-link-100-rgb:var( --studio-blue-100-rgb );--color-masterbar-background:var( --studio-gray-100 );--color-masterbar-border:var( --studio-gray-90 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-gray-80 );--color-masterbar-item-active-background:var( --studio-gray-70 );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-40 );--color-masterbar-unread-dot-background:var( --color-accent-30 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --studio-gray-5 );--color-sidebar-background-rgb:var( --studio-gray-5-rgb );--color-sidebar-border:var( --studio-gray-10 );--color-sidebar-text:var( --studio-gray-80 );--color-sidebar-text-rgb:var( --studio-gray-80-rgb );--color-sidebar-text-alternative:var( --studio-gray-60 );--color-sidebar-gridicon-fill:var( --studio-gray-50 );--color-sidebar-menu-selected-background:var( --studio-gray-60 );--color-sidebar-menu-selected-background-rgb:var( --studio-gray-60-rgb );--color-sidebar-menu-selected-text:var( --studio-white );--color-sidebar-menu-selected-text-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-background:var( --color-surface );--color-sidebar-menu-hover-background-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-text:var( --studio-blue-60 );--color-sidebar-submenu-background:var( --studio-gray-10 );--color-sidebar-submenu-text:var( --studio-gray-80 );--color-sidebar-submenu-hover-text:var( --studio-blue-60 );--color-sidebar-submenu-selected-text:var( --studio-gray-80 )}.color-scheme.is-sakura,.color-scheme.is-sakura.is-nav-unification{--color-primary:var( --studio-celadon-50 );--color-primary-rgb:var( --studio-celadon-50-rgb );--color-primary-dark:var( --studio-celadon-70 );--color-primary-dark-rgb:var( --studio-celadon-70-rgb );--color-primary-light:var( --studio-celadon-30 );--color-primary-light-rgb:var( --studio-celadon-30-rgb );--color-primary-0:var( --studio-celadon-0 );--color-primary-0-rgb:var( --studio-celadon-0-rgb );--color-primary-5:var( --studio-celadon-5 );--color-primary-5-rgb:var( --studio-celadon-5-rgb );--color-primary-10:var( --studio-celadon-10 );--color-primary-10-rgb:var( --studio-celadon-10-rgb );--color-primary-20:var( --studio-celadon-20 );--color-primary-20-rgb:var( --studio-celadon-20-rgb );--color-primary-30:var( --studio-celadon-30 );--color-primary-30-rgb:var( --studio-celadon-30-rgb );--color-primary-40:var( --studio-celadon-40 );--color-primary-40-rgb:var( --studio-celadon-40-rgb );--color-primary-50:var( --studio-celadon-50 );--color-primary-50-rgb:var( --studio-celadon-50-rgb );--color-primary-60:var( --studio-celadon-60 );--color-primary-60-rgb:var( --studio-celadon-60-rgb );--color-primary-70:var( --studio-celadon-70 );--color-primary-70-rgb:var( --studio-celadon-70-rgb );--color-primary-80:var( --studio-celadon-80 );--color-primary-80-rgb:var( --studio-celadon-80-rgb );--color-primary-90:var( --studio-celadon-90 );--color-primary-90-rgb:var( --studio-celadon-90-rgb );--color-primary-100:var( --studio-celadon-100 );--color-primary-100-rgb:var( --studio-celadon-100-rgb );--color-accent:var( --studio-blue-50 );--color-accent-rgb:var( --studio-blue-50-rgb );--color-accent-dark:var( --studio-blue-70 );--color-accent-dark-rgb:var( --studio-blue-70-rgb );--color-accent-light:var( --studio-blue-30 );--color-accent-light-rgb:var( --studio-blue-30-rgb );--color-accent-0:var( --studio-blue-0 );--color-accent-0-rgb:var( --studio-blue-0-rgb );--color-accent-5:var( --studio-blue-5 );--color-accent-5-rgb:var( --studio-blue-5-rgb );--color-accent-10:var( --studio-blue-10 );--color-accent-10-rgb:var( --studio-blue-10-rgb );--color-accent-20:var( --studio-blue-20 );--color-accent-20-rgb:var( --studio-blue-20-rgb );--color-accent-30:var( --studio-blue-30 );--color-accent-30-rgb:var( --studio-blue-30-rgb );--color-accent-40:var( --studio-blue-40 );--color-accent-40-rgb:var( --studio-blue-40-rgb );--color-accent-50:var( --studio-blue-50 );--color-accent-50-rgb:var( --studio-blue-50-rgb );--color-accent-60:var( --studio-blue-60 );--color-accent-60-rgb:var( --studio-blue-60-rgb );--color-accent-70:var( --studio-blue-70 );--color-accent-70-rgb:var( --studio-blue-70-rgb );--color-accent-80:var( --studio-blue-80 );--color-accent-80-rgb:var( --studio-blue-80-rgb );--color-accent-90:var( --studio-blue-90 );--color-accent-90-rgb:var( --studio-blue-90-rgb );--color-accent-100:var( --studio-blue-100 );--color-accent-100-rgb:var( --studio-blue-100-rgb );--color-link:var( --studio-celadon-50 );--color-link-rgb:var( --studio-celadon-50-rgb );--color-link-dark:var( --studio-celadon-70 );--color-link-dark-rgb:var( --studio-celadon-70-rgb );--color-link-light:var( --studio-celadon-30 );--color-link-light-rgb:var( --studio-celadon-30-rgb );--color-link-0:var( --studio-celadon-0 );--color-link-0-rgb:var( --studio-celadon-0-rgb );--color-link-5:var( --studio-celadon-5 );--color-link-5-rgb:var( --studio-celadon-5-rgb );--color-link-10:var( --studio-celadon-10 );--color-link-10-rgb:var( --studio-celadon-10-rgb );--color-link-20:var( --studio-celadon-20 );--color-link-20-rgb:var( --studio-celadon-20-rgb );--color-link-30:var( --studio-celadon-30 );--color-link-30-rgb:var( --studio-celadon-30-rgb );--color-link-40:var( --studio-celadon-40 );--color-link-40-rgb:var( --studio-celadon-40-rgb );--color-link-50:var( --studio-celadon-50 );--color-link-50-rgb:var( --studio-celadon-50-rgb );--color-link-60:var( --studio-celadon-60 );--color-link-60-rgb:var( --studio-celadon-60-rgb );--color-link-70:var( --studio-celadon-70 );--color-link-70-rgb:var( --studio-celadon-70-rgb );--color-link-80:var( --studio-celadon-80 );--color-link-80-rgb:var( --studio-celadon-80-rgb );--color-link-90:var( --studio-celadon-90 );--color-link-90-rgb:var( --studio-celadon-90-rgb );--color-link-100:var( --studio-celadon-100 );--color-link-100-rgb:var( --studio-celadon-100-rgb );--color-masterbar-background:var( --studio-celadon-70 );--color-masterbar-border:var( --studio-celadon-80 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-celadon-80 );--color-masterbar-item-active-background:var( --studio-celadon-90 );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --studio-pink-5 );--color-sidebar-background-rgb:var( --studio-pink-5-rgb );--color-sidebar-border:var( --studio-pink-10 );--color-sidebar-text:var( --studio-pink-80 );--color-sidebar-text-rgb:var( --studio-pink-80-rgb );--color-sidebar-text-alternative:var( --studio-pink-60 );--color-sidebar-gridicon-fill:var( --studio-pink-70 );--color-sidebar-menu-selected-background:var( --studio-blue-50 );--color-sidebar-menu-selected-background-rgb:var( --studio-blue-50-rgb );--color-sidebar-menu-selected-text:var( --studio-white );--color-sidebar-menu-selected-text-rgb:var( --studio-white-rgb );--color-sidebar-menu-hover-background:var( --studio-pink-10 );--color-sidebar-menu-hover-background-rgb:var( --studio-pink-10-rgb );--color-sidebar-menu-hover-text:var( --studio-pink-90 );--color-sidebar-submenu-background:var( --studio-pink-90 );--color-sidebar-submenu-text:var( --studio-pink-0 );--color-sidebar-submenu-hover-text:var( --studio-blue-20 );--color-sidebar-submenu-selected-text:var( --studio-pink-0 )}.color-scheme.is-sunrise,.color-scheme.is-sunrise.is-nav-unification{--theme-text-color:#fff;--theme-text-color-rgb:255,255,255;--theme-base-color:#cf4944;--theme-base-color-rgb:207,73,68;--theme-submenu-text-color:#f1c8c7;--theme-submenu-background-color:#be3631;--theme-submenu-hover-text-color:#f7e3d3;--theme-icon-color:#f3f1f1;--theme-highlight-color:#dd823b;--theme-highlight-color-rgb:221,130,59;--theme-notification-color:#ccaf0b;--color-primary:var( --theme-highlight-color );--color-primary-rgb:var( --theme-highlight-color-rgb );--color-primary-dark:var( --studio-orange-70 );--color-primary-dark-rgb:var( --studio-orange-70-rgb );--color-primary-light:var( --studio-orange-30 );--color-primary-light-rgb:var( --studio-orange-30-rgb );--color-primary-0:var( --studio-orange-0 );--color-primary-0-rgb:var( --studio-orange-0-rgb );--color-primary-5:var( --studio-orange-5 );--color-primary-5-rgb:var( --studio-orange-5-rgb );--color-primary-10:var( --studio-orange-10 );--color-primary-10-rgb:var( --studio-orange-10-rgb );--color-primary-20:var( --studio-orange-20 );--color-primary-20-rgb:var( --studio-orange-20-rgb );--color-primary-30:var( --studio-orange-30 );--color-primary-30-rgb:var( --studio-orange-30-rgb );--color-primary-40:var( --studio-orange-40 );--color-primary-40-rgb:var( --studio-orange-40-rgb );--color-primary-50:var( --studio-orange-50 );--color-primary-50-rgb:var( --studio-orange-50-rgb );--color-primary-60:var( --studio-orange-60 );--color-primary-60-rgb:var( --studio-orange-60-rgb );--color-primary-70:var( --studio-orange-70 );--color-primary-70-rgb:var( --studio-orange-70-rgb );--color-primary-80:var( --studio-orange-80 );--color-primary-80-rgb:var( --studio-orange-80-rgb );--color-primary-90:var( --studio-orange-90 );--color-primary-90-rgb:var( --studio-orange-90-rgb );--color-primary-100:var( --studio-orange-100 );--color-primary-100-rgb:var( --studio-orange-100-rgb );--color-accent:var( --theme-highlight-color );--color-accent-rgb:var( --theme-highlight-color-rgb );--color-accent-dark:var( --studio-orange-70 );--color-accent-dark-rgb:var( --studio-orange-70-rgb );--color-accent-light:var( --studio-orange-30 );--color-accent-light-rgb:var( --studio-orange-30-rgb );--color-accent-0:var( --studio-orange-0 );--color-accent-0-rgb:var( --studio-orange-0-rgb );--color-accent-5:var( --studio-orange-5 );--color-accent-5-rgb:var( --studio-orange-5-rgb );--color-accent-10:var( --studio-orange-10 );--color-accent-10-rgb:var( --studio-orange-10-rgb );--color-accent-20:var( --studio-orange-20 );--color-accent-20-rgb:var( --studio-orange-20-rgb );--color-accent-30:var( --studio-orange-30 );--color-accent-30-rgb:var( --studio-orange-30-rgb );--color-accent-40:var( --studio-orange-40 );--color-accent-40-rgb:var( --studio-orange-40-rgb );--color-accent-50:var( --studio-orange-50 );--color-accent-50-rgb:var( --studio-orange-50-rgb );--color-accent-60:var( --studio-orange-60 );--color-accent-60-rgb:var( --studio-orange-60-rgb );--color-accent-70:var( --studio-orange-70 );--color-accent-70-rgb:var( --studio-orange-70-rgb );--color-accent-80:var( --studio-orange-80 );--color-accent-80-rgb:var( --studio-orange-80-rgb );--color-accent-90:var( --studio-orange-90 );--color-accent-90-rgb:var( --studio-orange-90-rgb );--color-accent-100:var( --studio-orange-100 );--color-accent-100-rgb:var( --studio-orange-100-rgb );--color-masterbar-background:var( --theme-base-color );--color-masterbar-border:var( --theme-submenu-background-color );--color-masterbar-text:var( --studio-white );--color-masterbar-unread-dot-background:var( --theme-notification-color );--color-masterbar-item-hover-background:var( --theme-submenu-background-color );--color-masterbar-item-active-background:var( --theme-submenu-background-color );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --theme-base-color );--color-sidebar-background-rgb:var( --theme-base-color-rgb );--color-sidebar-border:var( --theme-submenu-background-color );--color-sidebar-text:var( --theme-text-color );--color-sidebar-text-rgb:var( --theme-text-color-rgb );--color-sidebar-text-alternative:var( --studio-gray-0 );--color-sidebar-gridicon-fill:var( --theme-icon-color );--color-sidebar-menu-selected-background:var( --theme-highlight-color );--color-sidebar-menu-selected-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-selected-text:var( --theme-text-color );--color-sidebar-menu-selected-text-rgb:var( --theme-text-color-rgb );--color-sidebar-menu-hover-background:var( --theme-highlight-color );--color-sidebar-menu-hover-background-rgb:var( --theme-highlight-color-rgb );--color-sidebar-menu-hover-text:var( --theme-text-color );--color-sidebar-submenu-background:var( --theme-submenu-background-color );--color-sidebar-submenu-text:var( --theme-submenu-text-color );--color-sidebar-submenu-hover-background:transparent;--color-sidebar-submenu-hover-text:var( --theme-submenu-hover-text-color )}.color-scheme.is-sunset,.color-scheme.is-sunset.is-nav-unification{--color-primary:var( --studio-red-50 );--color-primary-rgb:var( --studio-red-50-rgb );--color-primary-dark:var( --studio-red-70 );--color-primary-dark-rgb:var( --studio-red-70-rgb );--color-primary-light:var( --studio-red-30 );--color-primary-light-rgb:var( --studio-red-30-rgb );--color-primary-0:var( --studio-red-0 );--color-primary-0-rgb:var( --studio-red-0-rgb );--color-primary-5:var( --studio-red-5 );--color-primary-5-rgb:var( --studio-red-5-rgb );--color-primary-10:var( --studio-red-10 );--color-primary-10-rgb:var( --studio-red-10-rgb );--color-primary-20:var( --studio-red-20 );--color-primary-20-rgb:var( --studio-red-20-rgb );--color-primary-30:var( --studio-red-30 );--color-primary-30-rgb:var( --studio-red-30-rgb );--color-primary-40:var( --studio-red-40 );--color-primary-40-rgb:var( --studio-red-40-rgb );--color-primary-50:var( --studio-red-50 );--color-primary-50-rgb:var( --studio-red-50-rgb );--color-primary-60:var( --studio-red-60 );--color-primary-60-rgb:var( --studio-red-60-rgb );--color-primary-70:var( --studio-red-70 );--color-primary-70-rgb:var( --studio-red-70-rgb );--color-primary-80:var( --studio-red-80 );--color-primary-80-rgb:var( --studio-red-80-rgb );--color-primary-90:var( --studio-red-90 );--color-primary-90-rgb:var( --studio-red-90-rgb );--color-primary-100:var( --studio-red-100 );--color-primary-100-rgb:var( --studio-red-100-rgb );--color-accent:var( --studio-orange-50 );--color-accent-rgb:var( --studio-orange-50-rgb );--color-accent-dark:var( --studio-orange-70 );--color-accent-dark-rgb:var( --studio-orange-70-rgb );--color-accent-light:var( --studio-orange-30 );--color-accent-light-rgb:var( --studio-orange-30-rgb );--color-accent-0:var( --studio-orange-0 );--color-accent-0-rgb:var( --studio-orange-0-rgb );--color-accent-5:var( --studio-orange-5 );--color-accent-5-rgb:var( --studio-orange-5-rgb );--color-accent-10:var( --studio-orange-10 );--color-accent-10-rgb:var( --studio-orange-10-rgb );--color-accent-20:var( --studio-orange-20 );--color-accent-20-rgb:var( --studio-orange-20-rgb );--color-accent-30:var( --studio-orange-30 );--color-accent-30-rgb:var( --studio-orange-30-rgb );--color-accent-40:var( --studio-orange-40 );--color-accent-40-rgb:var( --studio-orange-40-rgb );--color-accent-50:var( --studio-orange-50 );--color-accent-50-rgb:var( --studio-orange-50-rgb );--color-accent-60:var( --studio-orange-60 );--color-accent-60-rgb:var( --studio-orange-60-rgb );--color-accent-70:var( --studio-orange-70 );--color-accent-70-rgb:var( --studio-orange-70-rgb );--color-accent-80:var( --studio-orange-80 );--color-accent-80-rgb:var( --studio-orange-80-rgb );--color-accent-90:var( --studio-orange-90 );--color-accent-90-rgb:var( --studio-orange-90-rgb );--color-accent-100:var( --studio-orange-100 );--color-accent-100-rgb:var( --studio-orange-100-rgb );--color-link:var( --studio-orange-50 );--color-link-rgb:var( --studio-orange-50-rgb );--color-link-dark:var( --studio-orange-70 );--color-link-dark-rgb:var( --studio-orange-70-rgb );--color-link-light:var( --studio-orange-30 );--color-link-light-rgb:var( --studio-orange-30-rgb );--color-link-0:var( --studio-orange-0 );--color-link-0-rgb:var( --studio-orange-0-rgb );--color-link-5:var( --studio-orange-5 );--color-link-5-rgb:var( --studio-orange-5-rgb );--color-link-10:var( --studio-orange-10 );--color-link-10-rgb:var( --studio-orange-10-rgb );--color-link-20:var( --studio-orange-20 );--color-link-20-rgb:var( --studio-orange-20-rgb );--color-link-30:var( --studio-orange-30 );--color-link-30-rgb:var( --studio-orange-30-rgb );--color-link-40:var( --studio-orange-40 );--color-link-40-rgb:var( --studio-orange-40-rgb );--color-link-50:var( --studio-orange-50 );--color-link-50-rgb:var( --studio-orange-50-rgb );--color-link-60:var( --studio-orange-60 );--color-link-60-rgb:var( --studio-orange-60-rgb );--color-link-70:var( --studio-orange-70 );--color-link-70-rgb:var( --studio-orange-70-rgb );--color-link-80:var( --studio-orange-80 );--color-link-80-rgb:var( --studio-orange-80-rgb );--color-link-90:var( --studio-orange-90 );--color-link-90-rgb:var( --studio-orange-90-rgb );--color-link-100:var( --studio-orange-100 );--color-link-100-rgb:var( --studio-orange-100-rgb );--color-masterbar-background:var( --studio-red-80 );--color-masterbar-border:var( --studio-red-80 );--color-masterbar-text:var( --studio-white );--color-masterbar-item-hover-background:var( --studio-red-90 );--color-masterbar-item-active-background:var( --studio-red-100 );--color-masterbar-item-new-editor-background:var( --studio-gray-50 );--color-masterbar-item-new-editor-hover-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --studio-red-70 );--color-sidebar-background-rgb:var( --studio-red-70-rgb );--color-sidebar-border:var( --studio-red-80 );--color-sidebar-text:var( --studio-white );--color-sidebar-text-rgb:var( --studio-white-rgb );--color-sidebar-text-alternative:var( --studio-red-10 );--color-sidebar-gridicon-fill:var( --studio-red-5 );--color-sidebar-menu-selected-background:var( --studio-yellow-20 );--color-sidebar-menu-selected-background-rgb:var( --studio-yellow-20-rgb );--color-sidebar-menu-selected-text:var( --studio-yellow-80 );--color-sidebar-menu-selected-text-rgb:var( --studio-yellow-80-rgb );--color-sidebar-menu-hover-background:var( --studio-red-80 );--color-sidebar-menu-hover-background-rgb:var( --studio-red-80-rgb );--color-sidebar-menu-hover-text:var( --studio-white );--color-sidebar-submenu-background:var( --studio-red-60 );--color-sidebar-submenu-text:var( --studio-white );--color-sidebar-submenu-hover-text:var( --studio-yellow-20 );--color-sidebar-submenu-selected-text:var( --studio-white )}.color-scheme.is-jetpack-cloud,.theme-jetpack-cloud{--color-primary:var( --studio-black );--color-primary-rgb:var( --studio-black-rgb );--color-primary-dark:var( --studio-gray-70 );--color-primary-dark-rgb:var( --studio-gray-70-rgb );--color-primary-light:var( --studio-gray-30 );--color-primary-light-rgb:var( --studio-gray-30-rgb );--color-primary-0:var( --studio-gray-0 );--color-primary-0-rgb:var( --studio-gray-0-rgb );--color-primary-5:var( --studio-gray-5 );--color-primary-5-rgb:var( --studio-gray-5-rgb );--color-primary-10:var( --studio-gray-10 );--color-primary-10-rgb:var( --studio-gray-10-rgb );--color-primary-20:var( --studio-gray-20 );--color-primary-20-rgb:var( --studio-gray-20-rgb );--color-primary-30:var( --studio-gray-30 );--color-primary-30-rgb:var( --studio-gray-30-rgb );--color-primary-40:var( --studio-gray-40 );--color-primary-40-rgb:var( --studio-gray-40-rgb );--color-primary-50:var( --studio-gray-50 );--color-primary-50-rgb:var( --studio-gray-rgb );--color-primary-60:var( --studio-gray-60 );--color-primary-60-rgb:var( --studio-gray-60-rgb );--color-primary-70:var( --studio-gray-70 );--color-primary-70-rgb:var( --studio-gray-70-rgb );--color-primary-80:var( --studio-gray-80 );--color-primary-80-rgb:var( --studio-gray-80-rgb );--color-primary-90:var( --studio-gray-90 );--color-primary-90-rgb:var( --studio-gray-90-rgb );--color-primary-100:var( --studio-gray-100 );--color-primary-100-rgb:var( --studio-gray-100-rgb );--color-accent:var( --studio-black );--color-accent-rgb:var( --studio-black-rgb );--color-accent-dark:var( --studio-gray-70 );--color-accent-dark-rgb:var( --studio-gray-70-rgb );--color-accent-light:var( --studio-gray-30 );--color-accent-light-rgb:var( --studio-gray-30-rgb );--color-accent-0:var( --studio-gray-0 );--color-accent-0-rgb:var( --studio-gray-0-rgb );--color-accent-5:var( --studio-gray-5 );--color-accent-5-rgb:var( --studio-gray-5-rgb );--color-accent-10:var( --studio-gray-10 );--color-accent-10-rgb:var( --studio-gray-10-rgb );--color-accent-20:var( --studio-gray-20 );--color-accent-20-rgb:var( --studio-gray-20-rgb );--color-accent-30:var( --studio-gray-30 );--color-accent-30-rgb:var( --studio-gray-30-rgb );--color-accent-40:var( --studio-gray-40 );--color-accent-40-rgb:var( --studio-gray-40-rgb );--color-accent-50:var( --studio-gray-50 );--color-accent-50-rgb:var( --studio-gray-50-rgb );--color-accent-60:var( --studio-gray-60 );--color-accent-60-rgb:var( --studio-gray-60-rgb );--color-accent-70:var( --studio-gray-70 );--color-accent-70-rgb:var( --studio-gray-70-rgb );--color-accent-80:var( --studio-gray-80 );--color-accent-80-rgb:var( --studio-gray-80-rgb );--color-accent-90:var( --studio-gray-90 );--color-accent-90-rgb:var( --studio-gray-90-rgb );--color-accent-100:var( --studio-gray-100 );--color-accent-100-rgb:var( --studio-gray-100-rgb );--color-link:var( --studio-jetpack-green-50 );--color-link-rgb:var( --studio-jetpack-green-50-rgb );--color-link-dark:var( --studio-jetpack-green-70 );--color-link-dark-rgb:var( --studio-jetpack-green-70-rgb );--color-link-light:var( --studio-jetpack-green-30 );--color-link-light-rgb:var( --studio-jetpack-green-30-rgb );--color-link-0:var( --studio-jetpack-green-0 );--color-link-0-rgb:var( --studio-jetpack-green-0-rgb );--color-link-5:var( --studio-jetpack-green-5 );--color-link-5-rgb:var( --studio-jetpack-green-5-rgb );--color-link-10:var( --studio-jetpack-green-10 );--color-link-10-rgb:var( --studio-jetpack-green-10-rgb );--color-link-20:var( --studio-jetpack-green-20 );--color-link-20-rgb:var( --studio-jetpack-green-20-rgb );--color-link-30:var( --studio-jetpack-green-30 );--color-link-30-rgb:var( --studio-jetpack-green-30-rgb );--color-link-40:var( --studio-jetpack-green-40 );--color-link-40-rgb:var( --studio-jetpack-green-40-rgb );--color-link-50:var( --studio-gray-50 );--color-link-50-rgb:var( --studio-gray-50-rgb );--color-link-60:var( --studio-jetpack-green-60 );--color-link-60-rgb:var( --studio-jetpack-green-60-rgb );--color-link-70:var( --studio-jetpack-green-70 );--color-link-70-rgb:var( --studio-jetpack-green-70-rgb );--color-link-80:var( --studio-jetpack-green-80 );--color-link-80-rgb:var( --studio-jetpack-green-80-rgb );--color-link-90:var( --studio-jetpack-green-90 );--color-link-90-rgb:var( --studio-jetpack-green-90-rgb );--color-link-100:var( --studio-jetpack-green-100 );--color-link-100-rgb:var( --studio-jetpack-green-100-rgb );--color-masterbar-background:var( --studio-white );--color-masterbar-border:var( --studio-gray-5 );--color-masterbar-text:var( --studio-gray-50 );--color-masterbar-item-hover-background:var( --studio-white );--color-masterbar-item-active-background:var( --studio-white );--color-masterbar-item-new-editor-background:var( --studio-white );--color-masterbar-item-new-editor-hover-background:var( --studio-white );--color-masterbar-unread-dot-background:var( --color-accent-30 );--color-masterbar-toggle-drafts-editor-background:var( --studio-gray-60 );--color-masterbar-toggle-drafts-editor-hover-background:var( --studio-gray-40 );--color-masterbar-toggle-drafts-editor-border:var( --studio-gray-10 );--color-sidebar-background:var( --studio-white );--color-sidebar-background-rgb:var( --studio-white-rgb );--color-sidebar-border:var( --studio-gray-5 );--color-sidebar-text:var( --studio-gray-60 );--color-sidebar-text-rgb:var( --studio-gray-60-rgb );--color-sidebar-text-alternative:var( --studio-gray-60 );--color-sidebar-gridicon-fill:var( --studio-gray-60 );--color-sidebar-menu-selected-text:var( --studio-gray-90 );--color-sidebar-menu-selected-text-rgb:var( --studio-gray-90-rgb );--color-sidebar-menu-selected-background:var( --studio-gray-0 );--color-sidebar-menu-selected-background-rgb:var( --studio-gray-0-rgb );--color-sidebar-menu-selected-gridicon-fill:var( --studio-jetpack-green-50 );--color-sidebar-menu-hover-text:var( --studio-gray-90 );--color-sidebar-menu-hover-background:var( --studio-gray-0 );--color-sidebar-menu-hover-background-rgb:var( --studio-gray-0-rgb );--color-scary-0:var( --studio-red-0 );--color-scary-5:var( --studio-red-5 );--color-scary-40:var( --studio-red-40 );--color-scary-50:var( --studio-red-50 );--color-scary-60:var( --studio-red-60 );--color-scary-70:var( --studio-red-70 )}.pagination-control{display:flex;justify-content:center;margin:0;width:100%}.pagination-control li{align-items:center;border:none;display:inline-flex;height:18px;margin:auto 4px}.pagination-control li.pagination-control__last-item{height:32px;margin-right:auto}.pagination-control button.pagination-control__page{background-color:#c3c4c7;background-color:var(--color-neutral-10);border:none;border-radius:50%;cursor:pointer;height:6px;padding:0;transition:all .2s ease-in-out;width:6px}.pagination-control button.pagination-control__page:hover{background-color:#787c82;background-color:var(--color-neutral-40)}.pagination-control button.pagination-control__page:disabled{cursor:default}.pagination-control button.pagination-control__page.is-current{background-color:var(--wp-admin-theme-color)}
|
wpcom-block-editor-nux/src/block-editor-nux.js
CHANGED
@@ -11,6 +11,7 @@ import { registerPlugin } from '@wordpress/plugins';
|
|
11 |
import { getQueryArg } from '@wordpress/url';
|
12 |
import DraftPostModal from './draft-post-modal';
|
13 |
import PostPublishedModal from './post-published-modal';
|
|
|
14 |
import { DEFAULT_VARIANT, BLANK_CANVAS_VARIANT } from './store';
|
15 |
import WpcomNux from './welcome-modal/wpcom-nux';
|
16 |
import LaunchWpcomWelcomeTour from './welcome-tour/tour-launch';
|
@@ -79,6 +80,7 @@ registerPlugin( 'wpcom-block-editor-nux', {
|
|
79 |
<>
|
80 |
<WelcomeTour />
|
81 |
<PostPublishedModal />
|
|
|
82 |
</>
|
83 |
),
|
84 |
} );
|
11 |
import { getQueryArg } from '@wordpress/url';
|
12 |
import DraftPostModal from './draft-post-modal';
|
13 |
import PostPublishedModal from './post-published-modal';
|
14 |
+
import SellerCelebrationModal from './seller-celebration-modal';
|
15 |
import { DEFAULT_VARIANT, BLANK_CANVAS_VARIANT } from './store';
|
16 |
import WpcomNux from './welcome-modal/wpcom-nux';
|
17 |
import LaunchWpcomWelcomeTour from './welcome-tour/tour-launch';
|
80 |
<>
|
81 |
<WelcomeTour />
|
82 |
<PostPublishedModal />
|
83 |
+
<SellerCelebrationModal />
|
84 |
</>
|
85 |
),
|
86 |
} );
|
wpcom-block-editor-nux/src/seller-celebration-modal/images/product-published.svg
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<svg width="93" height="109" viewBox="0 0 93 109" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<g clip-path="url(#clip0_1242_7300)">
|
3 |
+
<path d="M8.30613 31.4346C8.16674 33.9662 5.65765 78.7617 5.10007 89.0288C5.03038 89.943 6.00613 90.7868 7.19098 90.7868H67.3395L8.30613 31.4346Z" fill="url(#paint0_linear_1242_7300)"/>
|
4 |
+
<path d="M23.6394 35.7236C23.6394 35.7236 23.8485 41.4198 35.2788 41.7714C46.7091 42.123 57.7909 42.1933 57.7909 42.1933L57.6515 36.4972C57.6515 36.4972 56.8849 36.0752 54.0273 36.1456C51.1697 36.2159 23.6394 35.7236 23.6394 35.7236Z" fill="#8BBECE"/>
|
5 |
+
<path d="M79.6062 23.0661L58.0001 22.5738V18.3545L87.2031 18.7764L79.6062 23.0661Z" fill="#003B62"/>
|
6 |
+
<path d="M53.1213 22.5738L30.6788 22.2222V18.3545H53.1213V22.5738Z" fill="#003B62"/>
|
7 |
+
<path d="M18.1334 17.7217C18.2031 18.2139 26.0092 22.2223 26.0092 22.2223V17.9326L18.1334 17.7217Z" fill="#003B62"/>
|
8 |
+
<path d="M31.9333 8.93101C32.1424 8.79036 35 7.0323 38.9727 6.75101C38.9727 6.75101 42.1091 4.07875 47.8243 4.99294C53.5394 5.90714 58.6273 10.1265 57.7212 17.5807V18.4246L61.6243 18.4949C61.6243 18.4949 62.3212 5.4852 48.5212 3.86778C35.9061 2.25036 31.9333 8.93101 31.9333 8.93101Z" fill="#003B62"/>
|
9 |
+
<path d="M31.585 15.0493C31.585 15.0493 34.2334 17.7216 35.2789 18.0029V11.6035L31.585 15.0493Z" fill="#003B62"/>
|
10 |
+
<path d="M77.0273 94.654C77.0273 94.654 77.794 94.865 80.791 93.1069C83.7183 91.3489 88.1789 88.8173 88.1789 88.8173L82.4637 21.4482L77.794 24.1205L77.9334 93.0366C77.9334 92.9663 78.0728 94.1618 77.0273 94.654Z" fill="#8BBECE"/>
|
11 |
+
<path d="M85.9486 89.9428L83.6486 38.959" stroke="#003B62" stroke-width="1.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
12 |
+
<path d="M91.8728 86.1444C91.8728 86.4257 91.7334 86.707 91.4546 86.8477L78.9788 94.0909C78.2818 94.5128 77.4455 94.7238 76.6091 94.7238H73.194H76.2606C77.1667 94.7238 77.8637 94.1612 77.8637 93.458L77.7243 24.0496L87.1334 18.7051L91.8728 86.1444Z" stroke="#003B62" stroke-width="1.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
13 |
+
<path d="M77.794 24.1203L77.9334 93.5286C77.9334 94.2319 77.1667 94.7945 76.3303 94.7945H73.2637L3.28791 93.9506C2.45154 93.9506 1.75457 93.388 1.82427 92.6848L6.70306 23.0654L77.794 24.1203Z" stroke="#003B62" stroke-width="1.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
14 |
+
<path d="M26.0788 17.9317C26.0788 18.0723 26.0788 18.2833 26.0788 18.4239V23.3465L6.703 23.0652L18.1333 17.7207L26.0788 17.9317Z" stroke="#003B62" stroke-width="1.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
15 |
+
<path d="M52.9819 18.2832C53.1213 18.7755 53.1213 19.2678 53.1213 19.8303V23.7684L30.6091 23.4871V18.6349C30.6091 18.4239 30.6091 18.2129 30.6091 18.002L52.9819 18.2832Z" stroke="#003B62" stroke-width="1.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
16 |
+
<path d="M87.203 18.7754L77.7939 24.12L57.7212 23.8387V20.1819C57.7212 19.549 57.6515 18.9864 57.5818 18.4238L87.203 18.7754Z" stroke="#003B62" stroke-width="1.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
17 |
+
<path d="M57.7213 20.1121V23.7689L53.1213 23.6986V19.7605C53.1213 19.2682 53.0516 18.7057 52.9819 18.2134C52.0758 13.9237 47.4758 10.4779 41.9001 10.1966C39.5304 10.056 37.3001 10.5482 35.488 11.4624C32.7698 12.7986 30.9577 15.1895 30.7486 17.9321C30.7486 18.1431 30.7486 18.354 30.7486 18.565V23.4173L26.1486 23.3469V18.4244C26.1486 18.2837 26.1486 18.0728 26.1486 17.9321C26.288 14.416 28.3092 11.3218 31.4455 9.28243C33.5364 7.87598 36.1849 6.96179 39.0425 6.75082C39.9486 6.6805 40.9243 6.61017 41.9001 6.6805C49.9152 7.10243 56.5364 12.1657 57.5819 18.354C57.6516 18.9166 57.7213 19.5495 57.7213 20.1121Z" stroke="#003B62" stroke-width="1.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
18 |
+
<path d="M35.4182 11.5322C35.3485 11.8838 35.2788 12.2355 35.2091 12.5871C35.2091 12.798 35.2091 13.009 35.2091 13.22V18.0722L30.6788 18.0019C30.8879 15.189 32.7 12.8684 35.4182 11.5322Z" stroke="#003B62" stroke-width="1.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
19 |
+
<path d="M62.3212 14.697V18.3538L57.7212 18.2835V14.3454C57.7212 13.8531 57.6515 13.2905 57.5818 12.7983C56.6757 8.50861 52.0757 5.06281 46.5 4.78152C43.6424 4.64087 40.9939 5.3441 39.0424 6.68023C36.1151 6.96152 33.5363 7.87571 31.4454 9.21184C33.4666 4.21894 39.4606 0.773129 46.5697 1.19506C54.5848 1.617 61.206 6.68022 62.2515 12.8686C62.2515 13.5015 62.3212 14.1344 62.3212 14.697Z" stroke="#003B62" stroke-width="1.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
20 |
+
<path d="M56.397 44.2327L23.7789 43.6701C23.2213 43.6701 22.8031 43.3185 22.8031 42.8262L23.1516 36.3566C23.1516 35.9346 23.6395 35.583 24.197 35.583L56.8152 36.1456C57.3728 36.1456 57.791 36.4972 57.791 36.9895L57.4425 43.4591C57.4425 43.8811 56.9546 44.2327 56.397 44.2327Z" stroke="#003B62" stroke-width="1.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
21 |
+
<path d="M88.9455 91.2779L62.0425 73.627L67.4091 105.553L74.3091 97.607L80.9304 107.804L85.6001 104.639L78.9788 94.5128L88.9455 91.2779Z" fill="white" stroke="#003C65" stroke-width="1.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
22 |
+
<path d="M85.2516 90.5046L64.2031 76.4401C63.9941 76.2994 63.7153 76.5104 63.785 76.7214L68.1759 101.756C68.2456 101.967 68.5244 102.037 68.6638 101.897L74.2395 95.7085L80.9304 106.046C81.0001 106.187 81.2092 106.187 81.2789 106.116L83.9971 104.358C84.1365 104.288 84.1365 104.077 84.0668 104.007L77.3759 93.6691L85.1819 90.9968C85.391 90.9265 85.4607 90.6452 85.2516 90.5046Z" fill="url(#paint1_linear_1242_7300)"/>
|
23 |
+
</g>
|
24 |
+
<defs>
|
25 |
+
<linearGradient id="paint0_linear_1242_7300" x1="5.04633" y1="61.0719" x2="67.2737" y2="60.9564" gradientUnits="userSpaceOnUse">
|
26 |
+
<stop stop-color="#E9E9E9"/>
|
27 |
+
<stop offset="1" stop-color="#EFEFEF"/>
|
28 |
+
</linearGradient>
|
29 |
+
<linearGradient id="paint1_linear_1242_7300" x1="64.7084" y1="96.5632" x2="81.9054" y2="85.3644" gradientUnits="userSpaceOnUse">
|
30 |
+
<stop stop-color="#E9E9E9"/>
|
31 |
+
<stop offset="1" stop-color="#EFEFEF"/>
|
32 |
+
</linearGradient>
|
33 |
+
<clipPath id="clip0_1242_7300">
|
34 |
+
<rect width="92" height="109" fill="white" transform="translate(0.5)"/>
|
35 |
+
</clipPath>
|
36 |
+
</defs>
|
37 |
+
</svg>
|
wpcom-block-editor-nux/src/seller-celebration-modal/index.jsx
ADDED
@@ -0,0 +1,131 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import { recordTracksEvent } from '@automattic/calypso-analytics';
|
2 |
+
import { Button } from '@wordpress/components';
|
3 |
+
import { useSelect, useDispatch } from '@wordpress/data';
|
4 |
+
import { useState, useRef, useEffect } from '@wordpress/element';
|
5 |
+
import { __ } from '@wordpress/i18n';
|
6 |
+
import useHasSeenSellerCelebrationModal from '../../../dotcom-fse/lib/seller-celebration-modal/use-has-seen-seller-celebration-modal';
|
7 |
+
import useSiteIntent from '../../../dotcom-fse/lib/site-intent/use-site-intent';
|
8 |
+
import NuxModal from '../nux-modal';
|
9 |
+
import contentSubmittedImage from './images/product-published.svg';
|
10 |
+
import './style.scss';
|
11 |
+
|
12 |
+
/**
|
13 |
+
* Show the seller celebration modal
|
14 |
+
*/
|
15 |
+
const SellerCelebrationModal = () => {
|
16 |
+
const { addEntities } = useDispatch( 'core' );
|
17 |
+
|
18 |
+
useEffect( () => {
|
19 |
+
// @TODO - not sure if I actually need this; need to test with it removed.
|
20 |
+
// Teach core data about the status entity so we can use selectors like `getEntityRecords()`
|
21 |
+
addEntities( [
|
22 |
+
{
|
23 |
+
baseURL: '/wp/v2/statuses',
|
24 |
+
key: 'slug',
|
25 |
+
kind: 'root',
|
26 |
+
name: 'status',
|
27 |
+
plural: 'statuses',
|
28 |
+
},
|
29 |
+
] );
|
30 |
+
// Only register entity once
|
31 |
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
32 |
+
}, [] );
|
33 |
+
// conditions to show:
|
34 |
+
// - user just finished saving (check)
|
35 |
+
// - editor has not yet displayed modal once (check)
|
36 |
+
// - user is a seller (check)
|
37 |
+
// - user has not saved site before
|
38 |
+
// - content includes product block (check)
|
39 |
+
const [ isModalOpen, setIsModalOpen ] = useState( false );
|
40 |
+
const [ hasDisplayedModal, setHasDisplayedModal ] = useState( false );
|
41 |
+
const isSiteEditor = useSelect( ( select ) => !! select( 'core/edit-site' ) );
|
42 |
+
const previousIsEditorSaving = useRef( false );
|
43 |
+
const { isEditorSaving, hasPaymentsBlock, linkUrl } = useSelect( ( select ) => {
|
44 |
+
if ( isSiteEditor ) {
|
45 |
+
const isSavingSite = select( 'core' ).isSavingEntityRecord( 'root', 'site' );
|
46 |
+
const page = select( 'core/edit-site' ).getPage();
|
47 |
+
const pageId = parseInt( page?.context?.postId );
|
48 |
+
const isSavingEntity = select( 'core' ).isSavingEntityRecord( 'postType', 'page', pageId );
|
49 |
+
const pageEntity = select( 'core' ).getEntityRecord( 'postType', 'page', pageId );
|
50 |
+
const paymentsBlock =
|
51 |
+
pageEntity?.content?.raw?.includes( '<!-- wp:jetpack/recurring-payments -->' ) ?? false;
|
52 |
+
return {
|
53 |
+
isEditorSaving: isSavingSite || isSavingEntity,
|
54 |
+
hasPaymentsBlock: paymentsBlock,
|
55 |
+
linkUrl: pageEntity?.link,
|
56 |
+
};
|
57 |
+
}
|
58 |
+
const currentPost = select( 'core/editor' ).getCurrentPost();
|
59 |
+
const isSavingEntity = select( 'core' ).isSavingEntityRecord(
|
60 |
+
'postType',
|
61 |
+
currentPost?.type,
|
62 |
+
currentPost?.id
|
63 |
+
);
|
64 |
+
const globalBlockCount = select( 'core/block-editor' ).getGlobalBlockCount(
|
65 |
+
'jetpack/recurring-payments'
|
66 |
+
);
|
67 |
+
return {
|
68 |
+
isEditorSaving: isSavingEntity,
|
69 |
+
hasPaymentsBlock: globalBlockCount > 0,
|
70 |
+
linkUrl: currentPost.link,
|
71 |
+
};
|
72 |
+
} );
|
73 |
+
const intent = useSiteIntent();
|
74 |
+
const {
|
75 |
+
hasSeenSellerCelebrationModal,
|
76 |
+
updateHasSeenSellerCelebrationModal,
|
77 |
+
} = useHasSeenSellerCelebrationModal();
|
78 |
+
|
79 |
+
useEffect( () => {
|
80 |
+
if (
|
81 |
+
! isEditorSaving &&
|
82 |
+
previousIsEditorSaving.current &&
|
83 |
+
! hasDisplayedModal &&
|
84 |
+
intent === 'sell' &&
|
85 |
+
hasPaymentsBlock &&
|
86 |
+
! hasSeenSellerCelebrationModal
|
87 |
+
) {
|
88 |
+
setIsModalOpen( true );
|
89 |
+
setHasDisplayedModal( true );
|
90 |
+
updateHasSeenSellerCelebrationModal( true );
|
91 |
+
}
|
92 |
+
previousIsEditorSaving.current = isEditorSaving;
|
93 |
+
}, [
|
94 |
+
isEditorSaving,
|
95 |
+
hasDisplayedModal,
|
96 |
+
intent,
|
97 |
+
hasPaymentsBlock,
|
98 |
+
hasSeenSellerCelebrationModal,
|
99 |
+
updateHasSeenSellerCelebrationModal,
|
100 |
+
] );
|
101 |
+
|
102 |
+
// if save state has changed and was saving on last render
|
103 |
+
// then it has finished saving
|
104 |
+
// open modal if content has sell block,
|
105 |
+
|
106 |
+
const closeModal = () => setIsModalOpen( false );
|
107 |
+
return (
|
108 |
+
<NuxModal
|
109 |
+
isOpen={ isModalOpen }
|
110 |
+
className="wpcom-site-editor-seller-celebration-modal"
|
111 |
+
title={ __( "You've added your first product!", 'full-site-editing' ) }
|
112 |
+
description={ __(
|
113 |
+
'Preview your product on your site before launching and sharing with others.',
|
114 |
+
'full-site-editing'
|
115 |
+
) }
|
116 |
+
imageSrc={ contentSubmittedImage }
|
117 |
+
actionButtons={
|
118 |
+
<>
|
119 |
+
<Button onClick={ closeModal }>{ __( 'Continue editing', 'full-site-editing' ) }</Button>
|
120 |
+
<Button isPrimary href={ linkUrl } target="__blank" rel="noopener noreferrer">
|
121 |
+
{ __( 'View your product', 'full-site-editing' ) }
|
122 |
+
</Button>
|
123 |
+
</>
|
124 |
+
}
|
125 |
+
onRequestClose={ closeModal }
|
126 |
+
onOpen={ () => recordTracksEvent( 'calypso_editor_wpcom_seller_celebration_modal_show' ) }
|
127 |
+
/>
|
128 |
+
);
|
129 |
+
};
|
130 |
+
|
131 |
+
export default SellerCelebrationModal;
|
wpcom-block-editor-nux/src/seller-celebration-modal/style.scss
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@import '@wordpress/base-styles/breakpoints';
|
2 |
+
@import '@wordpress/base-styles/mixins';
|
3 |
+
|
4 |
+
.wpcom-site-editor-seller-celebration-modal {
|
5 |
+
.components-modal__content {
|
6 |
+
@include break-small {
|
7 |
+
padding: 48px 90px;
|
8 |
+
}
|
9 |
+
}
|
10 |
+
|
11 |
+
.wpcom-block-editor-nux-modal__image-container {
|
12 |
+
img {
|
13 |
+
width: 158px;
|
14 |
+
height: 85px;
|
15 |
+
}
|
16 |
+
}
|
17 |
+
|
18 |
+
.wpcom-block-editor-nux-modal__buttons {
|
19 |
+
.components-button {
|
20 |
+
min-width: 113px;
|
21 |
+
&:not( .is-primary ) {
|
22 |
+
border: 1px solid #c3c4c7;
|
23 |
+
border-radius: 4px;
|
24 |
+
}
|
25 |
+
}
|
26 |
+
}
|
27 |
+
}
|
wpcom-block-editor-nux/src/welcome-tour/hooks/index.ts
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
export * from './use-prefetch-tour-assets';
|
|
wpcom-block-editor-nux/src/welcome-tour/hooks/use-prefetch-tour-assets.tsx
DELETED
@@ -1,15 +0,0 @@
|
|
1 |
-
/**
|
2 |
-
* External Dependencies
|
3 |
-
*/
|
4 |
-
import { useMobileBreakpoint } from '@automattic/viewport-react';
|
5 |
-
import type { TourAsset } from '../types';
|
6 |
-
import type { Step, Steps } from '@automattic/tour-kit';
|
7 |
-
|
8 |
-
export function usePrefetchTourAssets( steps: Steps ): void {
|
9 |
-
const isMobile = useMobileBreakpoint();
|
10 |
-
|
11 |
-
steps.forEach( ( step: Step ) => {
|
12 |
-
const imgSrc = step.meta.imgSrc as TourAsset;
|
13 |
-
new window.Image().src = isMobile && imgSrc.mobile ? imgSrc.mobile.src : imgSrc.desktop.src;
|
14 |
-
} );
|
15 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wpcom-block-editor-nux/src/welcome-tour/icons/maximize.js
DELETED
@@ -1,13 +0,0 @@
|
|
1 |
-
import { SVG, Path } from '@wordpress/primitives';
|
2 |
-
|
3 |
-
const minimize = (
|
4 |
-
<SVG width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
5 |
-
<Path
|
6 |
-
fillRule="evenodd"
|
7 |
-
clipRule="evenodd"
|
8 |
-
d="M14.086 5.412l3.476-.015c-.627.625-1.225 1.22-1.82 1.81l-.03.031c-.977.971-1.944 1.934-3.015 3.004l1.06 1.061c1.07-1.07 2.036-2.03 3.013-3.002l.03-.03 1.817-1.808-.03 3.448 1.5.013.046-5.28.007-.759-.76.003-5.301.024.007 1.5zM9.914 18.587l-3.476.016c.627-.625 1.225-1.22 1.82-1.81l.03-.031c.977-.971 1.944-1.934 3.015-3.004l-1.06-1.061c-1.07 1.069-2.036 2.03-3.012 3.001l-.001.001-.03.03-1.817 1.808.03-3.448-1.5-.013-.046 5.279-.007.76.76-.003 5.301-.024-.007-1.5z"
|
9 |
-
/>
|
10 |
-
</SVG>
|
11 |
-
);
|
12 |
-
|
13 |
-
export default minimize;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wpcom-block-editor-nux/src/welcome-tour/icons/minimize.js
DELETED
@@ -1,14 +0,0 @@
|
|
1 |
-
import { SVG, Path } from '@wordpress/primitives';
|
2 |
-
|
3 |
-
const minimize = (
|
4 |
-
<SVG width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
5 |
-
<Path
|
6 |
-
fillRule="evenodd"
|
7 |
-
clipRule="evenodd"
|
8 |
-
d="M18.514 9.988l-3.476.016c.627-.626 1.225-1.22 1.82-1.811l.03-.03v-.001c.977-.971 1.944-1.933 3.015-3.004l-1.06-1.06c-1.07 1.069-2.037 2.03-3.013 3.001l-.03.03-1.818 1.809.03-3.449-1.5-.013-.045 5.28-.007.76.76-.004 5.301-.024-.007-1.5zM5.486 14.012l3.477-.016-1.82 1.811-.03.03c-.977.972-1.945 1.934-3.015 3.005l1.06 1.06c1.07-1.068 2.035-2.03 3.012-3V16.9l.03-.03 1.818-1.809-.03 3.449 1.5.013.046-5.28.006-.76-.76.004-5.3.024.006 1.5z"
|
9 |
-
fill="#fff"
|
10 |
-
/>
|
11 |
-
</SVG>
|
12 |
-
);
|
13 |
-
|
14 |
-
export default minimize;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wpcom-block-editor-nux/src/welcome-tour/icons/thumbs_down.js
DELETED
@@ -1,14 +0,0 @@
|
|
1 |
-
import { SVG, Path } from '@wordpress/primitives';
|
2 |
-
|
3 |
-
const thumbsDown = (
|
4 |
-
<SVG width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
5 |
-
<Path
|
6 |
-
fillRule="evenodd"
|
7 |
-
clipRule="evenodd"
|
8 |
-
d="M13.131 19.12a.667.667 0 001.227-.417l-.436-4.989h3.88c.954 0 1.64-.916 1.37-1.831L17.42 5.919a.286.286 0 00-.274-.205H9.429v7.588l3.702 5.818zm-5.417-5.977V5.714h-2v7.429h2zm5.98 8a2.381 2.381 0 01-2.01-1.103l-3.297-5.183H4V4h13.145a2 2 0 011.919 1.436l1.753 5.963a3.143 3.143 0 01-3.015 4.03h-2.01l.274 3.125a2.381 2.381 0 01-2.372 2.589z"
|
9 |
-
fill="#000"
|
10 |
-
/>
|
11 |
-
</SVG>
|
12 |
-
);
|
13 |
-
|
14 |
-
export default thumbsDown;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wpcom-block-editor-nux/src/welcome-tour/icons/thumbs_up.js
DELETED
@@ -1,14 +0,0 @@
|
|
1 |
-
import { SVG, Path } from '@wordpress/primitives';
|
2 |
-
|
3 |
-
const thumbsUp = (
|
4 |
-
<SVG width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/SVG">
|
5 |
-
<Path
|
6 |
-
fillRule="evenodd"
|
7 |
-
clipRule="evenodd"
|
8 |
-
d="M13.131 4.023a.667.667 0 011.227.416l-.436 4.99h3.88c.954 0 1.64.916 1.37 1.831l-1.753 5.963a.286.286 0 01-.274.206H9.429V9.84l3.702-5.818zM7.714 10v7.428h-2V10h2zm5.98-8c-.814 0-1.572.416-2.01 1.103L8.388 8.286H4v10.857h13.145a2 2 0 001.919-1.436l1.753-5.963a3.143 3.143 0 00-3.015-4.03h-2.01l.274-3.125A2.381 2.381 0 0013.694 2z"
|
9 |
-
fill="#000"
|
10 |
-
/>
|
11 |
-
</SVG>
|
12 |
-
);
|
13 |
-
|
14 |
-
export default thumbsUp;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wpcom-block-editor-nux/src/welcome-tour/style-tour.scss
CHANGED
@@ -4,54 +4,29 @@
|
|
4 |
@import '@wordpress/base-styles/variables';
|
5 |
@import '@wordpress/base-styles/z-index';
|
6 |
|
7 |
-
$welcome-tour-button-background-color: #32373c; // former $dark-gray-700. TODO: replace with standard color
|
8 |
$welcome-tour-card-media-extra-padding: 14%; // temporary value, to match the padding of the desktop instructional graphics
|
9 |
|
10 |
-
.welcome-tour
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
.welcome-tour-card__description {
|
16 |
-
font-size: 0.875rem;
|
17 |
-
line-height: 1.5rem;
|
18 |
-
margin: 0;
|
19 |
-
|
20 |
-
.components-button {
|
21 |
-
height: auto;
|
22 |
-
line-height: 1;
|
23 |
-
text-decoration: underline;
|
24 |
-
padding: 0 0 0 4px;
|
25 |
-
}
|
26 |
-
}
|
27 |
-
|
28 |
-
.wpcom-editor-welcome-tour__minimized {
|
29 |
-
border-radius: 2px;
|
30 |
-
box-shadow: 0 2px 6px rgba( 60, 66, 87, 0.08 ), 0 0 0 1px rgba( 60, 66, 87, 0.16 ),
|
31 |
-
0 1px 1px rgba( 0, 0, 0, 0.08 );
|
32 |
-
background-color: $white;
|
33 |
-
color: $black;
|
34 |
-
|
35 |
-
.components-button {
|
36 |
-
height: 44px;
|
37 |
-
|
38 |
-
.wpcom-editor-welcome-tour__minimized-tour-index {
|
39 |
-
color: $gray-600;
|
40 |
-
}
|
41 |
-
|
42 |
-
svg {
|
43 |
-
color: #50575e;
|
44 |
-
}
|
45 |
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
|
|
50 |
}
|
51 |
}
|
52 |
}
|
|
|
|
|
|
|
|
|
53 |
}
|
54 |
|
|
|
55 |
.wpcom-editor-welcome-tour-card-frame {
|
56 |
position: relative;
|
57 |
|
@@ -66,164 +41,3 @@ $welcome-tour-card-media-extra-padding: 14%; // temporary value, to match the pa
|
|
66 |
}
|
67 |
}
|
68 |
}
|
69 |
-
|
70 |
-
.wpcom-editor-welcome-tour > .tour-kit-frame__container {
|
71 |
-
box-shadow: none;
|
72 |
-
}
|
73 |
-
|
74 |
-
.welcome-tour-card {
|
75 |
-
width: 400px;
|
76 |
-
max-width: 92vw;
|
77 |
-
|
78 |
-
&.welcome-tour-card.is-elevated {
|
79 |
-
box-shadow: none;
|
80 |
-
box-shadow: rgba( 0, 0, 0, 0.1 ) 0 0 0 1px, rgba( 0, 0, 0, 0.1 ) 0 2px 4px 0;
|
81 |
-
}
|
82 |
-
|
83 |
-
&.components-card {
|
84 |
-
border: none;
|
85 |
-
border-radius: 4px; /* stylelint-disable-line */
|
86 |
-
box-shadow: none;
|
87 |
-
}
|
88 |
-
|
89 |
-
.components-card__body {
|
90 |
-
min-height: 114px;
|
91 |
-
}
|
92 |
-
|
93 |
-
.components-card__body,
|
94 |
-
.components-card__footer {
|
95 |
-
border-top: none;
|
96 |
-
padding: $grid-unit-20 !important;
|
97 |
-
}
|
98 |
-
|
99 |
-
.components-card__footer {
|
100 |
-
.welcome-tour__end-text {
|
101 |
-
color: $gray-600;
|
102 |
-
font-size: 0.875rem;
|
103 |
-
font-style: italic;
|
104 |
-
}
|
105 |
-
|
106 |
-
.welcome-tour__end-icon.components-button.has-icon {
|
107 |
-
background-color: #f6f7f7;
|
108 |
-
border-radius: 50%; /* stylelint-disable-line */
|
109 |
-
color: $gray-600;
|
110 |
-
margin-left: 8px;
|
111 |
-
|
112 |
-
path {
|
113 |
-
fill: $gray-600;
|
114 |
-
}
|
115 |
-
|
116 |
-
&.active {
|
117 |
-
background-color: $black;
|
118 |
-
opacity: 1;
|
119 |
-
|
120 |
-
path {
|
121 |
-
fill: $white;
|
122 |
-
}
|
123 |
-
}
|
124 |
-
}
|
125 |
-
}
|
126 |
-
|
127 |
-
.components-card__media {
|
128 |
-
height: 0;
|
129 |
-
padding-top: math.percentage( math.div( math.ceil( math.div( 1, 1.53 ) * 100 ), 100 ) ); // img width:height ratio (1:1.53)
|
130 |
-
position: relative;
|
131 |
-
width: 100%;
|
132 |
-
// TODO CLK: use welcome-tour-card class to keep specific to welcome tour
|
133 |
-
background-color: #e7eaeb; // the color of the background used in desktop graphics
|
134 |
-
|
135 |
-
img {
|
136 |
-
left: 0;
|
137 |
-
position: absolute;
|
138 |
-
top: 0;
|
139 |
-
width: 100%;
|
140 |
-
}
|
141 |
-
}
|
142 |
-
|
143 |
-
.components-guide__page-control {
|
144 |
-
margin: 0;
|
145 |
-
|
146 |
-
.components-button {
|
147 |
-
min-width: auto;
|
148 |
-
&.has-icon {
|
149 |
-
padding: 3px;
|
150 |
-
}
|
151 |
-
}
|
152 |
-
|
153 |
-
li {
|
154 |
-
margin-bottom: 0;
|
155 |
-
}
|
156 |
-
}
|
157 |
-
}
|
158 |
-
|
159 |
-
.welcome-tour-card__minimize-icon svg {
|
160 |
-
position: relative;
|
161 |
-
left: -2px;
|
162 |
-
}
|
163 |
-
|
164 |
-
.welcome-tour-card__overlay-controls {
|
165 |
-
left: 0;
|
166 |
-
padding: $grid-unit-15;
|
167 |
-
right: 0;
|
168 |
-
z-index: 1; // z-index is needed because overlay controls are written before components-card__media, and so ends up under the image
|
169 |
-
// TODO CLK: use welcome-tour-card class to keep specific to welcome tour
|
170 |
-
position: absolute;
|
171 |
-
|
172 |
-
.components-button {
|
173 |
-
width: 32px;
|
174 |
-
min-width: 32px;
|
175 |
-
height: 32px;
|
176 |
-
background: $welcome-tour-button-background-color;
|
177 |
-
transition: opacity 200ms;
|
178 |
-
opacity: 0.7;
|
179 |
-
|
180 |
-
&:active {
|
181 |
-
opacity: 0.9;
|
182 |
-
}
|
183 |
-
}
|
184 |
-
|
185 |
-
@media ( hover: hover ) and ( pointer: fine ) {
|
186 |
-
// styles only applicable for hoverable viewports with precision pointing devices connected (eg: mouse)
|
187 |
-
.components-button {
|
188 |
-
opacity: 0;
|
189 |
-
}
|
190 |
-
|
191 |
-
.tour-kit-frame__container:hover &,
|
192 |
-
.tour-kit-frame__container:focus-within & {
|
193 |
-
.components-button {
|
194 |
-
opacity: 0.7;
|
195 |
-
|
196 |
-
&:hover,
|
197 |
-
&:focus {
|
198 |
-
opacity: 0.9;
|
199 |
-
}
|
200 |
-
}
|
201 |
-
}
|
202 |
-
}
|
203 |
-
}
|
204 |
-
|
205 |
-
.welcome-tour-card__next-btn {
|
206 |
-
margin-left: $grid-unit-15;
|
207 |
-
justify-content: center;
|
208 |
-
min-width: 85px;
|
209 |
-
}
|
210 |
-
|
211 |
-
// TODO: Remove once @wordpress/components/src/card/styles/card-styles.js is updated
|
212 |
-
.welcome-tour-card__media img {
|
213 |
-
display: block;
|
214 |
-
height: auto;
|
215 |
-
max-width: 100%;
|
216 |
-
width: 100%;
|
217 |
-
}
|
218 |
-
|
219 |
-
.wpcom-editor-welcome-tour {
|
220 |
-
.wpcom-editor-welcome-tour__step {
|
221 |
-
&.is-with-extra-padding {
|
222 |
-
.components-card__media img {
|
223 |
-
left: $welcome-tour-card-media-extra-padding;
|
224 |
-
top: $welcome-tour-card-media-extra-padding;
|
225 |
-
width: 100% - $welcome-tour-card-media-extra-padding;
|
226 |
-
}
|
227 |
-
}
|
228 |
-
}
|
229 |
-
}
|
4 |
@import '@wordpress/base-styles/variables';
|
5 |
@import '@wordpress/base-styles/z-index';
|
6 |
|
|
|
7 |
$welcome-tour-card-media-extra-padding: 14%; // temporary value, to match the padding of the desktop instructional graphics
|
8 |
|
9 |
+
.wpcom-editor-welcome-tour {
|
10 |
+
.wpcom-editor-welcome-tour__step {
|
11 |
+
&.is-with-extra-padding {
|
12 |
+
.components-card__media {
|
13 |
+
background-color: #e7eaeb; // the color of the background used in desktop graphics
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
|
15 |
+
img {
|
16 |
+
left: $welcome-tour-card-media-extra-padding;
|
17 |
+
top: $welcome-tour-card-media-extra-padding;
|
18 |
+
width: 100% - $welcome-tour-card-media-extra-padding;
|
19 |
+
}
|
20 |
}
|
21 |
}
|
22 |
}
|
23 |
+
|
24 |
+
.wpcom-tour-kit-step-card-overlay-controls {
|
25 |
+
position: absolute;
|
26 |
+
}
|
27 |
}
|
28 |
|
29 |
+
// @todo clk - it this used?
|
30 |
.wpcom-editor-welcome-tour-card-frame {
|
31 |
position: relative;
|
32 |
|
41 |
}
|
42 |
}
|
43 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wpcom-block-editor-nux/src/welcome-tour/tour-card.js
DELETED
@@ -1,221 +0,0 @@
|
|
1 |
-
/**
|
2 |
-
* External Dependencies
|
3 |
-
*/
|
4 |
-
import { recordTracksEvent } from '@automattic/calypso-analytics';
|
5 |
-
import { PaginationControl } from '@automattic/components';
|
6 |
-
import { getMediaQueryList, isMobile, MOBILE_BREAKPOINT } from '@automattic/viewport';
|
7 |
-
import { Button, Card, CardBody, CardFooter, CardMedia, Flex } from '@wordpress/components';
|
8 |
-
import { useDispatch, useSelect } from '@wordpress/data';
|
9 |
-
import { __ } from '@wordpress/i18n';
|
10 |
-
import { close } from '@wordpress/icons';
|
11 |
-
import classNames from 'classnames';
|
12 |
-
/**
|
13 |
-
* Internal Dependencies
|
14 |
-
*/
|
15 |
-
import minimize from './icons/minimize';
|
16 |
-
import thumbsDown from './icons/thumbs_down';
|
17 |
-
import thumbsUp from './icons/thumbs_up';
|
18 |
-
|
19 |
-
import './style-tour.scss';
|
20 |
-
|
21 |
-
function WelcomeTourCard( {
|
22 |
-
cardContent,
|
23 |
-
currentStepIndex,
|
24 |
-
lastStepIndex,
|
25 |
-
onMinimize,
|
26 |
-
onDismiss,
|
27 |
-
setCurrentStepIndex,
|
28 |
-
onNextStepProgression,
|
29 |
-
onPreviousStepProgression,
|
30 |
-
isGutenboarding,
|
31 |
-
setInitialFocusedElement,
|
32 |
-
} ) {
|
33 |
-
const { descriptions, heading, imgSrc } = cardContent;
|
34 |
-
const isLastStep = currentStepIndex === lastStepIndex;
|
35 |
-
|
36 |
-
const description = descriptions[ isMobile() ? 'mobile' : 'desktop' ] ?? descriptions.desktop;
|
37 |
-
|
38 |
-
return (
|
39 |
-
<Card className="welcome-tour-card" isElevated>
|
40 |
-
<CardOverlayControls onDismiss={ onDismiss } onMinimize={ onMinimize } />
|
41 |
-
{ /* TODO: Update selector for images in @wordpress/components/src/card/styles/card-styles.js */ }
|
42 |
-
<CardMedia className={ 'welcome-tour-card__media' }>
|
43 |
-
<picture>
|
44 |
-
{ imgSrc.mobile && (
|
45 |
-
<source
|
46 |
-
srcSet={ imgSrc.mobile.src }
|
47 |
-
type={ imgSrc.mobile.type }
|
48 |
-
media={ getMediaQueryList( MOBILE_BREAKPOINT )?.media }
|
49 |
-
/>
|
50 |
-
) }
|
51 |
-
<img
|
52 |
-
alt={ __( 'Editor Welcome Tour', 'full-site-editing' ) }
|
53 |
-
src={ imgSrc.desktop?.src }
|
54 |
-
/>
|
55 |
-
</picture>
|
56 |
-
</CardMedia>
|
57 |
-
<CardBody>
|
58 |
-
<h2 className="welcome-tour-card__heading">{ heading }</h2>
|
59 |
-
<p className="welcome-tour-card__description">
|
60 |
-
{ description }
|
61 |
-
{ isLastStep ? (
|
62 |
-
<Button
|
63 |
-
className="welcome-tour-card__description"
|
64 |
-
isTertiary
|
65 |
-
onClick={ () => setCurrentStepIndex( 0 ) }
|
66 |
-
ref={ setInitialFocusedElement }
|
67 |
-
>
|
68 |
-
{ __( 'Restart tour', 'full-site-editing' ) }
|
69 |
-
</Button>
|
70 |
-
) : null }
|
71 |
-
</p>
|
72 |
-
</CardBody>
|
73 |
-
<CardFooter>
|
74 |
-
{ isLastStep ? (
|
75 |
-
<TourRating isGutenboarding={ isGutenboarding }></TourRating>
|
76 |
-
) : (
|
77 |
-
<CardNavigation
|
78 |
-
currentStepIndex={ currentStepIndex }
|
79 |
-
lastStepIndex={ lastStepIndex }
|
80 |
-
onDismiss={ onDismiss }
|
81 |
-
setCurrentStepIndex={ setCurrentStepIndex }
|
82 |
-
onNextStepProgression={ onNextStepProgression }
|
83 |
-
onPreviousStepProgression={ onPreviousStepProgression }
|
84 |
-
setInitialFocusedElement={ setInitialFocusedElement }
|
85 |
-
></CardNavigation>
|
86 |
-
) }
|
87 |
-
</CardFooter>
|
88 |
-
</Card>
|
89 |
-
);
|
90 |
-
}
|
91 |
-
|
92 |
-
function CardNavigation( {
|
93 |
-
currentStepIndex,
|
94 |
-
lastStepIndex,
|
95 |
-
onDismiss,
|
96 |
-
setCurrentStepIndex,
|
97 |
-
onNextStepProgression,
|
98 |
-
onPreviousStepProgression,
|
99 |
-
setInitialFocusedElement,
|
100 |
-
} ) {
|
101 |
-
const isFirstStep = currentStepIndex === 0;
|
102 |
-
|
103 |
-
return (
|
104 |
-
<>
|
105 |
-
<PaginationControl
|
106 |
-
activePageIndex={ currentStepIndex }
|
107 |
-
numberOfPages={ lastStepIndex + 1 }
|
108 |
-
onChange={ setCurrentStepIndex }
|
109 |
-
>
|
110 |
-
{ isFirstStep ? (
|
111 |
-
<div>
|
112 |
-
<Button isTertiary onClick={ onDismiss( 'no-thanks-btn' ) }>
|
113 |
-
{ __( 'Skip', 'full-site-editing' ) }
|
114 |
-
</Button>
|
115 |
-
<Button
|
116 |
-
className="welcome-tour-card__next-btn"
|
117 |
-
isPrimary
|
118 |
-
onClick={ onNextStepProgression }
|
119 |
-
ref={ setInitialFocusedElement }
|
120 |
-
>
|
121 |
-
{ __( 'Try it out!', 'full-site-editing' ) }
|
122 |
-
</Button>
|
123 |
-
</div>
|
124 |
-
) : (
|
125 |
-
<div>
|
126 |
-
<Button isTertiary onClick={ onPreviousStepProgression }>
|
127 |
-
{ __( 'Back', 'full-site-editing' ) }
|
128 |
-
</Button>
|
129 |
-
<Button
|
130 |
-
className="welcome-tour-card__next-btn"
|
131 |
-
isPrimary
|
132 |
-
onClick={ onNextStepProgression }
|
133 |
-
ref={ setInitialFocusedElement }
|
134 |
-
>
|
135 |
-
{ __( 'Next', 'full-site-editing' ) }
|
136 |
-
</Button>
|
137 |
-
</div>
|
138 |
-
) }
|
139 |
-
</PaginationControl>
|
140 |
-
</>
|
141 |
-
);
|
142 |
-
}
|
143 |
-
|
144 |
-
function CardOverlayControls( { onMinimize, onDismiss } ) {
|
145 |
-
return (
|
146 |
-
<div className="welcome-tour-card__overlay-controls">
|
147 |
-
<Flex>
|
148 |
-
<Button
|
149 |
-
label={ __( 'Minimize Tour', 'full-site-editing' ) }
|
150 |
-
isPrimary
|
151 |
-
className="welcome-tour-card__minimize-icon"
|
152 |
-
icon={ minimize }
|
153 |
-
iconSize={ 24 }
|
154 |
-
onClick={ onMinimize }
|
155 |
-
></Button>
|
156 |
-
<Button
|
157 |
-
label={ __( 'Close Tour', 'full-site-editing' ) }
|
158 |
-
isPrimary
|
159 |
-
icon={ close }
|
160 |
-
iconSize={ 24 }
|
161 |
-
onClick={ onDismiss( 'close-btn' ) }
|
162 |
-
></Button>
|
163 |
-
</Flex>
|
164 |
-
</div>
|
165 |
-
);
|
166 |
-
}
|
167 |
-
|
168 |
-
function TourRating( { isGutenboarding } ) {
|
169 |
-
let isDisabled = false;
|
170 |
-
const tourRating = useSelect( ( select ) =>
|
171 |
-
select( 'automattic/wpcom-welcome-guide' ).getTourRating()
|
172 |
-
);
|
173 |
-
const { setTourRating } = useDispatch( 'automattic/wpcom-welcome-guide' );
|
174 |
-
|
175 |
-
if ( ! isDisabled && tourRating ) {
|
176 |
-
isDisabled = true;
|
177 |
-
}
|
178 |
-
const rateTour = ( isThumbsUp ) => {
|
179 |
-
if ( isDisabled ) {
|
180 |
-
return;
|
181 |
-
}
|
182 |
-
isDisabled = true;
|
183 |
-
setTourRating( isThumbsUp ? 'thumbs-up' : 'thumbs-down' );
|
184 |
-
recordTracksEvent( 'calypso_editor_wpcom_tour_rate', {
|
185 |
-
thumbs_up: isThumbsUp,
|
186 |
-
is_gutenboarding: isGutenboarding,
|
187 |
-
} );
|
188 |
-
};
|
189 |
-
|
190 |
-
return (
|
191 |
-
<>
|
192 |
-
<p className="welcome-tour__end-text">
|
193 |
-
{ __( 'Did you find this guide helpful?', 'full-site-editing' ) }
|
194 |
-
</p>
|
195 |
-
<div>
|
196 |
-
<Button
|
197 |
-
aria-label={ __( 'Rate thumbs up', 'full-site-editing' ) }
|
198 |
-
className={ classNames( 'welcome-tour__end-icon', {
|
199 |
-
active: tourRating === 'thumbs-up',
|
200 |
-
} ) }
|
201 |
-
disabled={ isDisabled }
|
202 |
-
icon={ thumbsUp }
|
203 |
-
onClick={ () => rateTour( true ) }
|
204 |
-
iconSize={ 24 }
|
205 |
-
/>
|
206 |
-
<Button
|
207 |
-
aria-label={ __( 'Rate thumbs down', 'full-site-editing' ) }
|
208 |
-
className={ classNames( 'welcome-tour__end-icon', {
|
209 |
-
active: tourRating === 'thumbs-down',
|
210 |
-
} ) }
|
211 |
-
disabled={ isDisabled }
|
212 |
-
icon={ thumbsDown }
|
213 |
-
onClick={ () => rateTour( false ) }
|
214 |
-
iconSize={ 24 }
|
215 |
-
/>
|
216 |
-
</div>
|
217 |
-
</>
|
218 |
-
);
|
219 |
-
}
|
220 |
-
|
221 |
-
export default WelcomeTourCard;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wpcom-block-editor-nux/src/welcome-tour/{tour-launch.js → tour-launch.tsx}
RENAMED
@@ -1,20 +1,12 @@
|
|
1 |
-
/**
|
2 |
-
* External Dependencies
|
3 |
-
*/
|
4 |
import { recordTracksEvent } from '@automattic/calypso-analytics';
|
5 |
import { useLocale } from '@automattic/i18n-utils';
|
6 |
-
import
|
7 |
-
import {
|
8 |
-
import { useDispatch, useSelect } from '@wordpress/data';
|
9 |
import { useEffect, useMemo } from '@wordpress/element';
|
10 |
-
/**
|
11 |
-
* Internal Dependencies
|
12 |
-
*/
|
13 |
-
import { usePrefetchTourAssets } from './hooks';
|
14 |
-
import WelcomeTourMinimized from './tour-minimized-renderer';
|
15 |
-
import WelcomeTourStep from './tour-step-renderer';
|
16 |
import getTourSteps from './tour-steps';
|
17 |
import './style-tour.scss';
|
|
|
|
|
18 |
|
19 |
function LaunchWpcomWelcomeTour() {
|
20 |
const { show, isNewPageLayoutModalOpen, isManuallyOpened } = useSelect( ( select ) => ( {
|
@@ -28,7 +20,7 @@ function LaunchWpcomWelcomeTour() {
|
|
28 |
const localeSlug = useLocale();
|
29 |
|
30 |
// Preload first card image (others preloaded after open state confirmed)
|
31 |
-
usePrefetchTourAssets( [ getTourSteps( localeSlug )[ 0 ] ] );
|
32 |
|
33 |
useEffect( () => {
|
34 |
if ( ! show && ! isNewPageLayoutModalOpen ) {
|
@@ -56,20 +48,11 @@ function WelcomeTour() {
|
|
56 |
const isWelcomeTourNext = () => {
|
57 |
return new URLSearchParams( document.location.search ).has( 'welcome-tour-next' );
|
58 |
};
|
59 |
-
const tourSteps = getTourSteps( localeSlug, isWelcomeTourNext() )
|
60 |
-
( step ) => ! ( step.meta.isDesktopOnly && isMobile() )
|
61 |
-
);
|
62 |
|
63 |
-
|
64 |
-
usePrefetchTourAssets( tourSteps );
|
65 |
-
|
66 |
-
const tourConfig = {
|
67 |
steps: tourSteps,
|
68 |
-
|
69 |
-
tourStep: WelcomeTourStep,
|
70 |
-
tourMinimized: WelcomeTourMinimized,
|
71 |
-
},
|
72 |
-
closeHandler: ( steps, currentStepIndex, source ) => {
|
73 |
recordTracksEvent( 'calypso_editor_wpcom_tour_dismiss', {
|
74 |
is_gutenboarding: isGutenboarding,
|
75 |
slide_number: currentStepIndex + 1,
|
@@ -78,6 +61,21 @@ function WelcomeTour() {
|
|
78 |
setShowWelcomeGuide( false, { openedManually: false } );
|
79 |
},
|
80 |
options: {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
callbacks: {
|
82 |
onMinimize: ( currentStepIndex ) => {
|
83 |
recordTracksEvent( 'calypso_editor_wpcom_tour_minimize', {
|
@@ -120,9 +118,14 @@ function WelcomeTour() {
|
|
120 |
() => ( {
|
121 |
name: 'offset',
|
122 |
options: {
|
123 |
-
offset: ( { placement, reference } ) => {
|
124 |
if ( placement === 'bottom' ) {
|
125 |
const boundary = document.querySelector( '.edit-post-header' );
|
|
|
|
|
|
|
|
|
|
|
126 |
const boundaryRect = boundary.getBoundingClientRect();
|
127 |
const boundaryBottomY = boundaryRect.height + boundaryRect.y;
|
128 |
const referenceBottomY = reference.height + reference.y;
|
@@ -140,7 +143,7 @@ function WelcomeTour() {
|
|
140 |
},
|
141 |
};
|
142 |
|
143 |
-
return <
|
144 |
}
|
145 |
|
146 |
export default LaunchWpcomWelcomeTour;
|
|
|
|
|
|
|
1 |
import { recordTracksEvent } from '@automattic/calypso-analytics';
|
2 |
import { useLocale } from '@automattic/i18n-utils';
|
3 |
+
import { WpcomTourKit, usePrefetchTourAssets } from '@automattic/tour-kit';
|
4 |
+
import { useDispatch, useSelect, dispatch } from '@wordpress/data';
|
|
|
5 |
import { useEffect, useMemo } from '@wordpress/element';
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
import getTourSteps from './tour-steps';
|
7 |
import './style-tour.scss';
|
8 |
+
import type { WpcomConfig } from '@automattic/tour-kit';
|
9 |
+
import type { Rect, Placement } from '@popperjs/core';
|
10 |
|
11 |
function LaunchWpcomWelcomeTour() {
|
12 |
const { show, isNewPageLayoutModalOpen, isManuallyOpened } = useSelect( ( select ) => ( {
|
20 |
const localeSlug = useLocale();
|
21 |
|
22 |
// Preload first card image (others preloaded after open state confirmed)
|
23 |
+
usePrefetchTourAssets( [ getTourSteps( localeSlug, false )[ 0 ] ] );
|
24 |
|
25 |
useEffect( () => {
|
26 |
if ( ! show && ! isNewPageLayoutModalOpen ) {
|
48 |
const isWelcomeTourNext = () => {
|
49 |
return new URLSearchParams( document.location.search ).has( 'welcome-tour-next' );
|
50 |
};
|
51 |
+
const tourSteps = getTourSteps( localeSlug, isWelcomeTourNext() );
|
|
|
|
|
52 |
|
53 |
+
const tourConfig: WpcomConfig = {
|
|
|
|
|
|
|
54 |
steps: tourSteps,
|
55 |
+
closeHandler: ( _steps, currentStepIndex, source ) => {
|
|
|
|
|
|
|
|
|
56 |
recordTracksEvent( 'calypso_editor_wpcom_tour_dismiss', {
|
57 |
is_gutenboarding: isGutenboarding,
|
58 |
slide_number: currentStepIndex + 1,
|
61 |
setShowWelcomeGuide( false, { openedManually: false } );
|
62 |
},
|
63 |
options: {
|
64 |
+
tourRating: {
|
65 |
+
enabled: true,
|
66 |
+
useTourRating: () => {
|
67 |
+
return useSelect( ( select ) =>
|
68 |
+
select( 'automattic/wpcom-welcome-guide' ).getTourRating()
|
69 |
+
);
|
70 |
+
},
|
71 |
+
onTourRate: ( rating ) => {
|
72 |
+
dispatch( 'automattic/wpcom-welcome-guide' ).setTourRating( rating );
|
73 |
+
recordTracksEvent( 'calypso_editor_wpcom_tour_rate', {
|
74 |
+
thumbs_up: rating === 'thumbs-up',
|
75 |
+
is_gutenboarding: false,
|
76 |
+
} );
|
77 |
+
},
|
78 |
+
},
|
79 |
callbacks: {
|
80 |
onMinimize: ( currentStepIndex ) => {
|
81 |
recordTracksEvent( 'calypso_editor_wpcom_tour_minimize', {
|
118 |
() => ( {
|
119 |
name: 'offset',
|
120 |
options: {
|
121 |
+
offset: ( { placement, reference }: { placement: Placement; reference: Rect } ) => {
|
122 |
if ( placement === 'bottom' ) {
|
123 |
const boundary = document.querySelector( '.edit-post-header' );
|
124 |
+
|
125 |
+
if ( ! boundary ) {
|
126 |
+
return;
|
127 |
+
}
|
128 |
+
|
129 |
const boundaryRect = boundary.getBoundingClientRect();
|
130 |
const boundaryBottomY = boundaryRect.height + boundaryRect.y;
|
131 |
const referenceBottomY = reference.height + reference.y;
|
143 |
},
|
144 |
};
|
145 |
|
146 |
+
return <WpcomTourKit config={ tourConfig } />;
|
147 |
}
|
148 |
|
149 |
export default LaunchWpcomWelcomeTour;
|
wpcom-block-editor-nux/src/welcome-tour/tour-minimized-renderer.tsx
DELETED
@@ -1,48 +0,0 @@
|
|
1 |
-
import { Button, Flex } from '@wordpress/components';
|
2 |
-
import { createInterpolateElement } from '@wordpress/element';
|
3 |
-
import { __, sprintf } from '@wordpress/i18n';
|
4 |
-
import { Icon, close } from '@wordpress/icons';
|
5 |
-
import maximize from './icons/maximize';
|
6 |
-
import type { MinimizedTourRenderer } from '@automattic/tour-kit';
|
7 |
-
|
8 |
-
const WelcomeTourMinimized: MinimizedTourRenderer = ( {
|
9 |
-
steps,
|
10 |
-
onMaximize,
|
11 |
-
onDismiss,
|
12 |
-
currentStepIndex,
|
13 |
-
} ) => {
|
14 |
-
const lastStepIndex = steps.length - 1;
|
15 |
-
const page = currentStepIndex + 1;
|
16 |
-
const numberOfPages = lastStepIndex + 1;
|
17 |
-
|
18 |
-
return (
|
19 |
-
<Flex gap={ 0 } className="wpcom-editor-welcome-tour__minimized">
|
20 |
-
<Button onClick={ onMaximize } aria-label={ __( 'Resume Tour', 'full-site-editing' ) }>
|
21 |
-
<Flex gap={ 13 }>
|
22 |
-
<p>
|
23 |
-
{ createInterpolateElement(
|
24 |
-
sprintf(
|
25 |
-
/* translators: 1: current page number, 2: total number of pages */
|
26 |
-
__( 'Resume welcome tour <span>(%1$d/%2$d)</span>', 'full-site-editing' ),
|
27 |
-
page,
|
28 |
-
numberOfPages
|
29 |
-
),
|
30 |
-
{
|
31 |
-
span: <span className="wpcom-editor-welcome-tour__minimized-tour-index" />,
|
32 |
-
}
|
33 |
-
) }
|
34 |
-
</p>
|
35 |
-
<Icon icon={ maximize } size={ 24 } />
|
36 |
-
</Flex>
|
37 |
-
</Button>
|
38 |
-
<Button
|
39 |
-
onClick={ onDismiss( 'close-btn-minimized' ) }
|
40 |
-
aria-label={ __( 'Close Tour', 'full-site-editing' ) }
|
41 |
-
>
|
42 |
-
<Icon icon={ close } size={ 24 } />
|
43 |
-
</Button>
|
44 |
-
</Flex>
|
45 |
-
);
|
46 |
-
};
|
47 |
-
|
48 |
-
export default WelcomeTourMinimized;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wpcom-block-editor-nux/src/welcome-tour/tour-step-renderer.tsx
DELETED
@@ -1,33 +0,0 @@
|
|
1 |
-
import WelcomeTourCard from './tour-card';
|
2 |
-
import type { TourStepRenderer } from '@automattic/tour-kit';
|
3 |
-
|
4 |
-
const WelcomeTourStep: TourStepRenderer = ( {
|
5 |
-
steps,
|
6 |
-
currentStepIndex,
|
7 |
-
onDismiss,
|
8 |
-
onNext,
|
9 |
-
onPrevious,
|
10 |
-
onMinimize,
|
11 |
-
setInitialFocusedElement,
|
12 |
-
onGoToStep,
|
13 |
-
} ) => {
|
14 |
-
const lastStepIndex = steps.length - 1;
|
15 |
-
const isGutenboarding = window.calypsoifyGutenberg?.isGutenboarding;
|
16 |
-
|
17 |
-
return (
|
18 |
-
<WelcomeTourCard
|
19 |
-
cardContent={ steps[ currentStepIndex ].meta }
|
20 |
-
currentStepIndex={ currentStepIndex }
|
21 |
-
lastStepIndex={ lastStepIndex }
|
22 |
-
onDismiss={ onDismiss }
|
23 |
-
onMinimize={ onMinimize }
|
24 |
-
setCurrentStepIndex={ onGoToStep }
|
25 |
-
onNextStepProgression={ onNext }
|
26 |
-
onPreviousStepProgression={ onPrevious }
|
27 |
-
isGutenboarding={ isGutenboarding }
|
28 |
-
setInitialFocusedElement={ setInitialFocusedElement }
|
29 |
-
/>
|
30 |
-
);
|
31 |
-
};
|
32 |
-
|
33 |
-
export default WelcomeTourStep;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wpcom-block-editor-nux/src/welcome-tour/{tour-steps.js → tour-steps.tsx}
RENAMED
@@ -1,9 +1,16 @@
|
|
1 |
import { localizeUrl } from '@automattic/i18n-utils';
|
|
|
2 |
import { ExternalLink } from '@wordpress/components';
|
3 |
import { createInterpolateElement } from '@wordpress/element';
|
4 |
import { __ } from '@wordpress/i18n';
|
|
|
5 |
|
6 |
-
|
|
|
|
|
|
|
|
|
|
|
7 |
const CDN_PREFIX = 'https://s0.wp.com/i/editor-welcome-tour';
|
8 |
const tourAssets = {
|
9 |
addBlock: {
|
@@ -29,12 +36,12 @@ function getTourAssets( key ) {
|
|
29 |
desktop: { src: `${ CDN_PREFIX }/slide-welcome.png`, type: 'image/png' },
|
30 |
mobile: { src: `${ CDN_PREFIX }/slide-welcome_mobile.jpg`, type: 'image/jpeg' },
|
31 |
},
|
32 |
-
};
|
33 |
|
34 |
return tourAssets[ key ];
|
35 |
}
|
36 |
|
37 |
-
function getTourSteps( localeSlug, referencePositioning ) {
|
38 |
return [
|
39 |
{
|
40 |
meta: {
|
@@ -47,7 +54,6 @@ function getTourSteps( localeSlug, referencePositioning ) {
|
|
47 |
mobile: null,
|
48 |
},
|
49 |
imgSrc: getTourAssets( 'welcome' ),
|
50 |
-
animation: null,
|
51 |
},
|
52 |
options: {
|
53 |
classNames: {
|
@@ -67,7 +73,6 @@ function getTourSteps( localeSlug, referencePositioning ) {
|
|
67 |
mobile: null,
|
68 |
},
|
69 |
imgSrc: getTourAssets( 'allBlocks' ),
|
70 |
-
animation: null,
|
71 |
},
|
72 |
options: {
|
73 |
classNames: {
|
@@ -77,12 +82,14 @@ function getTourSteps( localeSlug, referencePositioning ) {
|
|
77 |
},
|
78 |
},
|
79 |
{
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
|
|
|
|
86 |
meta: {
|
87 |
heading: __( 'Adding a new block', 'full-site-editing' ),
|
88 |
descriptions: {
|
@@ -96,7 +103,6 @@ function getTourSteps( localeSlug, referencePositioning ) {
|
|
96 |
),
|
97 |
},
|
98 |
imgSrc: getTourAssets( 'addBlock' ),
|
99 |
-
animation: 'block-inserter',
|
100 |
},
|
101 |
options: {
|
102 |
classNames: {
|
@@ -116,7 +122,6 @@ function getTourSteps( localeSlug, referencePositioning ) {
|
|
116 |
mobile: null,
|
117 |
},
|
118 |
imgSrc: getTourAssets( 'makeBold' ),
|
119 |
-
animation: null,
|
120 |
},
|
121 |
options: {
|
122 |
classNames: {
|
@@ -126,12 +131,14 @@ function getTourSteps( localeSlug, referencePositioning ) {
|
|
126 |
},
|
127 |
},
|
128 |
{
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
|
|
|
|
135 |
meta: {
|
136 |
heading: __( 'More Options', 'full-site-editing' ),
|
137 |
descriptions: {
|
@@ -139,7 +146,6 @@ function getTourSteps( localeSlug, referencePositioning ) {
|
|
139 |
mobile: __( 'Tap the settings icon to see even more options.', 'full-site-editing' ),
|
140 |
},
|
141 |
imgSrc: getTourAssets( 'moreOptions' ),
|
142 |
-
animation: null,
|
143 |
},
|
144 |
options: {
|
145 |
classNames: {
|
@@ -148,49 +154,58 @@ function getTourSteps( localeSlug, referencePositioning ) {
|
|
148 |
},
|
149 |
},
|
150 |
},
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
194 |
{
|
195 |
meta: {
|
196 |
heading: __( 'Drag & drop', 'full-site-editing' ),
|
@@ -199,7 +214,6 @@ function getTourSteps( localeSlug, referencePositioning ) {
|
|
199 |
mobile: __( 'To move blocks around, tap the up and down arrows.', 'full-site-editing' ),
|
200 |
},
|
201 |
imgSrc: getTourAssets( 'moveBlock' ),
|
202 |
-
animation: 'undo-button',
|
203 |
},
|
204 |
options: {
|
205 |
classNames: {
|
@@ -239,7 +253,6 @@ function getTourSteps( localeSlug, referencePositioning ) {
|
|
239 |
mobile: null,
|
240 |
},
|
241 |
imgSrc: getTourAssets( 'finish' ),
|
242 |
-
animation: 'block-inserter',
|
243 |
},
|
244 |
options: {
|
245 |
classNames: {
|
1 |
import { localizeUrl } from '@automattic/i18n-utils';
|
2 |
+
import { isMobile } from '@automattic/viewport';
|
3 |
import { ExternalLink } from '@wordpress/components';
|
4 |
import { createInterpolateElement } from '@wordpress/element';
|
5 |
import { __ } from '@wordpress/i18n';
|
6 |
+
import type { WpcomStep } from '@automattic/tour-kit';
|
7 |
|
8 |
+
interface TourAsset {
|
9 |
+
desktop?: { src: string; type: string };
|
10 |
+
mobile?: { src: string; type: string };
|
11 |
+
}
|
12 |
+
|
13 |
+
function getTourAssets( key: string ): TourAsset | undefined {
|
14 |
const CDN_PREFIX = 'https://s0.wp.com/i/editor-welcome-tour';
|
15 |
const tourAssets = {
|
16 |
addBlock: {
|
36 |
desktop: { src: `${ CDN_PREFIX }/slide-welcome.png`, type: 'image/png' },
|
37 |
mobile: { src: `${ CDN_PREFIX }/slide-welcome_mobile.jpg`, type: 'image/jpeg' },
|
38 |
},
|
39 |
+
} as { [ key: string ]: TourAsset };
|
40 |
|
41 |
return tourAssets[ key ];
|
42 |
}
|
43 |
|
44 |
+
function getTourSteps( localeSlug: string, referencePositioning = false ): WpcomStep[] {
|
45 |
return [
|
46 |
{
|
47 |
meta: {
|
54 |
mobile: null,
|
55 |
},
|
56 |
imgSrc: getTourAssets( 'welcome' ),
|
|
|
57 |
},
|
58 |
options: {
|
59 |
classNames: {
|
73 |
mobile: null,
|
74 |
},
|
75 |
imgSrc: getTourAssets( 'allBlocks' ),
|
|
|
76 |
},
|
77 |
options: {
|
78 |
classNames: {
|
82 |
},
|
83 |
},
|
84 |
{
|
85 |
+
...( referencePositioning && {
|
86 |
+
referenceElements: {
|
87 |
+
mobile:
|
88 |
+
'.edit-post-header .edit-post-header__toolbar .components-button.edit-post-header-toolbar__inserter-toggle',
|
89 |
+
desktop:
|
90 |
+
'.edit-post-header .edit-post-header__toolbar .components-button.edit-post-header-toolbar__inserter-toggle',
|
91 |
+
},
|
92 |
+
} ),
|
93 |
meta: {
|
94 |
heading: __( 'Adding a new block', 'full-site-editing' ),
|
95 |
descriptions: {
|
103 |
),
|
104 |
},
|
105 |
imgSrc: getTourAssets( 'addBlock' ),
|
|
|
106 |
},
|
107 |
options: {
|
108 |
classNames: {
|
122 |
mobile: null,
|
123 |
},
|
124 |
imgSrc: getTourAssets( 'makeBold' ),
|
|
|
125 |
},
|
126 |
options: {
|
127 |
classNames: {
|
131 |
},
|
132 |
},
|
133 |
{
|
134 |
+
...( referencePositioning && {
|
135 |
+
referenceElements: {
|
136 |
+
mobile:
|
137 |
+
'.edit-post-header .edit-post-header__settings .interface-pinned-items > button:nth-child(1)',
|
138 |
+
desktop:
|
139 |
+
'.edit-post-header .edit-post-header__settings .interface-pinned-items > button:nth-child(1)',
|
140 |
+
},
|
141 |
+
} ),
|
142 |
meta: {
|
143 |
heading: __( 'More Options', 'full-site-editing' ),
|
144 |
descriptions: {
|
146 |
mobile: __( 'Tap the settings icon to see even more options.', 'full-site-editing' ),
|
147 |
},
|
148 |
imgSrc: getTourAssets( 'moreOptions' ),
|
|
|
149 |
},
|
150 |
options: {
|
151 |
classNames: {
|
154 |
},
|
155 |
},
|
156 |
},
|
157 |
+
...( ! isMobile()
|
158 |
+
? [
|
159 |
+
{
|
160 |
+
meta: {
|
161 |
+
heading: __( 'Find your way', 'full-site-editing' ),
|
162 |
+
descriptions: {
|
163 |
+
desktop: __(
|
164 |
+
"Use List View to see all the blocks you've added. Click and drag any block to move it around.",
|
165 |
+
'full-site-editing'
|
166 |
+
),
|
167 |
+
mobile: null,
|
168 |
+
},
|
169 |
+
imgSrc: getTourAssets( 'findYourWay' ),
|
170 |
+
},
|
171 |
+
options: {
|
172 |
+
classNames: {
|
173 |
+
desktop: [ 'is-with-extra-padding', 'wpcom-editor-welcome-tour__step' ],
|
174 |
+
mobile: 'wpcom-editor-welcome-tour__step',
|
175 |
+
},
|
176 |
+
},
|
177 |
+
},
|
178 |
+
]
|
179 |
+
: [] ),
|
180 |
+
...( ! isMobile()
|
181 |
+
? [
|
182 |
+
{
|
183 |
+
...( referencePositioning && {
|
184 |
+
referenceElements: {
|
185 |
+
desktop:
|
186 |
+
'.edit-post-header .edit-post-header__toolbar .components-button.editor-history__undo',
|
187 |
+
},
|
188 |
+
} ),
|
189 |
+
meta: {
|
190 |
+
heading: __( 'Undo any mistake', 'full-site-editing' ),
|
191 |
+
descriptions: {
|
192 |
+
desktop: __(
|
193 |
+
"Click the Undo button if you've made a mistake.",
|
194 |
+
'full-site-editing'
|
195 |
+
),
|
196 |
+
mobile: null,
|
197 |
+
},
|
198 |
+
imgSrc: getTourAssets( 'undo' ),
|
199 |
+
},
|
200 |
+
options: {
|
201 |
+
classNames: {
|
202 |
+
desktop: 'wpcom-editor-welcome-tour__step',
|
203 |
+
mobile: 'wpcom-editor-welcome-tour__step',
|
204 |
+
},
|
205 |
+
},
|
206 |
+
},
|
207 |
+
]
|
208 |
+
: [] ),
|
209 |
{
|
210 |
meta: {
|
211 |
heading: __( 'Drag & drop', 'full-site-editing' ),
|
214 |
mobile: __( 'To move blocks around, tap the up and down arrows.', 'full-site-editing' ),
|
215 |
},
|
216 |
imgSrc: getTourAssets( 'moveBlock' ),
|
|
|
217 |
},
|
218 |
options: {
|
219 |
classNames: {
|
253 |
mobile: null,
|
254 |
},
|
255 |
imgSrc: getTourAssets( 'finish' ),
|
|
|
256 |
},
|
257 |
options: {
|
258 |
classNames: {
|
wpcom-block-editor-nux/src/welcome-tour/types.ts
DELETED
@@ -1,4 +0,0 @@
|
|
1 |
-
export type TourAsset = {
|
2 |
-
desktop: { src: string; type: string };
|
3 |
-
mobile?: { src: string; type: string };
|
4 |
-
};
|
|
|
|
|
|
|
|