Full Site Editing - Version 3.11164

Version Description

Download this release

Release Info

Developer automattic
Plugin Icon wp plugin Full Site Editing
Version 3.11164
Comparing to
See all releases

Code changes from version 3.11086 to 3.11164

Files changed (58) hide show
  1. block-helpers/block-helpers.test.ts +0 -3
  2. block-helpers/index.ts +0 -3
  3. block-inserter-modifications/contextual-tips.js +3 -13
  4. block-inserter-modifications/contextual-tips/contextual-tip.js +2 -13
  5. block-inserter-modifications/contextual-tips/list.js +1 -8
  6. block-inserter-modifications/contextual-tips/tip-link.js +0 -7
  7. block-inserter-modifications/dist/contextual-tips.asset.php +1 -1
  8. block-inserter-modifications/dist/contextual-tips.js +1 -1
  9. block-patterns/index.ts +0 -3
  10. common/data-stores/domain-suggestions.ts +0 -3
  11. common/data-stores/index.ts +0 -3
  12. common/data-stores/launch.ts +0 -3
  13. common/data-stores/plans.ts +0 -3
  14. common/data-stores/site.ts +0 -3
  15. common/data-stores/wpcom-features.ts +0 -3
  16. common/dist/common.asset.php +1 -1
  17. common/dist/data-stores.asset.php +1 -1
  18. common/dist/hide-plugin-buttons-mobile.asset.php +1 -1
  19. common/hide-plugin-buttons-mobile.js +0 -4
  20. common/index.js +0 -3
  21. dotcom-fse/blocks/navigation-menu/edit.js +5 -11
  22. dotcom-fse/blocks/navigation-menu/index.js +2 -8
  23. dotcom-fse/blocks/post-content/edit.js +2 -9
  24. dotcom-fse/blocks/post-content/index.js +4 -10
  25. dotcom-fse/blocks/post-content/save.js +0 -3
  26. dotcom-fse/blocks/site-credit/edit.js +1 -11
  27. dotcom-fse/blocks/site-credit/footer-credit-choices.js +2 -4
  28. dotcom-fse/blocks/site-credit/index.js +2 -8
  29. dotcom-fse/blocks/site-description/edit.js +2 -12
  30. dotcom-fse/blocks/site-description/index.js +2 -8
  31. dotcom-fse/blocks/site-title/edit.js +4 -14
  32. dotcom-fse/blocks/site-title/index.js +2 -8
  33. dotcom-fse/blocks/template/edit.js +3 -12
  34. dotcom-fse/blocks/template/index.js +4 -9
  35. dotcom-fse/blocks/template/site-logo.js +0 -4
  36. dotcom-fse/dist/dotcom-fse.asset.php +1 -1
  37. dotcom-fse/dist/dotcom-fse.js +1 -1
  38. dotcom-fse/editor/block-inserter/index.js +0 -7
  39. dotcom-fse/editor/block-inserter/post-content-block-appender.js +0 -3
  40. dotcom-fse/editor/image-block-keywords/index.js +0 -3
  41. dotcom-fse/editor/index.js +0 -3
  42. dotcom-fse/editor/remove-editor-panels/index.js +0 -3
  43. dotcom-fse/editor/suppress-draft-action/index.js +0 -3
  44. dotcom-fse/editor/suppress-trash-action/index.js +0 -3
  45. dotcom-fse/editor/template-validity-override/index.js +0 -3
  46. dotcom-fse/index.js +0 -3
  47. dotcom-fse/lib/site-options/use-previous.js +0 -3
  48. dotcom-fse/lib/site-options/use-site-options.js +2 -9
  49. dotcom-fse/lib/site-options/with-site-options.js +0 -7
  50. dotcom-fse/plugins/close-button-override/index.js +4 -9
  51. dotcom-fse/plugins/editor-template-classes/index.js +2 -8
  52. dotcom-fse/plugins/template-update-notice/index.js +2 -4
  53. editor-site-launch/dist/focused-launch.asset.php +1 -1
  54. editor-site-launch/dist/focused-launch.js +1 -1
  55. editor-site-launch/dist/gutenboarding-launch.asset.php +1 -1
  56. editor-site-launch/dist/gutenboarding-launch.css +1 -1
  57. editor-site-launch/dist/gutenboarding-launch.js +2 -2
  58. editor-site-launch/dist/gutenboarding-launch.rtl.css +1 -1
block-helpers/block-helpers.test.ts CHANGED
@@ -1,6 +1,3 @@
1
- /**
2
- * Internal dependencies
3
- */
4
  import { getCategoryWithFallbacks } from '.';
5
 
6
  jest.mock( '@wordpress/blocks', () => ( {
 
 
 
1
  import { getCategoryWithFallbacks } from '.';
2
 
3
  jest.mock( '@wordpress/blocks', () => ( {
block-helpers/index.ts CHANGED
@@ -1,6 +1,3 @@
1
- /**
2
- * External dependencies
3
- */
4
  import { getCategories } from '@wordpress/blocks';
5
 
6
  /**
 
 
 
1
  import { getCategories } from '@wordpress/blocks';
2
 
3
  /**
block-inserter-modifications/contextual-tips.js CHANGED
@@ -1,22 +1,12 @@
1
- /**
2
- * External dependencies
3
- */
4
- import { debounce } from 'lodash';
5
-
6
- /**
7
- * WordPress dependencies
8
- */
9
- import { useState } from '@wordpress/element';
10
  import {
11
  __unstableInserterMenuExtension,
12
  __experimentalInserterMenuExtension,
13
  } from '@wordpress/block-editor';
 
14
  import { registerPlugin } from '@wordpress/plugins';
15
-
16
- /**
17
- * Internal dependencies
18
- */
19
  import ContextualTip from './contextual-tips/contextual-tip';
 
20
  import './contextual-tips/style.scss';
21
 
22
  // InserterMenuExtension has been made unstable in this PR: https://github.com/WordPress/gutenberg/pull/31417 / Gutenberg v10.7.0-rc.1.
 
 
 
 
 
 
 
 
 
1
  import {
2
  __unstableInserterMenuExtension,
3
  __experimentalInserterMenuExtension,
4
  } from '@wordpress/block-editor';
5
+ import { useState } from '@wordpress/element';
6
  import { registerPlugin } from '@wordpress/plugins';
7
+ import { debounce } from 'lodash';
 
 
 
8
  import ContextualTip from './contextual-tips/contextual-tip';
9
+
10
  import './contextual-tips/style.scss';
11
 
12
  // InserterMenuExtension has been made unstable in this PR: https://github.com/WordPress/gutenberg/pull/31417 / Gutenberg v10.7.0-rc.1.
block-inserter-modifications/contextual-tips/contextual-tip.js CHANGED
@@ -1,18 +1,7 @@
1
- /**
2
- * External dependencies
3
- */
4
- import { get, filter, deburr, lowerCase, includes } from 'lodash';
5
-
6
- /**
7
- * WordPress dependencies
8
- */
9
  import { Tip } from '@wordpress/components';
10
- import { withSelect } from '@wordpress/data';
11
  import { compose } from '@wordpress/compose';
12
-
13
- /**
14
- * Internal dependencies
15
- */
16
  import tipsList from './list';
17
 
18
  function ContextualTip( { searchTerm, random = false, canUserCreate } ) {
 
 
 
 
 
 
 
 
1
  import { Tip } from '@wordpress/components';
 
2
  import { compose } from '@wordpress/compose';
3
+ import { withSelect } from '@wordpress/data';
4
+ import { get, filter, deburr, lowerCase, includes } from 'lodash';
 
 
5
  import tipsList from './list';
6
 
7
  function ContextualTip( { searchTerm, random = false, canUserCreate } ) {
block-inserter-modifications/contextual-tips/list.js CHANGED
@@ -1,12 +1,5 @@
1
- /**
2
- * WordPress dependencies
3
- */
4
- import { __ } from '@wordpress/i18n';
5
  import { createInterpolateElement } from '@wordpress/element';
6
-
7
- /**
8
- * Internal dependencies
9
- */
10
  import TipLink from './tip-link';
11
 
12
  function getTipDescription( text, conversion, textFallback ) {
 
 
 
 
1
  import { createInterpolateElement } from '@wordpress/element';
2
+ import { __ } from '@wordpress/i18n';
 
 
 
3
  import TipLink from './tip-link';
4
 
5
  function getTipDescription( text, conversion, textFallback ) {
block-inserter-modifications/contextual-tips/tip-link.js CHANGED
@@ -1,11 +1,4 @@
1
- /**
2
- * WordPress dependencies
3
- */
4
  import { select } from '@wordpress/data';
5
-
6
- /**
7
- * Internal dependencies
8
- */
9
  import { inIframe, isSimpleSite } from './utils';
10
 
11
  const isEditorIFramed = inIframe();
 
 
 
1
  import { select } from '@wordpress/data';
 
 
 
 
2
  import { inIframe, isSimpleSite } from './utils';
3
 
4
  const isEditorIFramed = inIframe();
block-inserter-modifications/dist/contextual-tips.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('lodash', 'wp-block-editor', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-i18n', 'wp-plugins', 'wp-polyfill'), 'version' => '388e50ae21de9028d59d35fa109cdbf0');
1
+ <?php return array('dependencies' => array('lodash', 'wp-block-editor', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-i18n', 'wp-plugins', 'wp-polyfill'), 'version' => '5e21f1a4d97c3ed7c9cf30b92e479b94');
block-inserter-modifications/dist/contextual-tips.js CHANGED
@@ -1 +1 @@
1
- !function(){"use strict";var t={357:function(t,e,n){function r(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n<e;n++)r[n]=t[n];return r}n.d(e,{Z:function(){return r}})},507:function(t,e,n){function r(t){if(Array.isArray(t))return t}n.d(e,{Z:function(){return r}})},890:function(t,e,n){n.d(e,{Z:function(){return o}});var r=n(357);function o(t){if(Array.isArray(t))return(0,r.Z)(t)}},733:function(t,e,n){function r(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}n.d(e,{Z:function(){return r}})},483:function(t,e,n){function r(t,e){var n=t&&("undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"]);if(null!=n){var r,o,i=[],_n=!0,u=!1;try{for(n=n.call(t);!(_n=(r=n.next()).done)&&(i.push(r.value),!e||i.length!==e);_n=!0);}catch(c){u=!0,o=c}finally{try{_n||null==n.return||n.return()}finally{if(u)throw o}}return i}}n.d(e,{Z:function(){return r}})},7:function(t,e,n){function r(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}n.d(e,{Z:function(){return r}})},154:function(t,e,n){function r(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}n.d(e,{Z:function(){return r}})},258:function(t,e,n){n.d(e,{Z:function(){return c}});var r=n(507),o=n(483),i=n(237),u=n(7);function c(t,e){return(0,r.Z)(t)||(0,o.Z)(t,e)||(0,i.Z)(t,e)||(0,u.Z)()}},766:function(t,e,n){n.d(e,{Z:function(){return c}});var r=n(890),o=n(733),i=n(237),u=n(154);function c(t){return(0,r.Z)(t)||(0,o.Z)(t)||(0,i.Z)(t)||(0,u.Z)()}},237:function(t,e,n){n.d(e,{Z:function(){return o}});var r=n(357);function o(t,e){if(t){if("string"==typeof t)return(0,r.Z)(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(t):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?(0,r.Z)(t,e):void 0}}},601:function(){},298:function(t,e,n){var r=n(766),o=n(27),i=n(804),u=n(997),c=n(707),s=n(417),a=n(36);e.Z=(0,s.compose)((0,c.withSelect)((function(t){return{canUserCreate:function(e){return t("core").canUser("create",e)}}})))((function(t){var e=t.searchTerm,n=t.random,c=void 0!==n&&n,s=t.canUserCreate;if(!e)return null;if(!a.Z.length)return null;var l=(0,i.deburr)((0,i.lowerCase)(e)).replace(/^\//,""),d=(0,i.filter)(a.Z,(function(t){var e=t.keywords,n=t.permission;return s(n)&&(0,i.filter)((0,r.Z)(new Set(e)),(function(t){return(0,i.includes)(l,t)})).length}));if(!d.length)return null;var f=c?Math.floor(Math.random()*d.length):0;return(0,o.createElement)("div",{className:"contextual-tip"},(0,o.createElement)(u.Tip,null,(0,i.get)(d,[f,"description"])))}))},36:function(t,e,n){var r=n(27),o=n(163),i=n(334),__=o.__;function u(t,e,n){return void 0!==r.createInterpolateElement?(0,r.createInterpolateElement)(t,e):n}var c=[{context:"theme",keywords:["theme",__("theme","full-site-editing")],description:u(__("You can visit the <a>theme directory</a> to select a different design for your site.","full-site-editing"),{a:(0,r.createElement)(i.Z,{section:"themes"})},__("You can visit the theme directory to select a different design for your site.","full-site-editing")),permission:"settings"},{context:"css",keywords:["css",__("css","full-site-editing"),"style",__("style","full-site-editing")],description:u(__("You can visit the the <a>Customizer</a> to edit the CSS on your site.","full-site-editing"),{a:(0,r.createElement)(i.Z,{section:"customizer",subsection:"custom_css"})},__("You can visit the the Customizer to edit the CSS on your site.","full-site-editing")),permission:"settings"},{context:"plugin",keywords:["plugin",__("plugin","full-site-editing")],description:u(__("You can visit the <a>plugin directory</a> to get started with installing new plugins.","full-site-editing"),{a:(0,r.createElement)(i.Z,{section:"plugins"})},__("You can visit the plugin directory to get started with installing new plugins.","full-site-editing")),permission:"settings"},{context:"header",keywords:["header",__("header","full-site-editing")],description:u(__("You can visit the the <a>Customizer</a> to edit your logo and site title.","full-site-editing"),{a:(0,r.createElement)(i.Z,{section:"customizer",subsection:"title_tagline"})},__("You can visit the the Customizer to edit your logo and site title.","full-site-editing")),permission:"settings"},{context:"color",keywords:["color",__("color","full-site-editing")],description:u(__("You can visit the the <a>Customizer</a> to edit the colors on your site.","full-site-editing"),{a:(0,r.createElement)(i.Z,{section:"customizer",subsection:"colors"})},__("You can visit the the Customizer to edit the colors on your site.","full-site-editing")),permission:"settings"}];e.Z=c},334:function(t,e,n){n.d(e,{Z:function(){return c}});var r=n(27),o=n(707),i=n(365),u=(0,i.y)();function c(t){var e=t.section,n=t.children,c=t.subsection,s=window.location.hostname,a=(0,o.select)("core/editor"),l=a.getCurrentPostId(),d=a.getCurrentPostType(),f=u&&!i.W?"&"+encodeURIComponent("return=https://wordpress.com/".concat(d,"/").concat(s,"/").concat(l)):"",p="autofocus[section]=".concat(c),m="#";switch(e){case"themes":m=u?"https://wordpress.com/themes/".concat(s):"./themes.php";break;case"plugins":m=u||i.W?"https://wordpress.com/plugins/".concat(s):"./plugin-install.php";break;case"customizer":m=u&&i.W?"https://wordpress.com/customize/".concat(s,"?").concat(p):"./customize.php?".concat(p).concat(f)}return(0,r.createElement)("a",{href:m,target:"_blank",rel:"noreferrer noopener"},n)}},365:function(t,e,n){n.d(e,{y:function(){return r},W:function(){return o}});var r=function(){try{return window.self!==window.top}catch(t){return!0}},o=!(!window||!window._currentSiteType||"simple"!==window._currentSiteType)},804:function(t){t.exports=window.lodash},399:function(t){t.exports=window.wp.blockEditor},997:function(t){t.exports=window.wp.components},417:function(t){t.exports=window.wp.compose},707:function(t){t.exports=window.wp.data},27:function(t){t.exports=window.wp.element},163:function(t){t.exports=window.wp.i18n},200:function(t){t.exports=window.wp.plugins}},e={};function n(r){var o=e[r];if(void 0!==o)return o.exports;var i=e[r]={exports:{}};return t[r](i,i.exports,n),i.exports}n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,{a:e}),e},n.d=function(t,e){for(var r in e)n.o(e,r)&&!n.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:e[r]})},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var r={};!function(){n.r(r);var t=n(258),e=n(27),o=n(804),i=n(399),u=n(200),c=n(298),s=(n(601),void 0!==i.__unstableInserterMenuExtension?i.__unstableInserterMenuExtension:i.__experimentalInserterMenuExtension),a=function(){var n=(0,e.useState)(""),r=(0,t.Z)(n,2),i=r[0],u=r[1],a=(0,o.debounce)(u,400);return(0,e.createElement)(s,null,(function(t){var n=t.filterValue;return t.hasItems||!n?null:(i!==n&&a(n),(0,e.createElement)(c.Z,{searchTerm:n}))}))};void 0!==s&&(0,u.registerPlugin)("block-inserter-contextual-tips",{render:function(){return(0,e.createElement)(a,null)}})}(),window.EditingToolkit=r}();
1
+ !function(){"use strict";var t={357:function(t,e,n){function r(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n<e;n++)r[n]=t[n];return r}n.d(e,{Z:function(){return r}})},507:function(t,e,n){function r(t){if(Array.isArray(t))return t}n.d(e,{Z:function(){return r}})},890:function(t,e,n){n.d(e,{Z:function(){return o}});var r=n(357);function o(t){if(Array.isArray(t))return(0,r.Z)(t)}},733:function(t,e,n){function r(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}n.d(e,{Z:function(){return r}})},483:function(t,e,n){function r(t,e){var n=t&&("undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"]);if(null!=n){var r,o,i=[],_n=!0,u=!1;try{for(n=n.call(t);!(_n=(r=n.next()).done)&&(i.push(r.value),!e||i.length!==e);_n=!0);}catch(c){u=!0,o=c}finally{try{_n||null==n.return||n.return()}finally{if(u)throw o}}return i}}n.d(e,{Z:function(){return r}})},7:function(t,e,n){function r(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}n.d(e,{Z:function(){return r}})},154:function(t,e,n){function r(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}n.d(e,{Z:function(){return r}})},258:function(t,e,n){n.d(e,{Z:function(){return c}});var r=n(507),o=n(483),i=n(237),u=n(7);function c(t,e){return(0,r.Z)(t)||(0,o.Z)(t,e)||(0,i.Z)(t,e)||(0,u.Z)()}},766:function(t,e,n){n.d(e,{Z:function(){return c}});var r=n(890),o=n(733),i=n(237),u=n(154);function c(t){return(0,r.Z)(t)||(0,o.Z)(t)||(0,i.Z)(t)||(0,u.Z)()}},237:function(t,e,n){n.d(e,{Z:function(){return o}});var r=n(357);function o(t,e){if(t){if("string"==typeof t)return(0,r.Z)(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(t):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?(0,r.Z)(t,e):void 0}}},601:function(){},298:function(t,e,n){var r=n(766),o=n(27),i=n(997),u=n(417),c=n(707),s=n(804),a=n(36);e.Z=(0,u.compose)((0,c.withSelect)((function(t){return{canUserCreate:function(e){return t("core").canUser("create",e)}}})))((function(t){var e=t.searchTerm,n=t.random,u=void 0!==n&&n,c=t.canUserCreate;if(!e)return null;if(!a.Z.length)return null;var l=(0,s.deburr)((0,s.lowerCase)(e)).replace(/^\//,""),d=(0,s.filter)(a.Z,(function(t){var e=t.keywords,n=t.permission;return c(n)&&(0,s.filter)((0,r.Z)(new Set(e)),(function(t){return(0,s.includes)(l,t)})).length}));if(!d.length)return null;var f=u?Math.floor(Math.random()*d.length):0;return(0,o.createElement)("div",{className:"contextual-tip"},(0,o.createElement)(i.Tip,null,(0,s.get)(d,[f,"description"])))}))},36:function(t,e,n){var r=n(27),o=n(163),i=n(334),__=o.__;function u(t,e,n){return void 0!==r.createInterpolateElement?(0,r.createInterpolateElement)(t,e):n}var c=[{context:"theme",keywords:["theme",__("theme","full-site-editing")],description:u(__("You can visit the <a>theme directory</a> to select a different design for your site.","full-site-editing"),{a:(0,r.createElement)(i.Z,{section:"themes"})},__("You can visit the theme directory to select a different design for your site.","full-site-editing")),permission:"settings"},{context:"css",keywords:["css",__("css","full-site-editing"),"style",__("style","full-site-editing")],description:u(__("You can visit the the <a>Customizer</a> to edit the CSS on your site.","full-site-editing"),{a:(0,r.createElement)(i.Z,{section:"customizer",subsection:"custom_css"})},__("You can visit the the Customizer to edit the CSS on your site.","full-site-editing")),permission:"settings"},{context:"plugin",keywords:["plugin",__("plugin","full-site-editing")],description:u(__("You can visit the <a>plugin directory</a> to get started with installing new plugins.","full-site-editing"),{a:(0,r.createElement)(i.Z,{section:"plugins"})},__("You can visit the plugin directory to get started with installing new plugins.","full-site-editing")),permission:"settings"},{context:"header",keywords:["header",__("header","full-site-editing")],description:u(__("You can visit the the <a>Customizer</a> to edit your logo and site title.","full-site-editing"),{a:(0,r.createElement)(i.Z,{section:"customizer",subsection:"title_tagline"})},__("You can visit the the Customizer to edit your logo and site title.","full-site-editing")),permission:"settings"},{context:"color",keywords:["color",__("color","full-site-editing")],description:u(__("You can visit the the <a>Customizer</a> to edit the colors on your site.","full-site-editing"),{a:(0,r.createElement)(i.Z,{section:"customizer",subsection:"colors"})},__("You can visit the the Customizer to edit the colors on your site.","full-site-editing")),permission:"settings"}];e.Z=c},334:function(t,e,n){n.d(e,{Z:function(){return c}});var r=n(27),o=n(707),i=n(365),u=(0,i.y)();function c(t){var e=t.section,n=t.children,c=t.subsection,s=window.location.hostname,a=(0,o.select)("core/editor"),l=a.getCurrentPostId(),d=a.getCurrentPostType(),f=u&&!i.W?"&"+encodeURIComponent("return=https://wordpress.com/".concat(d,"/").concat(s,"/").concat(l)):"",p="autofocus[section]=".concat(c),m="#";switch(e){case"themes":m=u?"https://wordpress.com/themes/".concat(s):"./themes.php";break;case"plugins":m=u||i.W?"https://wordpress.com/plugins/".concat(s):"./plugin-install.php";break;case"customizer":m=u&&i.W?"https://wordpress.com/customize/".concat(s,"?").concat(p):"./customize.php?".concat(p).concat(f)}return(0,r.createElement)("a",{href:m,target:"_blank",rel:"noreferrer noopener"},n)}},365:function(t,e,n){n.d(e,{y:function(){return r},W:function(){return o}});var r=function(){try{return window.self!==window.top}catch(t){return!0}},o=!(!window||!window._currentSiteType||"simple"!==window._currentSiteType)},804:function(t){t.exports=window.lodash},399:function(t){t.exports=window.wp.blockEditor},997:function(t){t.exports=window.wp.components},417:function(t){t.exports=window.wp.compose},707:function(t){t.exports=window.wp.data},27:function(t){t.exports=window.wp.element},163:function(t){t.exports=window.wp.i18n},200:function(t){t.exports=window.wp.plugins}},e={};function n(r){var o=e[r];if(void 0!==o)return o.exports;var i=e[r]={exports:{}};return t[r](i,i.exports,n),i.exports}n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,{a:e}),e},n.d=function(t,e){for(var r in e)n.o(e,r)&&!n.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:e[r]})},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var r={};!function(){n.r(r);var t=n(258),e=n(27),o=n(399),i=n(200),u=n(804),c=n(298),s=(n(601),void 0!==o.__unstableInserterMenuExtension?o.__unstableInserterMenuExtension:o.__experimentalInserterMenuExtension),a=function(){var n=(0,e.useState)(""),r=(0,t.Z)(n,2),o=r[0],i=r[1],a=(0,u.debounce)(i,400);return(0,e.createElement)(s,null,(function(t){var n=t.filterValue;return t.hasItems||!n?null:(o!==n&&a(n),(0,e.createElement)(c.Z,{searchTerm:n}))}))};void 0!==s&&(0,i.registerPlugin)("block-inserter-contextual-tips",{render:function(){return(0,e.createElement)(a,null)}})}(),window.EditingToolkit=r}();
block-patterns/index.ts CHANGED
@@ -1,4 +1 @@
1
- /**
2
- * Internal dependencies
3
- */
4
  import './src/premium-block-patterns';
 
 
 
1
  import './src/premium-block-patterns';
common/data-stores/domain-suggestions.ts CHANGED
@@ -1,6 +1,3 @@
1
- /**
2
- * External dependencies
3
- */
4
  import { DomainSuggestions } from '@automattic/data-stores';
5
 
6
  DomainSuggestions.register();
 
 
 
1
  import { DomainSuggestions } from '@automattic/data-stores';
2
 
3
  DomainSuggestions.register();
common/data-stores/index.ts CHANGED
@@ -1,6 +1,3 @@
1
- /**
2
- * Internal dependencies
3
- */
4
  import './domain-suggestions';
5
  import './plans';
6
  import './site';
 
 
 
1
  import './domain-suggestions';
2
  import './plans';
3
  import './site';
common/data-stores/launch.ts CHANGED
@@ -1,6 +1,3 @@
1
- /**
2
- * External dependencies
3
- */
4
  import { Launch } from '@automattic/data-stores';
5
 
6
  export type LaunchStepType = Launch.LaunchStepType;
 
 
 
1
  import { Launch } from '@automattic/data-stores';
2
 
3
  export type LaunchStepType = Launch.LaunchStepType;
common/data-stores/plans.ts CHANGED
@@ -1,6 +1,3 @@
1
- /**
2
- * External dependencies
3
- */
4
  import { Plans } from '@automattic/data-stores';
5
 
6
  Plans.register();
 
 
 
1
  import { Plans } from '@automattic/data-stores';
2
 
3
  Plans.register();
common/data-stores/site.ts CHANGED
@@ -1,6 +1,3 @@
1
- /**
2
- * External dependencies
3
- */
4
  import { Site } from '@automattic/data-stores';
5
 
6
  Site.register( { client_id: '', client_secret: '' } );
 
 
 
1
  import { Site } from '@automattic/data-stores';
2
 
3
  Site.register( { client_id: '', client_secret: '' } );
common/data-stores/wpcom-features.ts CHANGED
@@ -1,6 +1,3 @@
1
- /**
2
- * External dependencies
3
- */
4
  import { WPCOMFeatures } from '@automattic/data-stores';
5
 
6
  WPCOMFeatures.register();
 
 
 
1
  import { WPCOMFeatures } from '@automattic/data-stores';
2
 
3
  WPCOMFeatures.register();
common/dist/common.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('wp-polyfill'), 'version' => '41f0d03a1b76a69fbbdbd6a47cd202d1');
1
+ <?php return array('dependencies' => array('wp-polyfill'), 'version' => '679953e586bdd969566f13a56bbbee25');
common/dist/data-stores.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('react', 'wp-compose', 'wp-data', 'wp-data-controls', 'wp-deprecated', 'wp-element', 'wp-polyfill'), 'version' => 'a836916bffcfb1104ac92c3e67b5a5e5');
1
+ <?php return array('dependencies' => array('react', 'wp-compose', 'wp-data', 'wp-data-controls', 'wp-deprecated', 'wp-element', 'wp-polyfill'), 'version' => '8d6ab3ca12a3ffa4c569e0ee25df70c1');
common/dist/hide-plugin-buttons-mobile.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('wp-polyfill'), 'version' => '2468097975ba5588468d02a682ea2be4');
1
+ <?php return array('dependencies' => array('wp-polyfill'), 'version' => 'bd052baf1fb969375280825404cbfa15');
common/hide-plugin-buttons-mobile.js CHANGED
@@ -1,5 +1 @@
1
- /**
2
- * Internal dependencies
3
- */
4
-
5
  import './hide-plugin-buttons-mobile.scss';
 
 
 
 
1
  import './hide-plugin-buttons-mobile.scss';
common/index.js CHANGED
@@ -1,4 +1 @@
1
- /**
2
- * Internal dependencies
3
- */
4
  import './index.scss';
 
 
 
1
  import './index.scss';
dotcom-fse/blocks/navigation-menu/edit.js CHANGED
@@ -1,11 +1,5 @@
1
  /* eslint-disable wpcalypso/jsx-classname-namespace */
2
- /**
3
- * WordPress dependencies
4
- */
5
- import ServerSideRender from '@wordpress/server-side-render';
6
- import { Fragment } from '@wordpress/element';
7
- import { compose } from '@wordpress/compose';
8
- import { __ } from '@wordpress/i18n';
9
  import {
10
  AlignmentToolbar,
11
  BlockControls,
@@ -17,11 +11,11 @@ import {
17
  withFontSizes,
18
  } from '@wordpress/block-editor';
19
  import { PanelBody } from '@wordpress/components';
 
20
  import { withSelect } from '@wordpress/data';
21
-
22
- /**
23
- * Internal dependencies
24
- */
25
 
26
  const NavigationMenuEdit = ( {
27
  attributes,
1
  /* eslint-disable wpcalypso/jsx-classname-namespace */
2
+
 
 
 
 
 
 
3
  import {
4
  AlignmentToolbar,
5
  BlockControls,
11
  withFontSizes,
12
  } from '@wordpress/block-editor';
13
  import { PanelBody } from '@wordpress/components';
14
+ import { compose } from '@wordpress/compose';
15
  import { withSelect } from '@wordpress/data';
16
+ import { Fragment } from '@wordpress/element';
17
+ import { __ } from '@wordpress/i18n';
18
+ import ServerSideRender from '@wordpress/server-side-render';
 
19
 
20
  const NavigationMenuEdit = ( {
21
  attributes,
dotcom-fse/blocks/navigation-menu/index.js CHANGED
@@ -1,14 +1,8 @@
1
- /**
2
- * WordPress dependencies
3
- */
4
  import { registerBlockType } from '@wordpress/blocks';
5
  import { __ } from '@wordpress/i18n';
6
-
7
- /**
8
- * Internal dependencies
9
- */
10
- import edit from './edit';
11
  import { getCategoryWithFallbacks } from '../../../block-helpers';
 
 
12
  import './style.scss';
13
 
14
  const icon = (
 
 
 
1
  import { registerBlockType } from '@wordpress/blocks';
2
  import { __ } from '@wordpress/i18n';
 
 
 
 
 
3
  import { getCategoryWithFallbacks } from '../../../block-helpers';
4
+ import edit from './edit';
5
+
6
  import './style.scss';
7
 
8
  const icon = (
dotcom-fse/blocks/post-content/edit.js CHANGED
@@ -1,18 +1,11 @@
1
  /* eslint-disable wpcalypso/jsx-classname-namespace */
2
 
3
- /**
4
- * External dependencies
5
- */
6
- import classNames from 'classnames';
7
-
8
- /**
9
- * WordPress dependencies
10
- */
11
  import { compose, withState } from '@wordpress/compose';
12
  import { withSelect } from '@wordpress/data';
13
  import { PostTitle } from '@wordpress/editor';
14
- import { InnerBlocks } from '@wordpress/block-editor';
15
  import { Component, Fragment } from '@wordpress/element';
 
16
 
17
  class PostContentEdit extends Component {
18
  toggleEditing() {
1
  /* eslint-disable wpcalypso/jsx-classname-namespace */
2
 
3
+ import { InnerBlocks } from '@wordpress/block-editor';
 
 
 
 
 
 
 
4
  import { compose, withState } from '@wordpress/compose';
5
  import { withSelect } from '@wordpress/data';
6
  import { PostTitle } from '@wordpress/editor';
 
7
  import { Component, Fragment } from '@wordpress/element';
8
+ import classNames from 'classnames';
9
 
10
  class PostContentEdit extends Component {
11
  toggleEditing() {
dotcom-fse/blocks/post-content/index.js CHANGED
@@ -1,17 +1,11 @@
1
- /**
2
- * External dependencies
3
- */
4
- import { createHigherOrderComponent } from '@wordpress/compose';
5
  import { registerBlockType } from '@wordpress/blocks';
6
- import { __ } from '@wordpress/i18n';
7
  import { addFilter } from '@wordpress/hooks';
8
-
9
- /**
10
- * Internal dependencies
11
- */
12
  import edit from './edit';
13
  import save from './save';
14
- import { getCategoryWithFallbacks } from '../../../block-helpers';
15
  import './style.scss';
16
 
17
  registerBlockType( 'a8c/post-content', {
 
 
 
 
1
  import { registerBlockType } from '@wordpress/blocks';
2
+ import { createHigherOrderComponent } from '@wordpress/compose';
3
  import { addFilter } from '@wordpress/hooks';
4
+ import { __ } from '@wordpress/i18n';
5
+ import { getCategoryWithFallbacks } from '../../../block-helpers';
 
 
6
  import edit from './edit';
7
  import save from './save';
8
+
9
  import './style.scss';
10
 
11
  registerBlockType( 'a8c/post-content', {
dotcom-fse/blocks/post-content/save.js CHANGED
@@ -1,6 +1,3 @@
1
- /**
2
- * External dependencies
3
- */
4
  import { InnerBlocks } from '@wordpress/block-editor';
5
 
6
  export default () => <InnerBlocks.Content />;
 
 
 
1
  import { InnerBlocks } from '@wordpress/block-editor';
2
 
3
  export default () => <InnerBlocks.Content />;
dotcom-fse/blocks/site-credit/edit.js CHANGED
@@ -1,22 +1,12 @@
1
  /* eslint-disable wpcalypso/jsx-classname-namespace */
2
  /* global fullSiteEditing */
3
- /**
4
- * External dependencies
5
- */
6
- import classNames from 'classnames';
7
 
8
- /**
9
- * WordPress dependencies
10
- */
11
  import { AlignmentToolbar, BlockControls } from '@wordpress/block-editor';
12
  import { SelectControl } from '@wordpress/components';
13
  import { compose } from '@wordpress/compose';
14
  import { Fragment } from '@wordpress/element';
15
  import { __ } from '@wordpress/i18n';
16
-
17
- /**
18
- * Internal dependencies
19
- */
20
  import { withSiteOptions } from '../../lib';
21
  import { RenderedCreditChoice } from './footer-credit-choices';
22
 
1
  /* eslint-disable wpcalypso/jsx-classname-namespace */
2
  /* global fullSiteEditing */
 
 
 
 
3
 
 
 
 
4
  import { AlignmentToolbar, BlockControls } from '@wordpress/block-editor';
5
  import { SelectControl } from '@wordpress/components';
6
  import { compose } from '@wordpress/compose';
7
  import { Fragment } from '@wordpress/element';
8
  import { __ } from '@wordpress/i18n';
9
+ import classNames from 'classnames';
 
 
 
10
  import { withSiteOptions } from '../../lib';
11
  import { RenderedCreditChoice } from './footer-credit-choices';
12
 
dotcom-fse/blocks/site-credit/footer-credit-choices.js CHANGED
@@ -1,8 +1,6 @@
1
- /* eslint-disable wpcalypso/import-docblock */
2
  /* global fullSiteEditing */
3
- /**
4
- * WordPress dependencies
5
- */
6
  import { Icon } from '@wordpress/components';
7
 
8
  const { footerCreditOptions } = fullSiteEditing;
 
1
  /* global fullSiteEditing */
2
+
3
+ // eslint-disable-next-line no-restricted-imports
 
4
  import { Icon } from '@wordpress/components';
5
 
6
  const { footerCreditOptions } = fullSiteEditing;
dotcom-fse/blocks/site-credit/index.js CHANGED
@@ -1,14 +1,8 @@
1
- /**
2
- * WordPress dependencies
3
- */
4
  import { registerBlockType } from '@wordpress/blocks';
5
  import { __ } from '@wordpress/i18n';
6
-
7
- /**
8
- * Internal dependencies
9
- */
10
- import edit from './edit';
11
  import { getCategoryWithFallbacks } from '../../../block-helpers';
 
 
12
  import './style.scss';
13
 
14
  registerBlockType( 'a8c/site-credit', {
 
 
 
1
  import { registerBlockType } from '@wordpress/blocks';
2
  import { __ } from '@wordpress/i18n';
 
 
 
 
 
3
  import { getCategoryWithFallbacks } from '../../../block-helpers';
4
+ import edit from './edit';
5
+
6
  import './style.scss';
7
 
8
  registerBlockType( 'a8c/site-credit', {
dotcom-fse/blocks/site-description/edit.js CHANGED
@@ -1,12 +1,5 @@
1
  /* eslint-disable wpcalypso/jsx-classname-namespace */
2
- /**
3
- * External dependencies
4
- */
5
- import classNames from 'classnames';
6
 
7
- /**
8
- * WordPress dependencies
9
- */
10
  import {
11
  AlignmentToolbar,
12
  BlockControls,
@@ -18,15 +11,12 @@ import {
18
  withColors,
19
  withFontSizes,
20
  } from '@wordpress/block-editor';
 
21
  import { compose } from '@wordpress/compose';
22
  import { withSelect, withDispatch } from '@wordpress/data';
23
  import { Fragment } from '@wordpress/element';
24
  import { __ } from '@wordpress/i18n';
25
- import { PanelBody } from '@wordpress/components';
26
-
27
- /**
28
- * Internal dependencies
29
- */
30
  import { withSiteOptions } from '../../lib';
31
 
32
  const noop = () => {};
1
  /* eslint-disable wpcalypso/jsx-classname-namespace */
 
 
 
 
2
 
 
 
 
3
  import {
4
  AlignmentToolbar,
5
  BlockControls,
11
  withColors,
12
  withFontSizes,
13
  } from '@wordpress/block-editor';
14
+ import { PanelBody } from '@wordpress/components';
15
  import { compose } from '@wordpress/compose';
16
  import { withSelect, withDispatch } from '@wordpress/data';
17
  import { Fragment } from '@wordpress/element';
18
  import { __ } from '@wordpress/i18n';
19
+ import classNames from 'classnames';
 
 
 
 
20
  import { withSiteOptions } from '../../lib';
21
 
22
  const noop = () => {};
dotcom-fse/blocks/site-description/index.js CHANGED
@@ -1,14 +1,8 @@
1
- /**
2
- * WordPress dependencies
3
- */
4
  import { registerBlockType } from '@wordpress/blocks';
5
  import { __ } from '@wordpress/i18n';
6
-
7
- /**
8
- * Internal dependencies
9
- */
10
- import edit from './edit';
11
  import { getCategoryWithFallbacks } from '../../../block-helpers';
 
 
12
  import './style.scss';
13
 
14
  registerBlockType( 'a8c/site-description', {
 
 
 
1
  import { registerBlockType } from '@wordpress/blocks';
2
  import { __ } from '@wordpress/i18n';
 
 
 
 
 
3
  import { getCategoryWithFallbacks } from '../../../block-helpers';
4
+ import edit from './edit';
5
+
6
  import './style.scss';
7
 
8
  registerBlockType( 'a8c/site-description', {
dotcom-fse/blocks/site-title/edit.js CHANGED
@@ -1,13 +1,5 @@
1
  /* eslint-disable wpcalypso/jsx-classname-namespace */
2
- /**
3
- * External dependencies
4
- */
5
- import classNames from 'classnames';
6
 
7
- /**
8
- * WordPress dependencies
9
- */
10
- import { __ } from '@wordpress/i18n';
11
  import {
12
  AlignmentToolbar,
13
  BlockControls,
@@ -18,14 +10,12 @@ import {
18
  withColors,
19
  withFontSizes,
20
  } from '@wordpress/block-editor';
21
- import { withSelect, withDispatch } from '@wordpress/data';
22
  import { compose } from '@wordpress/compose';
 
23
  import { Fragment } from '@wordpress/element';
24
- import { PanelBody } from '@wordpress/components';
25
-
26
- /**
27
- * Internal dependencies
28
- */
29
  import { withSiteOptions } from '../../lib';
30
 
31
  const noop = () => {};
1
  /* eslint-disable wpcalypso/jsx-classname-namespace */
 
 
 
 
2
 
 
 
 
 
3
  import {
4
  AlignmentToolbar,
5
  BlockControls,
10
  withColors,
11
  withFontSizes,
12
  } from '@wordpress/block-editor';
13
+ import { PanelBody } from '@wordpress/components';
14
  import { compose } from '@wordpress/compose';
15
+ import { withSelect, withDispatch } from '@wordpress/data';
16
  import { Fragment } from '@wordpress/element';
17
+ import { __ } from '@wordpress/i18n';
18
+ import classNames from 'classnames';
 
 
 
19
  import { withSiteOptions } from '../../lib';
20
 
21
  const noop = () => {};
dotcom-fse/blocks/site-title/index.js CHANGED
@@ -1,14 +1,8 @@
1
- /**
2
- * WordPress dependencies
3
- */
4
  import { registerBlockType } from '@wordpress/blocks';
5
  import { __ } from '@wordpress/i18n';
6
-
7
- /**
8
- * Internal dependencies
9
- */
10
- import edit from './edit';
11
  import { getCategoryWithFallbacks } from '../../../block-helpers';
 
 
12
  import './style.scss';
13
 
14
  registerBlockType( 'a8c/site-title', {
 
 
 
1
  import { registerBlockType } from '@wordpress/blocks';
2
  import { __ } from '@wordpress/i18n';
 
 
 
 
 
3
  import { getCategoryWithFallbacks } from '../../../block-helpers';
4
+ import edit from './edit';
5
+
6
  import './style.scss';
7
 
8
  registerBlockType( 'a8c/site-title', {
dotcom-fse/blocks/template/edit.js CHANGED
@@ -1,26 +1,17 @@
1
  /* eslint-disable wpcalypso/jsx-classname-namespace */
2
  /* global fullSiteEditing */
3
- /**
4
- * External dependencies
5
- */
6
- import classNames from 'classnames';
7
- import { get } from 'lodash';
8
 
9
- /**
10
- * WordPress dependencies
11
- */
12
- import { parse, createBlock } from '@wordpress/blocks';
13
  import { BlockEdit } from '@wordpress/block-editor';
 
14
  import { Button, Placeholder, Spinner, Disabled } from '@wordpress/components';
15
  import { compose, withState } from '@wordpress/compose';
16
  import { withDispatch, withSelect } from '@wordpress/data';
17
  import { Fragment, useEffect, useState, createRef } from '@wordpress/element';
18
  import { __, sprintf } from '@wordpress/i18n';
19
  import { addQueryArgs } from '@wordpress/url';
 
 
20
 
21
- /**
22
- * Internal dependencies
23
- */
24
  import './style.scss';
25
 
26
  const noop = () => {};
1
  /* eslint-disable wpcalypso/jsx-classname-namespace */
2
  /* global fullSiteEditing */
 
 
 
 
 
3
 
 
 
 
 
4
  import { BlockEdit } from '@wordpress/block-editor';
5
+ import { parse, createBlock } from '@wordpress/blocks';
6
  import { Button, Placeholder, Spinner, Disabled } from '@wordpress/components';
7
  import { compose, withState } from '@wordpress/compose';
8
  import { withDispatch, withSelect } from '@wordpress/data';
9
  import { Fragment, useEffect, useState, createRef } from '@wordpress/element';
10
  import { __, sprintf } from '@wordpress/i18n';
11
  import { addQueryArgs } from '@wordpress/url';
12
+ import classNames from 'classnames';
13
+ import { get } from 'lodash';
14
 
 
 
 
15
  import './style.scss';
16
 
17
  const noop = () => {};
dotcom-fse/blocks/template/index.js CHANGED
@@ -1,17 +1,12 @@
1
  /* global fullSiteEditing */
2
- /**
3
- * WordPress dependencies
4
- */
5
  import { registerBlockType } from '@wordpress/blocks';
6
- import { __ } from '@wordpress/i18n';
7
  import { createHigherOrderComponent } from '@wordpress/compose';
8
  import { addFilter } from '@wordpress/hooks';
9
-
10
- /**
11
- * Internal dependencies
12
- */
13
- import edit from './edit';
14
  import { getCategoryWithFallbacks } from '../../../block-helpers';
 
 
15
  import './style.scss';
16
  import './site-logo';
17
 
1
  /* global fullSiteEditing */
2
+
 
 
3
  import { registerBlockType } from '@wordpress/blocks';
 
4
  import { createHigherOrderComponent } from '@wordpress/compose';
5
  import { addFilter } from '@wordpress/hooks';
6
+ import { __ } from '@wordpress/i18n';
 
 
 
 
7
  import { getCategoryWithFallbacks } from '../../../block-helpers';
8
+ import edit from './edit';
9
+
10
  import './style.scss';
11
  import './site-logo';
12
 
dotcom-fse/blocks/template/site-logo.js CHANGED
@@ -1,7 +1,3 @@
1
- /* eslint-disable wpcalypso/import-docblock */
2
- /**
3
- * WordPress dependencies
4
- */
5
  import { createHigherOrderComponent } from '@wordpress/compose';
6
  import { addFilter } from '@wordpress/hooks';
7
 
 
 
 
 
1
  import { createHigherOrderComponent } from '@wordpress/compose';
2
  import { addFilter } from '@wordpress/hooks';
3
 
dotcom-fse/dist/dotcom-fse.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('lodash', 'react-dom', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-data', 'wp-dom-ready', 'wp-editor', 'wp-element', 'wp-hooks', 'wp-html-entities', 'wp-i18n', 'wp-plugins', 'wp-polyfill', 'wp-server-side-render', 'wp-url'), 'version' => '7b4c67a40cfaa03de11eea46a0951729');
1
+ <?php return array('dependencies' => array('lodash', 'react-dom', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-data', 'wp-dom-ready', 'wp-editor', 'wp-element', 'wp-hooks', 'wp-html-entities', 'wp-i18n', 'wp-plugins', 'wp-polyfill', 'wp-server-side-render', 'wp-url'), 'version' => 'f0122a6ffa487238a0d7f22ecceb93a7');
dotcom-fse/dist/dotcom-fse.js CHANGED
@@ -3,4 +3,4 @@
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 r={}.hasOwnProperty;function o(){for(var t=[],e=0;e<arguments.length;e++){var n=arguments[e];if(n){var i=typeof n;if("string"===i||"number"===i)t.push(n);else if(Array.isArray(n)){if(n.length){var l=o.apply(null,n);l&&t.push(l)}}else if("object"===i)if(n.toString===Object.prototype.toString)for(var c in n)r.call(n,c)&&n[c]&&t.push(c);else t.push(n.toString())}}return t.join(" ")}t.exports?(o.default=o,t.exports=o):void 0===(n=function(){return o}.apply(e,[]))||(t.exports=n)}()},6959:function(){},7148:function(){},3920:function(){},9861:function(){},6913:function(){},7252:function(){},784:function(){},6254:function(){},1428:function(t,e,n){"use strict";n.d(e,{R:function(){return o}});var r=n(9314);function o(){for(var t=(0,r.getCategories)(),e=arguments.length,n=new Array(e),o=0;o<e;o++)n[o]=arguments[o];for(var i=function(){var e=c[l];if(t.some((function(t){return t.slug===e})))return{v:e}},l=0,c=n;l<c.length;l++){var s=i();if("object"==typeof s)return s.v}throw new Error("Could not find a category from the provided list: ".concat(n.join(",")))}},49:function(t,e,n){"use strict";var r=n(3027),o=n(9775),i=n.n(o),l=n(1417),c=n(3163),s=n(6399),a=n(7997),u=n(5707),__=c.__;e.Z=(0,l.compose)([(0,s.withColors)("backgroundColor",{textColor:"color"}),(0,s.withFontSizes)("fontSize"),(0,u.withSelect)((function(t){return{isPublished:t("core/editor").isCurrentPostPublished()}}))])((function(t){var e=t.attributes,n=t.backgroundColor,o=t.fontSize,l=t.setAttributes,c=t.setBackgroundColor,u=t.setFontSize,d=t.setTextColor,f=t.textColor,p=t.isPublished,m=e.customFontSize,g=e.textAlign,v=m||o.size;return(0,r.createElement)(r.Fragment,null,(0,r.createElement)(s.BlockControls,null,(0,r.createElement)(s.AlignmentToolbar,{value:g,onChange:function(t){l({textAlign:t})}})),(0,r.createElement)(s.InspectorControls,null,(0,r.createElement)(a.PanelBody,{className:"blocks-font-size",title:__("Text Settings","full-site-editing")},(0,r.createElement)(s.FontSizePicker,{onChange:u,value:v})),(0,r.createElement)(s.PanelColorSettings,{title:__("Color Settings","full-site-editing"),initialOpen:!1,colorSettings:[{value:n.color,onChange:c,label:__("Background Color","full-site-editing")},{value:f.color,onChange:d,label:__("Text Color","full-site-editing")}]},(0,r.createElement)(s.ContrastChecker,{textColor:f.color,backgroundColor:n.color,fontSize:v}))),(0,r.createElement)(i(),{isPublished:p,block:"a8c/navigation-menu",attributes:e}))}))},4018:function(t,e,n){"use strict";var r=n(3027),o=n(9314),i=n(3163),l=n(49),c=n(1428),__=(n(6959),i.__),s=(0,r.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24"},(0,r.createElement)("path",{fill:"none",d:"M0 0h24v24H0V0z"}),(0,r.createElement)("path",{d:"M12 7.27l4.28 10.43-3.47-1.53-.81-.36-.81.36-3.47 1.53L12 7.27M12 2L4.5 20.29l.71.71L12 18l6.79 3 .71-.71L12 2z"}));(0,o.registerBlockType)("a8c/navigation-menu",{title:__("Navigation Menu","full-site-editing"),description:__("Visual placeholder for site-wide navigation and menus.","full-site-editing"),icon:s,category:(0,c.R)("design","layout"),supports:{align:["wide","full","right","left"],html:!1,reusable:!1},edit:l.Z,save:function(){return null}})},966:function(t,e,n){"use strict";var r=n(1119),o=n(4659),i=n(4730),l=n(5663),c=n(9049),s=n(3027),a=n(2779),u=n.n(a),d=n(1417),f=n(5707),p=n(8885),m=n(6399),g=function(t){(0,l.Z)(n,t);var e=(0,c.Z)(n);function n(){return(0,o.Z)(this,n),e.apply(this,arguments)}return(0,i.Z)(n,[{key:"toggleEditing",value:function(){var t=this.props,e=t.isEditing;(0,t.setState)({isEditing:!e})}},{key:"onSelectPost",value:function(t){var e=t.id,n=t.type;this.props.setState({isEditing:!1,selectedPostId:e,selectedPostType:n})}},{key:"render",value:function(){var t=this.props.attributes.align;return(0,s.createElement)(s.Fragment,null,(0,s.createElement)("div",{className:u()("post-content-block",(0,r.Z)({},"align".concat(t),t))},(0,s.createElement)(p.PostTitle,null),(0,s.createElement)(m.InnerBlocks,{templateLock:!1})))}}]),n}(s.Component);e.Z=(0,d.compose)([(0,d.withState)({isEditing:!1,selectedPostId:void 0,selectedPostType:void 0}),(0,f.withSelect)((function(t,e){var n=e.selectedPostId,r=e.selectedPostType;return{selectedPost:(0,t("core").getEntityRecord)("postType",r,n)}}))])(g)},7308:function(t,e,n){"use strict";var r=n(7560),o=n(3027),i=n(1417),l=n(9314),c=n(3163),s=n(5799),a=n(966),u=n(3175),d=n(1428),__=(n(7148),c.__);(0,l.registerBlockType)("a8c/post-content",{title:__("Content","full-site-editing"),description:__("The page content.","full-site-editing"),icon:"layout",category:(0,d.R)("design","layout"),supports:{align:["full"],anchor:!1,customClassName:!1,html:!1,inserter:!1,multiple:!1,reusable:!1},attributes:{align:{type:"string",default:"full"}},edit:a.Z,save:u.Z});var f=(0,i.createHigherOrderComponent)((function(t){return function(e){return"a8c/post-content"!==e.name?(0,o.createElement)(t,e):(0,o.createElement)(t,(0,r.Z)({},e,{className:"post-content__block"}))}}),"addContentSlotClassname");(0,s.addFilter)("editor.BlockListBlock","full-site-editing/blocks/post-content",f,9)},3175:function(t,e,n){"use strict";var r=n(3027),o=n(6399);e.Z=function(){return(0,r.createElement)(o.InnerBlocks.Content,null)}},1097:function(t,e,n){"use strict";var r=n(1119),o=n(3027),i=n(2779),l=n.n(i),c=n(6399),s=n(7997),a=n(1417),u=n(3163),d=n(6284),f=n(8558),__=u.__,p=fullSiteEditing,m=p.footerCreditOptions,g=p.defaultCreditOption;e.Z=(0,a.compose)([(0,d.g)({siteTitleOption:{optionName:"title",defaultValue:__("Site title loading…","full-site-editing")},footerCreditOption:{optionName:"footer_credit",defaultValue:__("Footer credit loading…","full-site-editing")}})])((function(t){var e=t.attributes.textAlign,n=void 0===e?"center":e,i=t.isSelected,a=t.setAttributes,u=t.footerCreditOption,d=u.value,p=u.updateValue,v=t.siteTitleOption.value,b=d||g;return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(c.BlockControls,null,(0,o.createElement)(c.AlignmentToolbar,{value:n,onChange:function(t){a({textAlign:t})}})),(0,o.createElement)("div",{className:l()("site-info","site-credit__block",(0,r.Z)({},"has-text-align-".concat(n),n))},(0,o.createElement)("span",{className:"site-name"},v),(0,o.createElement)("span",{className:"comma"},","),(0,o.createElement)("span",{className:"site-credit__selection"},i?(0,o.createElement)(s.SelectControl,{onChange:p,value:b,options:m}):(0,o.createElement)(f.U,{choice:b}))))}))},8558:function(t,e,n){"use strict";n.d(e,{U:function(){return c}});var r=n(9394),o=n(3027),i=n(7997),l=fullSiteEditing.footerCreditOptions,c=function(t){var e=t.choice,n=l.find((function(t){return t.value===e}));if(!n)return null;var c=n.renderType,s=n.renderProps,a=n.label,u=(0,r.Z)({label:a},s);return"icon"===c?(0,o.createElement)(i.Icon,u):(0,o.createElement)("span",null," ",u.label," ")}},6367:function(t,e,n){"use strict";var r=n(9314),o=n(3163),i=n(1097),l=n(1428),__=(n(3920),o.__);(0,r.registerBlockType)("a8c/site-credit",{title:__("WordPress.com Credit","full-site-editing"),description:__("This block tells the world that you're using WordPress.com.","full-site-editing"),icon:"wordpress-alt",category:(0,l.R)("design","layout"),supports:{align:["wide","full"],html:!1,multiple:!1,reusable:!1,removal:!1},attributes:{align:{type:"string",default:"wide"},textAlign:{type:"string",default:"center"}},edit:i.Z,save:function(){return null}})},942:function(t,e,n){"use strict";var r=n(1119),o=n(3027),i=n(2779),l=n.n(i),c=n(6399),s=n(1417),a=n(5707),u=n(3163),d=n(7997),f=n(6284),__=u.__,p=function(){};e.Z=(0,s.compose)([(0,c.withColors)("backgroundColor",{textColor:"color"}),(0,c.withFontSizes)("fontSize"),(0,a.withSelect)((function(t,e){var n=e.clientId,r=t("core/block-editor"),o=r.getBlockIndex,i=r.getBlockRootClientId,l=r.getTemplateLock,c=i(n);return{blockIndex:o(n,c),isLocked:!!l(c),rootClientId:c}})),(0,a.withDispatch)((function(t,e){var n=e.blockIndex,r=e.rootClientId;return{insertDefaultBlock:function(){return t("core/block-editor").insertDefaultBlock({},r,n+1)}}})),(0,f.g)({siteDescription:{optionName:"description",defaultValue:__("Site description loading…","full-site-editing")}})])((function(t){var e,n=t.attributes,i=t.backgroundColor,s=t.className,a=t.fontSize,u=t.insertDefaultBlock,f=t.setAttributes,m=t.setBackgroundColor,g=t.setFontSize,v=t.setTextColor,b=t.siteDescription,y=t.textColor,h=n.customFontSize,w=n.textAlign,S=h||a.size,E=b.value,k=b.updateValue;return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(c.BlockControls,null,(0,o.createElement)(c.AlignmentToolbar,{value:w,onChange:function(t){f({textAlign:t})}})),(0,o.createElement)(c.InspectorControls,null,(0,o.createElement)(d.PanelBody,{className:"blocks-font-size",title:__("Text Settings","full-site-editing")},(0,o.createElement)(c.FontSizePicker,{onChange:g,value:S})),(0,o.createElement)(c.PanelColorSettings,{title:__("Color Settings","full-site-editing"),initialOpen:!1,colorSettings:[{value:i.color,onChange:m,label:__("Background Color","full-site-editing")},{value:y.color,onChange:v,label:__("Text Color","full-site-editing")}]},(0,o.createElement)(c.ContrastChecker,{textColor:y.color,backgroundColor:i.color,fontSize:S}))),(0,o.createElement)(c.RichText,{allowedFormats:[],"aria-label":__("Site Description","full-site-editing"),className:l()("site-description",s,(e={"has-text-color":y.color,"has-background":i.color},(0,r.Z)(e,"has-text-align-".concat(w),w),(0,r.Z)(e,i.class,i.class),(0,r.Z)(e,y.class,y.class),(0,r.Z)(e,a.class,!h&&a.class),e)),identifier:"content",onChange:k,onReplace:u,onSplit:p,placeholder:__("Add a Site Description","full-site-editing"),style:{backgroundColor:i.color,color:y.color,fontSize:S?S+"px":void 0},tagName:"p",value:E}))}))},5129:function(t,e,n){"use strict";var r=n(3027),o=n(9314),i=n(3163),l=n(942),c=n(1428),__=(n(9861),i.__);(0,o.registerBlockType)("a8c/site-description",{title:__("Site Description","full-site-editing"),description:__("Site description, also known as the tagline.","full-site-editing"),icon:(0,r.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24"},(0,r.createElement)("path",{fill:"none",d:"M0 0h24v24H0z"}),(0,r.createElement)("path",{d:"M4 9h16v2H4V9zm0 4h10v2H4v-2z"})),category:(0,c.R)("design","layout"),supports:{align:["wide","full"],html:!1,multiple:!1,reusable:!1},attributes:{align:{type:"string",default:"wide"},textAlign:{type:"string",default:"center"},textColor:{type:"string"},customTextColor:{type:"string"},backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},fontSize:{type:"string",default:"small"},customFontSize:{type:"number"}},edit:l.Z,save:function(){return null}})},512:function(t,e,n){"use strict";var r=n(1119),o=n(3027),i=n(2779),l=n.n(i),c=n(3163),s=n(6399),a=n(5707),u=n(1417),d=n(7997),f=n(6284),__=c.__,p=function(){};e.Z=(0,u.compose)([(0,s.withColors)({textColor:"color"}),(0,s.withFontSizes)("fontSize"),(0,a.withSelect)((function(t,e){var n=e.clientId,r=t("core/block-editor"),o=r.getBlockIndex,i=r.getBlockRootClientId,l=r.getTemplateLock,c=i(n);return{blockIndex:o(n,c),isLocked:!!l(c),rootClientId:c}})),(0,a.withDispatch)((function(t,e){var n=e.blockIndex,r=e.rootClientId;return{insertDefaultBlock:function(){return t("core/block-editor").insertDefaultBlock({},r,n+1)}}})),(0,f.g)({siteTitle:{optionName:"title",defaultValue:__("Site title loading…","full-site-editing")}})])((function(t){var e,n=t.attributes,i=t.className,c=t.fontSize,a=t.insertDefaultBlock,u=t.setAttributes,f=t.setFontSize,m=t.setTextColor,g=t.siteTitle,v=t.textColor,b=n.customFontSize,y=n.textAlign,h=b||c.size,w=g.value,S=g.updateValue;return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(s.BlockControls,null,(0,o.createElement)(s.AlignmentToolbar,{value:y,onChange:function(t){u({textAlign:t})}})),(0,o.createElement)(s.InspectorControls,null,(0,o.createElement)(d.PanelBody,{className:"blocks-font-size",title:__("Text Settings","full-site-editing")},(0,o.createElement)(s.FontSizePicker,{onChange:f,value:h})),(0,o.createElement)(s.PanelColorSettings,{title:__("Color Settings","full-site-editing"),initialOpen:!1,colorSettings:[{value:v.color,onChange:m,label:__("Text Color","full-site-editing")}]})),(0,o.createElement)(s.RichText,{allowedFormats:[],"aria-label":__("Site Title","full-site-editing"),className:l()("site-title",i,(e={"has-text-color":v.color},(0,r.Z)(e,"has-text-align-".concat(y),y),(0,r.Z)(e,v.class,v.class),(0,r.Z)(e,c.class,!b&&c.class),e)),identifier:"content",onChange:S,onReplace:a,onSplit:p,placeholder:__("Add a Site Title","full-site-editing"),style:{color:v.color,fontSize:h?h+"px":void 0},tagName:"h1",value:w}))}))},5725:function(t,e,n){"use strict";var r=n(9314),o=n(3163),i=n(512),l=n(1428),__=(n(6913),o.__);(0,r.registerBlockType)("a8c/site-title",{title:__("Site Title","full-site-editing"),description:__("Your site title.","full-site-editing"),icon:"layout",category:(0,l.R)("design","layout"),supports:{align:["wide","full"],html:!1,multiple:!1,reusable:!1},attributes:{align:{type:"string",default:"wide"},textAlign:{type:"string",default:"center"},textColor:{type:"string"},customTextColor:{type:"string"},fontSize:{type:"string",default:"normal"},customFontSize:{type:"number"}},edit:i.Z,save:function(){return null}})},6594:function(t,e,n){"use strict";var r=n(1119),o=n(3258),i=n(3027),l=n(2779),c=n.n(l),s=n(3804),a=n(9314),u=n(6399),d=n(7997),f=n(1417),p=n(5707),m=n(3163),g=n(791),__=(n(7252),m.__),v=function(){},b=(0,f.compose)((0,f.withState)({templateClientId:null}),(0,p.withSelect)((function(t,e){var n=e.attributes,r=e.templateClientId,o=t("core").getEntityRecord,i=t("core/editor"),l=i.getCurrentPostId,c=i.isEditedPostDirty,a=t("core/block-editor"),u=a.getBlock,d=a.getSelectedBlock,f=t("core/edit-post").isEditorSidebarOpened,p=n.templateId,m=l(),v=p&&o("postType","wp_template_part",p),b=(0,g.addQueryArgs)(fullSiteEditing.editTemplateBaseUrl,{post:p,fse_parent_post:m}),y=d();return{currentPostId:m,editTemplateUrl:b,template:v,templateBlock:u(r),templateTitle:(0,s.get)(v,["title","rendered"],""),isDirty:c(),isEditorSidebarOpened:!!f(),isAnyTemplateBlockSelected:y&&"a8c/template"===y.name}})),(0,p.withDispatch)((function(t,e){var n=t("core/block-editor").receiveBlocks,r=t("core/edit-post").openGeneralSidebar,o=e.template,i=e.templateClientId,l=e.setState;return{savePost:t("core/editor").savePost,receiveTemplateBlocks:function(){if(o&&!i){var t=(0,a.parse)((0,s.get)(o,["content","raw"],"")),e=(0,a.createBlock)("core/group",{},t);n([e]),l({templateClientId:e.clientId})}},openGeneralSidebar:r}})))((function(t){var e,n=t.attributes,l=t.editTemplateUrl,s=t.receiveTemplateBlocks,a=t.template,f=t.templateBlock,p=t.templateTitle,g=t.isDirty,b=t.savePost,y=t.isEditorSidebarOpened,h=t.openGeneralSidebar,w=t.isAnyTemplateBlockSelected;if(!a)return(0,i.createElement)(d.Placeholder,{className:"template-block__placeholder"},(0,i.createElement)(d.Spinner,null));var S=(0,i.createRef)(),E=(0,i.useState)(!1),k=(0,o.Z)(E,2),C=k[0],Z=k[1];(0,i.useEffect)((function(){C&&!g&&S.current.click(),s()})),(0,i.useEffect)((function(){var t=document.querySelector(".edit-post-sidebar__panel-tabs ul li:last-child");if(y&&t){if(w)return h("edit-post/document"),void t.classList.add("hidden");t.classList.remove("hidden")}}),[w,y,h]);var _=n.align,P=n.className,x=function(t){t.stopPropagation(),Z(!0),g&&(t.preventDefault(),b())};return(0,i.createElement)("div",{className:c()("template-block",(e={},(0,r.Z)(e,"align".concat(_),_),(0,r.Z)(e,"is-navigating-to-template",C),e))},f&&(0,i.createElement)(i.Fragment,null,(0,i.createElement)(d.Disabled,null,(0,i.createElement)("div",{className:P},(0,i.createElement)(u.BlockEdit,{attributes:f.attributes,block:f,clientId:f.clientId,isSelected:!1,name:f.name,setAttributes:v}))),(0,i.createElement)(d.Placeholder,{className:"template-block__overlay",onClick:x},C&&(0,i.createElement)("div",{className:"template-block__loading"},(0,i.createElement)(d.Spinner,null)," ",(0,m.sprintf)(__("Loading editor for: %s","full-site-editing"),p)),(0,i.createElement)(d.Button,{className:C?"hidden":null,href:l,onClick:x,isDefault:!0,isLarge:!0,ref:S},(0,m.sprintf)(__("Edit %s","full-site-editing"),p)))))}));e.Z=b},4987:function(t,e,n){"use strict";var r=n(7560),o=n(3027),i=n(9314),l=n(3163),c=n(1417),s=n(5799),a=n(6594),u=n(1428),__=(n(7252),n(4498),l.__);"wp_template_part"!==fullSiteEditing.editorPostType&&(0,i.registerBlockType)("a8c/template",{title:__("Template Part","full-site-editing"),__experimentalDisplayName:"label",description:__("Display a Template Part.","full-site-editing"),icon:"layout",category:(0,u.R)("design","layout"),attributes:{templateId:{type:"number"},className:{type:"string"},label:{type:"string"}},supports:{anchor:!1,customClassName:!1,html:!1,inserter:!1,reusable:!1},edit:a.Z,save:function(){return null},getEditWrapperProps:function(){return{"data-align":"full"}}});var d=(0,c.createHigherOrderComponent)((function(t){return function(e){return"a8c/template"!==e.name?(0,o.createElement)(t,e):(0,o.createElement)(t,(0,r.Z)({},e,{className:"template__block-container"}))}}),"addFSETemplateClassname");(0,s.addFilter)("editor.BlockListBlock","full-site-editing/blocks/template",d,9)},4498:function(t,e,n){"use strict";var r=n(7560),o=n(3027),i=n(1417),l=n(5799),c=(0,i.createHigherOrderComponent)((function(t){return function(e){return"fse-site-logo"!==e.attributes.className?(0,o.createElement)(t,e):(0,o.createElement)(t,(0,r.Z)({},e,{className:"template__site-logo"}))}}),"addFSESiteLogoClassname");(0,l.addFilter)("editor.BlockListBlock","full-site-editing/blocks/template",c)},9987:function(t,e,n){"use strict";var r=n(3027),o=n(7531),i=n.n(o),l=n(8259),c="fse-post-content-block-inserter";function s(){if(!document.getElementById(c)){var t=document.querySelector(".edit-post-header-toolbar");if(t){var e=document.createElement("div");e.className="fse-post-content-block-inserter",e.id=c,t.insertBefore(e,t.firstChild),(0,r.render)((0,r.createElement)(l.Z,null),e)}}}i()((function(){if("page"===fullSiteEditing.editorPostType)var t=setInterval((function(){document.querySelector(".edit-post-header-toolbar")&&(clearInterval(t),s(),document.getElementById("wpbody")&&void 0!==window.MutationObserver&&new window.MutationObserver(s).observe(document.getElementById("wpbody"),{subtree:!0,childList:!0}))}))}))},8259:function(t,e,n){"use strict";var r=n(3027),o=n(6399),i=n(1417),l=n(5707),c=(0,i.compose)((0,l.withSelect)((function(t){var e=t("core/editor").getEditorSettings,n=t("core/block-editor").getBlocks,r=t("core/edit-post").getEditorMode,o=n().find((function(t){return"a8c/post-content"===t.name}));return{rootClientId:o?o.clientId:"",showInserter:"visual"===r()&&e().richEditingEnabled}})))((function(t){var e=t.rootClientId,n=t.showInserter;return(0,r.createElement)(o.Inserter,{rootClientId:e,disabled:!n,position:"bottom right",toggleProps:{isPrimary:!0}})}));e.Z=c},6970:function(t,e,n){"use strict";var r=n(9394),o=n(5799),i=["logo","brand","emblem","hallmark"];(0,o.addFilter)("blocks.registerBlockType","full-site-editing/editor/image-block-keywords",(function(t,e){return"core/image"!==e?t:t=(0,r.Z)((0,r.Z)({},t),{},{keywords:t.keywords.concat(i)})}))},7111:function(t,e,n){"use strict";n(9987),n(1860),n(6970),n(784),n(3644),n(711),n(1321)},1321:function(t,e,n){"use strict";var r=n(5707),o=(0,r.subscribe)((function(){var t=(0,r.dispatch)("core/edit-post").removeEditorPanel;return"page"===fullSiteEditing.editorPostType&&t("featured-image"),"wp_template_part"===fullSiteEditing.editorPostType&&t("post-status"),o()}))},711:function(t,e,n){"use strict";var r=n(9394),o=n(5707);(0,o.use)((function(t){return{dispatch:function(e){var n=(0,r.Z)({},t.dispatch(e)),o=fullSiteEditing.editorPostType;if("core/editor"===e&&n.editPost&&"wp_template_part"===o){var i=n.editPost;n.editPost=function(t){"draft"!==t.status&&i(t)}}return n}}}))},3644:function(t,e,n){"use strict";var r=n(9394),o=n(5707);(0,o.use)((function(t){return{dispatch:function(e){var n=(0,r.Z)({},t.dispatch(e)),o=fullSiteEditing.editorPostType;return"core/editor"===e&&n.trashPost&&"wp_template_part"===o&&(n.trashPost=function(){}),n}}}))},1860:function(t,e,n){"use strict";var r=n(5707),o=(0,r.subscribe)((function(){if("page"!==fullSiteEditing.editorPostType)return o();!1===(0,r.select)("core/block-editor").isValidTemplate()&&(0,r.dispatch)("core/block-editor").setTemplateValidity(!0)}))},6284:function(t,e,n){"use strict";n.d(e,{g:function(){return r.g}});var r=n(4825)},4825:function(t,e,n){"use strict";n.d(e,{g:function(){return r.g}});n(4351);var r=n(29)},5333:function(t,e,n){"use strict";n.d(e,{D:function(){return o}});var r=n(3027);function o(t){var e=(0,r.useRef)();return(0,r.useEffect)((function(){e.current=t}),[t]),e.current}},4351:function(t,e,n){"use strict";n.d(e,{s:function(){return f}});var r=n(1119),o=n(9394),i=n(3258),l=n(3163),c=n(3027),s=n(7606),a=n.n(s),u=n(1424),d=n(5333),__=l.__;function f(t,e,n,s,f,p){var m=(0,c.useState)({option:e,previousOption:"",loaded:!1,error:!1}),g=(0,i.Z)(m,2),v=g[0],b=g[1],y=(0,d.D)(s),h=(0,d.D)(f);function w(){b((0,o.Z)((0,o.Z)({},v),{},{option:v.previousOption,isSaving:!1}))}return(0,c.useEffect)((function(){v.loaded||v.error?function(){var e=v.option,i=v.previousOption,c=!i&&!e||e&&i&&e.trim()===i.trim(),u=!e||0===e.trim().length;!s&&y&&u&&w();if(!f||c)return;!h&&f&&function(e){b((0,o.Z)((0,o.Z)({},v),{},{isSaving:!0})),a()({path:"/wp/v2/settings",method:"POST",data:(0,r.Z)({},t,e)}).then((function(){return function(t){b((0,o.Z)((0,o.Z)({},v),{},{previousOption:t,isDirty:!1,isSaving:!1}))}(e)})).catch((function(){n((0,l.sprintf)(__("Unable to save site %s","full-site-editing"),t)),w()}))}(e)}():a()({path:"/wp/v2/settings"}).then((function(e){return b((0,o.Z)((0,o.Z)({},v),{},{option:(0,u.decodeEntities)(e[t]),previousOption:(0,u.decodeEntities)(e[t]),loaded:!0,error:!1}))})).catch((function(){n((0,l.sprintf)(__("Unable to load site %s","full-site-editing"),t)),b((0,o.Z)((0,o.Z)({},v),{},{option:(0,l.sprintf)(__("Error loading site %s","full-site-editing"),t),error:!0}))}))})),{siteOptions:v,handleChange:function(t){p({updated:Date.now()}),b((0,o.Z)((0,o.Z)({},v),{},{option:t}))}}}},29:function(t,e,n){"use strict";n.d(e,{g:function(){return s}});var r=n(7560),o=n(3027),i=n(1417),l=n(5707),c=n(4351),s=function(t){return(0,i.createHigherOrderComponent)((function(e){return(0,i.pure)((function(n){var i=(0,l.useSelect)((function(t){var e=t("core/editor"),n=e.isSavingPost,r=e.isPublishingPost,o=e.isAutosavingPost,i=e.isCurrentPostPublished;return(n()&&i()||r())&&!o()})),s=(0,l.useDispatch)((function(t){return t("core/notices").createErrorNotice})),a=n.isSelected,u=n.setAttributes,d=Object.keys(t).reduce((function(e,n){var r=t[n],o=r.optionName,l=r.defaultValue,d=(0,c.s)(o,l,s,a,i,u),f=d.siteOptions,p=d.handleChange;return e[n]={value:f.option,updateValue:p,loaded:f.loaded},e}),{});return(0,o.createElement)(e,(0,r.Z)({},n,d))}))}),"withSiteOptions")}},3427:function(t,e,n){"use strict";var r=n(3258),o=n(3027),i=n(7531),l=n.n(i),c=n(7196),s=n.n(c),a=n(3163),u=n(7997),__=(n(6254),a.__);function d(t){var e=t.defaultLabel,n=t.defaultUrl,i=(0,o.useState)(e),l=(0,r.Z)(i,2),c=l[0],s=l[1],a=(0,o.useState)(n),d=(0,r.Z)(a,2),f=d[0],p=d[1];return window.wp.hooks.addAction("updateCloseButtonOverrides","a8c-fse",(function(t){s(t.label),p(t.closeUrl)})),(0,o.createElement)("a",{href:f,"aria-label":c},(0,o.createElement)(u.Button,{className:"components-button components-icon-button"},(0,o.createElement)(u.Dashicon,{icon:"arrow-left-alt2"}),(0,o.createElement)("div",{className:"close-button-override__label"},c)))}l()((function(){var t=fullSiteEditing.editorPostType;if("wp_template_part"===t||"page"===t||"post"===t)var e=setInterval((function(){var n=document.querySelector(".edit-post-header__toolbar");if(n){clearInterval(e);var r=document.createElement("div");r.className="components-toolbar edit-post-fullscreen-mode-close__toolbar edit-post-fullscreen-mode-close__toolbar__override",n.prepend(r);var i=fullSiteEditing,l=i.closeButtonLabel,c=i.closeButtonUrl,a=window.calypsoifyGutenberg;a&&a.closeUrl&&(c=a.closeUrl),a&&a.closeButtonLabel&&(l=a.closeButtonLabel);var u=c||"edit.php?post_type=".concat(t),f=l||"Back";"page"!==t||l?"post"!==t||l?"wp_template_part"!==t||l||(f=__("Template Parts","full-site-editing")):f=__("Posts","full-site-editing"):f=__("Pages","full-site-editing"),s().render((0,o.createElement)(d,{defaultLabel:f,defaultUrl:u}),r)}}))}))},601:function(t,e,n){"use strict";var r=n(1766),o=n(2779),i=n.n(o),l=n(3804),c=n(5707),s=n(1200),a=(0,c.withSelect)((function(t){var e=t("core").getEntityRecord,n=t("core/editor").getEditedPostAttribute;return{templateClasses:(0,l.map)(n("template_part_types"),(function(t){var n=(0,l.get)(e("taxonomy","wp_template_part_type",t),"name","");return n.endsWith("-header")?"fse-header":n.endsWith("-footer")?"fse-footer":void 0}))}}))((function(t){var e=t.templateClasses,n=setInterval((function(){var t=document.querySelector(".block-editor-writing-flow");t&&(clearInterval(n),t.className=i().apply(void 0,["block-editor-writing-flow","a8c-template-editor fse-template-part"].concat((0,r.Z)(e))))}));return null}));"wp_template_part"===fullSiteEditing.editorPostType&&(0,s.registerPlugin)("fse-editor-template-classes",{render:a})},5052:function(t,e,n){"use strict";var r=n(7531),o=n.n(r),i=n(5707),l=n(3163),__=l.__;o()((function(){"wp_template_part"===fullSiteEditing.editorPostType&&(0,i.dispatch)("core/notices").createNotice("info",__("Updates to this template will affect all pages on your site.","full-site-editing"),{isDismissible:!1})}))},7196:function(t){"use strict";t.exports=window.ReactDOM},3804:function(t){"use strict";t.exports=window.lodash},7606:function(t){"use strict";t.exports=window.wp.apiFetch},6399:function(t){"use strict";t.exports=window.wp.blockEditor},9314:function(t){"use strict";t.exports=window.wp.blocks},7997:function(t){"use strict";t.exports=window.wp.components},1417:function(t){"use strict";t.exports=window.wp.compose},5707:function(t){"use strict";t.exports=window.wp.data},7531:function(t){"use strict";t.exports=window.wp.domReady},8885:function(t){"use strict";t.exports=window.wp.editor},3027:function(t){"use strict";t.exports=window.wp.element},5799:function(t){"use strict";t.exports=window.wp.hooks},1424:function(t){"use strict";t.exports=window.wp.htmlEntities},3163:function(t){"use strict";t.exports=window.wp.i18n},1200:function(t){"use strict";t.exports=window.wp.plugins},9775:function(t){"use strict";t.exports=window.wp.serverSideRender},791:function(t){"use strict";t.exports=window.wp.url}},e={};function n(r){var o=e[r];if(void 0!==o)return o.exports;var i=e[r]={exports:{}};return t[r](i,i.exports,n),i.exports}n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,{a:e}),e},n.d=function(t,e){for(var r in e)n.o(e,r)&&!n.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:e[r]})},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var r={};!function(){"use strict";n.r(r);n(4018),n(7308),n(6367),n(5129),n(5725),n(4987),n(3427),n(601),n(5052),n(7111)}(),window.EditingToolkit=r}();
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 r={}.hasOwnProperty;function o(){for(var t=[],e=0;e<arguments.length;e++){var n=arguments[e];if(n){var i=typeof n;if("string"===i||"number"===i)t.push(n);else if(Array.isArray(n)){if(n.length){var l=o.apply(null,n);l&&t.push(l)}}else if("object"===i)if(n.toString===Object.prototype.toString)for(var c in n)r.call(n,c)&&n[c]&&t.push(c);else t.push(n.toString())}}return t.join(" ")}t.exports?(o.default=o,t.exports=o):void 0===(n=function(){return o}.apply(e,[]))||(t.exports=n)}()},6959:function(){},7148:function(){},3920:function(){},9861:function(){},6913:function(){},7252:function(){},784:function(){},6254:function(){},1428:function(t,e,n){"use strict";n.d(e,{R:function(){return o}});var r=n(9314);function o(){for(var t=(0,r.getCategories)(),e=arguments.length,n=new Array(e),o=0;o<e;o++)n[o]=arguments[o];for(var i=function(){var e=c[l];if(t.some((function(t){return t.slug===e})))return{v:e}},l=0,c=n;l<c.length;l++){var s=i();if("object"==typeof s)return s.v}throw new Error("Could not find a category from the provided list: ".concat(n.join(",")))}},49:function(t,e,n){"use strict";var r=n(3027),o=n(6399),i=n(7997),l=n(1417),c=n(5707),s=n(3163),a=n(9775),u=n.n(a),__=s.__;e.Z=(0,l.compose)([(0,o.withColors)("backgroundColor",{textColor:"color"}),(0,o.withFontSizes)("fontSize"),(0,c.withSelect)((function(t){return{isPublished:t("core/editor").isCurrentPostPublished()}}))])((function(t){var e=t.attributes,n=t.backgroundColor,l=t.fontSize,c=t.setAttributes,s=t.setBackgroundColor,a=t.setFontSize,d=t.setTextColor,f=t.textColor,p=t.isPublished,m=e.customFontSize,g=e.textAlign,v=m||l.size;return(0,r.createElement)(r.Fragment,null,(0,r.createElement)(o.BlockControls,null,(0,r.createElement)(o.AlignmentToolbar,{value:g,onChange:function(t){c({textAlign:t})}})),(0,r.createElement)(o.InspectorControls,null,(0,r.createElement)(i.PanelBody,{className:"blocks-font-size",title:__("Text Settings","full-site-editing")},(0,r.createElement)(o.FontSizePicker,{onChange:a,value:v})),(0,r.createElement)(o.PanelColorSettings,{title:__("Color Settings","full-site-editing"),initialOpen:!1,colorSettings:[{value:n.color,onChange:s,label:__("Background Color","full-site-editing")},{value:f.color,onChange:d,label:__("Text Color","full-site-editing")}]},(0,r.createElement)(o.ContrastChecker,{textColor:f.color,backgroundColor:n.color,fontSize:v}))),(0,r.createElement)(u(),{isPublished:p,block:"a8c/navigation-menu",attributes:e}))}))},4018:function(t,e,n){"use strict";var r=n(3027),o=n(9314),i=n(3163),l=n(1428),c=n(49),__=(n(6959),i.__),s=(0,r.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24"},(0,r.createElement)("path",{fill:"none",d:"M0 0h24v24H0V0z"}),(0,r.createElement)("path",{d:"M12 7.27l4.28 10.43-3.47-1.53-.81-.36-.81.36-3.47 1.53L12 7.27M12 2L4.5 20.29l.71.71L12 18l6.79 3 .71-.71L12 2z"}));(0,o.registerBlockType)("a8c/navigation-menu",{title:__("Navigation Menu","full-site-editing"),description:__("Visual placeholder for site-wide navigation and menus.","full-site-editing"),icon:s,category:(0,l.R)("design","layout"),supports:{align:["wide","full","right","left"],html:!1,reusable:!1},edit:c.Z,save:function(){return null}})},966:function(t,e,n){"use strict";var r=n(1119),o=n(4659),i=n(4730),l=n(5663),c=n(9049),s=n(3027),a=n(6399),u=n(1417),d=n(5707),f=n(8885),p=n(2779),m=n.n(p),g=function(t){(0,l.Z)(n,t);var e=(0,c.Z)(n);function n(){return(0,o.Z)(this,n),e.apply(this,arguments)}return(0,i.Z)(n,[{key:"toggleEditing",value:function(){var t=this.props,e=t.isEditing;(0,t.setState)({isEditing:!e})}},{key:"onSelectPost",value:function(t){var e=t.id,n=t.type;this.props.setState({isEditing:!1,selectedPostId:e,selectedPostType:n})}},{key:"render",value:function(){var t=this.props.attributes.align;return(0,s.createElement)(s.Fragment,null,(0,s.createElement)("div",{className:m()("post-content-block",(0,r.Z)({},"align".concat(t),t))},(0,s.createElement)(f.PostTitle,null),(0,s.createElement)(a.InnerBlocks,{templateLock:!1})))}}]),n}(s.Component);e.Z=(0,u.compose)([(0,u.withState)({isEditing:!1,selectedPostId:void 0,selectedPostType:void 0}),(0,d.withSelect)((function(t,e){var n=e.selectedPostId,r=e.selectedPostType;return{selectedPost:(0,t("core").getEntityRecord)("postType",r,n)}}))])(g)},7308:function(t,e,n){"use strict";var r=n(7560),o=n(3027),i=n(9314),l=n(1417),c=n(5799),s=n(3163),a=n(1428),u=n(966),d=n(3175),__=(n(7148),s.__);(0,i.registerBlockType)("a8c/post-content",{title:__("Content","full-site-editing"),description:__("The page content.","full-site-editing"),icon:"layout",category:(0,a.R)("design","layout"),supports:{align:["full"],anchor:!1,customClassName:!1,html:!1,inserter:!1,multiple:!1,reusable:!1},attributes:{align:{type:"string",default:"full"}},edit:u.Z,save:d.Z});var f=(0,l.createHigherOrderComponent)((function(t){return function(e){return"a8c/post-content"!==e.name?(0,o.createElement)(t,e):(0,o.createElement)(t,(0,r.Z)({},e,{className:"post-content__block"}))}}),"addContentSlotClassname");(0,c.addFilter)("editor.BlockListBlock","full-site-editing/blocks/post-content",f,9)},3175:function(t,e,n){"use strict";var r=n(3027),o=n(6399);e.Z=function(){return(0,r.createElement)(o.InnerBlocks.Content,null)}},1097:function(t,e,n){"use strict";var r=n(1119),o=n(3027),i=n(6399),l=n(7997),c=n(1417),s=n(3163),a=n(2779),u=n.n(a),d=n(6284),f=n(8558),__=s.__,p=fullSiteEditing,m=p.footerCreditOptions,g=p.defaultCreditOption;e.Z=(0,c.compose)([(0,d.g)({siteTitleOption:{optionName:"title",defaultValue:__("Site title loading…","full-site-editing")},footerCreditOption:{optionName:"footer_credit",defaultValue:__("Footer credit loading…","full-site-editing")}})])((function(t){var e=t.attributes.textAlign,n=void 0===e?"center":e,c=t.isSelected,s=t.setAttributes,a=t.footerCreditOption,d=a.value,p=a.updateValue,v=t.siteTitleOption.value,b=d||g;return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(i.BlockControls,null,(0,o.createElement)(i.AlignmentToolbar,{value:n,onChange:function(t){s({textAlign:t})}})),(0,o.createElement)("div",{className:u()("site-info","site-credit__block",(0,r.Z)({},"has-text-align-".concat(n),n))},(0,o.createElement)("span",{className:"site-name"},v),(0,o.createElement)("span",{className:"comma"},","),(0,o.createElement)("span",{className:"site-credit__selection"},c?(0,o.createElement)(l.SelectControl,{onChange:p,value:b,options:m}):(0,o.createElement)(f.U,{choice:b}))))}))},8558:function(t,e,n){"use strict";n.d(e,{U:function(){return c}});var r=n(9394),o=n(3027),i=n(7997),l=fullSiteEditing.footerCreditOptions,c=function(t){var e=t.choice,n=l.find((function(t){return t.value===e}));if(!n)return null;var c=n.renderType,s=n.renderProps,a=n.label,u=(0,r.Z)({label:a},s);return"icon"===c?(0,o.createElement)(i.Icon,u):(0,o.createElement)("span",null," ",u.label," ")}},6367:function(t,e,n){"use strict";var r=n(9314),o=n(3163),i=n(1428),l=n(1097),__=(n(3920),o.__);(0,r.registerBlockType)("a8c/site-credit",{title:__("WordPress.com Credit","full-site-editing"),description:__("This block tells the world that you're using WordPress.com.","full-site-editing"),icon:"wordpress-alt",category:(0,i.R)("design","layout"),supports:{align:["wide","full"],html:!1,multiple:!1,reusable:!1,removal:!1},attributes:{align:{type:"string",default:"wide"},textAlign:{type:"string",default:"center"}},edit:l.Z,save:function(){return null}})},942:function(t,e,n){"use strict";var r=n(1119),o=n(3027),i=n(6399),l=n(7997),c=n(1417),s=n(5707),a=n(3163),u=n(2779),d=n.n(u),f=n(6284),__=a.__,p=function(){};e.Z=(0,c.compose)([(0,i.withColors)("backgroundColor",{textColor:"color"}),(0,i.withFontSizes)("fontSize"),(0,s.withSelect)((function(t,e){var n=e.clientId,r=t("core/block-editor"),o=r.getBlockIndex,i=r.getBlockRootClientId,l=r.getTemplateLock,c=i(n);return{blockIndex:o(n,c),isLocked:!!l(c),rootClientId:c}})),(0,s.withDispatch)((function(t,e){var n=e.blockIndex,r=e.rootClientId;return{insertDefaultBlock:function(){return t("core/block-editor").insertDefaultBlock({},r,n+1)}}})),(0,f.g)({siteDescription:{optionName:"description",defaultValue:__("Site description loading…","full-site-editing")}})])((function(t){var e,n=t.attributes,c=t.backgroundColor,s=t.className,a=t.fontSize,u=t.insertDefaultBlock,f=t.setAttributes,m=t.setBackgroundColor,g=t.setFontSize,v=t.setTextColor,b=t.siteDescription,y=t.textColor,h=n.customFontSize,w=n.textAlign,S=h||a.size,E=b.value,k=b.updateValue;return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(i.BlockControls,null,(0,o.createElement)(i.AlignmentToolbar,{value:w,onChange:function(t){f({textAlign:t})}})),(0,o.createElement)(i.InspectorControls,null,(0,o.createElement)(l.PanelBody,{className:"blocks-font-size",title:__("Text Settings","full-site-editing")},(0,o.createElement)(i.FontSizePicker,{onChange:g,value:S})),(0,o.createElement)(i.PanelColorSettings,{title:__("Color Settings","full-site-editing"),initialOpen:!1,colorSettings:[{value:c.color,onChange:m,label:__("Background Color","full-site-editing")},{value:y.color,onChange:v,label:__("Text Color","full-site-editing")}]},(0,o.createElement)(i.ContrastChecker,{textColor:y.color,backgroundColor:c.color,fontSize:S}))),(0,o.createElement)(i.RichText,{allowedFormats:[],"aria-label":__("Site Description","full-site-editing"),className:d()("site-description",s,(e={"has-text-color":y.color,"has-background":c.color},(0,r.Z)(e,"has-text-align-".concat(w),w),(0,r.Z)(e,c.class,c.class),(0,r.Z)(e,y.class,y.class),(0,r.Z)(e,a.class,!h&&a.class),e)),identifier:"content",onChange:k,onReplace:u,onSplit:p,placeholder:__("Add a Site Description","full-site-editing"),style:{backgroundColor:c.color,color:y.color,fontSize:S?S+"px":void 0},tagName:"p",value:E}))}))},5129:function(t,e,n){"use strict";var r=n(3027),o=n(9314),i=n(3163),l=n(1428),c=n(942),__=(n(9861),i.__);(0,o.registerBlockType)("a8c/site-description",{title:__("Site Description","full-site-editing"),description:__("Site description, also known as the tagline.","full-site-editing"),icon:(0,r.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24"},(0,r.createElement)("path",{fill:"none",d:"M0 0h24v24H0z"}),(0,r.createElement)("path",{d:"M4 9h16v2H4V9zm0 4h10v2H4v-2z"})),category:(0,l.R)("design","layout"),supports:{align:["wide","full"],html:!1,multiple:!1,reusable:!1},attributes:{align:{type:"string",default:"wide"},textAlign:{type:"string",default:"center"},textColor:{type:"string"},customTextColor:{type:"string"},backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},fontSize:{type:"string",default:"small"},customFontSize:{type:"number"}},edit:c.Z,save:function(){return null}})},512:function(t,e,n){"use strict";var r=n(1119),o=n(3027),i=n(6399),l=n(7997),c=n(1417),s=n(5707),a=n(3163),u=n(2779),d=n.n(u),f=n(6284),__=a.__,p=function(){};e.Z=(0,c.compose)([(0,i.withColors)({textColor:"color"}),(0,i.withFontSizes)("fontSize"),(0,s.withSelect)((function(t,e){var n=e.clientId,r=t("core/block-editor"),o=r.getBlockIndex,i=r.getBlockRootClientId,l=r.getTemplateLock,c=i(n);return{blockIndex:o(n,c),isLocked:!!l(c),rootClientId:c}})),(0,s.withDispatch)((function(t,e){var n=e.blockIndex,r=e.rootClientId;return{insertDefaultBlock:function(){return t("core/block-editor").insertDefaultBlock({},r,n+1)}}})),(0,f.g)({siteTitle:{optionName:"title",defaultValue:__("Site title loading…","full-site-editing")}})])((function(t){var e,n=t.attributes,c=t.className,s=t.fontSize,a=t.insertDefaultBlock,u=t.setAttributes,f=t.setFontSize,m=t.setTextColor,g=t.siteTitle,v=t.textColor,b=n.customFontSize,y=n.textAlign,h=b||s.size,w=g.value,S=g.updateValue;return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(i.BlockControls,null,(0,o.createElement)(i.AlignmentToolbar,{value:y,onChange:function(t){u({textAlign:t})}})),(0,o.createElement)(i.InspectorControls,null,(0,o.createElement)(l.PanelBody,{className:"blocks-font-size",title:__("Text Settings","full-site-editing")},(0,o.createElement)(i.FontSizePicker,{onChange:f,value:h})),(0,o.createElement)(i.PanelColorSettings,{title:__("Color Settings","full-site-editing"),initialOpen:!1,colorSettings:[{value:v.color,onChange:m,label:__("Text Color","full-site-editing")}]})),(0,o.createElement)(i.RichText,{allowedFormats:[],"aria-label":__("Site Title","full-site-editing"),className:d()("site-title",c,(e={"has-text-color":v.color},(0,r.Z)(e,"has-text-align-".concat(y),y),(0,r.Z)(e,v.class,v.class),(0,r.Z)(e,s.class,!b&&s.class),e)),identifier:"content",onChange:S,onReplace:a,onSplit:p,placeholder:__("Add a Site Title","full-site-editing"),style:{color:v.color,fontSize:h?h+"px":void 0},tagName:"h1",value:w}))}))},5725:function(t,e,n){"use strict";var r=n(9314),o=n(3163),i=n(1428),l=n(512),__=(n(6913),o.__);(0,r.registerBlockType)("a8c/site-title",{title:__("Site Title","full-site-editing"),description:__("Your site title.","full-site-editing"),icon:"layout",category:(0,i.R)("design","layout"),supports:{align:["wide","full"],html:!1,multiple:!1,reusable:!1},attributes:{align:{type:"string",default:"wide"},textAlign:{type:"string",default:"center"},textColor:{type:"string"},customTextColor:{type:"string"},fontSize:{type:"string",default:"normal"},customFontSize:{type:"number"}},edit:l.Z,save:function(){return null}})},6594:function(t,e,n){"use strict";var r=n(1119),o=n(3258),i=n(3027),l=n(6399),c=n(9314),s=n(7997),a=n(1417),u=n(5707),d=n(3163),f=n(791),p=n(2779),m=n.n(p),g=n(3804),__=(n(7252),d.__),v=function(){},b=(0,a.compose)((0,a.withState)({templateClientId:null}),(0,u.withSelect)((function(t,e){var n=e.attributes,r=e.templateClientId,o=t("core").getEntityRecord,i=t("core/editor"),l=i.getCurrentPostId,c=i.isEditedPostDirty,s=t("core/block-editor"),a=s.getBlock,u=s.getSelectedBlock,d=t("core/edit-post").isEditorSidebarOpened,p=n.templateId,m=l(),v=p&&o("postType","wp_template_part",p),b=(0,f.addQueryArgs)(fullSiteEditing.editTemplateBaseUrl,{post:p,fse_parent_post:m}),y=u();return{currentPostId:m,editTemplateUrl:b,template:v,templateBlock:a(r),templateTitle:(0,g.get)(v,["title","rendered"],""),isDirty:c(),isEditorSidebarOpened:!!d(),isAnyTemplateBlockSelected:y&&"a8c/template"===y.name}})),(0,u.withDispatch)((function(t,e){var n=t("core/block-editor").receiveBlocks,r=t("core/edit-post").openGeneralSidebar,o=e.template,i=e.templateClientId,l=e.setState;return{savePost:t("core/editor").savePost,receiveTemplateBlocks:function(){if(o&&!i){var t=(0,c.parse)((0,g.get)(o,["content","raw"],"")),e=(0,c.createBlock)("core/group",{},t);n([e]),l({templateClientId:e.clientId})}},openGeneralSidebar:r}})))((function(t){var e,n=t.attributes,c=t.editTemplateUrl,a=t.receiveTemplateBlocks,u=t.template,f=t.templateBlock,p=t.templateTitle,g=t.isDirty,b=t.savePost,y=t.isEditorSidebarOpened,h=t.openGeneralSidebar,w=t.isAnyTemplateBlockSelected;if(!u)return(0,i.createElement)(s.Placeholder,{className:"template-block__placeholder"},(0,i.createElement)(s.Spinner,null));var S=(0,i.createRef)(),E=(0,i.useState)(!1),k=(0,o.Z)(E,2),C=k[0],Z=k[1];(0,i.useEffect)((function(){C&&!g&&S.current.click(),a()})),(0,i.useEffect)((function(){var t=document.querySelector(".edit-post-sidebar__panel-tabs ul li:last-child");if(y&&t){if(w)return h("edit-post/document"),void t.classList.add("hidden");t.classList.remove("hidden")}}),[w,y,h]);var _=n.align,P=n.className,x=function(t){t.stopPropagation(),Z(!0),g&&(t.preventDefault(),b())};return(0,i.createElement)("div",{className:m()("template-block",(e={},(0,r.Z)(e,"align".concat(_),_),(0,r.Z)(e,"is-navigating-to-template",C),e))},f&&(0,i.createElement)(i.Fragment,null,(0,i.createElement)(s.Disabled,null,(0,i.createElement)("div",{className:P},(0,i.createElement)(l.BlockEdit,{attributes:f.attributes,block:f,clientId:f.clientId,isSelected:!1,name:f.name,setAttributes:v}))),(0,i.createElement)(s.Placeholder,{className:"template-block__overlay",onClick:x},C&&(0,i.createElement)("div",{className:"template-block__loading"},(0,i.createElement)(s.Spinner,null)," ",(0,d.sprintf)(__("Loading editor for: %s","full-site-editing"),p)),(0,i.createElement)(s.Button,{className:C?"hidden":null,href:c,onClick:x,isDefault:!0,isLarge:!0,ref:S},(0,d.sprintf)(__("Edit %s","full-site-editing"),p)))))}));e.Z=b},4987:function(t,e,n){"use strict";var r=n(7560),o=n(3027),i=n(9314),l=n(1417),c=n(5799),s=n(3163),a=n(1428),u=n(6594),__=(n(7252),n(4498),s.__);"wp_template_part"!==fullSiteEditing.editorPostType&&(0,i.registerBlockType)("a8c/template",{title:__("Template Part","full-site-editing"),__experimentalDisplayName:"label",description:__("Display a Template Part.","full-site-editing"),icon:"layout",category:(0,a.R)("design","layout"),attributes:{templateId:{type:"number"},className:{type:"string"},label:{type:"string"}},supports:{anchor:!1,customClassName:!1,html:!1,inserter:!1,reusable:!1},edit:u.Z,save:function(){return null},getEditWrapperProps:function(){return{"data-align":"full"}}});var d=(0,l.createHigherOrderComponent)((function(t){return function(e){return"a8c/template"!==e.name?(0,o.createElement)(t,e):(0,o.createElement)(t,(0,r.Z)({},e,{className:"template__block-container"}))}}),"addFSETemplateClassname");(0,c.addFilter)("editor.BlockListBlock","full-site-editing/blocks/template",d,9)},4498:function(t,e,n){"use strict";var r=n(7560),o=n(3027),i=n(1417),l=n(5799),c=(0,i.createHigherOrderComponent)((function(t){return function(e){return"fse-site-logo"!==e.attributes.className?(0,o.createElement)(t,e):(0,o.createElement)(t,(0,r.Z)({},e,{className:"template__site-logo"}))}}),"addFSESiteLogoClassname");(0,l.addFilter)("editor.BlockListBlock","full-site-editing/blocks/template",c)},9987:function(t,e,n){"use strict";var r=n(3027),o=n(7531),i=n.n(o),l=n(8259),c="fse-post-content-block-inserter";function s(){if(!document.getElementById(c)){var t=document.querySelector(".edit-post-header-toolbar");if(t){var e=document.createElement("div");e.className="fse-post-content-block-inserter",e.id=c,t.insertBefore(e,t.firstChild),(0,r.render)((0,r.createElement)(l.Z,null),e)}}}i()((function(){if("page"===fullSiteEditing.editorPostType)var t=setInterval((function(){document.querySelector(".edit-post-header-toolbar")&&(clearInterval(t),s(),document.getElementById("wpbody")&&void 0!==window.MutationObserver&&new window.MutationObserver(s).observe(document.getElementById("wpbody"),{subtree:!0,childList:!0}))}))}))},8259:function(t,e,n){"use strict";var r=n(3027),o=n(6399),i=n(1417),l=n(5707),c=(0,i.compose)((0,l.withSelect)((function(t){var e=t("core/editor").getEditorSettings,n=t("core/block-editor").getBlocks,r=t("core/edit-post").getEditorMode,o=n().find((function(t){return"a8c/post-content"===t.name}));return{rootClientId:o?o.clientId:"",showInserter:"visual"===r()&&e().richEditingEnabled}})))((function(t){var e=t.rootClientId,n=t.showInserter;return(0,r.createElement)(o.Inserter,{rootClientId:e,disabled:!n,position:"bottom right",toggleProps:{isPrimary:!0}})}));e.Z=c},6970:function(t,e,n){"use strict";var r=n(9394),o=n(5799),i=["logo","brand","emblem","hallmark"];(0,o.addFilter)("blocks.registerBlockType","full-site-editing/editor/image-block-keywords",(function(t,e){return"core/image"!==e?t:t=(0,r.Z)((0,r.Z)({},t),{},{keywords:t.keywords.concat(i)})}))},7111:function(t,e,n){"use strict";n(9987),n(1860),n(6970),n(784),n(3644),n(711),n(1321)},1321:function(t,e,n){"use strict";var r=n(5707),o=(0,r.subscribe)((function(){var t=(0,r.dispatch)("core/edit-post").removeEditorPanel;return"page"===fullSiteEditing.editorPostType&&t("featured-image"),"wp_template_part"===fullSiteEditing.editorPostType&&t("post-status"),o()}))},711:function(t,e,n){"use strict";var r=n(9394),o=n(5707);(0,o.use)((function(t){return{dispatch:function(e){var n=(0,r.Z)({},t.dispatch(e)),o=fullSiteEditing.editorPostType;if("core/editor"===e&&n.editPost&&"wp_template_part"===o){var i=n.editPost;n.editPost=function(t){"draft"!==t.status&&i(t)}}return n}}}))},3644:function(t,e,n){"use strict";var r=n(9394),o=n(5707);(0,o.use)((function(t){return{dispatch:function(e){var n=(0,r.Z)({},t.dispatch(e)),o=fullSiteEditing.editorPostType;return"core/editor"===e&&n.trashPost&&"wp_template_part"===o&&(n.trashPost=function(){}),n}}}))},1860:function(t,e,n){"use strict";var r=n(5707),o=(0,r.subscribe)((function(){if("page"!==fullSiteEditing.editorPostType)return o();!1===(0,r.select)("core/block-editor").isValidTemplate()&&(0,r.dispatch)("core/block-editor").setTemplateValidity(!0)}))},6284:function(t,e,n){"use strict";n.d(e,{g:function(){return r.g}});var r=n(4825)},4825:function(t,e,n){"use strict";n.d(e,{g:function(){return r.g}});n(4351);var r=n(29)},5333:function(t,e,n){"use strict";n.d(e,{D:function(){return o}});var r=n(3027);function o(t){var e=(0,r.useRef)();return(0,r.useEffect)((function(){e.current=t}),[t]),e.current}},4351:function(t,e,n){"use strict";n.d(e,{s:function(){return f}});var r=n(1119),o=n(9394),i=n(3258),l=n(7606),c=n.n(l),s=n(3027),a=n(1424),u=n(3163),d=n(5333),__=u.__;function f(t,e,n,l,f,p){var m=(0,s.useState)({option:e,previousOption:"",loaded:!1,error:!1}),g=(0,i.Z)(m,2),v=g[0],b=g[1],y=(0,d.D)(l),h=(0,d.D)(f);function w(){b((0,o.Z)((0,o.Z)({},v),{},{option:v.previousOption,isSaving:!1}))}return(0,s.useEffect)((function(){v.loaded||v.error?function(){var e=v.option,i=v.previousOption,s=!i&&!e||e&&i&&e.trim()===i.trim(),a=!e||0===e.trim().length;!l&&y&&a&&w();if(!f||s)return;!h&&f&&function(e){b((0,o.Z)((0,o.Z)({},v),{},{isSaving:!0})),c()({path:"/wp/v2/settings",method:"POST",data:(0,r.Z)({},t,e)}).then((function(){return function(t){b((0,o.Z)((0,o.Z)({},v),{},{previousOption:t,isDirty:!1,isSaving:!1}))}(e)})).catch((function(){n((0,u.sprintf)(__("Unable to save site %s","full-site-editing"),t)),w()}))}(e)}():c()({path:"/wp/v2/settings"}).then((function(e){return b((0,o.Z)((0,o.Z)({},v),{},{option:(0,a.decodeEntities)(e[t]),previousOption:(0,a.decodeEntities)(e[t]),loaded:!0,error:!1}))})).catch((function(){n((0,u.sprintf)(__("Unable to load site %s","full-site-editing"),t)),b((0,o.Z)((0,o.Z)({},v),{},{option:(0,u.sprintf)(__("Error loading site %s","full-site-editing"),t),error:!0}))}))})),{siteOptions:v,handleChange:function(t){p({updated:Date.now()}),b((0,o.Z)((0,o.Z)({},v),{},{option:t}))}}}},29:function(t,e,n){"use strict";n.d(e,{g:function(){return s}});var r=n(7560),o=n(3027),i=n(1417),l=n(5707),c=n(4351),s=function(t){return(0,i.createHigherOrderComponent)((function(e){return(0,i.pure)((function(n){var i=(0,l.useSelect)((function(t){var e=t("core/editor"),n=e.isSavingPost,r=e.isPublishingPost,o=e.isAutosavingPost,i=e.isCurrentPostPublished;return(n()&&i()||r())&&!o()})),s=(0,l.useDispatch)((function(t){return t("core/notices").createErrorNotice})),a=n.isSelected,u=n.setAttributes,d=Object.keys(t).reduce((function(e,n){var r=t[n],o=r.optionName,l=r.defaultValue,d=(0,c.s)(o,l,s,a,i,u),f=d.siteOptions,p=d.handleChange;return e[n]={value:f.option,updateValue:p,loaded:f.loaded},e}),{});return(0,o.createElement)(e,(0,r.Z)({},n,d))}))}),"withSiteOptions")}},3427:function(t,e,n){"use strict";var r=n(3258),o=n(3027),i=n(7997),l=n(7531),c=n.n(l),s=n(3163),a=n(7196),u=n.n(a),__=(n(6254),s.__);function d(t){var e=t.defaultLabel,n=t.defaultUrl,l=(0,o.useState)(e),c=(0,r.Z)(l,2),s=c[0],a=c[1],u=(0,o.useState)(n),d=(0,r.Z)(u,2),f=d[0],p=d[1];return window.wp.hooks.addAction("updateCloseButtonOverrides","a8c-fse",(function(t){a(t.label),p(t.closeUrl)})),(0,o.createElement)("a",{href:f,"aria-label":s},(0,o.createElement)(i.Button,{className:"components-button components-icon-button"},(0,o.createElement)(i.Dashicon,{icon:"arrow-left-alt2"}),(0,o.createElement)("div",{className:"close-button-override__label"},s)))}c()((function(){var t=fullSiteEditing.editorPostType;if("wp_template_part"===t||"page"===t||"post"===t)var e=setInterval((function(){var n=document.querySelector(".edit-post-header__toolbar");if(n){clearInterval(e);var r=document.createElement("div");r.className="components-toolbar edit-post-fullscreen-mode-close__toolbar edit-post-fullscreen-mode-close__toolbar__override",n.prepend(r);var i=fullSiteEditing,l=i.closeButtonLabel,c=i.closeButtonUrl,s=window.calypsoifyGutenberg;s&&s.closeUrl&&(c=s.closeUrl),s&&s.closeButtonLabel&&(l=s.closeButtonLabel);var a=c||"edit.php?post_type=".concat(t),f=l||"Back";"page"!==t||l?"post"!==t||l?"wp_template_part"!==t||l||(f=__("Template Parts","full-site-editing")):f=__("Posts","full-site-editing"):f=__("Pages","full-site-editing"),u().render((0,o.createElement)(d,{defaultLabel:f,defaultUrl:a}),r)}}))}))},601:function(t,e,n){"use strict";var r=n(1766),o=n(5707),i=n(1200),l=n(2779),c=n.n(l),s=n(3804),a=(0,o.withSelect)((function(t){var e=t("core").getEntityRecord,n=t("core/editor").getEditedPostAttribute;return{templateClasses:(0,s.map)(n("template_part_types"),(function(t){var n=(0,s.get)(e("taxonomy","wp_template_part_type",t),"name","");return n.endsWith("-header")?"fse-header":n.endsWith("-footer")?"fse-footer":void 0}))}}))((function(t){var e=t.templateClasses,n=setInterval((function(){var t=document.querySelector(".block-editor-writing-flow");t&&(clearInterval(n),t.className=c().apply(void 0,["block-editor-writing-flow","a8c-template-editor fse-template-part"].concat((0,r.Z)(e))))}));return null}));"wp_template_part"===fullSiteEditing.editorPostType&&(0,i.registerPlugin)("fse-editor-template-classes",{render:a})},5052:function(t,e,n){"use strict";var r=n(5707),o=n(7531),i=n.n(o),l=n(3163),__=l.__;i()((function(){"wp_template_part"===fullSiteEditing.editorPostType&&(0,r.dispatch)("core/notices").createNotice("info",__("Updates to this template will affect all pages on your site.","full-site-editing"),{isDismissible:!1})}))},7196:function(t){"use strict";t.exports=window.ReactDOM},3804:function(t){"use strict";t.exports=window.lodash},7606:function(t){"use strict";t.exports=window.wp.apiFetch},6399:function(t){"use strict";t.exports=window.wp.blockEditor},9314:function(t){"use strict";t.exports=window.wp.blocks},7997:function(t){"use strict";t.exports=window.wp.components},1417:function(t){"use strict";t.exports=window.wp.compose},5707:function(t){"use strict";t.exports=window.wp.data},7531:function(t){"use strict";t.exports=window.wp.domReady},8885:function(t){"use strict";t.exports=window.wp.editor},3027:function(t){"use strict";t.exports=window.wp.element},5799:function(t){"use strict";t.exports=window.wp.hooks},1424:function(t){"use strict";t.exports=window.wp.htmlEntities},3163:function(t){"use strict";t.exports=window.wp.i18n},1200:function(t){"use strict";t.exports=window.wp.plugins},9775:function(t){"use strict";t.exports=window.wp.serverSideRender},791:function(t){"use strict";t.exports=window.wp.url}},e={};function n(r){var o=e[r];if(void 0!==o)return o.exports;var i=e[r]={exports:{}};return t[r](i,i.exports,n),i.exports}n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,{a:e}),e},n.d=function(t,e){for(var r in e)n.o(e,r)&&!n.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:e[r]})},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var r={};!function(){"use strict";n.r(r);n(4018),n(7308),n(6367),n(5129),n(5725),n(4987),n(3427),n(601),n(5052),n(7111)}(),window.EditingToolkit=r}();
dotcom-fse/editor/block-inserter/index.js CHANGED
@@ -1,14 +1,7 @@
1
  /* global fullSiteEditing */
2
 
3
- /**
4
- * External dependencies
5
- */
6
  import domReady from '@wordpress/dom-ready';
7
  import { render } from '@wordpress/element';
8
-
9
- /**
10
- * Internal dependencies
11
- */
12
  import PostContentBlockAppender from './post-content-block-appender';
13
 
14
  const CONTAINER_CLASS_NAME = 'fse-post-content-block-inserter';
1
  /* global fullSiteEditing */
2
 
 
 
 
3
  import domReady from '@wordpress/dom-ready';
4
  import { render } from '@wordpress/element';
 
 
 
 
5
  import PostContentBlockAppender from './post-content-block-appender';
6
 
7
  const CONTAINER_CLASS_NAME = 'fse-post-content-block-inserter';
dotcom-fse/editor/block-inserter/post-content-block-appender.js CHANGED
@@ -1,6 +1,3 @@
1
- /**
2
- * External dependencies
3
- */
4
  import { Inserter } from '@wordpress/block-editor';
5
  import { compose } from '@wordpress/compose';
6
  import { withSelect } from '@wordpress/data';
 
 
 
1
  import { Inserter } from '@wordpress/block-editor';
2
  import { compose } from '@wordpress/compose';
3
  import { withSelect } from '@wordpress/data';
dotcom-fse/editor/image-block-keywords/index.js CHANGED
@@ -1,6 +1,3 @@
1
- /**
2
- * External dependencies
3
- */
4
  import { addFilter } from '@wordpress/hooks';
5
 
6
  const additionalKeywords = [ 'logo', 'brand', 'emblem', 'hallmark' ];
 
 
 
1
  import { addFilter } from '@wordpress/hooks';
2
 
3
  const additionalKeywords = [ 'logo', 'brand', 'emblem', 'hallmark' ];
dotcom-fse/editor/index.js CHANGED
@@ -1,6 +1,3 @@
1
- /**
2
- * Internal dependencies
3
- */
4
  import './block-inserter';
5
  import './template-validity-override';
6
  import './image-block-keywords';
 
 
 
1
  import './block-inserter';
2
  import './template-validity-override';
3
  import './image-block-keywords';
dotcom-fse/editor/remove-editor-panels/index.js CHANGED
@@ -1,8 +1,5 @@
1
  /* global fullSiteEditing */
2
 
3
- /**
4
- * External dependencies
5
- */
6
  import { dispatch, subscribe } from '@wordpress/data';
7
 
8
  /**
1
  /* global fullSiteEditing */
2
 
 
 
 
3
  import { dispatch, subscribe } from '@wordpress/data';
4
 
5
  /**
dotcom-fse/editor/suppress-draft-action/index.js CHANGED
@@ -1,8 +1,5 @@
1
  /* global fullSiteEditing */
2
 
3
- /**
4
- * External dependencies
5
- */
6
  import { use } from '@wordpress/data';
7
 
8
  // The purpose of this override is to prevent Switch to Draft action for template CPTs.
1
  /* global fullSiteEditing */
2
 
 
 
 
3
  import { use } from '@wordpress/data';
4
 
5
  // The purpose of this override is to prevent Switch to Draft action for template CPTs.
dotcom-fse/editor/suppress-trash-action/index.js CHANGED
@@ -1,8 +1,5 @@
1
  /* global fullSiteEditing */
2
 
3
- /**
4
- * External dependencies
5
- */
6
  import { use } from '@wordpress/data';
7
 
8
  // The purpose of this override is to prevent trash action from deleting template CPTs.
1
  /* global fullSiteEditing */
2
 
 
 
 
3
  import { use } from '@wordpress/data';
4
 
5
  // The purpose of this override is to prevent trash action from deleting template CPTs.
dotcom-fse/editor/template-validity-override/index.js CHANGED
@@ -1,8 +1,5 @@
1
  /* global fullSiteEditing */
2
 
3
- /**
4
- * External dependencies
5
- */
6
  import { select, dispatch, subscribe } from '@wordpress/data';
7
 
8
  /**
1
  /* global fullSiteEditing */
2
 
 
 
 
3
  import { select, dispatch, subscribe } from '@wordpress/data';
4
 
5
  /**
dotcom-fse/index.js CHANGED
@@ -1,6 +1,3 @@
1
- /**
2
- * Internal dependencies
3
- */
4
  import './blocks/navigation-menu';
5
  import './blocks/post-content';
6
  import './blocks/site-credit';
 
 
 
1
  import './blocks/navigation-menu';
2
  import './blocks/post-content';
3
  import './blocks/site-credit';
dotcom-fse/lib/site-options/use-previous.js CHANGED
@@ -1,6 +1,3 @@
1
- /**
2
- * External dependencies
3
- */
4
  import { useEffect, useRef } from '@wordpress/element';
5
 
6
  /**
 
 
 
1
  import { useEffect, useRef } from '@wordpress/element';
2
 
3
  /**
dotcom-fse/lib/site-options/use-site-options.js CHANGED
@@ -1,14 +1,7 @@
1
- /**
2
- * External dependencies
3
- */
4
- import { __, sprintf } from '@wordpress/i18n';
5
- import { useState, useEffect } from '@wordpress/element';
6
  import apiFetch from '@wordpress/api-fetch';
 
7
  import { decodeEntities } from '@wordpress/html-entities';
8
-
9
- /**
10
- * Internal dependencies
11
- */
12
  import { usePrevious } from './use-previous';
13
 
14
  export function useSiteOptions(
 
 
 
 
 
1
  import apiFetch from '@wordpress/api-fetch';
2
+ import { useState, useEffect } from '@wordpress/element';
3
  import { decodeEntities } from '@wordpress/html-entities';
4
+ import { __, sprintf } from '@wordpress/i18n';
 
 
 
5
  import { usePrevious } from './use-previous';
6
 
7
  export function useSiteOptions(
dotcom-fse/lib/site-options/with-site-options.js CHANGED
@@ -1,12 +1,5 @@
1
- /**
2
- * External dependencies
3
- */
4
  import { createHigherOrderComponent, pure } from '@wordpress/compose';
5
  import { useSelect, useDispatch } from '@wordpress/data';
6
-
7
- /**
8
- * Internal dependencies
9
- */
10
  import { useSiteOptions } from './use-site-options';
11
 
12
  /**
 
 
 
1
  import { createHigherOrderComponent, pure } from '@wordpress/compose';
2
  import { useSelect, useDispatch } from '@wordpress/data';
 
 
 
 
3
  import { useSiteOptions } from './use-site-options';
4
 
5
  /**
dotcom-fse/plugins/close-button-override/index.js CHANGED
@@ -1,17 +1,12 @@
1
  /* global fullSiteEditing */
2
 
3
- /**
4
- * External dependencies
5
- */
6
- import domReady from '@wordpress/dom-ready';
7
- import ReactDOM from 'react-dom';
8
- import { __ } from '@wordpress/i18n';
9
  import { Button, Dashicon } from '@wordpress/components';
 
10
  import { useState } from '@wordpress/element';
 
 
11
 
12
- /**
13
- * Internal dependencies
14
- */
15
  import './style.scss';
16
 
17
  function BackButtonOverride( { defaultLabel, defaultUrl } ) {
1
  /* global fullSiteEditing */
2
 
3
+ // eslint-disable-next-line no-restricted-imports
 
 
 
 
 
4
  import { Button, Dashicon } from '@wordpress/components';
5
+ import domReady from '@wordpress/dom-ready';
6
  import { useState } from '@wordpress/element';
7
+ import { __ } from '@wordpress/i18n';
8
+ import ReactDOM from 'react-dom';
9
 
 
 
 
10
  import './style.scss';
11
 
12
  function BackButtonOverride( { defaultLabel, defaultUrl } ) {
dotcom-fse/plugins/editor-template-classes/index.js CHANGED
@@ -1,15 +1,9 @@
1
  /* global fullSiteEditing */
2
- /**
3
- * External dependencies
4
- */
5
- import classNames from 'classnames';
6
- import { get, map } from 'lodash';
7
 
8
- /**
9
- * WordPress dependencies
10
- */
11
  import { withSelect } from '@wordpress/data';
12
  import { registerPlugin } from '@wordpress/plugins';
 
 
13
 
14
  const EditorTemplateClasses = withSelect( ( select ) => {
15
  const { getEntityRecord } = select( 'core' );
1
  /* global fullSiteEditing */
 
 
 
 
 
2
 
 
 
 
3
  import { withSelect } from '@wordpress/data';
4
  import { registerPlugin } from '@wordpress/plugins';
5
+ import classNames from 'classnames';
6
+ import { get, map } from 'lodash';
7
 
8
  const EditorTemplateClasses = withSelect( ( select ) => {
9
  const { getEntityRecord } = select( 'core' );
dotcom-fse/plugins/template-update-notice/index.js CHANGED
@@ -1,9 +1,7 @@
1
  /* global fullSiteEditing */
2
- /**
3
- * External dependencies
4
- */
5
- import domReady from '@wordpress/dom-ready';
6
  import { dispatch } from '@wordpress/data';
 
7
  import { __ } from '@wordpress/i18n';
8
 
9
  domReady( () => {
1
  /* global fullSiteEditing */
2
+
 
 
 
3
  import { dispatch } from '@wordpress/data';
4
+ import domReady from '@wordpress/dom-ready';
5
  import { __ } from '@wordpress/i18n';
6
 
7
  domReady( () => {
editor-site-launch/dist/focused-launch.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('a8c-fse-common-data-stores', 'lodash', 'react', 'wp-components', 'wp-compose', 'wp-data', 'wp-data-controls', 'wp-deprecated', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins', 'wp-polyfill', 'wp-primitives', 'wp-react-i18n', 'wp-url'), 'version' => '3106b68a1b6b5cc483a34cdbb0389a12');
1
+ <?php return array('dependencies' => array('a8c-fse-common-data-stores', 'lodash', 'react', 'wp-components', 'wp-compose', 'wp-data', 'wp-data-controls', 'wp-deprecated', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins', 'wp-polyfill', 'wp-primitives', 'wp-react-i18n', 'wp-url'), 'version' => '602d7545c6535e8ea5373b3084150a0a');
editor-site-launch/dist/focused-launch.js CHANGED
@@ -16,7 +16,7 @@ object-assign
16
  *
17
  * This source code is licensed under the MIT license found in the
18
  * LICENSE file in the root directory of this source tree.
19
- */var n="function"==typeof Symbol&&Symbol.for,r=n?Symbol.for("react.element"):60103,i=n?Symbol.for("react.portal"):60106,o=n?Symbol.for("react.fragment"):60107,a=n?Symbol.for("react.strict_mode"):60108,u=n?Symbol.for("react.profiler"):60114,s=n?Symbol.for("react.provider"):60109,l=n?Symbol.for("react.context"):60110,c=n?Symbol.for("react.async_mode"):60111,d=n?Symbol.for("react.concurrent_mode"):60111,f=n?Symbol.for("react.forward_ref"):60112,p=n?Symbol.for("react.suspense"):60113,m=n?Symbol.for("react.suspense_list"):60120,h=n?Symbol.for("react.memo"):60115,g=n?Symbol.for("react.lazy"):60116,v=n?Symbol.for("react.block"):60121,y=n?Symbol.for("react.fundamental"):60117,_=n?Symbol.for("react.responder"):60118,b=n?Symbol.for("react.scope"):60119;function E(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case r:switch(e=e.type){case c:case d:case o:case u:case a:case p:return e;default:switch(e=e&&e.$$typeof){case l:case f:case g:case h:case s:return e;default:return t}}case i:return t}}}function S(e){return E(e)===d}t.AsyncMode=c,t.ConcurrentMode=d,t.ContextConsumer=l,t.ContextProvider=s,t.Element=r,t.ForwardRef=f,t.Fragment=o,t.Lazy=g,t.Memo=h,t.Portal=i,t.Profiler=u,t.StrictMode=a,t.Suspense=p,t.isAsyncMode=function(e){return S(e)||E(e)===c},t.isConcurrentMode=S,t.isContextConsumer=function(e){return E(e)===l},t.isContextProvider=function(e){return E(e)===s},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===r},t.isForwardRef=function(e){return E(e)===f},t.isFragment=function(e){return E(e)===o},t.isLazy=function(e){return E(e)===g},t.isMemo=function(e){return E(e)===h},t.isPortal=function(e){return E(e)===i},t.isProfiler=function(e){return E(e)===u},t.isStrictMode=function(e){return E(e)===a},t.isSuspense=function(e){return E(e)===p},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===o||e===d||e===u||e===a||e===p||e===m||"object"==typeof e&&null!==e&&(e.$$typeof===g||e.$$typeof===h||e.$$typeof===s||e.$$typeof===l||e.$$typeof===f||e.$$typeof===y||e.$$typeof===_||e.$$typeof===b||e.$$typeof===v)},t.typeOf=E},8570:function(e,t,n){"use strict";e.exports=n(6866)},7933:function(e,t,n){"use strict";n.d(t,{rU:function(){return g}});var r=n(7267),i=n(5307),o=n(3804),a=n.n(o),u=n(7547),s=(n(3980),n(7560)),l=n(8283),c=n(1898);a().Component;a().Component;var d=function(e,t){return"function"==typeof e?e(t):e},f=function(e,t){return"string"==typeof e?(0,u.ob)(e,null,null,t):e},p=function(e){return e},m=a().forwardRef;void 0===m&&(m=p);var h=m((function(e,t){var n=e.innerRef,r=e.navigate,i=e.onClick,o=(0,l.Z)(e,["innerRef","navigate","onClick"]),u=o.target,c=(0,s.Z)({},o,{onClick:function(e){try{i&&i(e)}catch(t){throw e.preventDefault(),t}e.defaultPrevented||0!==e.button||u&&"_self"!==u||function(e){return!!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)}(e)||(e.preventDefault(),r())}});return c.ref=p!==m&&t||n,a().createElement("a",c)}));var g=m((function(e,t){var n=e.component,i=void 0===n?h:n,o=e.replace,u=e.to,g=e.innerRef,v=(0,l.Z)(e,["component","replace","to","innerRef"]);return a().createElement(r.s6.Consumer,null,(function(e){e||(0,c.Z)(!1);var n=e.history,r=f(d(u,e.location),e.location),l=r?n.createHref(r):"",h=(0,s.Z)({},v,{href:l,navigate:function(){var t=d(u,e.location);(o?n.replace:n.push)(t)}});return p!==m?h.ref=t||g:h.innerRef=g,a().createElement(i,h)}))})),v=function(e){return e},y=a().forwardRef;void 0===y&&(y=v);y((function(e,t){var n=e["aria-current"],i=void 0===n?"page":n,o=e.activeClassName,u=void 0===o?"active":o,p=e.activeStyle,m=e.className,h=e.exact,_=e.isActive,b=e.location,E=e.strict,S=e.style,w=e.to,A=e.innerRef,P=(0,l.Z)(e,["aria-current","activeClassName","activeStyle","className","exact","isActive","location","strict","style","to","innerRef"]);return a().createElement(r.s6.Consumer,null,(function(e){e||(0,c.Z)(!1);var n=b||e.location,o=f(d(w,n),n),l=o.pathname,x=l&&l.replace(/([.+*?=^!:${}()[\]|/\\])/g,"\\$1"),C=x?(0,r.LX)(n.pathname,{path:x,exact:h,strict:E}):null,N=!!(_?_(C,n):C),I=N?function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return t.filter((function(e){return e})).join(" ")}(m,u):m,Z=N?(0,s.Z)({},S,{},p):S,O=(0,s.Z)({"aria-current":N&&i||null,className:I,style:Z,to:o},P);return v!==y?O.ref=t||A:O.innerRef=A,a().createElement(g,O)}))}))},7267:function(e,t,n){"use strict";n.d(t,{VA:function(){return h},l_:function(){return b},AW:function(){return A},F0:function(){return m},rs:function(){return Z},s6:function(){return p},LX:function(){return w},k6:function(){return M},TH:function(){return L}});var r=n(5307),i=n(3804),o=n.n(i),a=(n(3980),n(7547)),u=n(1549),s=n(1898),l=n(7560),c=n(99),d=n.n(c),f=(n(8570),n(8283)),p=(n(3463),function(e){var t=(0,u.Z)();return t.displayName=e,t}("Router")),m=function(e){function t(t){var n;return(n=e.call(this,t)||this).state={location:t.history.location},n._isMounted=!1,n._pendingLocation=null,t.staticContext||(n.unlisten=t.history.listen((function(e){n._isMounted?n.setState({location:e}):n._pendingLocation=e}))),n}(0,r.Z)(t,e),t.computeRootMatch=function(e){return{path:"/",url:"/",params:{},isExact:"/"===e}};var n=t.prototype;return n.componentDidMount=function(){this._isMounted=!0,this._pendingLocation&&this.setState({location:this._pendingLocation})},n.componentWillUnmount=function(){this.unlisten&&this.unlisten()},n.render=function(){return o().createElement(p.Provider,{children:this.props.children||null,value:{history:this.props.history,location:this.state.location,match:t.computeRootMatch(this.state.location.pathname),staticContext:this.props.staticContext}})},t}(o().Component);var h=function(e){function t(){for(var t,n=arguments.length,r=new Array(n),i=0;i<n;i++)r[i]=arguments[i];return(t=e.call.apply(e,[this].concat(r))||this).history=(0,a.PP)(t.props),t}return(0,r.Z)(t,e),t.prototype.render=function(){return o().createElement(m,{history:this.history,children:this.props.children})},t}(o().Component);var g=function(e){function t(){return e.apply(this,arguments)||this}(0,r.Z)(t,e);var n=t.prototype;return n.componentDidMount=function(){this.props.onMount&&this.props.onMount.call(this,this)},n.componentDidUpdate=function(e){this.props.onUpdate&&this.props.onUpdate.call(this,this,e)},n.componentWillUnmount=function(){this.props.onUnmount&&this.props.onUnmount.call(this,this)},n.render=function(){return null},t}(o().Component);var v={},y=0;function _(e,t){return void 0===e&&(e="/"),void 0===t&&(t={}),"/"===e?e:function(e){if(v[e])return v[e];var t=d().compile(e);return y<1e4&&(v[e]=t,y++),t}(e)(t,{pretty:!0})}function b(e){var t=e.computedMatch,n=e.to,r=e.push,i=void 0!==r&&r;return o().createElement(p.Consumer,null,(function(e){e||(0,s.Z)(!1);var r=e.history,u=e.staticContext,c=i?r.push:r.replace,d=(0,a.ob)(t?"string"==typeof n?_(n,t.params):(0,l.Z)({},n,{pathname:_(n.pathname,t.params)}):n);return u?(c(d),null):o().createElement(g,{onMount:function(){c(d)},onUpdate:function(e,t){var n=(0,a.ob)(t.to);(0,a.Hp)(n,(0,l.Z)({},d,{key:n.key}))||c(d)},to:n})}))}var E={},S=0;function w(e,t){void 0===t&&(t={}),("string"==typeof t||Array.isArray(t))&&(t={path:t});var n=t,r=n.path,i=n.exact,o=void 0!==i&&i,a=n.strict,u=void 0!==a&&a,s=n.sensitive,l=void 0!==s&&s;return[].concat(r).reduce((function(t,n){if(!n&&""!==n)return null;if(t)return t;var r=function(e,t){var n=""+t.end+t.strict+t.sensitive,r=E[n]||(E[n]={});if(r[e])return r[e];var i=[],o={regexp:d()(e,i,t),keys:i};return S<1e4&&(r[e]=o,S++),o}(n,{end:o,strict:u,sensitive:l}),i=r.regexp,a=r.keys,s=i.exec(e);if(!s)return null;var c=s[0],f=s.slice(1),p=e===c;return o&&!p?null:{path:n,url:"/"===n&&""===c?"/":c,isExact:p,params:a.reduce((function(e,t,n){return e[t.name]=f[n],e}),{})}}),null)}var A=function(e){function t(){return e.apply(this,arguments)||this}return(0,r.Z)(t,e),t.prototype.render=function(){var e=this;return o().createElement(p.Consumer,null,(function(t){t||(0,s.Z)(!1);var n=e.props.location||t.location,r=e.props.computedMatch?e.props.computedMatch:e.props.path?w(n.pathname,e.props):t.match,i=(0,l.Z)({},t,{location:n,match:r}),a=e.props,u=a.children,c=a.component,d=a.render;return Array.isArray(u)&&0===u.length&&(u=null),o().createElement(p.Provider,{value:i},i.match?u?"function"==typeof u?u(i):u:c?o().createElement(c,i):d?d(i):null:"function"==typeof u?u(i):null)}))},t}(o().Component);function P(e){return"/"===e.charAt(0)?e:"/"+e}function x(e,t){if(!e)return t;var n=P(e);return 0!==t.pathname.indexOf(n)?t:(0,l.Z)({},t,{pathname:t.pathname.substr(n.length)})}function C(e){return"string"==typeof e?e:(0,a.Ep)(e)}function N(e){return function(){(0,s.Z)(!1)}}function I(){}o().Component;var Z=function(e){function t(){return e.apply(this,arguments)||this}return(0,r.Z)(t,e),t.prototype.render=function(){var e=this;return o().createElement(p.Consumer,null,(function(t){t||(0,s.Z)(!1);var n,r,i=e.props.location||t.location;return o().Children.forEach(e.props.children,(function(e){if(null==r&&o().isValidElement(e)){n=e;var a=e.props.path||e.props.from;r=a?w(i.pathname,(0,l.Z)({},e.props,{path:a})):t.match}})),r?o().cloneElement(n,{location:i,computedMatch:r}):null}))},t}(o().Component);var O=o().useContext;function M(){return O(p).history}function L(){return O(p).location}},7613:function(e,t){"use strict";function n(e){return"/"===e.charAt(0)}function r(e,t){for(var n=t,r=n+1,i=e.length;r<i;n+=1,r+=1)e[n]=e[r];e.pop()}t.Z=function(e,t){void 0===t&&(t="");var i,o=e&&e.split("/")||[],a=t&&t.split("/")||[],u=e&&n(e),s=t&&n(t),l=u||s;if(e&&n(e)?a=o:o.length&&(a.pop(),a=a.concat(o)),!a.length)return"/";if(a.length){var c=a[a.length-1];i="."===c||".."===c||""===c}else i=!1;for(var d=0,f=a.length;f>=0;f--){var p=a[f];"."===p?r(a,f):".."===p?(r(a,f),d++):d&&(r(a,f),d--)}if(!l)for(;d--;d)a.unshift("..");!l||""===a[0]||a[0]&&n(a[0])||a.unshift("");var m=a.join("/");return i&&"/"!==m.substr(-1)&&(m+="/"),m}},9830:function(e,t,n){"use strict";n.d(t,{Z:function(){return o}});var r=n(1184),i={contextDelimiter:"",onMissingKey:null};function o(e,t){var n;for(n in this.data=e,this.pluralForms={},this.options={},i)this.options[n]=void 0!==t&&n in t?t[n]:i[n]}o.prototype.getPluralForm=function(e,t){var n,i,o,a=this.pluralForms[e];return a||("function"!=typeof(o=(n=this.data[e][""])["Plural-Forms"]||n["plural-forms"]||n.plural_forms)&&(i=function(e){var t,n,r;for(t=e.split(";"),n=0;n<t.length;n++)if(0===(r=t[n].trim()).indexOf("plural="))return r.substr(7)}(n["Plural-Forms"]||n["plural-forms"]||n.plural_forms),o=(0,r.Z)(i)),a=this.pluralForms[e]=o),a(t)},o.prototype.dcnpgettext=function(e,t,n,r,i){var o,a,u;return o=void 0===i?0:this.getPluralForm(e,i),a=n,t&&(a=t+this.options.contextDelimiter+n),(u=this.data[e][a])&&u[o]?u[o]:(this.options.onMissingKey&&this.options.onMissingKey(n,e),0===o?n:r)}},365:function(e,t,n){"use strict";n.d(t,{y:function(){return r}});var r=function(){try{return window.self!==window.top}catch(e){return!0}};!window||!window._currentSiteType||window._currentSiteType},5631:function(e,t,n){"use strict";var r,i,o=n(3027),a=n(3804),u=n.n(a),s=n(1200),l=n(5707),c=n(791),d=n(8152),f=n(365),p=n(8318),m=n(8550),h=n(1157);r="a8c-editor-editor-focused-launch",i={render:function(){var e,t=window._currentSiteId,n=(0,l.useSelect)((function(e){return e(p.j4).isSiteLaunched(t)}),[t]),r=(0,l.useSelect)((function(e){return e(p.sC).getState()}),[]),i=r.isFocusedLaunchOpen,a=r.isAnchorFm,s=(0,l.useDispatch)(p.sC).openFocusedLaunch;u().useEffect((function(){n&&document.body.classList.add("is-focused-launch-complete")}),[n]);var g=(0,c.hasQueryArg)((0,m.O0)(),h.nU);return u().useEffect((function(){g&&!n&&s()}),[g,n,s]),i?(0,o.createElement)(d.Z,{locale:null===(e=window.wpcomEditorSiteLaunch)||void 0===e?void 0:e.locale,openCheckout:m.Rd,redirectTo:m.gQ,siteId:t,getCurrentLaunchFlowUrl:m.O0,isInIframe:(0,f.y)(),isLaunchImmediately:g||a}):null}},(0,s.registerPlugin)(r,i)},1157:function(e,t,n){"use strict";n.d(t,{Js:function(){return r},nU:function(){return i}});var r="focused-launch",i="should_launch"},8318:function(e,t,n){"use strict";n.d(t,{j4:function(){return r},sC:function(){return i}});n(8681);var r="automattic/site",i="automattic/launch"},8550:function(e,t,n){"use strict";n.d(t,{O0:function(){return s},gQ:function(){return l},Rd:function(){return c}});var r=n(9394),i=n(1119),o=n(5799),a=n(791),u=n(1157),s=function(){var e,t,n;return null!==(e=null===(t=window)||void 0===t||null===(n=t.calypsoifyGutenberg)||void 0===n?void 0:n.currentCalypsoUrl)&&void 0!==e?e:window.location.href},l=function(e){var t="https://wordpress.com";try{var n,r;t=new URL((null===(n=window)||void 0===n||null===(r=n.calypsoifyGutenberg)||void 0===r?void 0:r.currentCalypsoUrl)||"").origin}catch(o){}var i=e.startsWith("/")?e:"/".concat(e);!function(e){window.top.location.href=e}("".concat(t).concat(i))},c=function(){var e,t,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:window._currentSiteId.toString(),c=arguments.length>1&&void 0!==arguments[1]&&arguments[1],d=arguments.length>2?arguments[2]:void 0,f="a8c.wpcom-block-editor.openCheckoutModal",p=(null===(e=window)||void 0===e||null===(t=e.wpcomEditorSiteLaunch)||void 0===t?void 0:t.launchFlow)===u.Js,m=s().split("?")[0];if((0,o.hasAction)(f)&&p&&!c)(0,o.doAction)(f,{checkoutOnSuccessCallback:d,isFocusedLaunch:!0,redirectTo:(0,a.addQueryArgs)(m,(0,i.Z)({},u.nU,!0))});else{var h=(0,a.addQueryArgs)("/checkout/".concat(n),(0,r.Z)({},!c&&{redirect_to:"/home/".concat(n)}));l(h)}}},6115:function(e,t,n){"use strict";n.d(t,{jN:function(){return r.jN},Sn:function(){return i.Sn},Lo:function(){return i.Lo},k9:function(){return i.k9}});n(1694),n(6209),n(9377);var r=n(9792),i=n(3722)},9377:function(e,t,n){"use strict";"undefined"!=typeof window&&window.addEventListener("popstate",(function(){null}))},9792:function(e,t,n){"use strict";n.d(t,{jN:function(){return f}});var r,i=n(9394),o=n(1205),a=(n(3421),n(382)),u=n(4898),s=(n(6209),n(1694),n(9377),n(9358)),l=["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"];Promise.resolve();function c(e){"undefined"!=typeof window&&(window._tkq=window._tkq||[],window._tkq.push(e))}"undefined"!=typeof document&&(0,u.ve)("//stats.wp.com/w.js?63");var d=new a.EventEmitter;function f(e,t){if(t=t||{},(0,s.Z)('Record event "%s" called with props %o',e,t),e.startsWith("calypso_")||(0,o.includes)(l,e)){if(r){var n=r(t);t=(0,i.Z)((0,i.Z)({},t),n)}t=(0,o.omitBy)(t,(function(e){return void 0===e})),(0,s.Z)('Recording event "%s" with actual props %o',e,t),c(["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.d(t,{Sn:function(){return o},Lo:function(){return a},k9:function(){return u}});var r=n(8767),i=n(9792);function o(e){var t=e.railcarId,n=e.uiAlgo,r=e.uiPosition,o=e.fetchAlgo,a=e.result,u=e.query;(0,i.jN)("calypso_traintracks_render",{railcar:t,ui_algo:n,ui_position:r,fetch_algo:o,rec_result:a,fetch_query:u})}function a(e){var t=e.railcarId,n=e.action;(0,i.jN)("calypso_traintracks_interact",{railcar:t,action:n})}function u(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"recommendation";return"".concat((0,r.Z)().replace(/-/g,""),"-").concat(e)}},6209:function(e,t,n){"use strict";n(4)},9358:function(e,t,n){"use strict";var r=n(8049),i=n.n(r);t.Z=i()("calypso:analytics")},1694:function(e,t,n){"use strict";n(9358)},4:function(e,t,n){"use strict";n(8032)},3600:function(e,t,n){"use strict";n.r(t),n.d(t,{receiveCategories:function(){return r},fetchDomainSuggestions:function(){return i},receiveDomainAvailability:function(){return o},receiveDomainSuggestionsSuccess:function(){return a},receiveDomainSuggestionsError:function(){return u}});var r=function(e){return{type:"RECEIVE_CATEGORIES",categories:e}},i=function(){return{type:"FETCH_DOMAIN_SUGGESTIONS",timeStamp:Date.now()}},o=function(e,t){return{type:"RECEIVE_DOMAIN_AVAILABILITY",domainName:e,availability:t}},a=function(e,t){return{type:"RECEIVE_DOMAIN_SUGGESTIONS_SUCCESS",queryObject:e,suggestions:t,timeStamp:Date.now()}},u=function(e){return{type:"RECEIVE_DOMAIN_SUGGESTIONS_ERROR",errorMessage:e,timeStamp:Date.now()}}},584:function(e,t,n){"use strict";n.d(t,{L:function(){return i},r:function(){return r}});var r,i="automattic/domains/suggestions";!function(e){e.Failure="failure",e.Pending="pending",e.Success="success",e.Uninitialized="uninitialized"}(r||(r={}))},8077:function(e,t,n){"use strict";n.d(t,{z:function(){return d}});var r=n(5707),i=n(3661),o=n(3600),a=n(584),u=n(3717),s=n(2269),l=n(267),c=!1;function d(){return c||(c=!0,(0,r.registerStore)(a.L,{actions:o,controls:i.ai,reducer:u.Z,resolvers:s,selectors:l})),a.L}},3717:function(e,t,n){"use strict";var r=n(1119),i=n(9394),o=n(5707),a=n(584),u=n(4211),s={state:a.r.Uninitialized,data:{},errorMessage:null,lastUpdated:-1/0,pendingSince:void 0},l=(0,o.combineReducers)({categories:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1?arguments[1]:void 0;return"RECEIVE_CATEGORIES"===t.type?t.categories:e},domainSuggestions:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:s,t=arguments.length>1?arguments[1]:void 0;return"FETCH_DOMAIN_SUGGESTIONS"===t.type?(0,i.Z)((0,i.Z)({},e),{},{state:a.r.Pending,errorMessage:null,pendingSince:t.timeStamp}):"RECEIVE_DOMAIN_SUGGESTIONS_SUCCESS"===t.type?(0,i.Z)((0,i.Z)({},e),{},{state:a.r.Success,data:(0,i.Z)((0,i.Z)({},e.data),{},(0,r.Z)({},(0,u.Le)(t.queryObject),t.suggestions)),errorMessage:null,lastUpdated:t.timeStamp,pendingSince:void 0}):"RECEIVE_DOMAIN_SUGGESTIONS_ERROR"===t.type?(0,i.Z)((0,i.Z)({},e),{},{state:a.r.Failure,errorMessage:t.errorMessage,lastUpdated:t.timeStamp,pendingSince:void 0}):e},availability:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;return"RECEIVE_DOMAIN_AVAILABILITY"===t.type?(0,i.Z)((0,i.Z)({},e),{},(0,r.Z)({},t.domainName,t.availability)):e}});t.Z=l},2269:function(e,t,n){"use strict";n.r(t),n.d(t,{isAvailable:function(){return h},getCategories:function(){return g},__internalGetDomainSuggestions:function(){return v}});var r=n(9394),i=n(1481),o=n(9126),a=n(6468),u=n.n(a),s=n(3661),l=n(3600),c=n(4211),d=regeneratorRuntime.mark(g),f=regeneratorRuntime.mark(v);function p(e){return"https://public-api.wordpress.com/rest/v1.3/domains/".concat(encodeURIComponent(e),"/is-available?is_cart_pre_check=true")}function m(e,t){return u().isFQDN(t)&&!e.some((function(e){return e.domain_name.toLowerCase()===t}))}var h=regeneratorRuntime.mark((function e(t){var n,r,i;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=p(t),e.prev=1,e.next=4,(0,s.An)(n);case 4:return r=e.sent,i=r.body,e.abrupt("return",(0,l.receiveDomainAvailability)(t,i));case 9:return e.prev=9,e.t0=e.catch(1),e.abrupt("return",(0,l.receiveDomainAvailability)(t,{domain_name:t,mappable:"unknown",status:"unknown",supports_privacy:!1}));case 12:case"end":return e.stop()}}),e,null,[[1,9]])}));function g(){var e,t;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,(0,s.An)("https://public-api.wordpress.com/wpcom/v2/onboarding/domains/categories");case 2:return e=n.sent,t=e.body,n.abrupt("return",(0,l.receiveCategories)(t));case 5:case"end":return n.stop()}}),d)}function v(e){var t,n,a;return regeneratorRuntime.wrap((function(u){for(;;)switch(u.prev=u.next){case 0:if(e.query){u.next=2;break}return u.abrupt("return",(0,l.receiveDomainSuggestionsError)("Empty query"));case 2:return u.next=4,(0,l.fetchDomainSuggestions)();case 4:return u.prev=4,u.next=7,(0,s._9)({apiVersion:"1.1",path:"/domains/suggestions",query:(0,o.stringify)(e)});case 7:if(t=u.sent,Array.isArray(t)){u.next=10;break}return u.abrupt("return",(0,l.receiveDomainSuggestionsError)((0,i.Iu)("Invalid response from the server")));case 10:return m(t,e.query)&&(n={domain_name:e.query,unavailable:!0,cost:"",raw_price:0,currency_code:""},t.unshift(n)),a=t.map((function(e){return e.unavailable?e:(0,r.Z)((0,r.Z)({},e),e.raw_price&&e.currency_code&&{cost:(0,c._B)(e.raw_price,e.currency_code)})})),u.abrupt("return",(0,l.receiveDomainSuggestionsSuccess)(e,a));case 15:return u.prev=15,u.t0=u.catch(4),u.abrupt("return",(0,l.receiveDomainSuggestionsError)(u.t0.message||(0,i.Iu)("Error while fetching server response")));case 18:case"end":return u.stop()}}),f,null,[[4,15]])}},267:function(e,t,n){"use strict";n.r(t),n.d(t,{getCategories:function(){return u},getDomainSuggestions:function(){return s},getDomainState:function(){return l},getDomainErrorMessage:function(){return c},isLoadingDomainSuggestions:function(){return d},__internalGetDomainSuggestions:function(){return f},isAvailable:function(){return p},getDomainAvailabilities:function(){return m}});var r=n(1766),i=n(5707),o=n(584),a=n(4211),u=function(e){return[].concat((0,r.Z)(e.categories.filter((function(e){return null!==e.tier})).sort((function(e,t){return e>t?1:-1}))),(0,r.Z)(e.categories.filter((function(e){return null===e.tier})).sort((function(e,t){return e.title.localeCompare(t.title)}))))},s=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=(0,a.o0)(t,n);return(0,i.select)(o.L).__internalGetDomainSuggestions(r)},l=function(e){return e.domainSuggestions.state},c=function(e){return e.domainSuggestions.errorMessage},d=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=(0,a.o0)(t,n);return(0,i.select)("core/data").isResolving(o.L,"__internalGetDomainSuggestions",[r])},f=function(e,t){return e.domainSuggestions.data[(0,a.Le)(t)]},p=function(e,t){return e.availability[t]},m=function(e){return e.availability}},4211:function(e,t,n){"use strict";n.d(t,{Le:function(){return a},_B:function(){return u},o0:function(){return s}});var r=n(9394),i=n(1621),o=n(5695),a=n.n(o)();function u(e,t){return(0,i.ZP)(e,t,{stripZeros:!0})}function s(e,t){return(0,r.Z)((0,r.Z)({include_wordpressdotcom:t.only_wordpressdotcom||!1,include_dotblogsubdomain:!1,only_wordpressdotcom:!1,quantity:5,vendor:"variation2_front"},t),{},{query:e.trim().toLocaleLowerCase()})}},6108:function(e,t,n){"use strict";n.r(t),n.d(t,{setSidebarFullscreen:function(){return o},unsetSidebarFullscreen:function(){return a},setStep:function(){return u},setSiteTitle:function(){return s},setDomain:function(){return l},unsetDomain:function(){return c},confirmDomainSelection:function(){return d},setDomainSearch:function(){return f},setPlanProductId:function(){return m},unsetPlanProductId:function(){return h},updatePlan:function(){return g},openSidebar:function(){return v},closeSidebar:function(){return y},openFocusedLaunch:function(){return _},closeFocusedLaunch:function(){return b},enableAnchorFm:function(){return E},showSiteTitleStep:function(){return S},setModalDismissible:function(){return w},unsetModalDismissible:function(){return A},showModalTitle:function(){return P},hideModalTitle:function(){return x},enablePersistentSuccessView:function(){return C},disablePersistentSuccessView:function(){return N}});var r=n(5707),i=n(9149),o=function(){return{type:"SET_SIDEBAR_FULLSCREEN"}},a=function(){return{type:"UNSET_SIDEBAR_FULLSCREEN"}},u=function(e){return{type:"SET_STEP",step:e}},s=function(e){return{type:"SET_SITE_TITLE",title:e}},l=function(e){return{type:"SET_DOMAIN",domain:e}},c=function(){return{type:"UNSET_DOMAIN"}},d=function(){return{type:"CONFIRM_DOMAIN_SELECTION"}},f=function(e){return{type:"SET_DOMAIN_SEARCH",domainSearch:e}},p=function(e){return{type:"SET_PLAN_BILLING_PERIOD",billingPeriod:e}},m=regeneratorRuntime.mark((function e(t){var n,o,a;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if((0,r.select)(i.Fs).isPlanProductFree(t)){e.next=6;break}return o=(0,r.select)(i.Fs).getPlanProductById(t),a=null!==(n=null==o?void 0:o.billingPeriod)&&void 0!==n?n:"ANNUALLY",e.next=6,p(a);case 6:return e.abrupt("return",{type:"SET_PLAN_PRODUCT_ID",planProductId:t});case 7:case"end":return e.stop()}}),e)})),h=function(){return{type:"UNSET_PLAN_PRODUCT_ID"}};function g(e){return m(e)}var v=function(){return{type:"OPEN_SIDEBAR"}},y=function(){return{type:"CLOSE_SIDEBAR"}},_=function(){return{type:"OPEN_FOCUSED_LAUNCH"}},b=function(){return{type:"CLOSE_FOCUSED_LAUNCH"}},E=function(){return{type:"ENABLE_ANCHOR_FM"}},S=function(){return{type:"SHOW_SITE_TITLE_STEP"}},w=function(){return{type:"SET_MODAL_DISMISSIBLE"}},A=function(){return{type:"UNSET_MODAL_DISMISSIBLE"}},P=function(){return{type:"SHOW_MODAL_TITLE"}},x=function(){return{type:"HIDE_MODAL_TITLE"}},C=function(){return{type:"ENABLE_SUCCESS_VIEW"}},N=function(){return{type:"DISABLE_SUCCESS_VIEW"}}},9149:function(e,t,n){"use strict";n.d(t,{Ls:function(){return r},Fs:function(){return i}});var r="automattic/launch",i="automattic/onboard/plans"},3610:function(e,t,n){"use strict";n.d(t,{y:function(){return r},M:function(){return i}});var r={Name:"name",Domain:"domain",Plan:"plan",Final:"final"},i=[r.Name,r.Domain,r.Plan,r.Final]},1635:function(e,t,n){"use strict";n.d(t,{z:function(){return d}});var r=n(5707),i=n(9866),o=n(6108),a=n(9149),u=n(594),s=n(4648),l=n(7092);(0,r.use)(r.plugins.persistence,u.Z);var c=!1;function d(){return c||(c=!0,(0,r.registerStore)(a.Ls,{actions:o,controls:i.controls,reducer:s.Z,selectors:l,persist:["domain","domainSearch","planProductId","planBillingPeriod","confirmedDomainSelection","isAnchorFm","isSiteTitleStepVisible","siteTitle"]})),a.Ls}},594:function(e,t,n){"use strict";var r=n(492);t.Z=(0,r.Z)("WP_LAUNCH")},4648:function(e,t,n){"use strict";var r=n(5707),i=n(3610),o=(0,r.combineReducers)({step:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:i.y.Name,t=arguments.length>1?arguments[1]:void 0;return"SET_STEP"===t.type?t.step:e},siteTitle:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:void 0,t=arguments.length>1?arguments[1]:void 0;return"SET_SITE_TITLE"===t.type?t.title:e},domain:function(e,t){return"SET_DOMAIN"===t.type?t.domain:"UNSET_DOMAIN"!==t.type?e:void 0},confirmedDomainSelection:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"CONFIRM_DOMAIN_SELECTION"===t.type||e},domainSearch:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1?arguments[1]:void 0;return"SET_DOMAIN_SEARCH"===t.type?t.domainSearch:e},planBillingPeriod:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"ANNUALLY",t=arguments.length>1?arguments[1]:void 0;return"SET_PLAN_BILLING_PERIOD"===t.type?t.billingPeriod:e},planProductId:function(e,t){return"SET_PLAN_PRODUCT_ID"===t.type?t.planProductId:"UNSET_PLAN_PRODUCT_ID"!==t.type?e:void 0},isSidebarOpen:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"OPEN_SIDEBAR"===t.type||"CLOSE_SIDEBAR"!==t.type&&e},isSidebarFullscreen:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"SET_SIDEBAR_FULLSCREEN"===t.type||"UNSET_SIDEBAR_FULLSCREEN"!==t.type&&e},isAnchorFm:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"ENABLE_ANCHOR_FM"===t.type||e},isFocusedLaunchOpen:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"OPEN_FOCUSED_LAUNCH"===t.type||"CLOSE_FOCUSED_LAUNCH"!==t.type&&e},isSiteTitleStepVisible:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"SHOW_SITE_TITLE_STEP"===t.type||e},isModalDismissible:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0],t=arguments.length>1?arguments[1]:void 0;return"SET_MODAL_DISMISSIBLE"===t.type||"UNSET_MODAL_DISMISSIBLE"!==t.type&&e},isModalTitleVisible:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0],t=arguments.length>1?arguments[1]:void 0;return"SHOW_MODAL_TITLE"===t.type||"HIDE_MODAL_TITLE"!==t.type&&e}});t.Z=o},7092:function(e,t,n){"use strict";n.r(t),n.d(t,{getLaunchSequence:function(){return a},getLaunchStep:function(){return u},getState:function(){return s},hasPaidDomain:function(){return l},getSelectedDomain:function(){return c},getSelectedPlanProductId:function(){return d},getLastPlanBillingPeriod:function(){return f},isSelectedPlanPaid:function(){return p},hasSelectedDomainOrSubdomain:function(){return m},isStepCompleted:function(){return h},isFlowCompleted:function(){return g},isFlowStarted:function(){return v},getFirstIncompleteStep:function(){return y},getSiteTitle:function(){return _},getCurrentStep:function(){return b},getDomainSearch:function(){return E}});var r=n(5707),i=n(9149),o=n(3610),a=function(){return o.M},u=function(){return o.y},s=function(e){return e},l=function(e){return!!e.domain&&!e.domain.is_free},c=function(e){return e.domain},d=function(e){return e.planProductId},f=function(e){return e.planBillingPeriod},p=function(e){return void 0!==e.planProductId&&!(0,r.select)(i.Fs).isPlanProductFree(e.planProductId)},m=function(e){return!!c(e)||e.confirmedDomainSelection},h=function(e,t){if(t===o.y.Plan)return!!d(e);if(t===o.y.Name){var n=(0,r.select)("core").getEntityRecord("root","site",void 0);return!(null==n||!n.title)}return t===o.y.Domain&&(0,r.select)(i.Ls).hasSelectedDomainOrSubdomain()},g=function(e){return o.M.slice(0,o.M.length-1).every((function(t){return h(e,t)}))},v=function(e){return o.M.some((function(t){return h(e,t)}))},y=function(e){return o.M.find((function(t){return!h(e,t)}))},_=function(e){return null==e?void 0:e.siteTitle},b=function(e){return e.step},E=function(e){return e.domainSearch}},492:function(e,t,n){"use strict";function r(e){var t=e,n=e+"_TS",r={},i={getItem:function(e){return r.hasOwnProperty(e)?r[e]:null},setItem:function(e,t){r[e]=String(t)},removeItem:function(e){delete r[e]}},o=function(){try{return window.localStorage.setItem("WP_ONBOARD_TEST","1"),window.localStorage.removeItem("WP_ONBOARD_TEST"),!0}catch(e){return!1}}()?window.localStorage:i;return{storageKey:t,storage:{getItem:function(e){var r=o.getItem(n);return r&&function(e){var t=Number(e);return Boolean(t)&&t+6048e5>Date.now()}(r)&&!new URLSearchParams(window.location.search).has("fresh")?o.getItem(e):(o.removeItem(t),o.removeItem(n),null)},setItem:function(e,t){o.setItem(n,JSON.stringify(Date.now())),o.setItem(e,t)}}}}n.d(t,{Z:function(){return r}})},9068:function(e,t,n){"use strict";n.r(t),n.d(t,{setFeatures:function(){return r},setFeaturesByType:function(){return i},setPlans:function(){return o},setPlanProducts:function(){return a},resetPlan:function(){return u}});var r=function(e,t){return{type:"SET_FEATURES",features:e,locale:t}},i=function(e,t){return{type:"SET_FEATURES_BY_TYPE",featuresByType:e,locale:t}},o=function(e,t){return{type:"SET_PLANS",plans:e,locale:t}},a=function(e){return{type:"SET_PLAN_PRODUCTS",products:e}},u=function(){return{type:"RESET_PLAN"}}},4703:function(e,t,n){"use strict";n.d(t,{Ls:function(){return r},Ho:function(){return i},TO:function(){return o},YS:function(){return a},Gz:function(){return u},hx:function(){return s},iL:function(){return l},xT:function(){return c},AX:function(){return d},bS:function(){return f},UB:function(){return p},BV:function(){return m},nN:function(){return h}});var r="automattic/onboard/plans",i=1,o="free",a="personal",u="premium",s="business",l="ecommerce",c=[o,a,u,s,l],d=u,f=["personal-bundle","value_bundle","business-bundle","ecommerce-bundle"],p=["personal-bundle-monthly","value_bundle_monthly","business-bundle-monthly","ecommerce-bundle-monthly"],m=["free_plan"].concat(f,p),h=["custom-domain","support-live","priority-support"]},9734:function(e,t,n){"use strict";n.d(t,{z2:function(){return d}});var r=n(5707),i=n(3661),o=n(9068),a=n(4703),u=n(9438),s=n(5261),l=n(7738),c=!1;function d(){return c||(c=!0,(0,r.registerStore)(a.Ls,{resolvers:s,actions:o,controls:i.ai,reducer:u.ZP,selectors:l})),a.Ls}},9438:function(e,t,n){"use strict";var r=n(1119),i=n(9394),o=n(5707),a=(0,o.combineReducers)({features:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"SET_FEATURES":return(0,i.Z)((0,i.Z)({},e),{},(0,r.Z)({},t.locale,t.features));default:return e}},featuresByType:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"SET_FEATURES_BY_TYPE":return(0,i.Z)((0,i.Z)({},e),{},(0,r.Z)({},t.locale,t.featuresByType));default:return e}},planProducts:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"SET_PLAN_PRODUCTS":return t.products;default:return e}},plans:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"SET_PLANS":return(0,i.Z)((0,i.Z)({},e),{},(0,r.Z)({},t.locale,t.plans));default:return e}}});t.ZP=a},5261:function(e,t,n){"use strict";n.r(t),n.d(t,{getSupportedPlans:function(){return h}});var r=n(1621),i=n(9126),o=n(3661),a=n(9068),u=n(4703),s=regeneratorRuntime.mark(h);function l(e){return(0,r.ZP)(12*e.raw_price,e.currency_code,{stripZeros:!0})}function c(e){return(0,r.ZP)(e.raw_price,e.currency_code,{stripZeros:!0})}function d(e){return e.reduce((function(e,t){return e[t.id]={id:t.id,name:t.name,description:t.description,type:"checkbox",requiresAnnuallyBilledPlan:u.nN.indexOf(t.id)>-1},e}),{})}function f(e,t){var n=Object.keys(t).find((function(n){return t[n].name===e}));return!!n&&t[n].requiresAnnuallyBilledPlan}function p(e,t){var n=e.highlighted_features.map((function(e){return{name:e,requiresAnnuallyBilledPlan:f(e,t)}}));return n.sort((function(e,t){return Number(t.requiresAnnuallyBilledPlan)-Number(e.requiresAnnuallyBilledPlan)})),n}function m(e,t){var n=u.BV.reduce((function(n,i){var o=e.find((function(e){return e.product_slug===i}));if(!o)return n;var a,u=t.find((function(e){return e.productIds.indexOf(o.product_id)>-1}));return n.push({productId:o.product_id,billingPeriod:31===o.bill_period?"MONTHLY":"ANNUALLY",periodAgnosticSlug:u.periodAgnosticSlug,storeSlug:o.product_slug,rawPrice:o.raw_price,pathSlug:o.path_slug,price:31===(null==o?void 0:o.bill_period)||0===o.raw_price?c(o):(a=o,(0,r.ZP)(a.raw_price/12,a.currency_code,{stripZeros:!0})),annualPrice:31===(null==o?void 0:o.bill_period)?l(o):c(o)}),n}),[]);return function(e){for(var t=function(t){var n=e.find((function(e){return e.storeSlug===u.bS[t]})),r=e.find((function(e){return e.storeSlug===u.UB[t]}));if(n&&r){var i=12*r.rawPrice,o=n.rawPrice,a=Math.round(100*(1-o/i));n.annualDiscount=a,r.annualDiscount=a}},n=0;n<u.bS.length;n++)t(n)}(n),n}function h(){var e,t,n,r,l,c,f,h=arguments;return regeneratorRuntime.wrap((function(s){for(;;)switch(s.prev=s.next){case 0:return e=h.length>0&&void 0!==h[0]?h[0]:"en",s.next=3,(0,o._9)({path:"/plans",query:(0,i.stringify)({locale:e}),apiVersion:"1.5"});case 3:return t=s.sent,s.next=6,(0,o.An)("https://public-api.wordpress.com/wpcom/v2/plans/details?locale=".concat(encodeURIComponent(e)),{mode:"cors",credentials:"omit"});case 6:return n=s.sent,r=n.body,l=d(r.features),c=r.plans.map((function(e){var t,n=null===(t=e.nonlocalized_short_name)||void 0===t?void 0:t.toLowerCase();return{description:e.tagline,features:p(e,l),storage:e.storage,title:e.short_name,featuresSlugs:e.features.reduce((function(e,t){return e[t]=!0,e}),{}),isFree:n===u.TO,isPopular:n===u.Gz,periodAgnosticSlug:n,productIds:e.products.map((function(e){return e.plan_id}))}})),f=m(t,c),s.next=13,(0,a.setPlans)(c,e);case 13:return s.next=15,(0,a.setPlanProducts)(f);case 15:return s.next=17,(0,a.setFeatures)(l,e);case 17:return s.next=19,(0,a.setFeaturesByType)(r.features_by_type,e);case 19:case"end":return s.stop()}}),s)}},7738:function(e,t,n){"use strict";n.r(t),n.d(t,{getFeatures:function(){return u},getFeaturesByType:function(){return s},getPlanByProductId:function(){return l},getPlanProductById:function(){return c},getPlanByPeriodAgnosticSlug:function(){return d},getDefaultPaidPlan:function(){return f},getDefaultFreePlan:function(){return p},getSupportedPlans:function(){return m},getPlansProducts:function(){return h},getPrices:function(){return g},getPlanByPath:function(){return v},getPlanProduct:function(){return y},isPlanEcommerce:function(){return _},isPlanFree:function(){return b},isPlanProductFree:function(){return E}});var r=n(5707),i=n(3613),o=n.n(i),a=n(4703),u=function(e,t){var n;return null!==(n=e.features[t])&&void 0!==n?n:{}},s=function(e,t){var n;return null!==(n=e.featuresByType[t])&&void 0!==n?n:[]},l=function(e,t,n){if(t)return(0,r.select)(a.Ls).getSupportedPlans(n).find((function(e){return e.productIds.indexOf(t)>-1}))},c=function(e,t){if(t)return(0,r.select)(a.Ls).getPlansProducts().find((function(e){return e.productId===t}))},d=function(e,t,n){if(t)return(0,r.select)(a.Ls).getSupportedPlans(n).find((function(e){return e.periodAgnosticSlug===t}))},f=function(e,t){return(0,r.select)(a.Ls).getSupportedPlans(t).find((function(e){return e.periodAgnosticSlug===a.AX}))},p=function(e,t){return(0,r.select)(a.Ls).getSupportedPlans(t).find((function(e){return e.periodAgnosticSlug===a.TO}))},m=function(e,t){var n;return null!==(n=e.plans[t])&&void 0!==n?n:[]},h=function(e){return e.planProducts},g=function(e,t){return o()("getPrices",{alternative:"getPlanProduct().price"}),(0,r.select)(a.Ls).getPlansProducts().reduce((function(e,t){return e[t.storeSlug]=t.price,e}),{})},v=function(e,t,n){if(t){var i=(0,r.select)(a.Ls).getPlansProducts().find((function(e){return e.pathSlug===t}));if(i)return(0,r.select)(a.Ls).getSupportedPlans(n).find((function(e){return e.periodAgnosticSlug===i.periodAgnosticSlug}))}},y=function(e,t,n){if(t&&n)return(0,r.select)(a.Ls).getPlansProducts().find((function(e){var r=e.periodAgnosticSlug===t,i=t===a.TO||e.billingPeriod===n;return r&&i}))},_=function(e,t){return t===a.iL},b=function(e,t){return t===a.TO},E=function(e,t){return t===a.Ho}},8459:function(e,t,n){"use strict";n.d(t,{d:function(){return u}});var r=n(9394),i=n(4530),o=n(3661),a=n(2699);function u(e){var t=regeneratorRuntime.mark(p),n=regeneratorRuntime.mark(y),u=regeneratorRuntime.mark(_),s=regeneratorRuntime.mark(b),l=regeneratorRuntime.mark(E),c=function(){return{type:"FETCH_NEW_SITE"}},d=function(e){return{type:"RECEIVE_NEW_SITE",response:e}},f=function(e){return{type:"RECEIVE_NEW_SITE_FAILED",error:e}};function p(n){var a,u,s,l,c;return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,{type:"FETCH_NEW_SITE"};case 2:return t.prev=2,a=n.authToken,u=(0,i.Z)(n,["authToken"]),s={client_id:e.client_id,client_secret:e.client_secret,find_available_url:!0,public:-1},l=(0,r.Z)((0,r.Z)((0,r.Z)({},s),u),{},{validate:!1}),t.next=8,(0,o._9)({path:"/sites/new",apiVersion:"1.1",method:"post",body:l,token:a});case 8:return c=t.sent,t.next=11,d(c);case 11:return t.abrupt("return",!0);case 14:return t.prev=14,t.t0=t.catch(2),t.next=18,f(t.t0);case 18:return t.abrupt("return",!1);case 19:case"end":return t.stop()}}),t,null,[[2,14]])}var m=function(e,t){return{type:"RECEIVE_SITE_TITLE",siteId:e,title:t}},h=function(e){return{type:"LAUNCH_SITE_START",siteId:e}},g=function(e){return{type:"LAUNCH_SITE_SUCCESS",siteId:e}},v=function(e,t){return{type:"LAUNCH_SITE_FAILURE",siteId:e,error:t}};function y(e){return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,h(e);case 2:return t.prev=2,t.next=5,(0,o._9)({path:"/sites/".concat(e,"/launch"),apiVersion:"1.1",method:"post"});case 5:return t.next=7,g(e);case 7:t.next=13;break;case 9:return t.prev=9,t.t0=t.catch(2),t.next=13,v(e,a.Hc.INTERNAL);case 13:case"end":return t.stop()}}),n,null,[[2,9]])}function _(e){var t;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,(0,o._9)({path:"/me/shopping-cart/"+e,apiVersion:"1.1",method:"GET"});case 2:return t=n.sent,n.abrupt("return",t);case 4:case"end":return n.stop()}}),u)}function b(e,t){var n;return regeneratorRuntime.wrap((function(r){for(;;)switch(r.prev=r.next){case 0:return r.next=2,(0,o._9)({path:"/me/shopping-cart/"+e,apiVersion:"1.1",method:"POST",body:t});case 2:return n=r.sent,r.abrupt("return",n);case 4:case"end":return r.stop()}}),s)}function E(e,t){return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.prev=0,n.next=3,(0,o._9)({path:"/sites/".concat(encodeURIComponent(e),"/settings"),apiVersion:"1.4",body:{blogname:t},method:"POST"});case 3:return n.next=5,m(e,t);case 5:n.next=9;break;case 7:n.prev=7,n.t0=n.catch(0);case 9:case"end":return n.stop()}}),l,null,[[0,7]])}return{receiveSiteDomains:function(e,t){return{type:"RECEIVE_SITE_DOMAINS",siteId:e,domains:t}},saveSiteTitle:E,receiveSiteTitle:m,fetchNewSite:c,fetchSite:function(){return{type:"FETCH_SITE"}},receiveNewSite:d,receiveNewSiteFailed:f,resetNewSiteFailed:function(){return{type:"RESET_RECEIVE_NEW_SITE_FAILED"}},createSite:p,receiveSite:function(e,t){return{type:"RECEIVE_SITE",siteId:e,response:t}},receiveSiteFailed:function(e,t){return{type:"RECEIVE_SITE_FAILED",siteId:e,response:t}},reset:function(){return{type:"RESET_SITE_STORE"}},launchSite:y,launchSiteStart:h,launchSiteSuccess:g,launchSiteFailure:v,getCart:_,setCart:b}}},2005:function(e,t,n){"use strict";n.d(t,{L:function(){return r}});var r="automattic/site"},2369:function(e,t,n){"use strict";n.d(t,{z2:function(){return d}});var r=n(5707),i=n(3661),o=n(8459),a=n(2005),u=n(2701),s=n(7862),l=n(4309),c=!1;function d(e){return c||(c=!0,(0,r.registerStore)(a.L,{actions:(0,o.d)(e),controls:i.ai,reducer:u.ZP,resolvers:s,selectors:l})),a.L}},2701:function(e,t,n){"use strict";var r=n(4530),i=n(60),o=n(1119),a=n(9394),u=n(5707),s=n(2699),l=(0,u.combineReducers)({data:function(e,t){return"RECEIVE_NEW_SITE"===t.type?t.response.blog_details:"RECEIVE_NEW_SITE_FAILED"!==t.type&&"RESET_SITE_STORE"!==t.type?e:void 0},error:function(e,t){switch(t.type){case"FETCH_NEW_SITE":case"RECEIVE_NEW_SITE":case"RESET_SITE_STORE":case"RESET_RECEIVE_NEW_SITE_FAILED":return;case"RECEIVE_NEW_SITE_FAILED":return{error:t.error.error,status:t.error.status,statusCode:t.error.statusCode,name:t.error.name,message:t.error.message}}return e},isFetching:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"FETCH_NEW_SITE":return!0;case"RECEIVE_NEW_SITE":case"RECEIVE_NEW_SITE_FAILED":case"RESET_SITE_STORE":case"RESET_RECEIVE_NEW_SITE_FAILED":return!1}return e}}),c=(0,u.combineReducers)({isFetchingSiteDetails:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"FETCH_SITE":return!0;case"RECEIVE_SITE":case"RECEIVE_SITE_FAILED":return!1}return e},newSite:l,sites:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;if("RECEIVE_SITE"===t.type)return(0,a.Z)((0,a.Z)({},e),{},(0,o.Z)({},t.siteId,t.response));if("RECEIVE_SITE_FAILED"===t.type){var n=t.siteId,u=(e[n],(0,r.Z)(e,[n].map(i.Z)));return(0,a.Z)({},u)}return"RESET_SITE_STORE"===t.type?{}:"RECEIVE_SITE_TITLE"===t.type?(0,a.Z)((0,a.Z)({},e),{},(0,o.Z)({},t.siteId,(0,a.Z)((0,a.Z)({},e[t.siteId]),{},{name:t.title}))):e},launchStatus:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;return"LAUNCH_SITE_START"===t.type?(0,a.Z)((0,a.Z)({},e),{},(0,o.Z)({},t.siteId,{status:s.uS.IN_PROGRESS,errorCode:void 0})):"LAUNCH_SITE_SUCCESS"===t.type?(0,a.Z)((0,a.Z)({},e),{},(0,o.Z)({},t.siteId,{status:s.uS.SUCCESS,errorCode:void 0})):"LAUNCH_SITE_FAILURE"===t.type?(0,a.Z)((0,a.Z)({},e),{},(0,o.Z)({},t.siteId,{status:s.uS.FAILURE,errorCode:t.error})):e},sitesDomains:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;return"RECEIVE_SITE_DOMAINS"===t.type?(0,a.Z)((0,a.Z)({},e),{},(0,o.Z)({},t.siteId,t.domains)):e}});t.ZP=c},7862:function(e,t,n){"use strict";n.r(t),n.d(t,{getSite:function(){return s},getSiteDomains:function(){return l}});var r=n(5707),i=n(3661),o=n(2005),a=regeneratorRuntime.mark(s),u=regeneratorRuntime.mark(l);function s(e){var t;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,(0,r.dispatch)(o.L).fetchSite();case 2:return n.prev=2,n.next=5,(0,i._9)({path:"/sites/"+encodeURIComponent(e),apiVersion:"1.1"});case 5:return t=n.sent,n.next=8,(0,r.dispatch)(o.L).receiveSite(e,t);case 8:n.next=14;break;case 10:return n.prev=10,n.t0=n.catch(2),n.next=14,(0,r.dispatch)(o.L).receiveSiteFailed(e,void 0);case 14:case"end":return n.stop()}}),a,null,[[2,10]])}function l(e){var t;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.prev=0,n.next=3,(0,i._9)({path:"/sites/"+encodeURIComponent(e)+"/domains",apiVersion:"1.2"});case 3:return t=n.sent,n.next=6,(0,r.dispatch)(o.L).receiveSiteDomains(e,null==t?void 0:t.domains);case 6:n.next=10;break;case 8:n.prev=8,n.t0=n.catch(0);case 10:case"end":return n.stop()}}),u,null,[[0,8]])}},4309:function(e,t,n){"use strict";n.r(t),n.d(t,{getState:function(){return a},getNewSite:function(){return u},getNewSiteError:function(){return s},isFetchingSite:function(){return l},isFetchingSiteDetails:function(){return c},isNewSite:function(){return d},getSite:function(){return f},getSiteTitle:function(){return p},isSiteLaunched:function(){return m},isSiteLaunching:function(){return h},getSiteDomains:function(){return g},getPrimarySiteDomain:function(){return v},getSiteSubdomain:function(){return y}});var r=n(5707),i=n(2005),o=n(2699),a=function(e){return e},u=function(e){return e.newSite.data},s=function(e){return e.newSite.error},l=function(e){return e.newSite.isFetching},c=function(e){return e.isFetchingSiteDetails},d=function(e){return!!e.newSite.data},f=function(e,t){return e.sites[t]},p=function(e,t){var n;return null===(n=(0,r.select)(i.L).getSite(t))||void 0===n?void 0:n.name},m=function(e,t){var n;return(null===(n=e.launchStatus[t])||void 0===n?void 0:n.status)===o.uS.SUCCESS},h=function(e,t){var n;return(null===(n=e.launchStatus[t])||void 0===n?void 0:n.status)===o.uS.IN_PROGRESS},g=function(e,t){return e.sitesDomains[t]},v=function(e,t){var n;return null===(n=(0,r.select)(i.L).getSiteDomains(t))||void 0===n?void 0:n.find((function(e){return e.primary_domain}))},y=function(e,t){var n;return null===(n=(0,r.select)(i.L).getSiteDomains(t))||void 0===n?void 0:n.find((function(e){return e.is_subdomain}))}},2699:function(e,t,n){"use strict";var r,i,o;n.d(t,{Hc:function(){return i},uS:function(){return o}}),function(e){e[e.PublicIndexed=1]="PublicIndexed",e[e.PublicNotIndexed=0]="PublicNotIndexed",e[e.Private=-1]="Private"}(r||(r={})),function(e){e.INTERNAL="internal"}(i||(i={})),function(e){e.UNINITIALIZED="unintialized",e.IN_PROGRESS="in_progress",e.SUCCESS="success",e.FAILURE="failure"}(o||(o={}))},4366:function(e,t,n){"use strict";n.d(t,{L:function(){return r}});var r="automattic/wpcom-features"},2613:function(e,t,n){"use strict";n.d(t,{$:function(){return u}});var r=n(4703),i=r.YS,o=r.Gz,a=r.hx,u={domain:{id:"domain",minSupportedPlan:i},store:{id:"store",minSupportedPlan:r.iL},seo:{id:"seo",minSupportedPlan:a},plugins:{id:"plugins",minSupportedPlan:a},"ad-free":{id:"ad-free",minSupportedPlan:i},"image-storage":{id:"image-storage",minSupportedPlan:o},"video-storage":{id:"video-storage",minSupportedPlan:o},support:{id:"support",minSupportedPlan:a}}},182:function(e,t,n){"use strict";n.d(t,{z:function(){return l}});var r=n(5707),i=n(9866),o=n(4366),a=n(8638),u=n(335),s=!1;function l(){return s||(s=!0,(0,r.registerStore)(o.L,{controls:i.controls,reducer:a.Z,selectors:u})),o.L}},8638:function(e,t,n){"use strict";var r=n(2613);t.Z=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:r.$;return e}},335:function(e,t,n){"use strict";n.r(t),n.d(t,{getAllFeatures:function(){return i},getRecommendedPlanSlug:function(){return o}});var r=n(4703),i=function(e){return e},o=function(e,t){var n=i(e);if(t.length)return t.reduce((function(e,t){var i=n[t].minSupportedPlan;return r.xT.indexOf(i)>r.xT.indexOf(e)?i:e}),n[t[0]].minSupportedPlan)}},3661:function(e,t,n){"use strict";n.d(t,{_9:function(){return a},An:function(){return u},ai:function(){return s}});var r,i=n(6470),o=n(8552),a=function(e){return{type:"WPCOM_REQUEST",request:e}},u=function(e,t){return{type:"FETCH_AND_PARSE",resource:e,options:t}},s={WPCOM_REQUEST:function(e){var t=e.request;return(0,o.ZP)(t)},FETCH_AND_PARSE:(r=(0,i.Z)(regeneratorRuntime.mark((function e(t){var n,r,i;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=t.resource,r=t.options,e.next=3,window.fetch(n,r);case 3:return i=e.sent,e.t0=i.ok,e.next=7,i.json();case 7:return e.t1=e.sent,e.abrupt("return",{ok:e.t0,body:e.t1});case 9:case"end":return e.stop()}}),e)}))),function(_x){return r.apply(this,arguments)}),RELOAD_PROXY:function(){(0,o.sS)()},REQUEST_ALL_BLOGS_ACCESS:function(){return(0,o.Vw)()},WAIT:function(e){var t=e.ms;return new Promise((function(e){return setTimeout(e,t)}))}}},7003:function(e,t,n){"use strict";var r=n(3258),i=n(3027),o=n(7997),a=n(5707),u=n(5869),s=n(3383),l=n(8675),c=n(2779),d=n.n(c),f=(n(3804),n(3300));n(8062);t.Z=function(e){var t=e.onSelect,n=e.selected,__=(0,l.useI18n)().__,c=(0,i.useState)(!1),p=(0,r.Z)(c,2),m=p[0],h=p[1],g=function(e){h(!1),t(e)},v=(0,a.useSelect)((function(e){return e(f.GN).getCategories()})),y=__("All Categories","full-site-editing");return(0,i.createElement)("div",{className:d()("domain-categories",{"is-open":m})},(0,i.createElement)(o.Button,{className:"domain-categories__dropdown-button",onClick:function(){return h(!m)}},(0,i.createElement)("span",null,null!=n?n:y),(0,i.createElement)(u.Z,{icon:s.Z,size:16})),(0,i.createElement)("ul",{className:"domain-categories__item-group"},(0,i.createElement)("li",{className:d()("domain-categories__item",{"is-selected":!n})},(0,i.createElement)(o.Button,{onClick:function(){return g()}},__("View all","full-site-editing"))),v.map((function(e){var t=e.slug,r=e.title;return(0,i.createElement)("li",{key:t,className:d()("domain-categories__item",{"is-selected":t===n})},(0,i.createElement)(o.Button,{onClick:function(){return g(t)}},r))}))))}},6325:function(e,t,n){"use strict";n.d(t,{q:function(){return o}});var r=n(3027),i=n(8675),o=(n(3804),function(){var e=(0,i.useI18n)(),__=e.__,t=e.isRTL;return(0,r.createElement)("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",x:"0px",y:"0px",viewBox:"0 0 300 40",xmlSpace:"preserve",width:"300",style:t()?{transform:"scaleX(-1)"}:void 0},(0,r.createElement)("rect",{x:"0",width:"310",height:"50",rx:"10",fill:"#D8D8D8"}),(0,r.createElement)("rect",{x:"8",y:"8",width:"25",height:"25",rx:"5",fill:"#fff"}),(0,r.createElement)("rect",{x:"40",y:"8",width:"25",height:"25",rx:"5",fill:"#fff"}),(0,r.createElement)("rect",{x:"72",y:"8",width:"300",height:"25",rx:"5",fill:"#fff"}),(0,r.createElement)("text",{x:"80",y:"26",direction:"ltr",textAnchor:t()?"end":"start",transform:t()?"scale(-1,1) translate(-160,0)":void 0},(0,r.createElement)("tspan",{fill:"#999"},(0,r.createElement)("tspan",null,"https://")),(0,r.createElement)("tspan",{fill:"#515151",dx:"4.5"},__("example.com","full-site-editing"))))})},1614:function(e,t,n){"use strict";var r=n(3027),i=n(2779),o=n.n(i);n(3804);t.Z=function(e){var t=e.type;return(0,r.createElement)("div",{className:o()("domain-picker__suggestion-item placeholder","type-".concat(t))},(0,r.createElement)("div",{className:"domain-picker__suggestion-item-name placeholder"}),(0,r.createElement)("div",{className:"domain-picker__price placeholder"}))}},7226:function(e,t,n){"use strict";var r=n(7560),i=n(4530),o=n(3027),a=n(3804),u=n(6461),s=a.forwardRef((function(e,t){var n=e.type,a=e.disabled,s=(0,i.Z)(e,["type","disabled"]);return n===u.ln?(0,o.createElement)("div",s):(0,o.createElement)("button",(0,r.Z)({ref:t,disabled:a},s))}));t.Z=s},6461:function(e,t,n){"use strict";n.d(t,{fe:function(){return y},ln:function(){return _},vv:function(){return b}});var r=n(7560),i=n(3258),o=n(3027),a=n(6115),u=n(849),s=n(7498),l=n(7997),c=n(1417),d=n(3163),f=n(8675),p=n(2779),m=n.n(p),h=n(3804),g=n(413),v=n(7226),y="radio",_="button",b="individual-item",E=function(e){var t=e.isUnavailable,n=e.domain,r=e.isLoading,p=e.cost,E=e.railcarId,S=e.hstsRequired,w=void 0!==S&&S,A=e.isFree,P=void 0!==A&&A,x=e.isExistingSubdomain,C=void 0!==x&&x,N=e.isRecommended,I=void 0!==N&&N,Z=e.onSelect,O=e.onRender,M=e.selected,L=e.type,T=void 0===L?y:L,D=e.buttonRef,F=(0,f.useI18n)(),__=F.__,R=F.hasTranslation,$=(0,u.bU)(),k=(0,s.Iu)(),j=!(0,c.useViewportMatch)("small",">="),U=n.indexOf("."),B=n.slice(0,U),G=n.slice(U),V=h.useState(),H=(0,i.Z)(V,2),Y=H[0],z=H[1],W=h.useState(),K=(0,i.Z)(W,2),q=K[0],J=K[1],X=__("Default","full-site-editing"),Q=__("Free","full-site-editing"),ee=T===b?X:Q,te=__("Included with annual plans","full-site-editing"),ne=__("Included in annual plans","full-site-editing"),re="en"===$||null!=R&&R("Included in annual plans")?ne:te,ie=__("<strong>First year included</strong> in paid plans","full-site-editing"),oe=__("<strong>First year included</strong> in annual plans","full-site-editing"),ae="en"===$||null!=R&&R("<strong>First year included</strong> in annual plans")?oe:ie,ue=j?re:(0,o.createInterpolateElement)(ae,{strong:(0,o.createElement)("strong",null)});h.useEffect((function(){n!==Y&&q!==E&&E&&(O(),z(n),J(E))}),[n,Y,q,E,O]);var se=function(){q&&(0,a.Lo)({action:"domain_selected",railcarId:q}),Z(n)},le=__("Selected","full-site-editing"),ce=__("Select","full-site-editing");return(0,o.createElement)(v.Z,{ref:D,type:T,key:B,className:m()("domain-picker__suggestion-item",{"is-free":P,"is-selected":M,"is-unavailable":t},"type-".concat(T)),onClick:T!==_?se:void 0,disabled:t},T===y&&(r?(0,o.createElement)(l.Spinner,null):(0,o.createElement)("span",{className:m()("domain-picker__suggestion-radio-circle",{"is-checked":M,"is-unavailable":t})})),(0,o.createElement)("div",{className:"domain-picker__suggestion-item-name"},(0,o.createElement)("div",{className:"domain-picker__suggestion-item-name-inner"},(0,o.createElement)("span",{className:m()("domain-picker__domain-wrapper",{"with-margin":!w})},(0,o.createElement)("span",{className:"domain-picker__domain-sub-domain"},B),(0,o.createElement)("span",{className:"domain-picker__domain-tld"},G)),I&&!t&&(0,o.createElement)("div",{className:"domain-picker__badge is-recommended"},__("Recommended","full-site-editing")),w&&(0,o.createElement)(g.Z,{position:j?"bottom center":"middle right",noArrow:!1,className:"domain-picker__info-tooltip"},(0,o.createInterpolateElement)(__("All domains ending with <tld /> require an SSL certificate to host a website. When you host this domain at WordPress.com an SSL certificate is included. <learn_more_link>Learn more</learn_more_link>","full-site-editing"),{tld:(0,o.createElement)("b",null,G),learn_more_link:(0,o.createElement)("a",{target:"_blank",rel:"noreferrer",href:k("https://wordpress.com/support/https-ssl")})}))),C&&T!==b&&(0,o.createElement)("div",{className:"domain-picker__change-subdomain-tip"},__("You can change your free subdomain later under Domain Settings.","full-site-editing"))),(0,o.createElement)("div",{className:m()("domain-picker__price",{"is-paid":!P})},t&&__("Unavailable","full-site-editing"),P&&!t&&ee,!P&&!t&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("span",{className:"domain-picker__price-cost"},(0,d.sprintf)(__("%s/year","full-site-editing"),p)),(0,o.createElement)("span",{className:"domain-picker__price-inclusive"}," ",ue," "),(0,o.createElement)("span",{className:"domain-picker__price-renewal"},(0,d.sprintf)(__("Renews at: %s /year","full-site-editing"),p)))),T===_&&(r?(0,o.createElement)(l.Spinner,null):(0,o.createElement)("div",{className:"domain-picker__action"},(0,o.createElement)(l.Button,{ref:D,isSecondary:!0,className:m()("domain-picker__suggestion-select-button",{"is-selected":M&&!t}),disabled:t,onClick:se},M&&!t?le:ce))))};t.ZP=h.forwardRef((function(e,t){return(0,o.createElement)(E,(0,r.Z)({},e,{buttonRef:t}))}))},605:function(e,t,n){"use strict";var r=n(3027),i=n(9211),o=n(8675),a=(n(3804),n(7226));t.Z=function(e){var t=e.onClick,n=(0,o.useI18n)(),__=n.__,_x=n._x;return(0,r.createElement)(a.Z,{type:"button",className:"domain-picker__suggestion-item type-link",onClick:t},(0,r.createElement)("div",{className:"domain-picker__suggestion-item-name"},(0,r.createElement)("span",{className:"domain-picker__domain-wrapper with-margin with-bold-text"},__("Already own a domain?","full-site-editing")),(0,r.createElement)("div",null,(0,r.createElement)("span",{className:"domain-picker__item-tip"},_x("You can use it as your site's address.","Upgrades: Register domain description","full-site-editing")))),(0,r.createElement)(i.b4,{arrow:"right"},_x("Use a domain I own","Domain transfer or mapping suggestion button","full-site-editing")))}},2999:function(e,t,n){"use strict";var r=n(3258),i=n(3027),o=n(6115),a=n(584),u=n(7997),s=n(5869),l=n(7108),c=n(8675),d=n(1205),f=n(3804),p=n.n(f),m=n(3300),h=n(5241),g=n(1045),v=n(1071),y=n(3446),_=n(7003),b=n(6325),E=n(6461),S=n(1614),w=n(605),A=(n(3437),function(e){var t=e.groupItems,n=e.children;return t?(0,i.createElement)("div",{className:"domain-picker__suggestion-item-group"},n):(0,i.createElement)(f.Fragment,null,n)}),P=function(e){var t=e.children;return(0,i.createElement)("p",{className:"domain-picker__suggestion-group-label"},t)};t.ZP=function(e){var t,n=e.header,x=e.showDomainCategories,C=e.onDomainSelect,N=e.onExistingSubdomainSelect,I=e.quantity,Z=void 0===I?m.SL:I,O=e.quantityExpanded,M=void 0===O?m.Mm:O,L=e.onDomainSearchBlur,T=e.analyticsFlowId,D=e.analyticsUiAlgo,F=e.initialDomainSearch,R=void 0===F?"":F,$=e.onSetDomainSearch,k=e.currentDomain,j=e.isCheckingDomainAvailability,U=e.existingSubdomain,B=e.segregateFreeAndPaid,G=void 0!==B&&B,V=e.showSearchField,H=void 0===V||V,Y=e.itemType,z=void 0===Y?E.fe:Y,W=e.locale,K=e.areDependenciesLoading,q=void 0!==K&&K,J=e.orderSubDomainsLast,X=void 0!==J&&J,Q=e.onUseYourDomainClick,ee=e.vendor,te=void 0===ee?(0,y.iY)():ee,ne=e.showRecommendationLabel,re=void 0===ne||ne,__=(0,c.useI18n)().__,ie=__("Search for a domain","full-site-editing"),oe=(0,f.useState)(!1),ae=(0,r.Z)(oe,2),ue=ae[0],se=ae[1],le=(0,f.useState)(R),ce=(0,r.Z)(le,2),de=ce[0],fe=ce[1],pe=(0,f.useState)(),me=(0,r.Z)(pe,2),he=me[0],ge=me[1],ve=(0,h.O)(de.trim(),M,he,W)||{},ye=ve.allDomainSuggestions,_e=ve.errorMessage,be=ve.state,Ee=ve.retryRequest,Se=null==ye?void 0:ye.filter((function(e){return!(U&&e.is_free)})).slice(0,ue?M-1:Z-1),we=null==Se?void 0:Se.findIndex((function(e){return!e.is_free&&!e.unavailable})),Ae=(0,g.$)(Se,U,k);Ae&&(null==Se||Se.push(Ae));var Pe=(0,v.P)();(0,f.useEffect)((function(){se(!1)}),[de]);var xe=(0,f.useState)(),Ce=(0,r.Z)(xe,2),Ne=Ce[0],Ie=Ce[1];(0,f.useEffect)((function(){ye&&Ie((0,o.k9)("suggestion"))}),[ye,Ie]),(0,f.useEffect)((function(){H||fe(R)}),[R,H]);var Ze=p().useRef([]);(0,f.useEffect)((function(){var e,t;ue&&(null===(e=Ze.current[Z])||void 0===e||null===(t=e.focus)||void 0===t||t.call(e))}),[ue,Z]);var Oe=function(e,t,n,r){var i="/domains/search/".concat(te,"/").concat(T).concat(he?"/"+he:"");(0,o.Sn)({uiAlgo:"/".concat(T,"/").concat(D),fetchAlgo:i,query:de,railcarId:t,result:r?e+"#recommended":e,uiPosition:n})},Me=p().useRef(),Le=be===a.r.Failure,Te=(null===(t=de.trim)||void 0===t?void 0:t.call(de).length)<=1,De=!Le&&!Te,Fe=!Le&&Te,Re=Z;Ae&&(Re+=1),Q&&(Re+=1),U&&(Re-=1);var $e=["professional"];return U&&$e.unshift("sub-domain"),X&&$e.reverse(),(0,i.createElement)("div",{className:"domain-picker"},n&&n,H&&(0,i.createElement)("div",{className:"domain-picker__search"},(0,i.createElement)("form",{action:"",onSubmit:function(e){var t;e.preventDefault(),null==Me||null===(t=Me.current)||void 0===t||t.blur()}},(0,i.createElement)("div",{className:"domain-picker__search-icon"},(0,i.createElement)(s.Z,{icon:l.Z})),(0,i.createElement)(u.TextControl,{ref:function(e){Me.current=e},hideLabelFromVision:!0,name:"search",label:ie,placeholder:ie,onChange:function(e){fe(e),$&&$(e)},onBlur:function(e){L&&L(e.currentTarget.value)},value:de,dir:"ltr"}))),Le&&(0,i.createElement)(u.Notice,{className:"domain-picker__error",status:"error",isDismissible:!1},(0,i.createElement)("p",{className:"domain-picker__error-message"},_e||__("An error has occurred, please check your connection and retry.","full-site-editing")),(0,i.createElement)(u.Button,{isPrimary:!0,className:"domain-picker__error-retry-btn",onClick:Ee},__("Retry","full-site-editing"))),(De||q)&&(0,i.createElement)("div",{className:"domain-picker__body"},x&&(0,i.createElement)("div",{className:"domain-picker__aside"},(0,i.createElement)(_.Z,{selected:he,onSelect:ge})),(0,i.createElement)("div",{className:"domain-picker__suggestion-sections"},(0,i.createElement)("div",{className:"domain-picker__sugggested-items-container"},$e.map((function(e){return"sub-domain"===e?(0,i.createElement)(f.Fragment,{key:e},G&&(0,i.createElement)(P,null,__("Keep sub-domain","full-site-editing")),(0,i.createElement)(A,{key:e,groupItems:G},!q&&U&&(0,i.createElement)(E.ZP,{key:null==U?void 0:U.domain_name,domain:null==U?void 0:U.domain_name,cost:"Free",isFree:!0,isExistingSubdomain:!0,railcarId:Ne?"".concat(Ne,0):void 0,onRender:function(){return Oe(null==U?void 0:U.domain_name,"".concat(Ne,0),0,!1)},selected:(null==k?void 0:k.domain_name)===(null==U?void 0:U.domain_name),onSelect:function(){null==N||N(null==U?void 0:U.domain_name)},type:z})||(0,i.createElement)(S.Z,{type:z}))):(0,i.createElement)(f.Fragment,{key:e},G&&(0,i.createElement)(P,null,__("Professional domains","full-site-editing")),(0,i.createElement)(A,{key:e,groupItems:G},!q&&(null==Se?void 0:Se.map((function(e,t){var n,r=null!=U&&U.domain_name?t+1:t,o=t===we,a=null===(n=Pe[null==e?void 0:e.domain_name])||void 0===n?void 0:n.status,u=!a||(null===m.vn||void 0===m.vn?void 0:m.vn.indexOf(a))>-1;return(0,i.createElement)(E.ZP,{ref:function(e){Ze.current[r]=e},key:e.domain_name,domain:e.domain_name,cost:e.cost,isUnavailable:!u||(null==e?void 0:e.unavailable),isLoading:(null==k?void 0:k.domain_name)===e.domain_name&&j,hstsRequired:e.hsts_required,isFree:e.is_free,isRecommended:re&&o,railcarId:Ne?"".concat(Ne).concat(r):void 0,onRender:function(){return Oe(e.domain_name,"".concat(Ne).concat(r),r,o)},onSelect:function(){C(e)},selected:(null==k?void 0:k.domain_name)===e.domain_name,type:z})})))||(0,d.times)(Re,(function(e){return(0,i.createElement)(S.Z,{type:z,key:e})})),Q&&!!Se&&(0,i.createElement)(w.Z,{onClick:Q})))}))),!ue&&Z<M&&(null==ye?void 0:ye.length)&&(null==ye?void 0:ye.length)>Z&&(0,i.createElement)("div",{className:"domain-picker__show-more"},(0,i.createElement)(u.Button,{onClick:function(){return se(!0)},isLink:!0},__("View more results","full-site-editing"))))),Fe&&!q&&(0,i.createElement)("div",{className:"domain-picker__empty-state"},(0,i.createElement)("p",{className:"domain-picker__empty-state--text"},__("A domain name is the site address people type in their browser to visit your site.","full-site-editing")),(0,i.createElement)("div",null,(0,i.createElement)(b.q,null))))}},413:function(e,t,n){"use strict";var r=n(3258),i=n(3027),o=n(7997),a=n(5614),u=n(2779),s=n.n(u),l=n(3804);n(101);t.Z=function(e){var t=e.children,n=e.className,u=e.id,c=e.position,d=void 0===c?"bottom center":c,f=e.noArrow,p=void 0===f||f,m=(0,l.useState)(!1),h=(0,r.Z)(m,2),g=h[0],v=h[1];return(0,i.createElement)((function(e){return(0,i.createElement)(o.Button,e)}),{icon:a.Z,onClick:function(e){v(!g),e.stopPropagation()},className:"info-tooltip","data-testid":"info-tooltip"},g&&(0,i.createElement)(o.Popover,{id:u,className:s()("info-tooltip__content",n),onClose:function(){v(!1)},position:d,noArrow:p},t))}},3300:function(e,t,n){"use strict";n.d(t,{SL:function(){return i},Mm:function(){return o},F9:function(){return a},dP:function(){return u},GN:function(){return s},vn:function(){return l}});var r=n(8077),i=5,o=10,a=2,u=300,s=r.z(),l=["available","available_premium"]},1071:function(e,t,n){"use strict";n.d(t,{P:function(){return o}});var r=n(5707),i=n(3300);function o(){return(0,r.useSelect)((function(e){return e(i.GN).getDomainAvailabilities()}),[])}},5241:function(e,t,n){"use strict";n.d(t,{O:function(){return s}});var r=n(9394),i=n(3258),o=n(5707),a=n(7127),u=n(3300);function s(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1?arguments[1]:void 0,n=arguments.length>2?arguments[2]:void 0,s=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"en",l=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},c=(0,a.Z)(e,u.dP),d=(0,i.Z)(c,1),f=d[0],p=(0,o.useDispatch)(u.GN),m=p.invalidateResolutionForStoreSelector;return(0,o.useSelect)((function(e){if(f&&!(f.length<u.F9)){var i=e(u.GN),o=i.getDomainSuggestions,a=i.getDomainState,c=i.getDomainErrorMessage;return{allDomainSuggestions:o(f,(0,r.Z)({include_wordpressdotcom:!0,include_dotblogsubdomain:!1,quantity:t+1,locale:s,category_slug:n},l)),state:a(),errorMessage:c(),retryRequest:function(){m("__internalGetDomainSuggestions")}}}}),[f,n,t])}},1045:function(e,t,n){"use strict";n.d(t,{$:function(){return a}});var r=n(1766),i=n(3258),o=n(3804);function a(e,t,n){var a=o.useState(),u=(0,i.Z)(a,2),s=u[0],l=u[1],c=t&&Array.isArray(e)?[t].concat((0,r.Z)(e)):e;if(o.useEffect((function(){var e=null==c?void 0:c.some((function(e){return e.domain_name===(null==n?void 0:n.domain_name)}));null!=c&&c.length&&!e&&l(n)}),[n,c]),!(null==c?void 0:c.some((function(e){return(null==e?void 0:e.domain_name)===(null==s?void 0:s.domain_name)}))))return s}},3446:function(e,t,n){"use strict";function r(e){if(e)return{domain_name:e,relevance:1,supports_privacy:!0,vendor:"",cost:"",product_id:0,product_slug:"",raw_price:0,currency_code:"",unavailable:!1}}function i(e){return void 0!==e.normalize&&!!e.normalize("NFD").replace(/[\u0300-\u036f]/g,"").match(/[a-z0-9-.\s]/i)}function o(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return e.isSignup&&!e.isDomainOnly?"variation4_front":e.isPremium?"variation8_front":"variation2_front"}n.d(t,{nf:function(){return r},Qi:function(){return i},iY:function(){return o}})},3759:function(e,t,n){"use strict";n.d(t,{X:function(){return i}});var r={AED:{symbol:"د.إ.‏",grouping:",",decimal:".",precision:2},AFN:{symbol:"؋",grouping:",",decimal:".",precision:2},ALL:{symbol:"Lek",grouping:".",decimal:",",precision:2},AMD:{symbol:"֏",grouping:",",decimal:".",precision:2},ANG:{symbol:"ƒ",grouping:",",decimal:".",precision:2},AOA:{symbol:"Kz",grouping:",",decimal:".",precision:2},ARS:{symbol:"$",grouping:".",decimal:",",precision:2},AUD:{symbol:"A$",grouping:",",decimal:".",precision:2},AWG:{symbol:"ƒ",grouping:",",decimal:".",precision:2},AZN:{symbol:"₼",grouping:" ",decimal:",",precision:2},BAM:{symbol:"КМ",grouping:".",decimal:",",precision:2},BBD:{symbol:"Bds$",grouping:",",decimal:".",precision:2},BDT:{symbol:"৳",grouping:",",decimal:".",precision:0},BGN:{symbol:"лв.",grouping:" ",decimal:",",precision:2},BHD:{symbol:"د.ب.‏",grouping:",",decimal:".",precision:3},BIF:{symbol:"FBu",grouping:",",decimal:".",precision:0},BMD:{symbol:"$",grouping:",",decimal:".",precision:2},BND:{symbol:"$",grouping:".",decimal:",",precision:0},BOB:{symbol:"Bs",grouping:".",decimal:",",precision:2},BRL:{symbol:"R$",grouping:".",decimal:",",precision:2},BSD:{symbol:"$",grouping:",",decimal:".",precision:2},BTC:{symbol:"Ƀ",grouping:",",decimal:".",precision:2},BTN:{symbol:"Nu.",grouping:",",decimal:".",precision:1},BWP:{symbol:"P",grouping:",",decimal:".",precision:2},BYR:{symbol:"р.",grouping:" ",decimal:",",precision:2},BZD:{symbol:"BZ$",grouping:",",decimal:".",precision:2},CAD:{symbol:"C$",grouping:",",decimal:".",precision:2},CDF:{symbol:"FC",grouping:",",decimal:".",precision:2},CHF:{symbol:"CHF",grouping:"'",decimal:".",precision:2},CLP:{symbol:"$",grouping:".",decimal:",",precision:2},CNY:{symbol:"¥",grouping:",",decimal:".",precision:2},COP:{symbol:"$",grouping:".",decimal:",",precision:2},CRC:{symbol:"₡",grouping:".",decimal:",",precision:2},CUC:{symbol:"CUC",grouping:",",decimal:".",precision:2},CUP:{symbol:"$MN",grouping:",",decimal:".",precision:2},CVE:{symbol:"$",grouping:",",decimal:".",precision:2},CZK:{symbol:"Kč",grouping:" ",decimal:",",precision:2},DJF:{symbol:"Fdj",grouping:",",decimal:".",precision:0},DKK:{symbol:"kr.",grouping:"",decimal:",",precision:2},DOP:{symbol:"RD$",grouping:",",decimal:".",precision:2},DZD:{symbol:"د.ج.‏",grouping:",",decimal:".",precision:2},EGP:{symbol:"ج.م.‏",grouping:",",decimal:".",precision:2},ERN:{symbol:"Nfk",grouping:",",decimal:".",precision:2},ETB:{symbol:"ETB",grouping:",",decimal:".",precision:2},EUR:{symbol:"€",grouping:".",decimal:",",precision:2},FJD:{symbol:"FJ$",grouping:",",decimal:".",precision:2},FKP:{symbol:"£",grouping:",",decimal:".",precision:2},GBP:{symbol:"£",grouping:",",decimal:".",precision:2},GEL:{symbol:"Lari",grouping:" ",decimal:",",precision:2},GHS:{symbol:"₵",grouping:",",decimal:".",precision:2},GIP:{symbol:"£",grouping:",",decimal:".",precision:2},GMD:{symbol:"D",grouping:",",decimal:".",precision:2},GNF:{symbol:"FG",grouping:",",decimal:".",precision:0},GTQ:{symbol:"Q",grouping:",",decimal:".",precision:2},GYD:{symbol:"G$",grouping:",",decimal:".",precision:2},HKD:{symbol:"HK$",grouping:",",decimal:".",precision:2},HNL:{symbol:"L.",grouping:",",decimal:".",precision:2},HRK:{symbol:"kn",grouping:".",decimal:",",precision:2},HTG:{symbol:"G",grouping:",",decimal:".",precision:2},HUF:{symbol:"Ft",grouping:".",decimal:",",precision:0},IDR:{symbol:"Rp",grouping:".",decimal:",",precision:0},ILS:{symbol:"₪",grouping:",",decimal:".",precision:2},INR:{symbol:"₹",grouping:",",decimal:".",precision:2},IQD:{symbol:"د.ع.‏",grouping:",",decimal:".",precision:2},IRR:{symbol:"﷼",grouping:",",decimal:"/",precision:2},ISK:{symbol:"kr.",grouping:".",decimal:",",precision:0},JMD:{symbol:"J$",grouping:",",decimal:".",precision:2},JOD:{symbol:"د.ا.‏",grouping:",",decimal:".",precision:3},JPY:{symbol:"¥",grouping:",",decimal:".",precision:0},KES:{symbol:"S",grouping:",",decimal:".",precision:2},KGS:{symbol:"сом",grouping:" ",decimal:"-",precision:2},KHR:{symbol:"៛",grouping:",",decimal:".",precision:0},KMF:{symbol:"CF",grouping:",",decimal:".",precision:2},KPW:{symbol:"₩",grouping:",",decimal:".",precision:0},KRW:{symbol:"₩",grouping:",",decimal:".",precision:0},KWD:{symbol:"د.ك.‏",grouping:",",decimal:".",precision:3},KYD:{symbol:"$",grouping:",",decimal:".",precision:2},KZT:{symbol:"₸",grouping:" ",decimal:"-",precision:2},LAK:{symbol:"₭",grouping:",",decimal:".",precision:0},LBP:{symbol:"ل.ل.‏",grouping:",",decimal:".",precision:2},LKR:{symbol:"₨",grouping:",",decimal:".",precision:0},LRD:{symbol:"L$",grouping:",",decimal:".",precision:2},LSL:{symbol:"M",grouping:",",decimal:".",precision:2},LYD:{symbol:"د.ل.‏",grouping:",",decimal:".",precision:3},MAD:{symbol:"د.م.‏",grouping:",",decimal:".",precision:2},MDL:{symbol:"lei",grouping:",",decimal:".",precision:2},MGA:{symbol:"Ar",grouping:",",decimal:".",precision:0},MKD:{symbol:"ден.",grouping:".",decimal:",",precision:2},MMK:{symbol:"K",grouping:",",decimal:".",precision:2},MNT:{symbol:"₮",grouping:" ",decimal:",",precision:2},MOP:{symbol:"MOP$",grouping:",",decimal:".",precision:2},MRO:{symbol:"UM",grouping:",",decimal:".",precision:2},MTL:{symbol:"₤",grouping:",",decimal:".",precision:2},MUR:{symbol:"₨",grouping:",",decimal:".",precision:2},MVR:{symbol:"MVR",grouping:",",decimal:".",precision:1},MWK:{symbol:"MK",grouping:",",decimal:".",precision:2},MXN:{symbol:"MX$",grouping:",",decimal:".",precision:2},MYR:{symbol:"RM",grouping:",",decimal:".",precision:2},MZN:{symbol:"MT",grouping:",",decimal:".",precision:0},NAD:{symbol:"N$",grouping:",",decimal:".",precision:2},NGN:{symbol:"₦",grouping:",",decimal:".",precision:2},NIO:{symbol:"C$",grouping:",",decimal:".",precision:2},NOK:{symbol:"kr",grouping:" ",decimal:",",precision:2},NPR:{symbol:"₨",grouping:",",decimal:".",precision:2},NZD:{symbol:"NZ$",grouping:",",decimal:".",precision:2},OMR:{symbol:"﷼",grouping:",",decimal:".",precision:3},PAB:{symbol:"B/.",grouping:",",decimal:".",precision:2},PEN:{symbol:"S/.",grouping:",",decimal:".",precision:2},PGK:{symbol:"K",grouping:",",decimal:".",precision:2},PHP:{symbol:"₱",grouping:",",decimal:".",precision:2},PKR:{symbol:"₨",grouping:",",decimal:".",precision:2},PLN:{symbol:"zł",grouping:" ",decimal:",",precision:2},PYG:{symbol:"₲",grouping:".",decimal:",",precision:2},QAR:{symbol:"﷼",grouping:",",decimal:".",precision:2},RON:{symbol:"lei",grouping:".",decimal:",",precision:2},RSD:{symbol:"Дин.",grouping:".",decimal:",",precision:2},RUB:{symbol:"₽",grouping:" ",decimal:",",precision:2},RWF:{symbol:"RWF",grouping:" ",decimal:",",precision:2},SAR:{symbol:"﷼",grouping:",",decimal:".",precision:2},SBD:{symbol:"S$",grouping:",",decimal:".",precision:2},SCR:{symbol:"₨",grouping:",",decimal:".",precision:2},SDD:{symbol:"LSd",grouping:",",decimal:".",precision:2},SDG:{symbol:"£‏",grouping:",",decimal:".",precision:2},SEK:{symbol:"kr",grouping:",",decimal:".",precision:2},SGD:{symbol:"S$",grouping:",",decimal:".",precision:2},SHP:{symbol:"£",grouping:",",decimal:".",precision:2},SLL:{symbol:"Le",grouping:",",decimal:".",precision:2},SOS:{symbol:"S",grouping:",",decimal:".",precision:2},SRD:{symbol:"$",grouping:",",decimal:".",precision:2},STD:{symbol:"Db",grouping:",",decimal:".",precision:2},SVC:{symbol:"₡",grouping:",",decimal:".",precision:2},SYP:{symbol:"£",grouping:",",decimal:".",precision:2},SZL:{symbol:"E",grouping:",",decimal:".",precision:2},THB:{symbol:"฿",grouping:",",decimal:".",precision:2},TJS:{symbol:"TJS",grouping:" ",decimal:";",precision:2},TMT:{symbol:"m",grouping:" ",decimal:",",precision:0},TND:{symbol:"د.ت.‏",grouping:",",decimal:".",precision:3},TOP:{symbol:"T$",grouping:",",decimal:".",precision:2},TRY:{symbol:"TL",grouping:".",decimal:",",precision:2},TTD:{symbol:"TT$",grouping:",",decimal:".",precision:2},TVD:{symbol:"$T",grouping:",",decimal:".",precision:2},TWD:{symbol:"NT$",grouping:",",decimal:".",precision:2},TZS:{symbol:"TSh",grouping:",",decimal:".",precision:2},UAH:{symbol:"₴",grouping:" ",decimal:",",precision:2},UGX:{symbol:"USh",grouping:",",decimal:".",precision:2},USD:{symbol:"$",grouping:",",decimal:".",precision:2},UYU:{symbol:"$U",grouping:".",decimal:",",precision:2},UZS:{symbol:"сўм",grouping:" ",decimal:",",precision:2},VEB:{symbol:"Bs.",grouping:",",decimal:".",precision:2},VEF:{symbol:"Bs. F.",grouping:".",decimal:",",precision:2},VND:{symbol:"₫",grouping:".",decimal:",",precision:1},VUV:{symbol:"VT",grouping:",",decimal:".",precision:0},WST:{symbol:"WS$",grouping:",",decimal:".",precision:2},XAF:{symbol:"F",grouping:",",decimal:".",precision:2},XCD:{symbol:"$",grouping:",",decimal:".",precision:2},XOF:{symbol:"F",grouping:" ",decimal:",",precision:2},XPF:{symbol:"F",grouping:",",decimal:".",precision:2},YER:{symbol:"﷼",grouping:",",decimal:".",precision:2},ZAR:{symbol:"R",grouping:" ",decimal:",",precision:2},ZMW:{symbol:"ZK",grouping:",",decimal:".",precision:2},WON:{symbol:"₩",grouping:",",decimal:".",precision:2}};function i(e){return r[e]||{symbol:"$",grouping:",",decimal:".",precision:2}}},1621:function(e,t,n){"use strict";n.d(t,{ZP:function(){return a}});var r=n(9394),i=n(1481),o=n(3759);function a(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},a=(0,o.X)(t);if(!a||isNaN(e))return null;var s=(0,r.Z)((0,r.Z)({},a),n),l=s.decimal,c=s.grouping,d=s.precision,f=s.symbol,p=e<0?"-":"",m=(0,i.Y4)(Math.abs(e),{decimals:d,thousandsSep:c,decPoint:l});return n.stripZeros&&(m=u(m,l)),"".concat(p).concat(f).concat(m)}function u(e,t){var n=new RegExp("\\".concat(t,"0+$"));return e.replace(n,"")}},914:function(e,t,n){"use strict";var r=n(1766),i=n(1119),o=n(8049),a=n.n(o),u=n(7010),s=n(9830),l=n(7839),c=n.n(l),d=n(5079),f=n.n(d),p=n(382),m=n(6668),h=n(3),g=a()("i18n-calypso"),v="number_format_decimals",y="number_format_thousands_sep",_="messages",b=[function(e){return e}],E={};function S(){C.throwErrors&&"undefined"!=typeof window&&window.console&&window.console.warn&&window.console.warn.apply(window.console,arguments)}function w(e){return Array.prototype.slice.call(e)}function A(e){var t=e[0];("string"!=typeof t||e.length>3||e.length>2&&"object"==typeof e[1]&&"object"==typeof e[2])&&S("Deprecated Invocation: `translate()` accepts ( string, [string], [object] ). These arguments passed:",w(e),". See https://github.com/Automattic/i18n-calypso#translate-method"),2===e.length&&"string"==typeof t&&"string"==typeof e[1]&&S("Invalid Invocation: `translate()` requires an options object for plural translations, but passed:",w(e));for(var n={},r=0;r<e.length;r++)"object"==typeof e[r]&&(n=e[r]);if("string"==typeof t?n.original=t:"object"==typeof n.original&&(n.plural=n.original.plural,n.count=n.original.count,n.original=n.original.single),"string"==typeof e[1]&&(n.plural=e[1]),void 0===n.original)throw new Error("Translate called without a `string` value as first argument.");return n}function P(e,t){return e.dcnpgettext(_,t.context,t.original,t.plural,t.count)}function x(e,t){for(var n=b.length-1;n>=0;n--){var r=b[n](Object.assign({},t)),i=r.context?r.context+""+r.original:r.original;if(e.state.locale[i])return P(e.state.tannin,r)}return null}function C(){if(!(this instanceof C))return new C;this.defaultLocaleSlug="en",this.defaultPluralForms=function(e){return 1===e?0:1},this.state={numberFormatSettings:{},tannin:void 0,locale:void 0,localeSlug:void 0,localeVariant:void 0,textDirection:void 0,translations:c()({max:100})},this.componentUpdateHooks=[],this.translateHooks=[],this.stateObserver=new p.EventEmitter,this.stateObserver.setMaxListeners(0),this.configure()}C.throwErrors=!1,C.prototype.on=function(){var e;(e=this.stateObserver).on.apply(e,arguments)},C.prototype.off=function(){var e;(e=this.stateObserver).off.apply(e,arguments)},C.prototype.emit=function(){var e;(e=this.stateObserver).emit.apply(e,arguments)},C.prototype.numberFormat=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n="number"==typeof t?t:t.decimals||0,r=t.decPoint||this.state.numberFormatSettings.decimal_point||".",i=t.thousandsSep||this.state.numberFormatSettings.thousands_sep||",";return(0,h.Z)(e,n,r,i)},C.prototype.configure=function(e){Object.assign(this,e||{}),this.setLocale()},C.prototype.setLocale=function(e){var t,n,r;if(e&&e[""]&&e[""]["key-hash"]){var o=e[""]["key-hash"],a=function(e,t){var n=!1===t?"":String(t);if(void 0!==E[n+e])return E[n+e];var r=f()().update(e).digest("hex");return E[n+e]=t?r.substr(0,t):r},u=function(e){return function(t){return t.context?(t.original=a(t.context+String.fromCharCode(4)+t.original,e),delete t.context):t.original=a(t.original,e),t}};if("sha1"===o.substr(0,4))if(4===o.length)b.push(u(!1));else{var l=o.substr(5).indexOf("-");if(l<0){var c=Number(o.substr(5));b.push(u(c))}else for(var d=Number(o.substr(5,l)),p=Number(o.substr(6+l)),m=d;m<=p;m++)b.push(u(m))}}if(e&&e[""].localeSlug)if(e[""].localeSlug===this.state.localeSlug){if(e===this.state.locale)return;Object.assign(this.state.locale,e)}else this.state.locale=Object.assign({},e);else this.state.locale={"":{localeSlug:this.defaultLocaleSlug,plural_forms:this.defaultPluralForms}};this.state.localeSlug=this.state.locale[""].localeSlug,this.state.localeVariant=this.state.locale[""].localeVariant,this.state.textDirection=(null===(t=this.state.locale["text directionltr"])||void 0===t?void 0:t[0])||(null===(n=this.state.locale[""])||void 0===n||null===(r=n.momentjs_locale)||void 0===r?void 0:r.textDirection),this.state.tannin=new s.Z((0,i.Z)({},_,this.state.locale)),this.state.numberFormatSettings.decimal_point=P(this.state.tannin,A([v])),this.state.numberFormatSettings.thousands_sep=P(this.state.tannin,A([y])),this.state.numberFormatSettings.decimal_point===v&&(this.state.numberFormatSettings.decimal_point="."),this.state.numberFormatSettings.thousands_sep===y&&(this.state.numberFormatSettings.thousands_sep=","),this.stateObserver.emit("change")},C.prototype.getLocale=function(){return this.state.locale},C.prototype.getLocaleSlug=function(){return this.state.localeSlug},C.prototype.getLocaleVariant=function(){return this.state.localeVariant},C.prototype.isRtl=function(){return"rtl"===this.state.textDirection},C.prototype.addTranslations=function(e){for(var t in e)""!==t&&(this.state.tannin.data.messages[t]=e[t]);this.stateObserver.emit("change")},C.prototype.hasTranslation=function(){return!!x(this,A(arguments))},C.prototype.translate=function(){var e=A(arguments),t=x(this,e);if(t||(t=P(this.state.tannin,e)),e.args){var n=Array.isArray(e.args)?e.args.slice(0):[e.args];n.unshift(t);try{t=m.Z.apply(void 0,(0,r.Z)(n))}catch(o){if(!window||!window.console)return;var i=this.throwErrors?"error":"warn";"string"!=typeof o?window.console[i](o):window.console[i]("i18n sprintf error:",n)}}return e.components&&(t=(0,u.Z)({mixedString:t,components:e.components,throwErrors:this.throwErrors})),this.translateHooks.forEach((function(n){t=n(t,e)})),t},C.prototype.reRenderTranslations=function(){g("Re-rendering all translations due to external request"),this.stateObserver.emit("change")},C.prototype.registerComponentUpdateHook=function(e){this.componentUpdateHooks.push(e)},C.prototype.registerTranslateHook=function(e){this.translateHooks.push(e)},t.Z=C},1481:function(e,t,n){"use strict";n.d(t,{Y4:function(){return s},Iu:function(){return l}});var r=n(914),i=n(3493),o=n(975),a=n(8373),u=new r.Z,s=u.numberFormat.bind(u),l=u.translate.bind(u),c=(u.configure.bind(u),u.setLocale.bind(u),u.getLocale.bind(u),u.getLocaleSlug.bind(u),u.getLocaleVariant.bind(u),u.isRtl.bind(u),u.addTranslations.bind(u),u.reRenderTranslations.bind(u),u.registerComponentUpdateHook.bind(u),u.registerTranslateHook.bind(u),u.state,u.stateObserver,u.on.bind(u),u.off.bind(u),u.emit.bind(u),(0,i.Z)(u),(0,o.Z)(u),(0,a.Z)(u));c.useRtl,c.withRtl},3493:function(e,t,n){"use strict";n.d(t,{Z:function(){return p}});var r=n(9394),i=n(4659),o=n(4730),a=n(3989),u=n(5663),s=n(9049),l=n(1119),c=n(3027),d=n(3804),f=n.n(d);function p(e){var t={numberFormat:e.numberFormat.bind(e),translate:e.translate.bind(e)};return function(n){var d,p,m=n.displayName||n.name||"";return p=d=function(d){(0,u.Z)(p,d);var f=(0,s.Z)(p);function p(){var e;(0,i.Z)(this,p);for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];return e=f.call.apply(f,[this].concat(n)),(0,l.Z)((0,a.Z)(e),"boundForceUpdate",e.forceUpdate.bind((0,a.Z)(e))),e}return(0,o.Z)(p,[{key:"componentDidMount",value:function(){e.on("change",this.boundForceUpdate)}},{key:"componentWillUnmount",value:function(){e.off("change",this.boundForceUpdate)}},{key:"render",value:function(){var i=(0,r.Z)((0,r.Z)({locale:e.getLocaleSlug()},this.props),t);return(0,c.createElement)(n,i)}}]),p}(f().Component),(0,l.Z)(d,"displayName","Localized("+m+")"),p}}},3:function(e,t,n){"use strict";function r(e,t,n,r){e=(e+"").replace(/[^0-9+\-Ee.]/g,"");var i=isFinite(+e)?+e:0,o=isFinite(+t)?Math.abs(t):0,a=void 0===r?",":r,u=void 0===n?".":n,s="";return(s=(o?
20
  /*
21
  * Exposes number format capability
22
  *
16
  *
17
  * This source code is licensed under the MIT license found in the
18
  * LICENSE file in the root directory of this source tree.
19
+ */var n="function"==typeof Symbol&&Symbol.for,r=n?Symbol.for("react.element"):60103,i=n?Symbol.for("react.portal"):60106,o=n?Symbol.for("react.fragment"):60107,a=n?Symbol.for("react.strict_mode"):60108,u=n?Symbol.for("react.profiler"):60114,s=n?Symbol.for("react.provider"):60109,l=n?Symbol.for("react.context"):60110,c=n?Symbol.for("react.async_mode"):60111,d=n?Symbol.for("react.concurrent_mode"):60111,f=n?Symbol.for("react.forward_ref"):60112,p=n?Symbol.for("react.suspense"):60113,m=n?Symbol.for("react.suspense_list"):60120,h=n?Symbol.for("react.memo"):60115,g=n?Symbol.for("react.lazy"):60116,v=n?Symbol.for("react.block"):60121,y=n?Symbol.for("react.fundamental"):60117,_=n?Symbol.for("react.responder"):60118,b=n?Symbol.for("react.scope"):60119;function E(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case r:switch(e=e.type){case c:case d:case o:case u:case a:case p:return e;default:switch(e=e&&e.$$typeof){case l:case f:case g:case h:case s:return e;default:return t}}case i:return t}}}function S(e){return E(e)===d}t.AsyncMode=c,t.ConcurrentMode=d,t.ContextConsumer=l,t.ContextProvider=s,t.Element=r,t.ForwardRef=f,t.Fragment=o,t.Lazy=g,t.Memo=h,t.Portal=i,t.Profiler=u,t.StrictMode=a,t.Suspense=p,t.isAsyncMode=function(e){return S(e)||E(e)===c},t.isConcurrentMode=S,t.isContextConsumer=function(e){return E(e)===l},t.isContextProvider=function(e){return E(e)===s},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===r},t.isForwardRef=function(e){return E(e)===f},t.isFragment=function(e){return E(e)===o},t.isLazy=function(e){return E(e)===g},t.isMemo=function(e){return E(e)===h},t.isPortal=function(e){return E(e)===i},t.isProfiler=function(e){return E(e)===u},t.isStrictMode=function(e){return E(e)===a},t.isSuspense=function(e){return E(e)===p},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===o||e===d||e===u||e===a||e===p||e===m||"object"==typeof e&&null!==e&&(e.$$typeof===g||e.$$typeof===h||e.$$typeof===s||e.$$typeof===l||e.$$typeof===f||e.$$typeof===y||e.$$typeof===_||e.$$typeof===b||e.$$typeof===v)},t.typeOf=E},8570:function(e,t,n){"use strict";e.exports=n(6866)},7933:function(e,t,n){"use strict";n.d(t,{rU:function(){return g}});var r=n(7267),i=n(5307),o=n(3804),a=n.n(o),u=n(7547),s=(n(3980),n(7560)),l=n(8283),c=n(1898);a().Component;a().Component;var d=function(e,t){return"function"==typeof e?e(t):e},f=function(e,t){return"string"==typeof e?(0,u.ob)(e,null,null,t):e},p=function(e){return e},m=a().forwardRef;void 0===m&&(m=p);var h=m((function(e,t){var n=e.innerRef,r=e.navigate,i=e.onClick,o=(0,l.Z)(e,["innerRef","navigate","onClick"]),u=o.target,c=(0,s.Z)({},o,{onClick:function(e){try{i&&i(e)}catch(t){throw e.preventDefault(),t}e.defaultPrevented||0!==e.button||u&&"_self"!==u||function(e){return!!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)}(e)||(e.preventDefault(),r())}});return c.ref=p!==m&&t||n,a().createElement("a",c)}));var g=m((function(e,t){var n=e.component,i=void 0===n?h:n,o=e.replace,u=e.to,g=e.innerRef,v=(0,l.Z)(e,["component","replace","to","innerRef"]);return a().createElement(r.s6.Consumer,null,(function(e){e||(0,c.Z)(!1);var n=e.history,r=f(d(u,e.location),e.location),l=r?n.createHref(r):"",h=(0,s.Z)({},v,{href:l,navigate:function(){var t=d(u,e.location);(o?n.replace:n.push)(t)}});return p!==m?h.ref=t||g:h.innerRef=g,a().createElement(i,h)}))})),v=function(e){return e},y=a().forwardRef;void 0===y&&(y=v);y((function(e,t){var n=e["aria-current"],i=void 0===n?"page":n,o=e.activeClassName,u=void 0===o?"active":o,p=e.activeStyle,m=e.className,h=e.exact,_=e.isActive,b=e.location,E=e.strict,S=e.style,w=e.to,A=e.innerRef,P=(0,l.Z)(e,["aria-current","activeClassName","activeStyle","className","exact","isActive","location","strict","style","to","innerRef"]);return a().createElement(r.s6.Consumer,null,(function(e){e||(0,c.Z)(!1);var n=b||e.location,o=f(d(w,n),n),l=o.pathname,x=l&&l.replace(/([.+*?=^!:${}()[\]|/\\])/g,"\\$1"),C=x?(0,r.LX)(n.pathname,{path:x,exact:h,strict:E}):null,N=!!(_?_(C,n):C),I=N?function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return t.filter((function(e){return e})).join(" ")}(m,u):m,Z=N?(0,s.Z)({},S,{},p):S,O=(0,s.Z)({"aria-current":N&&i||null,className:I,style:Z,to:o},P);return v!==y?O.ref=t||A:O.innerRef=A,a().createElement(g,O)}))}))},7267:function(e,t,n){"use strict";n.d(t,{VA:function(){return h},l_:function(){return b},AW:function(){return A},F0:function(){return m},rs:function(){return Z},s6:function(){return p},LX:function(){return w},k6:function(){return M},TH:function(){return L}});var r=n(5307),i=n(3804),o=n.n(i),a=(n(3980),n(7547)),u=n(1549),s=n(1898),l=n(7560),c=n(99),d=n.n(c),f=(n(8570),n(8283)),p=(n(3463),function(e){var t=(0,u.Z)();return t.displayName=e,t}("Router")),m=function(e){function t(t){var n;return(n=e.call(this,t)||this).state={location:t.history.location},n._isMounted=!1,n._pendingLocation=null,t.staticContext||(n.unlisten=t.history.listen((function(e){n._isMounted?n.setState({location:e}):n._pendingLocation=e}))),n}(0,r.Z)(t,e),t.computeRootMatch=function(e){return{path:"/",url:"/",params:{},isExact:"/"===e}};var n=t.prototype;return n.componentDidMount=function(){this._isMounted=!0,this._pendingLocation&&this.setState({location:this._pendingLocation})},n.componentWillUnmount=function(){this.unlisten&&this.unlisten()},n.render=function(){return o().createElement(p.Provider,{children:this.props.children||null,value:{history:this.props.history,location:this.state.location,match:t.computeRootMatch(this.state.location.pathname),staticContext:this.props.staticContext}})},t}(o().Component);var h=function(e){function t(){for(var t,n=arguments.length,r=new Array(n),i=0;i<n;i++)r[i]=arguments[i];return(t=e.call.apply(e,[this].concat(r))||this).history=(0,a.PP)(t.props),t}return(0,r.Z)(t,e),t.prototype.render=function(){return o().createElement(m,{history:this.history,children:this.props.children})},t}(o().Component);var g=function(e){function t(){return e.apply(this,arguments)||this}(0,r.Z)(t,e);var n=t.prototype;return n.componentDidMount=function(){this.props.onMount&&this.props.onMount.call(this,this)},n.componentDidUpdate=function(e){this.props.onUpdate&&this.props.onUpdate.call(this,this,e)},n.componentWillUnmount=function(){this.props.onUnmount&&this.props.onUnmount.call(this,this)},n.render=function(){return null},t}(o().Component);var v={},y=0;function _(e,t){return void 0===e&&(e="/"),void 0===t&&(t={}),"/"===e?e:function(e){if(v[e])return v[e];var t=d().compile(e);return y<1e4&&(v[e]=t,y++),t}(e)(t,{pretty:!0})}function b(e){var t=e.computedMatch,n=e.to,r=e.push,i=void 0!==r&&r;return o().createElement(p.Consumer,null,(function(e){e||(0,s.Z)(!1);var r=e.history,u=e.staticContext,c=i?r.push:r.replace,d=(0,a.ob)(t?"string"==typeof n?_(n,t.params):(0,l.Z)({},n,{pathname:_(n.pathname,t.params)}):n);return u?(c(d),null):o().createElement(g,{onMount:function(){c(d)},onUpdate:function(e,t){var n=(0,a.ob)(t.to);(0,a.Hp)(n,(0,l.Z)({},d,{key:n.key}))||c(d)},to:n})}))}var E={},S=0;function w(e,t){void 0===t&&(t={}),("string"==typeof t||Array.isArray(t))&&(t={path:t});var n=t,r=n.path,i=n.exact,o=void 0!==i&&i,a=n.strict,u=void 0!==a&&a,s=n.sensitive,l=void 0!==s&&s;return[].concat(r).reduce((function(t,n){if(!n&&""!==n)return null;if(t)return t;var r=function(e,t){var n=""+t.end+t.strict+t.sensitive,r=E[n]||(E[n]={});if(r[e])return r[e];var i=[],o={regexp:d()(e,i,t),keys:i};return S<1e4&&(r[e]=o,S++),o}(n,{end:o,strict:u,sensitive:l}),i=r.regexp,a=r.keys,s=i.exec(e);if(!s)return null;var c=s[0],f=s.slice(1),p=e===c;return o&&!p?null:{path:n,url:"/"===n&&""===c?"/":c,isExact:p,params:a.reduce((function(e,t,n){return e[t.name]=f[n],e}),{})}}),null)}var A=function(e){function t(){return e.apply(this,arguments)||this}return(0,r.Z)(t,e),t.prototype.render=function(){var e=this;return o().createElement(p.Consumer,null,(function(t){t||(0,s.Z)(!1);var n=e.props.location||t.location,r=e.props.computedMatch?e.props.computedMatch:e.props.path?w(n.pathname,e.props):t.match,i=(0,l.Z)({},t,{location:n,match:r}),a=e.props,u=a.children,c=a.component,d=a.render;return Array.isArray(u)&&0===u.length&&(u=null),o().createElement(p.Provider,{value:i},i.match?u?"function"==typeof u?u(i):u:c?o().createElement(c,i):d?d(i):null:"function"==typeof u?u(i):null)}))},t}(o().Component);function P(e){return"/"===e.charAt(0)?e:"/"+e}function x(e,t){if(!e)return t;var n=P(e);return 0!==t.pathname.indexOf(n)?t:(0,l.Z)({},t,{pathname:t.pathname.substr(n.length)})}function C(e){return"string"==typeof e?e:(0,a.Ep)(e)}function N(e){return function(){(0,s.Z)(!1)}}function I(){}o().Component;var Z=function(e){function t(){return e.apply(this,arguments)||this}return(0,r.Z)(t,e),t.prototype.render=function(){var e=this;return o().createElement(p.Consumer,null,(function(t){t||(0,s.Z)(!1);var n,r,i=e.props.location||t.location;return o().Children.forEach(e.props.children,(function(e){if(null==r&&o().isValidElement(e)){n=e;var a=e.props.path||e.props.from;r=a?w(i.pathname,(0,l.Z)({},e.props,{path:a})):t.match}})),r?o().cloneElement(n,{location:i,computedMatch:r}):null}))},t}(o().Component);var O=o().useContext;function M(){return O(p).history}function L(){return O(p).location}},7613:function(e,t){"use strict";function n(e){return"/"===e.charAt(0)}function r(e,t){for(var n=t,r=n+1,i=e.length;r<i;n+=1,r+=1)e[n]=e[r];e.pop()}t.Z=function(e,t){void 0===t&&(t="");var i,o=e&&e.split("/")||[],a=t&&t.split("/")||[],u=e&&n(e),s=t&&n(t),l=u||s;if(e&&n(e)?a=o:o.length&&(a.pop(),a=a.concat(o)),!a.length)return"/";if(a.length){var c=a[a.length-1];i="."===c||".."===c||""===c}else i=!1;for(var d=0,f=a.length;f>=0;f--){var p=a[f];"."===p?r(a,f):".."===p?(r(a,f),d++):d&&(r(a,f),d--)}if(!l)for(;d--;d)a.unshift("..");!l||""===a[0]||a[0]&&n(a[0])||a.unshift("");var m=a.join("/");return i&&"/"!==m.substr(-1)&&(m+="/"),m}},9830:function(e,t,n){"use strict";n.d(t,{Z:function(){return o}});var r=n(1184),i={contextDelimiter:"",onMissingKey:null};function o(e,t){var n;for(n in this.data=e,this.pluralForms={},this.options={},i)this.options[n]=void 0!==t&&n in t?t[n]:i[n]}o.prototype.getPluralForm=function(e,t){var n,i,o,a=this.pluralForms[e];return a||("function"!=typeof(o=(n=this.data[e][""])["Plural-Forms"]||n["plural-forms"]||n.plural_forms)&&(i=function(e){var t,n,r;for(t=e.split(";"),n=0;n<t.length;n++)if(0===(r=t[n].trim()).indexOf("plural="))return r.substr(7)}(n["Plural-Forms"]||n["plural-forms"]||n.plural_forms),o=(0,r.Z)(i)),a=this.pluralForms[e]=o),a(t)},o.prototype.dcnpgettext=function(e,t,n,r,i){var o,a,u;return o=void 0===i?0:this.getPluralForm(e,i),a=n,t&&(a=t+this.options.contextDelimiter+n),(u=this.data[e][a])&&u[o]?u[o]:(this.options.onMissingKey&&this.options.onMissingKey(n,e),0===o?n:r)}},365:function(e,t,n){"use strict";n.d(t,{y:function(){return r}});var r=function(){try{return window.self!==window.top}catch(e){return!0}};!window||!window._currentSiteType||window._currentSiteType},5631:function(e,t,n){"use strict";var r,i,o=n(3027),a=n(8152),u=n(5707),s=n(1200),l=n(791),c=n(3804),d=n.n(c),f=n(365),p=n(1157),m=n(8318),h=n(8550);r="a8c-editor-editor-focused-launch",i={render:function(){var e,t=window._currentSiteId,n=(0,u.useSelect)((function(e){return e(m.j4).isSiteLaunched(t)}),[t]),r=(0,u.useSelect)((function(e){return e(m.sC).getState()}),[]),i=r.isFocusedLaunchOpen,s=r.isAnchorFm,c=(0,u.useDispatch)(m.sC).openFocusedLaunch;d().useEffect((function(){n&&document.body.classList.add("is-focused-launch-complete")}),[n]);var g=(0,l.hasQueryArg)((0,h.O0)(),p.nU);return d().useEffect((function(){g&&!n&&c()}),[g,n,c]),i?(0,o.createElement)(a.Z,{locale:null===(e=window.wpcomEditorSiteLaunch)||void 0===e?void 0:e.locale,openCheckout:h.Rd,redirectTo:h.gQ,siteId:t,getCurrentLaunchFlowUrl:h.O0,isInIframe:(0,f.y)(),isLaunchImmediately:g||s}):null}},(0,s.registerPlugin)(r,i)},1157:function(e,t,n){"use strict";n.d(t,{Js:function(){return r},nU:function(){return i}});var r="focused-launch",i="should_launch"},8318:function(e,t,n){"use strict";n.d(t,{j4:function(){return r},sC:function(){return i}});n(8681);var r="automattic/site",i="automattic/launch"},8550:function(e,t,n){"use strict";n.d(t,{O0:function(){return s},gQ:function(){return l},Rd:function(){return c}});var r=n(9394),i=n(1119),o=n(5799),a=n(791),u=n(1157),s=function(){var e,t,n;return null!==(e=null===(t=window)||void 0===t||null===(n=t.calypsoifyGutenberg)||void 0===n?void 0:n.currentCalypsoUrl)&&void 0!==e?e:window.location.href},l=function(e){var t="https://wordpress.com";try{var n,r;t=new URL((null===(n=window)||void 0===n||null===(r=n.calypsoifyGutenberg)||void 0===r?void 0:r.currentCalypsoUrl)||"").origin}catch(o){}var i=e.startsWith("/")?e:"/".concat(e);!function(e){window.top.location.href=e}("".concat(t).concat(i))},c=function(){var e,t,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:window._currentSiteId.toString(),c=arguments.length>1&&void 0!==arguments[1]&&arguments[1],d=arguments.length>2?arguments[2]:void 0,f="a8c.wpcom-block-editor.openCheckoutModal",p=(null===(e=window)||void 0===e||null===(t=e.wpcomEditorSiteLaunch)||void 0===t?void 0:t.launchFlow)===u.Js,m=s().split("?")[0];if((0,o.hasAction)(f)&&p&&!c)(0,o.doAction)(f,{checkoutOnSuccessCallback:d,isFocusedLaunch:!0,redirectTo:(0,a.addQueryArgs)(m,(0,i.Z)({},u.nU,!0))});else{var h=(0,a.addQueryArgs)("/checkout/".concat(n),(0,r.Z)({},!c&&{redirect_to:"/home/".concat(n)}));l(h)}}},6115:function(e,t,n){"use strict";n.d(t,{jN:function(){return r.jN},Sn:function(){return i.Sn},Lo:function(){return i.Lo},k9:function(){return i.k9}});n(1694),n(6209),n(9377);var r=n(9792),i=n(3722)},9377:function(e,t,n){"use strict";"undefined"!=typeof window&&window.addEventListener("popstate",(function(){null}))},9792:function(e,t,n){"use strict";n.d(t,{jN:function(){return f}});var r,i=n(9394),o=n(1205),a=(n(3421),n(382)),u=n(4898),s=(n(6209),n(1694),n(9377),n(9358)),l=["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"];Promise.resolve();function c(e){"undefined"!=typeof window&&(window._tkq=window._tkq||[],window._tkq.push(e))}"undefined"!=typeof document&&(0,u.ve)("//stats.wp.com/w.js?63");var d=new a.EventEmitter;function f(e,t){if(t=t||{},(0,s.Z)('Record event "%s" called with props %o',e,t),e.startsWith("calypso_")||(0,o.includes)(l,e)){if(r){var n=r(t);t=(0,i.Z)((0,i.Z)({},t),n)}t=(0,o.omitBy)(t,(function(e){return void 0===e})),(0,s.Z)('Recording event "%s" with actual props %o',e,t),c(["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.d(t,{Sn:function(){return o},Lo:function(){return a},k9:function(){return u}});var r=n(8767),i=n(9792);function o(e){var t=e.railcarId,n=e.uiAlgo,r=e.uiPosition,o=e.fetchAlgo,a=e.result,u=e.query;(0,i.jN)("calypso_traintracks_render",{railcar:t,ui_algo:n,ui_position:r,fetch_algo:o,rec_result:a,fetch_query:u})}function a(e){var t=e.railcarId,n=e.action;(0,i.jN)("calypso_traintracks_interact",{railcar:t,action:n})}function u(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"recommendation";return"".concat((0,r.Z)().replace(/-/g,""),"-").concat(e)}},6209:function(e,t,n){"use strict";n(4)},9358:function(e,t,n){"use strict";var r=n(8049),i=n.n(r);t.Z=i()("calypso:analytics")},1694:function(e,t,n){"use strict";n(9358)},4:function(e,t,n){"use strict";n(8032)},3600:function(e,t,n){"use strict";n.r(t),n.d(t,{receiveCategories:function(){return r},fetchDomainSuggestions:function(){return i},receiveDomainAvailability:function(){return o},receiveDomainSuggestionsSuccess:function(){return a},receiveDomainSuggestionsError:function(){return u}});var r=function(e){return{type:"RECEIVE_CATEGORIES",categories:e}},i=function(){return{type:"FETCH_DOMAIN_SUGGESTIONS",timeStamp:Date.now()}},o=function(e,t){return{type:"RECEIVE_DOMAIN_AVAILABILITY",domainName:e,availability:t}},a=function(e,t){return{type:"RECEIVE_DOMAIN_SUGGESTIONS_SUCCESS",queryObject:e,suggestions:t,timeStamp:Date.now()}},u=function(e){return{type:"RECEIVE_DOMAIN_SUGGESTIONS_ERROR",errorMessage:e,timeStamp:Date.now()}}},584:function(e,t,n){"use strict";n.d(t,{L:function(){return i},r:function(){return r}});var r,i="automattic/domains/suggestions";!function(e){e.Failure="failure",e.Pending="pending",e.Success="success",e.Uninitialized="uninitialized"}(r||(r={}))},8077:function(e,t,n){"use strict";n.d(t,{z:function(){return d}});var r=n(5707),i=n(3661),o=n(3600),a=n(584),u=n(3717),s=n(2269),l=n(267),c=!1;function d(){return c||(c=!0,(0,r.registerStore)(a.L,{actions:o,controls:i.ai,reducer:u.Z,resolvers:s,selectors:l})),a.L}},3717:function(e,t,n){"use strict";var r=n(1119),i=n(9394),o=n(5707),a=n(584),u=n(4211),s={state:a.r.Uninitialized,data:{},errorMessage:null,lastUpdated:-1/0,pendingSince:void 0},l=(0,o.combineReducers)({categories:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1?arguments[1]:void 0;return"RECEIVE_CATEGORIES"===t.type?t.categories:e},domainSuggestions:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:s,t=arguments.length>1?arguments[1]:void 0;return"FETCH_DOMAIN_SUGGESTIONS"===t.type?(0,i.Z)((0,i.Z)({},e),{},{state:a.r.Pending,errorMessage:null,pendingSince:t.timeStamp}):"RECEIVE_DOMAIN_SUGGESTIONS_SUCCESS"===t.type?(0,i.Z)((0,i.Z)({},e),{},{state:a.r.Success,data:(0,i.Z)((0,i.Z)({},e.data),{},(0,r.Z)({},(0,u.Le)(t.queryObject),t.suggestions)),errorMessage:null,lastUpdated:t.timeStamp,pendingSince:void 0}):"RECEIVE_DOMAIN_SUGGESTIONS_ERROR"===t.type?(0,i.Z)((0,i.Z)({},e),{},{state:a.r.Failure,errorMessage:t.errorMessage,lastUpdated:t.timeStamp,pendingSince:void 0}):e},availability:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;return"RECEIVE_DOMAIN_AVAILABILITY"===t.type?(0,i.Z)((0,i.Z)({},e),{},(0,r.Z)({},t.domainName,t.availability)):e}});t.Z=l},2269:function(e,t,n){"use strict";n.r(t),n.d(t,{isAvailable:function(){return h},getCategories:function(){return g},__internalGetDomainSuggestions:function(){return v}});var r=n(9394),i=n(1481),o=n(9126),a=n(6468),u=n.n(a),s=n(3661),l=n(3600),c=n(4211),d=regeneratorRuntime.mark(g),f=regeneratorRuntime.mark(v);function p(e){return"https://public-api.wordpress.com/rest/v1.3/domains/".concat(encodeURIComponent(e),"/is-available?is_cart_pre_check=true")}function m(e,t){return u().isFQDN(t)&&!e.some((function(e){return e.domain_name.toLowerCase()===t}))}var h=regeneratorRuntime.mark((function e(t){var n,r,i;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=p(t),e.prev=1,e.next=4,(0,s.An)(n);case 4:return r=e.sent,i=r.body,e.abrupt("return",(0,l.receiveDomainAvailability)(t,i));case 9:return e.prev=9,e.t0=e.catch(1),e.abrupt("return",(0,l.receiveDomainAvailability)(t,{domain_name:t,mappable:"unknown",status:"unknown",supports_privacy:!1}));case 12:case"end":return e.stop()}}),e,null,[[1,9]])}));function g(){var e,t;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,(0,s.An)("https://public-api.wordpress.com/wpcom/v2/onboarding/domains/categories");case 2:return e=n.sent,t=e.body,n.abrupt("return",(0,l.receiveCategories)(t));case 5:case"end":return n.stop()}}),d)}function v(e){var t,n,a;return regeneratorRuntime.wrap((function(u){for(;;)switch(u.prev=u.next){case 0:if(e.query){u.next=2;break}return u.abrupt("return",(0,l.receiveDomainSuggestionsError)("Empty query"));case 2:return u.next=4,(0,l.fetchDomainSuggestions)();case 4:return u.prev=4,u.next=7,(0,s._9)({apiVersion:"1.1",path:"/domains/suggestions",query:(0,o.stringify)(e)});case 7:if(t=u.sent,Array.isArray(t)){u.next=10;break}return u.abrupt("return",(0,l.receiveDomainSuggestionsError)((0,i.Iu)("Invalid response from the server")));case 10:return m(t,e.query)&&(n={domain_name:e.query,unavailable:!0,cost:"",raw_price:0,currency_code:""},t.unshift(n)),a=t.map((function(e){return e.unavailable?e:(0,r.Z)((0,r.Z)({},e),e.raw_price&&e.currency_code&&{cost:(0,c._B)(e.raw_price,e.currency_code)})})),u.abrupt("return",(0,l.receiveDomainSuggestionsSuccess)(e,a));case 15:return u.prev=15,u.t0=u.catch(4),u.abrupt("return",(0,l.receiveDomainSuggestionsError)(u.t0.message||(0,i.Iu)("Error while fetching server response")));case 18:case"end":return u.stop()}}),f,null,[[4,15]])}},267:function(e,t,n){"use strict";n.r(t),n.d(t,{getCategories:function(){return u},getDomainSuggestions:function(){return s},getDomainState:function(){return l},getDomainErrorMessage:function(){return c},isLoadingDomainSuggestions:function(){return d},__internalGetDomainSuggestions:function(){return f},isAvailable:function(){return p},getDomainAvailabilities:function(){return m}});var r=n(1766),i=n(5707),o=n(584),a=n(4211),u=function(e){return[].concat((0,r.Z)(e.categories.filter((function(e){return null!==e.tier})).sort((function(e,t){return e>t?1:-1}))),(0,r.Z)(e.categories.filter((function(e){return null===e.tier})).sort((function(e,t){return e.title.localeCompare(t.title)}))))},s=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=(0,a.o0)(t,n);return(0,i.select)(o.L).__internalGetDomainSuggestions(r)},l=function(e){return e.domainSuggestions.state},c=function(e){return e.domainSuggestions.errorMessage},d=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=(0,a.o0)(t,n);return(0,i.select)("core/data").isResolving(o.L,"__internalGetDomainSuggestions",[r])},f=function(e,t){return e.domainSuggestions.data[(0,a.Le)(t)]},p=function(e,t){return e.availability[t]},m=function(e){return e.availability}},4211:function(e,t,n){"use strict";n.d(t,{Le:function(){return a},_B:function(){return u},o0:function(){return s}});var r=n(9394),i=n(1621),o=n(5695),a=n.n(o)();function u(e,t){return(0,i.ZP)(e,t,{stripZeros:!0})}function s(e,t){return(0,r.Z)((0,r.Z)({include_wordpressdotcom:t.only_wordpressdotcom||!1,include_dotblogsubdomain:!1,only_wordpressdotcom:!1,quantity:5,vendor:"variation2_front"},t),{},{query:e.trim().toLocaleLowerCase()})}},6108:function(e,t,n){"use strict";n.r(t),n.d(t,{setSidebarFullscreen:function(){return o},unsetSidebarFullscreen:function(){return a},setStep:function(){return u},setSiteTitle:function(){return s},setDomain:function(){return l},unsetDomain:function(){return c},confirmDomainSelection:function(){return d},setDomainSearch:function(){return f},setPlanProductId:function(){return m},unsetPlanProductId:function(){return h},updatePlan:function(){return g},openSidebar:function(){return v},closeSidebar:function(){return y},openFocusedLaunch:function(){return _},closeFocusedLaunch:function(){return b},enableAnchorFm:function(){return E},showSiteTitleStep:function(){return S},setModalDismissible:function(){return w},unsetModalDismissible:function(){return A},showModalTitle:function(){return P},hideModalTitle:function(){return x},enablePersistentSuccessView:function(){return C},disablePersistentSuccessView:function(){return N}});var r=n(5707),i=n(9149),o=function(){return{type:"SET_SIDEBAR_FULLSCREEN"}},a=function(){return{type:"UNSET_SIDEBAR_FULLSCREEN"}},u=function(e){return{type:"SET_STEP",step:e}},s=function(e){return{type:"SET_SITE_TITLE",title:e}},l=function(e){return{type:"SET_DOMAIN",domain:e}},c=function(){return{type:"UNSET_DOMAIN"}},d=function(){return{type:"CONFIRM_DOMAIN_SELECTION"}},f=function(e){return{type:"SET_DOMAIN_SEARCH",domainSearch:e}},p=function(e){return{type:"SET_PLAN_BILLING_PERIOD",billingPeriod:e}},m=regeneratorRuntime.mark((function e(t){var n,o,a;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if((0,r.select)(i.Fs).isPlanProductFree(t)){e.next=6;break}return o=(0,r.select)(i.Fs).getPlanProductById(t),a=null!==(n=null==o?void 0:o.billingPeriod)&&void 0!==n?n:"ANNUALLY",e.next=6,p(a);case 6:return e.abrupt("return",{type:"SET_PLAN_PRODUCT_ID",planProductId:t});case 7:case"end":return e.stop()}}),e)})),h=function(){return{type:"UNSET_PLAN_PRODUCT_ID"}};function g(e){return m(e)}var v=function(){return{type:"OPEN_SIDEBAR"}},y=function(){return{type:"CLOSE_SIDEBAR"}},_=function(){return{type:"OPEN_FOCUSED_LAUNCH"}},b=function(){return{type:"CLOSE_FOCUSED_LAUNCH"}},E=function(){return{type:"ENABLE_ANCHOR_FM"}},S=function(){return{type:"SHOW_SITE_TITLE_STEP"}},w=function(){return{type:"SET_MODAL_DISMISSIBLE"}},A=function(){return{type:"UNSET_MODAL_DISMISSIBLE"}},P=function(){return{type:"SHOW_MODAL_TITLE"}},x=function(){return{type:"HIDE_MODAL_TITLE"}},C=function(){return{type:"ENABLE_SUCCESS_VIEW"}},N=function(){return{type:"DISABLE_SUCCESS_VIEW"}}},9149:function(e,t,n){"use strict";n.d(t,{Ls:function(){return r},Fs:function(){return i}});var r="automattic/launch",i="automattic/onboard/plans"},3610:function(e,t,n){"use strict";n.d(t,{y:function(){return r},M:function(){return i}});var r={Name:"name",Domain:"domain",Plan:"plan",Final:"final"},i=[r.Name,r.Domain,r.Plan,r.Final]},1635:function(e,t,n){"use strict";n.d(t,{z:function(){return d}});var r=n(5707),i=n(9866),o=n(6108),a=n(9149),u=n(594),s=n(4648),l=n(7092);(0,r.use)(r.plugins.persistence,u.Z);var c=!1;function d(){return c||(c=!0,(0,r.registerStore)(a.Ls,{actions:o,controls:i.controls,reducer:s.Z,selectors:l,persist:["domain","domainSearch","planProductId","planBillingPeriod","confirmedDomainSelection","isAnchorFm","isSiteTitleStepVisible","siteTitle"]})),a.Ls}},594:function(e,t,n){"use strict";var r=n(492);t.Z=(0,r.Z)("WP_LAUNCH")},4648:function(e,t,n){"use strict";var r=n(5707),i=n(3610),o=(0,r.combineReducers)({step:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:i.y.Name,t=arguments.length>1?arguments[1]:void 0;return"SET_STEP"===t.type?t.step:e},siteTitle:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:void 0,t=arguments.length>1?arguments[1]:void 0;return"SET_SITE_TITLE"===t.type?t.title:e},domain:function(e,t){return"SET_DOMAIN"===t.type?t.domain:"UNSET_DOMAIN"!==t.type?e:void 0},confirmedDomainSelection:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"CONFIRM_DOMAIN_SELECTION"===t.type||e},domainSearch:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1?arguments[1]:void 0;return"SET_DOMAIN_SEARCH"===t.type?t.domainSearch:e},planBillingPeriod:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"ANNUALLY",t=arguments.length>1?arguments[1]:void 0;return"SET_PLAN_BILLING_PERIOD"===t.type?t.billingPeriod:e},planProductId:function(e,t){return"SET_PLAN_PRODUCT_ID"===t.type?t.planProductId:"UNSET_PLAN_PRODUCT_ID"!==t.type?e:void 0},isSidebarOpen:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"OPEN_SIDEBAR"===t.type||"CLOSE_SIDEBAR"!==t.type&&e},isSidebarFullscreen:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"SET_SIDEBAR_FULLSCREEN"===t.type||"UNSET_SIDEBAR_FULLSCREEN"!==t.type&&e},isAnchorFm:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"ENABLE_ANCHOR_FM"===t.type||e},isFocusedLaunchOpen:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"OPEN_FOCUSED_LAUNCH"===t.type||"CLOSE_FOCUSED_LAUNCH"!==t.type&&e},isSiteTitleStepVisible:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"SHOW_SITE_TITLE_STEP"===t.type||e},isModalDismissible:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0],t=arguments.length>1?arguments[1]:void 0;return"SET_MODAL_DISMISSIBLE"===t.type||"UNSET_MODAL_DISMISSIBLE"!==t.type&&e},isModalTitleVisible:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0],t=arguments.length>1?arguments[1]:void 0;return"SHOW_MODAL_TITLE"===t.type||"HIDE_MODAL_TITLE"!==t.type&&e}});t.Z=o},7092:function(e,t,n){"use strict";n.r(t),n.d(t,{getLaunchSequence:function(){return a},getLaunchStep:function(){return u},getState:function(){return s},hasPaidDomain:function(){return l},getSelectedDomain:function(){return c},getSelectedPlanProductId:function(){return d},getLastPlanBillingPeriod:function(){return f},isSelectedPlanPaid:function(){return p},hasSelectedDomainOrSubdomain:function(){return m},isStepCompleted:function(){return h},isFlowCompleted:function(){return g},isFlowStarted:function(){return v},getFirstIncompleteStep:function(){return y},getSiteTitle:function(){return _},getCurrentStep:function(){return b},getDomainSearch:function(){return E}});var r=n(5707),i=n(9149),o=n(3610),a=function(){return o.M},u=function(){return o.y},s=function(e){return e},l=function(e){return!!e.domain&&!e.domain.is_free},c=function(e){return e.domain},d=function(e){return e.planProductId},f=function(e){return e.planBillingPeriod},p=function(e){return void 0!==e.planProductId&&!(0,r.select)(i.Fs).isPlanProductFree(e.planProductId)},m=function(e){return!!c(e)||e.confirmedDomainSelection},h=function(e,t){if(t===o.y.Plan)return!!d(e);if(t===o.y.Name){var n=(0,r.select)("core").getEntityRecord("root","site",void 0);return!(null==n||!n.title)}return t===o.y.Domain&&(0,r.select)(i.Ls).hasSelectedDomainOrSubdomain()},g=function(e){return o.M.slice(0,o.M.length-1).every((function(t){return h(e,t)}))},v=function(e){return o.M.some((function(t){return h(e,t)}))},y=function(e){return o.M.find((function(t){return!h(e,t)}))},_=function(e){return null==e?void 0:e.siteTitle},b=function(e){return e.step},E=function(e){return e.domainSearch}},492:function(e,t,n){"use strict";function r(e){var t=e,n=e+"_TS",r={},i={getItem:function(e){return r.hasOwnProperty(e)?r[e]:null},setItem:function(e,t){r[e]=String(t)},removeItem:function(e){delete r[e]}},o=function(){try{return window.localStorage.setItem("WP_ONBOARD_TEST","1"),window.localStorage.removeItem("WP_ONBOARD_TEST"),!0}catch(e){return!1}}()?window.localStorage:i;return{storageKey:t,storage:{getItem:function(e){var r=o.getItem(n);return r&&function(e){var t=Number(e);return Boolean(t)&&t+6048e5>Date.now()}(r)&&!new URLSearchParams(window.location.search).has("fresh")?o.getItem(e):(o.removeItem(t),o.removeItem(n),null)},setItem:function(e,t){o.setItem(n,JSON.stringify(Date.now())),o.setItem(e,t)}}}}n.d(t,{Z:function(){return r}})},9068:function(e,t,n){"use strict";n.r(t),n.d(t,{setFeatures:function(){return r},setFeaturesByType:function(){return i},setPlans:function(){return o},setPlanProducts:function(){return a},resetPlan:function(){return u}});var r=function(e,t){return{type:"SET_FEATURES",features:e,locale:t}},i=function(e,t){return{type:"SET_FEATURES_BY_TYPE",featuresByType:e,locale:t}},o=function(e,t){return{type:"SET_PLANS",plans:e,locale:t}},a=function(e){return{type:"SET_PLAN_PRODUCTS",products:e}},u=function(){return{type:"RESET_PLAN"}}},4703:function(e,t,n){"use strict";n.d(t,{Ls:function(){return r},Ho:function(){return i},TO:function(){return o},YS:function(){return a},Gz:function(){return u},hx:function(){return s},iL:function(){return l},xT:function(){return c},AX:function(){return d},bS:function(){return f},UB:function(){return p},BV:function(){return m},nN:function(){return h}});var r="automattic/onboard/plans",i=1,o="free",a="personal",u="premium",s="business",l="ecommerce",c=[o,a,u,s,l],d=u,f=["personal-bundle","value_bundle","business-bundle","ecommerce-bundle"],p=["personal-bundle-monthly","value_bundle_monthly","business-bundle-monthly","ecommerce-bundle-monthly"],m=["free_plan"].concat(f,p),h=["custom-domain","support-live","priority-support"]},9734:function(e,t,n){"use strict";n.d(t,{z2:function(){return d}});var r=n(5707),i=n(3661),o=n(9068),a=n(4703),u=n(9438),s=n(5261),l=n(7738),c=!1;function d(){return c||(c=!0,(0,r.registerStore)(a.Ls,{resolvers:s,actions:o,controls:i.ai,reducer:u.ZP,selectors:l})),a.Ls}},9438:function(e,t,n){"use strict";var r=n(1119),i=n(9394),o=n(5707),a=(0,o.combineReducers)({features:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"SET_FEATURES":return(0,i.Z)((0,i.Z)({},e),{},(0,r.Z)({},t.locale,t.features));default:return e}},featuresByType:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"SET_FEATURES_BY_TYPE":return(0,i.Z)((0,i.Z)({},e),{},(0,r.Z)({},t.locale,t.featuresByType));default:return e}},planProducts:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"SET_PLAN_PRODUCTS":return t.products;default:return e}},plans:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"SET_PLANS":return(0,i.Z)((0,i.Z)({},e),{},(0,r.Z)({},t.locale,t.plans));default:return e}}});t.ZP=a},5261:function(e,t,n){"use strict";n.r(t),n.d(t,{getSupportedPlans:function(){return h}});var r=n(1621),i=n(9126),o=n(3661),a=n(9068),u=n(4703),s=regeneratorRuntime.mark(h);function l(e){return(0,r.ZP)(12*e.raw_price,e.currency_code,{stripZeros:!0})}function c(e){return(0,r.ZP)(e.raw_price,e.currency_code,{stripZeros:!0})}function d(e){return e.reduce((function(e,t){return e[t.id]={id:t.id,name:t.name,description:t.description,type:"checkbox",requiresAnnuallyBilledPlan:u.nN.indexOf(t.id)>-1},e}),{})}function f(e,t){var n=Object.keys(t).find((function(n){return t[n].name===e}));return!!n&&t[n].requiresAnnuallyBilledPlan}function p(e,t){var n=e.highlighted_features.map((function(e){return{name:e,requiresAnnuallyBilledPlan:f(e,t)}}));return n.sort((function(e,t){return Number(t.requiresAnnuallyBilledPlan)-Number(e.requiresAnnuallyBilledPlan)})),n}function m(e,t){var n=u.BV.reduce((function(n,i){var o=e.find((function(e){return e.product_slug===i}));if(!o)return n;var a,u=t.find((function(e){return e.productIds.indexOf(o.product_id)>-1}));return n.push({productId:o.product_id,billingPeriod:31===o.bill_period?"MONTHLY":"ANNUALLY",periodAgnosticSlug:u.periodAgnosticSlug,storeSlug:o.product_slug,rawPrice:o.raw_price,pathSlug:o.path_slug,price:31===(null==o?void 0:o.bill_period)||0===o.raw_price?c(o):(a=o,(0,r.ZP)(a.raw_price/12,a.currency_code,{stripZeros:!0})),annualPrice:31===(null==o?void 0:o.bill_period)?l(o):c(o)}),n}),[]);return function(e){for(var t=function(t){var n=e.find((function(e){return e.storeSlug===u.bS[t]})),r=e.find((function(e){return e.storeSlug===u.UB[t]}));if(n&&r){var i=12*r.rawPrice,o=n.rawPrice,a=Math.round(100*(1-o/i));n.annualDiscount=a,r.annualDiscount=a}},n=0;n<u.bS.length;n++)t(n)}(n),n}function h(){var e,t,n,r,l,c,f,h=arguments;return regeneratorRuntime.wrap((function(s){for(;;)switch(s.prev=s.next){case 0:return e=h.length>0&&void 0!==h[0]?h[0]:"en",s.next=3,(0,o._9)({path:"/plans",query:(0,i.stringify)({locale:e}),apiVersion:"1.5"});case 3:return t=s.sent,s.next=6,(0,o.An)("https://public-api.wordpress.com/wpcom/v2/plans/details?locale=".concat(encodeURIComponent(e)),{mode:"cors",credentials:"omit"});case 6:return n=s.sent,r=n.body,l=d(r.features),c=r.plans.map((function(e){var t,n=null===(t=e.nonlocalized_short_name)||void 0===t?void 0:t.toLowerCase();return{description:e.tagline,features:p(e,l),storage:e.storage,title:e.short_name,featuresSlugs:e.features.reduce((function(e,t){return e[t]=!0,e}),{}),isFree:n===u.TO,isPopular:n===u.Gz,periodAgnosticSlug:n,productIds:e.products.map((function(e){return e.plan_id}))}})),f=m(t,c),s.next=13,(0,a.setPlans)(c,e);case 13:return s.next=15,(0,a.setPlanProducts)(f);case 15:return s.next=17,(0,a.setFeatures)(l,e);case 17:return s.next=19,(0,a.setFeaturesByType)(r.features_by_type,e);case 19:case"end":return s.stop()}}),s)}},7738:function(e,t,n){"use strict";n.r(t),n.d(t,{getFeatures:function(){return u},getFeaturesByType:function(){return s},getPlanByProductId:function(){return l},getPlanProductById:function(){return c},getPlanByPeriodAgnosticSlug:function(){return d},getDefaultPaidPlan:function(){return f},getDefaultFreePlan:function(){return p},getSupportedPlans:function(){return m},getPlansProducts:function(){return h},getPrices:function(){return g},getPlanByPath:function(){return v},getPlanProduct:function(){return y},isPlanEcommerce:function(){return _},isPlanFree:function(){return b},isPlanProductFree:function(){return E}});var r=n(5707),i=n(3613),o=n.n(i),a=n(4703),u=function(e,t){var n;return null!==(n=e.features[t])&&void 0!==n?n:{}},s=function(e,t){var n;return null!==(n=e.featuresByType[t])&&void 0!==n?n:[]},l=function(e,t,n){if(t)return(0,r.select)(a.Ls).getSupportedPlans(n).find((function(e){return e.productIds.indexOf(t)>-1}))},c=function(e,t){if(t)return(0,r.select)(a.Ls).getPlansProducts().find((function(e){return e.productId===t}))},d=function(e,t,n){if(t)return(0,r.select)(a.Ls).getSupportedPlans(n).find((function(e){return e.periodAgnosticSlug===t}))},f=function(e,t){return(0,r.select)(a.Ls).getSupportedPlans(t).find((function(e){return e.periodAgnosticSlug===a.AX}))},p=function(e,t){return(0,r.select)(a.Ls).getSupportedPlans(t).find((function(e){return e.periodAgnosticSlug===a.TO}))},m=function(e,t){var n;return null!==(n=e.plans[t])&&void 0!==n?n:[]},h=function(e){return e.planProducts},g=function(e,t){return o()("getPrices",{alternative:"getPlanProduct().price"}),(0,r.select)(a.Ls).getPlansProducts().reduce((function(e,t){return e[t.storeSlug]=t.price,e}),{})},v=function(e,t,n){if(t){var i=(0,r.select)(a.Ls).getPlansProducts().find((function(e){return e.pathSlug===t}));if(i)return(0,r.select)(a.Ls).getSupportedPlans(n).find((function(e){return e.periodAgnosticSlug===i.periodAgnosticSlug}))}},y=function(e,t,n){if(t&&n)return(0,r.select)(a.Ls).getPlansProducts().find((function(e){var r=e.periodAgnosticSlug===t,i=t===a.TO||e.billingPeriod===n;return r&&i}))},_=function(e,t){return t===a.iL},b=function(e,t){return t===a.TO},E=function(e,t){return t===a.Ho}},8459:function(e,t,n){"use strict";n.d(t,{d:function(){return u}});var r=n(9394),i=n(4530),o=n(3661),a=n(2699);function u(e){var t=regeneratorRuntime.mark(p),n=regeneratorRuntime.mark(y),u=regeneratorRuntime.mark(_),s=regeneratorRuntime.mark(b),l=regeneratorRuntime.mark(E),c=function(){return{type:"FETCH_NEW_SITE"}},d=function(e){return{type:"RECEIVE_NEW_SITE",response:e}},f=function(e){return{type:"RECEIVE_NEW_SITE_FAILED",error:e}};function p(n){var a,u,s,l,c;return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,{type:"FETCH_NEW_SITE"};case 2:return t.prev=2,a=n.authToken,u=(0,i.Z)(n,["authToken"]),s={client_id:e.client_id,client_secret:e.client_secret,find_available_url:!0,public:-1},l=(0,r.Z)((0,r.Z)((0,r.Z)({},s),u),{},{validate:!1}),t.next=8,(0,o._9)({path:"/sites/new",apiVersion:"1.1",method:"post",body:l,token:a});case 8:return c=t.sent,t.next=11,d(c);case 11:return t.abrupt("return",!0);case 14:return t.prev=14,t.t0=t.catch(2),t.next=18,f(t.t0);case 18:return t.abrupt("return",!1);case 19:case"end":return t.stop()}}),t,null,[[2,14]])}var m=function(e,t){return{type:"RECEIVE_SITE_TITLE",siteId:e,title:t}},h=function(e){return{type:"LAUNCH_SITE_START",siteId:e}},g=function(e){return{type:"LAUNCH_SITE_SUCCESS",siteId:e}},v=function(e,t){return{type:"LAUNCH_SITE_FAILURE",siteId:e,error:t}};function y(e){return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,h(e);case 2:return t.prev=2,t.next=5,(0,o._9)({path:"/sites/".concat(e,"/launch"),apiVersion:"1.1",method:"post"});case 5:return t.next=7,g(e);case 7:t.next=13;break;case 9:return t.prev=9,t.t0=t.catch(2),t.next=13,v(e,a.Hc.INTERNAL);case 13:case"end":return t.stop()}}),n,null,[[2,9]])}function _(e){var t;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,(0,o._9)({path:"/me/shopping-cart/"+e,apiVersion:"1.1",method:"GET"});case 2:return t=n.sent,n.abrupt("return",t);case 4:case"end":return n.stop()}}),u)}function b(e,t){var n;return regeneratorRuntime.wrap((function(r){for(;;)switch(r.prev=r.next){case 0:return r.next=2,(0,o._9)({path:"/me/shopping-cart/"+e,apiVersion:"1.1",method:"POST",body:t});case 2:return n=r.sent,r.abrupt("return",n);case 4:case"end":return r.stop()}}),s)}function E(e,t){return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.prev=0,n.next=3,(0,o._9)({path:"/sites/".concat(encodeURIComponent(e),"/settings"),apiVersion:"1.4",body:{blogname:t},method:"POST"});case 3:return n.next=5,m(e,t);case 5:n.next=9;break;case 7:n.prev=7,n.t0=n.catch(0);case 9:case"end":return n.stop()}}),l,null,[[0,7]])}return{receiveSiteDomains:function(e,t){return{type:"RECEIVE_SITE_DOMAINS",siteId:e,domains:t}},saveSiteTitle:E,receiveSiteTitle:m,fetchNewSite:c,fetchSite:function(){return{type:"FETCH_SITE"}},receiveNewSite:d,receiveNewSiteFailed:f,resetNewSiteFailed:function(){return{type:"RESET_RECEIVE_NEW_SITE_FAILED"}},createSite:p,receiveSite:function(e,t){return{type:"RECEIVE_SITE",siteId:e,response:t}},receiveSiteFailed:function(e,t){return{type:"RECEIVE_SITE_FAILED",siteId:e,response:t}},reset:function(){return{type:"RESET_SITE_STORE"}},launchSite:y,launchSiteStart:h,launchSiteSuccess:g,launchSiteFailure:v,getCart:_,setCart:b}}},2005:function(e,t,n){"use strict";n.d(t,{L:function(){return r}});var r="automattic/site"},2369:function(e,t,n){"use strict";n.d(t,{z2:function(){return d}});var r=n(5707),i=n(3661),o=n(8459),a=n(2005),u=n(2701),s=n(7862),l=n(4309),c=!1;function d(e){return c||(c=!0,(0,r.registerStore)(a.L,{actions:(0,o.d)(e),controls:i.ai,reducer:u.ZP,resolvers:s,selectors:l})),a.L}},2701:function(e,t,n){"use strict";var r=n(4530),i=n(60),o=n(1119),a=n(9394),u=n(5707),s=n(2699),l=(0,u.combineReducers)({data:function(e,t){return"RECEIVE_NEW_SITE"===t.type?t.response.blog_details:"RECEIVE_NEW_SITE_FAILED"!==t.type&&"RESET_SITE_STORE"!==t.type?e:void 0},error:function(e,t){switch(t.type){case"FETCH_NEW_SITE":case"RECEIVE_NEW_SITE":case"RESET_SITE_STORE":case"RESET_RECEIVE_NEW_SITE_FAILED":return;case"RECEIVE_NEW_SITE_FAILED":return{error:t.error.error,status:t.error.status,statusCode:t.error.statusCode,name:t.error.name,message:t.error.message}}return e},isFetching:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"FETCH_NEW_SITE":return!0;case"RECEIVE_NEW_SITE":case"RECEIVE_NEW_SITE_FAILED":case"RESET_SITE_STORE":case"RESET_RECEIVE_NEW_SITE_FAILED":return!1}return e}}),c=(0,u.combineReducers)({isFetchingSiteDetails:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"FETCH_SITE":return!0;case"RECEIVE_SITE":case"RECEIVE_SITE_FAILED":return!1}return e},newSite:l,sites:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;if("RECEIVE_SITE"===t.type)return(0,a.Z)((0,a.Z)({},e),{},(0,o.Z)({},t.siteId,t.response));if("RECEIVE_SITE_FAILED"===t.type){var n=t.siteId,u=(e[n],(0,r.Z)(e,[n].map(i.Z)));return(0,a.Z)({},u)}return"RESET_SITE_STORE"===t.type?{}:"RECEIVE_SITE_TITLE"===t.type?(0,a.Z)((0,a.Z)({},e),{},(0,o.Z)({},t.siteId,(0,a.Z)((0,a.Z)({},e[t.siteId]),{},{name:t.title}))):e},launchStatus:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;return"LAUNCH_SITE_START"===t.type?(0,a.Z)((0,a.Z)({},e),{},(0,o.Z)({},t.siteId,{status:s.uS.IN_PROGRESS,errorCode:void 0})):"LAUNCH_SITE_SUCCESS"===t.type?(0,a.Z)((0,a.Z)({},e),{},(0,o.Z)({},t.siteId,{status:s.uS.SUCCESS,errorCode:void 0})):"LAUNCH_SITE_FAILURE"===t.type?(0,a.Z)((0,a.Z)({},e),{},(0,o.Z)({},t.siteId,{status:s.uS.FAILURE,errorCode:t.error})):e},sitesDomains:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;return"RECEIVE_SITE_DOMAINS"===t.type?(0,a.Z)((0,a.Z)({},e),{},(0,o.Z)({},t.siteId,t.domains)):e}});t.ZP=c},7862:function(e,t,n){"use strict";n.r(t),n.d(t,{getSite:function(){return s},getSiteDomains:function(){return l}});var r=n(5707),i=n(3661),o=n(2005),a=regeneratorRuntime.mark(s),u=regeneratorRuntime.mark(l);function s(e){var t;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,(0,r.dispatch)(o.L).fetchSite();case 2:return n.prev=2,n.next=5,(0,i._9)({path:"/sites/"+encodeURIComponent(e),apiVersion:"1.1"});case 5:return t=n.sent,n.next=8,(0,r.dispatch)(o.L).receiveSite(e,t);case 8:n.next=14;break;case 10:return n.prev=10,n.t0=n.catch(2),n.next=14,(0,r.dispatch)(o.L).receiveSiteFailed(e,void 0);case 14:case"end":return n.stop()}}),a,null,[[2,10]])}function l(e){var t;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.prev=0,n.next=3,(0,i._9)({path:"/sites/"+encodeURIComponent(e)+"/domains",apiVersion:"1.2"});case 3:return t=n.sent,n.next=6,(0,r.dispatch)(o.L).receiveSiteDomains(e,null==t?void 0:t.domains);case 6:n.next=10;break;case 8:n.prev=8,n.t0=n.catch(0);case 10:case"end":return n.stop()}}),u,null,[[0,8]])}},4309:function(e,t,n){"use strict";n.r(t),n.d(t,{getState:function(){return a},getNewSite:function(){return u},getNewSiteError:function(){return s},isFetchingSite:function(){return l},isFetchingSiteDetails:function(){return c},isNewSite:function(){return d},getSite:function(){return f},getSiteTitle:function(){return p},isSiteLaunched:function(){return m},isSiteLaunching:function(){return h},getSiteDomains:function(){return g},getPrimarySiteDomain:function(){return v},getSiteSubdomain:function(){return y}});var r=n(5707),i=n(2005),o=n(2699),a=function(e){return e},u=function(e){return e.newSite.data},s=function(e){return e.newSite.error},l=function(e){return e.newSite.isFetching},c=function(e){return e.isFetchingSiteDetails},d=function(e){return!!e.newSite.data},f=function(e,t){return e.sites[t]},p=function(e,t){var n;return null===(n=(0,r.select)(i.L).getSite(t))||void 0===n?void 0:n.name},m=function(e,t){var n;return(null===(n=e.launchStatus[t])||void 0===n?void 0:n.status)===o.uS.SUCCESS},h=function(e,t){var n;return(null===(n=e.launchStatus[t])||void 0===n?void 0:n.status)===o.uS.IN_PROGRESS},g=function(e,t){return e.sitesDomains[t]},v=function(e,t){var n;return null===(n=(0,r.select)(i.L).getSiteDomains(t))||void 0===n?void 0:n.find((function(e){return e.primary_domain}))},y=function(e,t){var n;return null===(n=(0,r.select)(i.L).getSiteDomains(t))||void 0===n?void 0:n.find((function(e){return e.is_subdomain}))}},2699:function(e,t,n){"use strict";var r,i,o;n.d(t,{Hc:function(){return i},uS:function(){return o}}),function(e){e[e.PublicIndexed=1]="PublicIndexed",e[e.PublicNotIndexed=0]="PublicNotIndexed",e[e.Private=-1]="Private"}(r||(r={})),function(e){e.INTERNAL="internal"}(i||(i={})),function(e){e.UNINITIALIZED="unintialized",e.IN_PROGRESS="in_progress",e.SUCCESS="success",e.FAILURE="failure"}(o||(o={}))},4366:function(e,t,n){"use strict";n.d(t,{L:function(){return r}});var r="automattic/wpcom-features"},2613:function(e,t,n){"use strict";n.d(t,{$:function(){return u}});var r=n(4703),i=r.YS,o=r.Gz,a=r.hx,u={domain:{id:"domain",minSupportedPlan:i},store:{id:"store",minSupportedPlan:r.iL},seo:{id:"seo",minSupportedPlan:a},plugins:{id:"plugins",minSupportedPlan:a},"ad-free":{id:"ad-free",minSupportedPlan:i},"image-storage":{id:"image-storage",minSupportedPlan:o},"video-storage":{id:"video-storage",minSupportedPlan:o},support:{id:"support",minSupportedPlan:a}}},182:function(e,t,n){"use strict";n.d(t,{z:function(){return l}});var r=n(5707),i=n(9866),o=n(4366),a=n(8638),u=n(335),s=!1;function l(){return s||(s=!0,(0,r.registerStore)(o.L,{controls:i.controls,reducer:a.Z,selectors:u})),o.L}},8638:function(e,t,n){"use strict";var r=n(2613);t.Z=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:r.$;return e}},335:function(e,t,n){"use strict";n.r(t),n.d(t,{getAllFeatures:function(){return i},getRecommendedPlanSlug:function(){return o}});var r=n(4703),i=function(e){return e},o=function(e,t){var n=i(e);if(t.length)return t.reduce((function(e,t){var i=n[t].minSupportedPlan;return r.xT.indexOf(i)>r.xT.indexOf(e)?i:e}),n[t[0]].minSupportedPlan)}},3661:function(e,t,n){"use strict";n.d(t,{_9:function(){return a},An:function(){return u},ai:function(){return s}});var r,i=n(6470),o=n(8552),a=function(e){return{type:"WPCOM_REQUEST",request:e}},u=function(e,t){return{type:"FETCH_AND_PARSE",resource:e,options:t}},s={WPCOM_REQUEST:function(e){var t=e.request;return(0,o.ZP)(t)},FETCH_AND_PARSE:(r=(0,i.Z)(regeneratorRuntime.mark((function e(t){var n,r,i;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=t.resource,r=t.options,e.next=3,window.fetch(n,r);case 3:return i=e.sent,e.t0=i.ok,e.next=7,i.json();case 7:return e.t1=e.sent,e.abrupt("return",{ok:e.t0,body:e.t1});case 9:case"end":return e.stop()}}),e)}))),function(_x){return r.apply(this,arguments)}),RELOAD_PROXY:function(){(0,o.sS)()},REQUEST_ALL_BLOGS_ACCESS:function(){return(0,o.Vw)()},WAIT:function(e){var t=e.ms;return new Promise((function(e){return setTimeout(e,t)}))}}},7003:function(e,t,n){"use strict";var r=n(3258),i=n(3027),o=n(7997),a=n(5707),u=n(5869),s=n(3383),l=n(8675),c=n(2779),d=n.n(c),f=(n(3804),n(3300));n(8062);t.Z=function(e){var t=e.onSelect,n=e.selected,__=(0,l.useI18n)().__,c=(0,i.useState)(!1),p=(0,r.Z)(c,2),m=p[0],h=p[1],g=function(e){h(!1),t(e)},v=(0,a.useSelect)((function(e){return e(f.GN).getCategories()})),y=__("All Categories","full-site-editing");return(0,i.createElement)("div",{className:d()("domain-categories",{"is-open":m})},(0,i.createElement)(o.Button,{className:"domain-categories__dropdown-button",onClick:function(){return h(!m)}},(0,i.createElement)("span",null,null!=n?n:y),(0,i.createElement)(u.Z,{icon:s.Z,size:16})),(0,i.createElement)("ul",{className:"domain-categories__item-group"},(0,i.createElement)("li",{className:d()("domain-categories__item",{"is-selected":!n})},(0,i.createElement)(o.Button,{onClick:function(){return g()}},__("View all","full-site-editing"))),v.map((function(e){var t=e.slug,r=e.title;return(0,i.createElement)("li",{key:t,className:d()("domain-categories__item",{"is-selected":t===n})},(0,i.createElement)(o.Button,{onClick:function(){return g(t)}},r))}))))}},6325:function(e,t,n){"use strict";n.d(t,{q:function(){return o}});var r=n(3027),i=n(8675),o=(n(3804),function(){var e=(0,i.useI18n)(),__=e.__,t=e.isRTL;return(0,r.createElement)("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",x:"0px",y:"0px",viewBox:"0 0 300 40",xmlSpace:"preserve",width:"300",style:t()?{transform:"scaleX(-1)"}:void 0},(0,r.createElement)("rect",{x:"0",width:"310",height:"50",rx:"10",fill:"#D8D8D8"}),(0,r.createElement)("rect",{x:"8",y:"8",width:"25",height:"25",rx:"5",fill:"#fff"}),(0,r.createElement)("rect",{x:"40",y:"8",width:"25",height:"25",rx:"5",fill:"#fff"}),(0,r.createElement)("rect",{x:"72",y:"8",width:"300",height:"25",rx:"5",fill:"#fff"}),(0,r.createElement)("text",{x:"80",y:"26",direction:"ltr",textAnchor:t()?"end":"start",transform:t()?"scale(-1,1) translate(-160,0)":void 0},(0,r.createElement)("tspan",{fill:"#999"},(0,r.createElement)("tspan",null,"https://")),(0,r.createElement)("tspan",{fill:"#515151",dx:"4.5"},__("example.com","full-site-editing"))))})},1614:function(e,t,n){"use strict";var r=n(3027),i=n(2779),o=n.n(i);n(3804);t.Z=function(e){var t=e.type;return(0,r.createElement)("div",{className:o()("domain-picker__suggestion-item placeholder","type-".concat(t))},(0,r.createElement)("div",{className:"domain-picker__suggestion-item-name placeholder"}),(0,r.createElement)("div",{className:"domain-picker__price placeholder"}))}},7226:function(e,t,n){"use strict";var r=n(7560),i=n(4530),o=n(3027),a=n(3804),u=n(6461),s=a.forwardRef((function(e,t){var n=e.type,a=e.disabled,s=(0,i.Z)(e,["type","disabled"]);return n===u.ln?(0,o.createElement)("div",s):(0,o.createElement)("button",(0,r.Z)({ref:t,disabled:a},s))}));t.Z=s},6461:function(e,t,n){"use strict";n.d(t,{fe:function(){return y},ln:function(){return _},vv:function(){return b}});var r=n(7560),i=n(3258),o=n(3027),a=n(6115),u=n(849),s=n(7498),l=n(7997),c=n(1417),d=n(3163),f=n(8675),p=n(2779),m=n.n(p),h=n(3804),g=n(413),v=n(7226),y="radio",_="button",b="individual-item",E=function(e){var t=e.isUnavailable,n=e.domain,r=e.isLoading,p=e.cost,E=e.railcarId,S=e.hstsRequired,w=void 0!==S&&S,A=e.isFree,P=void 0!==A&&A,x=e.isExistingSubdomain,C=void 0!==x&&x,N=e.isRecommended,I=void 0!==N&&N,Z=e.onSelect,O=e.onRender,M=e.selected,L=e.type,T=void 0===L?y:L,D=e.buttonRef,F=(0,f.useI18n)(),__=F.__,R=F.hasTranslation,$=(0,u.bU)(),k=(0,s.Iu)(),j=!(0,c.useViewportMatch)("small",">="),U=n.indexOf("."),B=n.slice(0,U),G=n.slice(U),V=h.useState(),H=(0,i.Z)(V,2),Y=H[0],z=H[1],W=h.useState(),K=(0,i.Z)(W,2),q=K[0],J=K[1],X=__("Default","full-site-editing"),Q=__("Free","full-site-editing"),ee=T===b?X:Q,te=__("Included with annual plans","full-site-editing"),ne=__("Included in annual plans","full-site-editing"),re="en"===$||null!=R&&R("Included in annual plans")?ne:te,ie=__("<strong>First year included</strong> in paid plans","full-site-editing"),oe=__("<strong>First year included</strong> in annual plans","full-site-editing"),ae="en"===$||null!=R&&R("<strong>First year included</strong> in annual plans")?oe:ie,ue=j?re:(0,o.createInterpolateElement)(ae,{strong:(0,o.createElement)("strong",null)});h.useEffect((function(){n!==Y&&q!==E&&E&&(O(),z(n),J(E))}),[n,Y,q,E,O]);var se=function(){q&&(0,a.Lo)({action:"domain_selected",railcarId:q}),Z(n)},le=__("Selected","full-site-editing"),ce=__("Select","full-site-editing");return(0,o.createElement)(v.Z,{ref:D,type:T,key:B,className:m()("domain-picker__suggestion-item",{"is-free":P,"is-selected":M,"is-unavailable":t},"type-".concat(T)),onClick:T!==_?se:void 0,disabled:t},T===y&&(r?(0,o.createElement)(l.Spinner,null):(0,o.createElement)("span",{className:m()("domain-picker__suggestion-radio-circle",{"is-checked":M,"is-unavailable":t})})),(0,o.createElement)("div",{className:"domain-picker__suggestion-item-name"},(0,o.createElement)("div",{className:"domain-picker__suggestion-item-name-inner"},(0,o.createElement)("span",{className:m()("domain-picker__domain-wrapper",{"with-margin":!w})},(0,o.createElement)("span",{className:"domain-picker__domain-sub-domain"},B),(0,o.createElement)("span",{className:"domain-picker__domain-tld"},G)),I&&!t&&(0,o.createElement)("div",{className:"domain-picker__badge is-recommended"},__("Recommended","full-site-editing")),w&&(0,o.createElement)(g.Z,{position:j?"bottom center":"middle right",noArrow:!1,className:"domain-picker__info-tooltip"},(0,o.createInterpolateElement)(__("All domains ending with <tld /> require an SSL certificate to host a website. When you host this domain at WordPress.com an SSL certificate is included. <learn_more_link>Learn more</learn_more_link>","full-site-editing"),{tld:(0,o.createElement)("b",null,G),learn_more_link:(0,o.createElement)("a",{target:"_blank",rel:"noreferrer",href:k("https://wordpress.com/support/https-ssl")})}))),C&&T!==b&&(0,o.createElement)("div",{className:"domain-picker__change-subdomain-tip"},__("You can change your free subdomain later under Domain Settings.","full-site-editing"))),(0,o.createElement)("div",{className:m()("domain-picker__price",{"is-paid":!P})},t&&__("Unavailable","full-site-editing"),P&&!t&&ee,!P&&!t&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("span",{className:"domain-picker__price-cost"},(0,d.sprintf)(__("%s/year","full-site-editing"),p)),(0,o.createElement)("span",{className:"domain-picker__price-inclusive"}," ",ue," "),(0,o.createElement)("span",{className:"domain-picker__price-renewal"},(0,d.sprintf)(__("Renews at: %s /year","full-site-editing"),p)))),T===_&&(r?(0,o.createElement)(l.Spinner,null):(0,o.createElement)("div",{className:"domain-picker__action"},(0,o.createElement)(l.Button,{ref:D,isSecondary:!0,className:m()("domain-picker__suggestion-select-button",{"is-selected":M&&!t}),disabled:t,onClick:se},M&&!t?le:ce))))};t.ZP=h.forwardRef((function(e,t){return(0,o.createElement)(E,(0,r.Z)({},e,{buttonRef:t}))}))},605:function(e,t,n){"use strict";var r=n(3027),i=n(9211),o=n(8675),a=(n(3804),n(7226));t.Z=function(e){var t=e.onClick,n=(0,o.useI18n)(),__=n.__,_x=n._x;return(0,r.createElement)(a.Z,{type:"button",className:"domain-picker__suggestion-item type-link",onClick:t},(0,r.createElement)("div",{className:"domain-picker__suggestion-item-name"},(0,r.createElement)("span",{className:"domain-picker__domain-wrapper with-margin with-bold-text"},__("Already own a domain?","full-site-editing")),(0,r.createElement)("div",null,(0,r.createElement)("span",{className:"domain-picker__item-tip"},_x("You can use it as your site's address.","Upgrades: Register domain description","full-site-editing")))),(0,r.createElement)(i.b4,{arrow:"right"},_x("Use a domain I own","Domain transfer or mapping suggestion button","full-site-editing")))}},2999:function(e,t,n){"use strict";var r=n(3258),i=n(3027),o=n(6115),a=n(584),u=n(7997),s=n(5869),l=n(7108),c=n(8675),d=n(1205),f=n(3804),p=n.n(f),m=n(3300),h=n(5241),g=n(1045),v=n(1071),y=n(3446),_=n(7003),b=n(6325),E=n(6461),S=n(1614),w=n(605),A=(n(3437),function(e){var t=e.groupItems,n=e.children;return t?(0,i.createElement)("div",{className:"domain-picker__suggestion-item-group"},n):(0,i.createElement)(f.Fragment,null,n)}),P=function(e){var t=e.children;return(0,i.createElement)("p",{className:"domain-picker__suggestion-group-label"},t)};t.ZP=function(e){var t,n=e.header,x=e.showDomainCategories,C=e.onDomainSelect,N=e.onExistingSubdomainSelect,I=e.quantity,Z=void 0===I?m.SL:I,O=e.quantityExpanded,M=void 0===O?m.Mm:O,L=e.onDomainSearchBlur,T=e.analyticsFlowId,D=e.analyticsUiAlgo,F=e.initialDomainSearch,R=void 0===F?"":F,$=e.onSetDomainSearch,k=e.currentDomain,j=e.isCheckingDomainAvailability,U=e.existingSubdomain,B=e.segregateFreeAndPaid,G=void 0!==B&&B,V=e.showSearchField,H=void 0===V||V,Y=e.itemType,z=void 0===Y?E.fe:Y,W=e.locale,K=e.areDependenciesLoading,q=void 0!==K&&K,J=e.orderSubDomainsLast,X=void 0!==J&&J,Q=e.onUseYourDomainClick,ee=e.vendor,te=void 0===ee?(0,y.iY)():ee,ne=e.showRecommendationLabel,re=void 0===ne||ne,__=(0,c.useI18n)().__,ie=__("Search for a domain","full-site-editing"),oe=(0,f.useState)(!1),ae=(0,r.Z)(oe,2),ue=ae[0],se=ae[1],le=(0,f.useState)(R),ce=(0,r.Z)(le,2),de=ce[0],fe=ce[1],pe=(0,f.useState)(),me=(0,r.Z)(pe,2),he=me[0],ge=me[1],ve=(0,h.O)(de.trim(),M,he,W)||{},ye=ve.allDomainSuggestions,_e=ve.errorMessage,be=ve.state,Ee=ve.retryRequest,Se=null==ye?void 0:ye.filter((function(e){return!(U&&e.is_free)})).slice(0,ue?M-1:Z-1),we=null==Se?void 0:Se.findIndex((function(e){return!e.is_free&&!e.unavailable})),Ae=(0,g.$)(Se,U,k);Ae&&(null==Se||Se.push(Ae));var Pe=(0,v.P)();(0,f.useEffect)((function(){se(!1)}),[de]);var xe=(0,f.useState)(),Ce=(0,r.Z)(xe,2),Ne=Ce[0],Ie=Ce[1];(0,f.useEffect)((function(){ye&&Ie((0,o.k9)("suggestion"))}),[ye,Ie]),(0,f.useEffect)((function(){H||fe(R)}),[R,H]);var Ze=p().useRef([]);(0,f.useEffect)((function(){var e,t;ue&&(null===(e=Ze.current[Z])||void 0===e||null===(t=e.focus)||void 0===t||t.call(e))}),[ue,Z]);var Oe=function(e,t,n,r){var i="/domains/search/".concat(te,"/").concat(T).concat(he?"/"+he:"");(0,o.Sn)({uiAlgo:"/".concat(T,"/").concat(D),fetchAlgo:i,query:de,railcarId:t,result:r?e+"#recommended":e,uiPosition:n})},Me=p().useRef(),Le=be===a.r.Failure,Te=(null===(t=de.trim)||void 0===t?void 0:t.call(de).length)<=1,De=!Le&&!Te,Fe=!Le&&Te,Re=Z;Ae&&(Re+=1),Q&&(Re+=1),U&&(Re-=1);var $e=["professional"];return U&&$e.unshift("sub-domain"),X&&$e.reverse(),(0,i.createElement)("div",{className:"domain-picker"},n&&n,H&&(0,i.createElement)("div",{className:"domain-picker__search"},(0,i.createElement)("form",{action:"",onSubmit:function(e){var t;e.preventDefault(),null==Me||null===(t=Me.current)||void 0===t||t.blur()}},(0,i.createElement)("div",{className:"domain-picker__search-icon"},(0,i.createElement)(s.Z,{icon:l.Z})),(0,i.createElement)(u.TextControl,{ref:function(e){Me.current=e},hideLabelFromVision:!0,name:"search",label:ie,placeholder:ie,onChange:function(e){fe(e),$&&$(e)},onBlur:function(e){L&&L(e.currentTarget.value)},value:de,dir:"ltr"}))),Le&&(0,i.createElement)(u.Notice,{className:"domain-picker__error",status:"error",isDismissible:!1},(0,i.createElement)("p",{className:"domain-picker__error-message"},_e||__("An error has occurred, please check your connection and retry.","full-site-editing")),(0,i.createElement)(u.Button,{isPrimary:!0,className:"domain-picker__error-retry-btn",onClick:Ee},__("Retry","full-site-editing"))),(De||q)&&(0,i.createElement)("div",{className:"domain-picker__body"},x&&(0,i.createElement)("div",{className:"domain-picker__aside"},(0,i.createElement)(_.Z,{selected:he,onSelect:ge})),(0,i.createElement)("div",{className:"domain-picker__suggestion-sections"},(0,i.createElement)("div",{className:"domain-picker__sugggested-items-container"},$e.map((function(e){return"sub-domain"===e?(0,i.createElement)(f.Fragment,{key:e},G&&(0,i.createElement)(P,null,__("Keep sub-domain","full-site-editing")),(0,i.createElement)(A,{key:e,groupItems:G},!q&&U&&(0,i.createElement)(E.ZP,{key:null==U?void 0:U.domain_name,domain:null==U?void 0:U.domain_name,cost:"Free",isFree:!0,isExistingSubdomain:!0,railcarId:Ne?"".concat(Ne,0):void 0,onRender:function(){return Oe(null==U?void 0:U.domain_name,"".concat(Ne,0),0,!1)},selected:(null==k?void 0:k.domain_name)===(null==U?void 0:U.domain_name),onSelect:function(){null==N||N(null==U?void 0:U.domain_name)},type:z})||(0,i.createElement)(S.Z,{type:z}))):(0,i.createElement)(f.Fragment,{key:e},G&&(0,i.createElement)(P,null,__("Professional domains","full-site-editing")),(0,i.createElement)(A,{key:e,groupItems:G},!q&&(null==Se?void 0:Se.map((function(e,t){var n,r=null!=U&&U.domain_name?t+1:t,o=t===we,a=null===(n=Pe[null==e?void 0:e.domain_name])||void 0===n?void 0:n.status,u=!a||(null===m.vn||void 0===m.vn?void 0:m.vn.indexOf(a))>-1;return(0,i.createElement)(E.ZP,{ref:function(e){Ze.current[r]=e},key:e.domain_name,domain:e.domain_name,cost:e.cost,isUnavailable:!u||(null==e?void 0:e.unavailable),isLoading:(null==k?void 0:k.domain_name)===e.domain_name&&j,hstsRequired:e.hsts_required,isFree:e.is_free,isRecommended:re&&o,railcarId:Ne?"".concat(Ne).concat(r):void 0,onRender:function(){return Oe(e.domain_name,"".concat(Ne).concat(r),r,o)},onSelect:function(){C(e)},selected:(null==k?void 0:k.domain_name)===e.domain_name,type:z})})))||(0,d.times)(Re,(function(e){return(0,i.createElement)(S.Z,{type:z,key:e})})),Q&&!!Se&&(0,i.createElement)(w.Z,{onClick:Q})))}))),!ue&&Z<M&&(null==ye?void 0:ye.length)&&(null==ye?void 0:ye.length)>Z&&(0,i.createElement)("div",{className:"domain-picker__show-more"},(0,i.createElement)(u.Button,{onClick:function(){return se(!0)},isLink:!0},__("View more results","full-site-editing"))))),Fe&&!q&&(0,i.createElement)("div",{className:"domain-picker__empty-state"},(0,i.createElement)("p",{className:"domain-picker__empty-state--text"},__("A domain name is the site address people type in their browser to visit your site.","full-site-editing")),(0,i.createElement)("div",null,(0,i.createElement)(b.q,null))))}},413:function(e,t,n){"use strict";var r=n(3258),i=n(3027),o=n(7997),a=n(5614),u=n(2779),s=n.n(u),l=n(3804);n(101);t.Z=function(e){var t=e.children,n=e.className,u=e.id,c=e.position,d=void 0===c?"bottom center":c,f=e.noArrow,p=void 0===f||f,m=(0,l.useState)(!1),h=(0,r.Z)(m,2),g=h[0],v=h[1];return(0,i.createElement)((function(e){return(0,i.createElement)(o.Button,e)}),{icon:a.Z,onClick:function(e){v(!g),e.stopPropagation()},className:"info-tooltip","data-testid":"info-tooltip"},g&&(0,i.createElement)(o.Popover,{id:u,className:s()("info-tooltip__content",n),onClose:function(){v(!1)},position:d,noArrow:p},t))}},3300:function(e,t,n){"use strict";n.d(t,{SL:function(){return i},Mm:function(){return o},F9:function(){return a},dP:function(){return u},GN:function(){return s},vn:function(){return l}});var r=n(8077),i=5,o=10,a=2,u=300,s=r.z(),l=["available","available_premium"]},1071:function(e,t,n){"use strict";n.d(t,{P:function(){return o}});var r=n(5707),i=n(3300);function o(){return(0,r.useSelect)((function(e){return e(i.GN).getDomainAvailabilities()}),[])}},5241:function(e,t,n){"use strict";n.d(t,{O:function(){return s}});var r=n(9394),i=n(3258),o=n(5707),a=n(7127),u=n(3300);function s(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1?arguments[1]:void 0,n=arguments.length>2?arguments[2]:void 0,s=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"en",l=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},c=(0,a.Z)(e,u.dP),d=(0,i.Z)(c,1),f=d[0],p=(0,o.useDispatch)(u.GN),m=p.invalidateResolutionForStoreSelector;return(0,o.useSelect)((function(e){if(f&&!(f.length<u.F9)){var i=e(u.GN),o=i.getDomainSuggestions,a=i.getDomainState,c=i.getDomainErrorMessage;return{allDomainSuggestions:o(f,(0,r.Z)({include_wordpressdotcom:!0,include_dotblogsubdomain:!1,quantity:t+1,locale:s,category_slug:n},l)),state:a(),errorMessage:c(),retryRequest:function(){m("__internalGetDomainSuggestions")}}}}),[f,n,t])}},1045:function(e,t,n){"use strict";n.d(t,{$:function(){return a}});var r=n(1766),i=n(3258),o=n(3804);function a(e,t,n){var a=o.useState(),u=(0,i.Z)(a,2),s=u[0],l=u[1],c=t&&Array.isArray(e)?[t].concat((0,r.Z)(e)):e;if(o.useEffect((function(){var e=null==c?void 0:c.some((function(e){return e.domain_name===(null==n?void 0:n.domain_name)}));null!=c&&c.length&&!e&&l(n)}),[n,c]),!(null==c?void 0:c.some((function(e){return(null==e?void 0:e.domain_name)===(null==s?void 0:s.domain_name)}))))return s}},3446:function(e,t,n){"use strict";function r(e){if(e)return{domain_name:e,relevance:1,supports_privacy:!0,vendor:"",cost:"",product_id:0,product_slug:"",raw_price:0,currency_code:"",unavailable:!1}}function i(e){return void 0!==e.normalize&&!!e.normalize("NFD").replace(/[\u0300-\u036f]/g,"").match(/[a-z0-9-.\s]/i)}function o(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return e.isSignup&&!e.isDomainOnly?"variation4_front":e.isPremium?"variation8_front":"variation2_front"}n.d(t,{nf:function(){return r},Qi:function(){return i},iY:function(){return o}})},3759:function(e,t,n){"use strict";n.d(t,{X:function(){return i}});var r={AED:{symbol:"د.إ.‏",grouping:",",decimal:".",precision:2},AFN:{symbol:"؋",grouping:",",decimal:".",precision:2},ALL:{symbol:"Lek",grouping:".",decimal:",",precision:2},AMD:{symbol:"֏",grouping:",",decimal:".",precision:2},ANG:{symbol:"ƒ",grouping:",",decimal:".",precision:2},AOA:{symbol:"Kz",grouping:",",decimal:".",precision:2},ARS:{symbol:"$",grouping:".",decimal:",",precision:2},AUD:{symbol:"A$",grouping:",",decimal:".",precision:2},AWG:{symbol:"ƒ",grouping:",",decimal:".",precision:2},AZN:{symbol:"₼",grouping:" ",decimal:",",precision:2},BAM:{symbol:"КМ",grouping:".",decimal:",",precision:2},BBD:{symbol:"Bds$",grouping:",",decimal:".",precision:2},BDT:{symbol:"৳",grouping:",",decimal:".",precision:0},BGN:{symbol:"лв.",grouping:" ",decimal:",",precision:2},BHD:{symbol:"د.ب.‏",grouping:",",decimal:".",precision:3},BIF:{symbol:"FBu",grouping:",",decimal:".",precision:0},BMD:{symbol:"$",grouping:",",decimal:".",precision:2},BND:{symbol:"$",grouping:".",decimal:",",precision:0},BOB:{symbol:"Bs",grouping:".",decimal:",",precision:2},BRL:{symbol:"R$",grouping:".",decimal:",",precision:2},BSD:{symbol:"$",grouping:",",decimal:".",precision:2},BTC:{symbol:"Ƀ",grouping:",",decimal:".",precision:2},BTN:{symbol:"Nu.",grouping:",",decimal:".",precision:1},BWP:{symbol:"P",grouping:",",decimal:".",precision:2},BYR:{symbol:"р.",grouping:" ",decimal:",",precision:2},BZD:{symbol:"BZ$",grouping:",",decimal:".",precision:2},CAD:{symbol:"C$",grouping:",",decimal:".",precision:2},CDF:{symbol:"FC",grouping:",",decimal:".",precision:2},CHF:{symbol:"CHF",grouping:"'",decimal:".",precision:2},CLP:{symbol:"$",grouping:".",decimal:",",precision:2},CNY:{symbol:"¥",grouping:",",decimal:".",precision:2},COP:{symbol:"$",grouping:".",decimal:",",precision:2},CRC:{symbol:"₡",grouping:".",decimal:",",precision:2},CUC:{symbol:"CUC",grouping:",",decimal:".",precision:2},CUP:{symbol:"$MN",grouping:",",decimal:".",precision:2},CVE:{symbol:"$",grouping:",",decimal:".",precision:2},CZK:{symbol:"Kč",grouping:" ",decimal:",",precision:2},DJF:{symbol:"Fdj",grouping:",",decimal:".",precision:0},DKK:{symbol:"kr.",grouping:"",decimal:",",precision:2},DOP:{symbol:"RD$",grouping:",",decimal:".",precision:2},DZD:{symbol:"د.ج.‏",grouping:",",decimal:".",precision:2},EGP:{symbol:"ج.م.‏",grouping:",",decimal:".",precision:2},ERN:{symbol:"Nfk",grouping:",",decimal:".",precision:2},ETB:{symbol:"ETB",grouping:",",decimal:".",precision:2},EUR:{symbol:"€",grouping:".",decimal:",",precision:2},FJD:{symbol:"FJ$",grouping:",",decimal:".",precision:2},FKP:{symbol:"£",grouping:",",decimal:".",precision:2},GBP:{symbol:"£",grouping:",",decimal:".",precision:2},GEL:{symbol:"Lari",grouping:" ",decimal:",",precision:2},GHS:{symbol:"₵",grouping:",",decimal:".",precision:2},GIP:{symbol:"£",grouping:",",decimal:".",precision:2},GMD:{symbol:"D",grouping:",",decimal:".",precision:2},GNF:{symbol:"FG",grouping:",",decimal:".",precision:0},GTQ:{symbol:"Q",grouping:",",decimal:".",precision:2},GYD:{symbol:"G$",grouping:",",decimal:".",precision:2},HKD:{symbol:"HK$",grouping:",",decimal:".",precision:2},HNL:{symbol:"L.",grouping:",",decimal:".",precision:2},HRK:{symbol:"kn",grouping:".",decimal:",",precision:2},HTG:{symbol:"G",grouping:",",decimal:".",precision:2},HUF:{symbol:"Ft",grouping:".",decimal:",",precision:0},IDR:{symbol:"Rp",grouping:".",decimal:",",precision:0},ILS:{symbol:"₪",grouping:",",decimal:".",precision:2},INR:{symbol:"₹",grouping:",",decimal:".",precision:2},IQD:{symbol:"د.ع.‏",grouping:",",decimal:".",precision:2},IRR:{symbol:"﷼",grouping:",",decimal:"/",precision:2},ISK:{symbol:"kr.",grouping:".",decimal:",",precision:0},JMD:{symbol:"J$",grouping:",",decimal:".",precision:2},JOD:{symbol:"د.ا.‏",grouping:",",decimal:".",precision:3},JPY:{symbol:"¥",grouping:",",decimal:".",precision:0},KES:{symbol:"S",grouping:",",decimal:".",precision:2},KGS:{symbol:"сом",grouping:" ",decimal:"-",precision:2},KHR:{symbol:"៛",grouping:",",decimal:".",precision:0},KMF:{symbol:"CF",grouping:",",decimal:".",precision:2},KPW:{symbol:"₩",grouping:",",decimal:".",precision:0},KRW:{symbol:"₩",grouping:",",decimal:".",precision:0},KWD:{symbol:"د.ك.‏",grouping:",",decimal:".",precision:3},KYD:{symbol:"$",grouping:",",decimal:".",precision:2},KZT:{symbol:"₸",grouping:" ",decimal:"-",precision:2},LAK:{symbol:"₭",grouping:",",decimal:".",precision:0},LBP:{symbol:"ل.ل.‏",grouping:",",decimal:".",precision:2},LKR:{symbol:"₨",grouping:",",decimal:".",precision:0},LRD:{symbol:"L$",grouping:",",decimal:".",precision:2},LSL:{symbol:"M",grouping:",",decimal:".",precision:2},LYD:{symbol:"د.ل.‏",grouping:",",decimal:".",precision:3},MAD:{symbol:"د.م.‏",grouping:",",decimal:".",precision:2},MDL:{symbol:"lei",grouping:",",decimal:".",precision:2},MGA:{symbol:"Ar",grouping:",",decimal:".",precision:0},MKD:{symbol:"ден.",grouping:".",decimal:",",precision:2},MMK:{symbol:"K",grouping:",",decimal:".",precision:2},MNT:{symbol:"₮",grouping:" ",decimal:",",precision:2},MOP:{symbol:"MOP$",grouping:",",decimal:".",precision:2},MRO:{symbol:"UM",grouping:",",decimal:".",precision:2},MTL:{symbol:"₤",grouping:",",decimal:".",precision:2},MUR:{symbol:"₨",grouping:",",decimal:".",precision:2},MVR:{symbol:"MVR",grouping:",",decimal:".",precision:1},MWK:{symbol:"MK",grouping:",",decimal:".",precision:2},MXN:{symbol:"MX$",grouping:",",decimal:".",precision:2},MYR:{symbol:"RM",grouping:",",decimal:".",precision:2},MZN:{symbol:"MT",grouping:",",decimal:".",precision:0},NAD:{symbol:"N$",grouping:",",decimal:".",precision:2},NGN:{symbol:"₦",grouping:",",decimal:".",precision:2},NIO:{symbol:"C$",grouping:",",decimal:".",precision:2},NOK:{symbol:"kr",grouping:" ",decimal:",",precision:2},NPR:{symbol:"₨",grouping:",",decimal:".",precision:2},NZD:{symbol:"NZ$",grouping:",",decimal:".",precision:2},OMR:{symbol:"﷼",grouping:",",decimal:".",precision:3},PAB:{symbol:"B/.",grouping:",",decimal:".",precision:2},PEN:{symbol:"S/.",grouping:",",decimal:".",precision:2},PGK:{symbol:"K",grouping:",",decimal:".",precision:2},PHP:{symbol:"₱",grouping:",",decimal:".",precision:2},PKR:{symbol:"₨",grouping:",",decimal:".",precision:2},PLN:{symbol:"zł",grouping:" ",decimal:",",precision:2},PYG:{symbol:"₲",grouping:".",decimal:",",precision:2},QAR:{symbol:"﷼",grouping:",",decimal:".",precision:2},RON:{symbol:"lei",grouping:".",decimal:",",precision:2},RSD:{symbol:"Дин.",grouping:".",decimal:",",precision:2},RUB:{symbol:"₽",grouping:" ",decimal:",",precision:2},RWF:{symbol:"RWF",grouping:" ",decimal:",",precision:2},SAR:{symbol:"﷼",grouping:",",decimal:".",precision:2},SBD:{symbol:"S$",grouping:",",decimal:".",precision:2},SCR:{symbol:"₨",grouping:",",decimal:".",precision:2},SDD:{symbol:"LSd",grouping:",",decimal:".",precision:2},SDG:{symbol:"£‏",grouping:",",decimal:".",precision:2},SEK:{symbol:"kr",grouping:",",decimal:".",precision:2},SGD:{symbol:"S$",grouping:",",decimal:".",precision:2},SHP:{symbol:"£",grouping:",",decimal:".",precision:2},SLL:{symbol:"Le",grouping:",",decimal:".",precision:2},SOS:{symbol:"S",grouping:",",decimal:".",precision:2},SRD:{symbol:"$",grouping:",",decimal:".",precision:2},STD:{symbol:"Db",grouping:",",decimal:".",precision:2},SVC:{symbol:"₡",grouping:",",decimal:".",precision:2},SYP:{symbol:"£",grouping:",",decimal:".",precision:2},SZL:{symbol:"E",grouping:",",decimal:".",precision:2},THB:{symbol:"฿",grouping:",",decimal:".",precision:2},TJS:{symbol:"TJS",grouping:" ",decimal:";",precision:2},TMT:{symbol:"m",grouping:" ",decimal:",",precision:0},TND:{symbol:"د.ت.‏",grouping:",",decimal:".",precision:3},TOP:{symbol:"T$",grouping:",",decimal:".",precision:2},TRY:{symbol:"TL",grouping:".",decimal:",",precision:2},TTD:{symbol:"TT$",grouping:",",decimal:".",precision:2},TVD:{symbol:"$T",grouping:",",decimal:".",precision:2},TWD:{symbol:"NT$",grouping:",",decimal:".",precision:2},TZS:{symbol:"TSh",grouping:",",decimal:".",precision:2},UAH:{symbol:"₴",grouping:" ",decimal:",",precision:2},UGX:{symbol:"USh",grouping:",",decimal:".",precision:2},USD:{symbol:"$",grouping:",",decimal:".",precision:2},UYU:{symbol:"$U",grouping:".",decimal:",",precision:2},UZS:{symbol:"сўм",grouping:" ",decimal:",",precision:2},VEB:{symbol:"Bs.",grouping:",",decimal:".",precision:2},VEF:{symbol:"Bs. F.",grouping:".",decimal:",",precision:2},VND:{symbol:"₫",grouping:".",decimal:",",precision:1},VUV:{symbol:"VT",grouping:",",decimal:".",precision:0},WST:{symbol:"WS$",grouping:",",decimal:".",precision:2},XAF:{symbol:"F",grouping:",",decimal:".",precision:2},XCD:{symbol:"$",grouping:",",decimal:".",precision:2},XOF:{symbol:"F",grouping:" ",decimal:",",precision:2},XPF:{symbol:"F",grouping:",",decimal:".",precision:2},YER:{symbol:"﷼",grouping:",",decimal:".",precision:2},ZAR:{symbol:"R",grouping:" ",decimal:",",precision:2},ZMW:{symbol:"ZK",grouping:",",decimal:".",precision:2},WON:{symbol:"₩",grouping:",",decimal:".",precision:2}};function i(e){return r[e]||{symbol:"$",grouping:",",decimal:".",precision:2}}},1621:function(e,t,n){"use strict";n.d(t,{ZP:function(){return a}});var r=n(9394),i=n(1481),o=n(3759);function a(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},a=(0,o.X)(t);if(!a||isNaN(e))return null;var s=(0,r.Z)((0,r.Z)({},a),n),l=s.decimal,c=s.grouping,d=s.precision,f=s.symbol,p=e<0?"-":"",m=(0,i.Y4)(Math.abs(e),{decimals:d,thousandsSep:c,decPoint:l});return n.stripZeros&&(m=u(m,l)),"".concat(p).concat(f).concat(m)}function u(e,t){var n=new RegExp("\\".concat(t,"0+$"));return e.replace(n,"")}},914:function(e,t,n){"use strict";var r=n(1766),i=n(1119),o=n(8049),a=n.n(o),u=n(7010),s=n(9830),l=n(7839),c=n.n(l),d=n(5079),f=n.n(d),p=n(382),m=n(6668),h=n(3),g=a()("i18n-calypso"),v="number_format_decimals",y="number_format_thousands_sep",_="messages",b=[function(e){return e}],E={};function S(){C.throwErrors&&"undefined"!=typeof window&&window.console&&window.console.warn&&window.console.warn.apply(window.console,arguments)}function w(e){return Array.prototype.slice.call(e)}function A(e){var t=e[0];("string"!=typeof t||e.length>3||e.length>2&&"object"==typeof e[1]&&"object"==typeof e[2])&&S("Deprecated Invocation: `translate()` accepts ( string, [string], [object] ). These arguments passed:",w(e),". See https://github.com/Automattic/i18n-calypso#translate-method"),2===e.length&&"string"==typeof t&&"string"==typeof e[1]&&S("Invalid Invocation: `translate()` requires an options object for plural translations, but passed:",w(e));for(var n={},r=0;r<e.length;r++)"object"==typeof e[r]&&(n=e[r]);if("string"==typeof t?n.original=t:"object"==typeof n.original&&(n.plural=n.original.plural,n.count=n.original.count,n.original=n.original.single),"string"==typeof e[1]&&(n.plural=e[1]),void 0===n.original)throw new Error("Translate called without a `string` value as first argument.");return n}function P(e,t){return e.dcnpgettext(_,t.context,t.original,t.plural,t.count)}function x(e,t){for(var n=b.length-1;n>=0;n--){var r=b[n](Object.assign({},t)),i=r.context?r.context+""+r.original:r.original;if(e.state.locale[i])return P(e.state.tannin,r)}return null}function C(){if(!(this instanceof C))return new C;this.defaultLocaleSlug="en",this.defaultPluralForms=function(e){return 1===e?0:1},this.state={numberFormatSettings:{},tannin:void 0,locale:void 0,localeSlug:void 0,localeVariant:void 0,textDirection:void 0,translations:c()({max:100})},this.componentUpdateHooks=[],this.translateHooks=[],this.stateObserver=new p.EventEmitter,this.stateObserver.setMaxListeners(0),this.configure()}C.throwErrors=!1,C.prototype.on=function(){var e;(e=this.stateObserver).on.apply(e,arguments)},C.prototype.off=function(){var e;(e=this.stateObserver).off.apply(e,arguments)},C.prototype.emit=function(){var e;(e=this.stateObserver).emit.apply(e,arguments)},C.prototype.numberFormat=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n="number"==typeof t?t:t.decimals||0,r=t.decPoint||this.state.numberFormatSettings.decimal_point||".",i=t.thousandsSep||this.state.numberFormatSettings.thousands_sep||",";return(0,h.Z)(e,n,r,i)},C.prototype.configure=function(e){Object.assign(this,e||{}),this.setLocale()},C.prototype.setLocale=function(e){var t,n,r;if(e&&e[""]&&e[""]["key-hash"]){var o=e[""]["key-hash"],a=function(e,t){var n=!1===t?"":String(t);if(void 0!==E[n+e])return E[n+e];var r=f()().update(e).digest("hex");return E[n+e]=t?r.substr(0,t):r},u=function(e){return function(t){return t.context?(t.original=a(t.context+String.fromCharCode(4)+t.original,e),delete t.context):t.original=a(t.original,e),t}};if("sha1"===o.substr(0,4))if(4===o.length)b.push(u(!1));else{var l=o.substr(5).indexOf("-");if(l<0){var c=Number(o.substr(5));b.push(u(c))}else for(var d=Number(o.substr(5,l)),p=Number(o.substr(6+l)),m=d;m<=p;m++)b.push(u(m))}}if(e&&e[""].localeSlug)if(e[""].localeSlug===this.state.localeSlug){if(e===this.state.locale)return;Object.assign(this.state.locale,e)}else this.state.locale=Object.assign({},e);else this.state.locale={"":{localeSlug:this.defaultLocaleSlug,plural_forms:this.defaultPluralForms}};this.state.localeSlug=this.state.locale[""].localeSlug,this.state.localeVariant=this.state.locale[""].localeVariant,this.state.textDirection=(null===(t=this.state.locale["text directionltr"])||void 0===t?void 0:t[0])||(null===(n=this.state.locale[""])||void 0===n||null===(r=n.momentjs_locale)||void 0===r?void 0:r.textDirection),this.state.tannin=new s.Z((0,i.Z)({},_,this.state.locale)),this.state.numberFormatSettings.decimal_point=P(this.state.tannin,A([v])),this.state.numberFormatSettings.thousands_sep=P(this.state.tannin,A([y])),this.state.numberFormatSettings.decimal_point===v&&(this.state.numberFormatSettings.decimal_point="."),this.state.numberFormatSettings.thousands_sep===y&&(this.state.numberFormatSettings.thousands_sep=","),this.stateObserver.emit("change")},C.prototype.getLocale=function(){return this.state.locale},C.prototype.getLocaleSlug=function(){return this.state.localeSlug},C.prototype.getLocaleVariant=function(){return this.state.localeVariant},C.prototype.isRtl=function(){return"rtl"===this.state.textDirection},C.prototype.addTranslations=function(e){for(var t in e)""!==t&&(this.state.tannin.data.messages[t]=e[t]);this.stateObserver.emit("change")},C.prototype.hasTranslation=function(){return!!x(this,A(arguments))},C.prototype.translate=function(){var e=A(arguments),t=x(this,e);if(t||(t=P(this.state.tannin,e)),e.args){var n=Array.isArray(e.args)?e.args.slice(0):[e.args];n.unshift(t);try{t=m.Z.apply(void 0,(0,r.Z)(n))}catch(o){if(!window||!window.console)return;var i=this.throwErrors?"error":"warn";"string"!=typeof o?window.console[i](o):window.console[i]("i18n sprintf error:",n)}}return e.components&&(t=(0,u.Z)({mixedString:t,components:e.components,throwErrors:this.throwErrors})),this.translateHooks.forEach((function(n){t=n(t,e)})),t},C.prototype.reRenderTranslations=function(){g("Re-rendering all translations due to external request"),this.stateObserver.emit("change")},C.prototype.registerComponentUpdateHook=function(e){this.componentUpdateHooks.push(e)},C.prototype.registerTranslateHook=function(e){this.translateHooks.push(e)},t.Z=C},1481:function(e,t,n){"use strict";n.d(t,{Y4:function(){return s},Iu:function(){return l}});var r=n(914),i=n(3493),o=n(975),a=n(8373),u=new r.Z,s=u.numberFormat.bind(u),l=u.translate.bind(u),c=(u.configure.bind(u),u.setLocale.bind(u),u.getLocale.bind(u),u.getLocaleSlug.bind(u),u.getLocaleVariant.bind(u),u.isRtl.bind(u),u.addTranslations.bind(u),u.reRenderTranslations.bind(u),u.registerComponentUpdateHook.bind(u),u.registerTranslateHook.bind(u),u.state,u.stateObserver,u.on.bind(u),u.off.bind(u),u.emit.bind(u),(0,i.Z)(u),(0,o.Z)(u),(0,a.Z)(u));c.useRtl,c.withRtl},3493:function(e,t,n){"use strict";n.d(t,{Z:function(){return p}});var r=n(9394),i=n(4659),o=n(4730),a=n(3989),u=n(5663),s=n(9049),l=n(1119),c=n(3027),d=n(3804),f=n.n(d);function p(e){var t={numberFormat:e.numberFormat.bind(e),translate:e.translate.bind(e)};return function(n){var d,p,m=n.displayName||n.name||"";return p=d=function(d){(0,u.Z)(p,d);var f=(0,s.Z)(p);function p(){var e;(0,i.Z)(this,p);for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];return e=f.call.apply(f,[this].concat(n)),(0,l.Z)((0,a.Z)(e),"boundForceUpdate",e.forceUpdate.bind((0,a.Z)(e))),e}return(0,o.Z)(p,[{key:"componentDidMount",value:function(){e.on("change",this.boundForceUpdate)}},{key:"componentWillUnmount",value:function(){e.off("change",this.boundForceUpdate)}},{key:"render",value:function(){var i=(0,r.Z)((0,r.Z)({locale:e.getLocaleSlug()},this.props),t);return(0,c.createElement)(n,i)}}]),p}(f().Component),(0,l.Z)(d,"displayName","Localized("+m+")"),p}}},3:function(e,t,n){"use strict";function r(e,t,n,r){e=(e+"").replace(/[^0-9+\-Ee.]/g,"");var i=isFinite(+e)?+e:0,o=isFinite(+t)?Math.abs(t):0,a=void 0===r?",":r,u=void 0===n?".":n,s="";return(s=(o?
20
  /*
21
  * Exposes number format capability
22
  *
editor-site-launch/dist/gutenboarding-launch.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('a8c-fse-common-data-stores', 'lodash', 'react', 'wp-components', 'wp-compose', 'wp-data', 'wp-data-controls', 'wp-deprecated', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins', 'wp-polyfill', 'wp-primitives', 'wp-react-i18n', 'wp-url'), 'version' => '4329ad1f138f0911914f86d9a15146d1');
1
+ <?php return array('dependencies' => array('a8c-fse-common-data-stores', 'lodash', 'react', 'wp-components', 'wp-compose', 'wp-data', 'wp-data-controls', 'wp-deprecated', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins', 'wp-polyfill', 'wp-primitives', 'wp-react-i18n', 'wp-url'), 'version' => '120e2d923a518b810978a280b4d0c1a0');
editor-site-launch/dist/gutenboarding-launch.css CHANGED
@@ -1 +1 @@
1
- .nux-launch-step__header{margin:48px 0 38.4px;display:flex;justify-content:space-between;align-items:center}@media(min-width:600px){.nux-launch-step__header{margin:64px 0 51.2px}}@media(min-width:782px){.nux-launch-step__header{margin:80px 0 64px}}.nux-launch-step__header .action-buttons{display:none}@media(min-width:782px){.nux-launch-step__header .action-buttons{display:block}}.nux-launch-step__body{margin:0 0 48px}@media(min-width:600px){.nux-launch-step__body{margin:0 0 64px}}@media(min-width:782px){.nux-launch-step__body{margin:0 0 80px}}.nux-launch-step__footer{margin-left:-24px;margin-right:-24px;position:sticky;bottom:0}@media(min-width:600px){.nux-launch-step__footer{margin-left:-48px;margin-right:-48px}}@media(min-width:782px){.nux-launch-step__footer{margin-left:-96px;margin-right:-96px}}.nux-launch-step__footer .action-buttons{position:relative}@media(min-width:782px){.nux-launch-step__footer{display:none}}.nux-launch-step__input{position:relative;margin-bottom:20px}.nux-launch-step__input input[type=text].components-text-control__input{padding:6px 40px 6px 16px;height:38px;background:#f0f0f0;border:none}.nux-launch-step__input input[type=text].components-text-control__input::placeholder{color:var(--studio-black)}.nux-launch-step__input input[type=text].components-text-control__input:focus{box-shadow:0 0 0 2px var(--studio-blue-30);background:var(--studio-white)}.nux-launch-step__input svg{position:absolute;top:6px;right:8px}.nux-launch-step__input-hint{display:flex;align-items:center;color:var(--studio-gray-50);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:14px;line-height:14px}.nux-launch-step__input-hint>.components-tip svg{margin-right:10px}.onboarding-title{font-family:Recoleta,"Noto Serif",Georgia,Times New Roman,Times,serif;font-weight:400;letter-spacing:-.4px;font-size:32px;line-height:40px;color:var(--mainColor);margin:0}@media(min-width:480px){.onboarding-title{font-family:Recoleta,"Noto Serif",Georgia,Times New Roman,Times,serif;font-weight:400;letter-spacing:-.4px;font-size:36px;line-height:40px}}@media(min-width:1080px){.onboarding-title{font-family:Recoleta,"Noto Serif",Georgia,Times New Roman,Times,serif;font-weight:400;letter-spacing:-.4px;font-size:42px;line-height:57px}}.onboarding-subtitle{font-size:16px;line-height:24px;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:400;letter-spacing:.2px;color:var(--studio-gray-60);margin:5px 0 0}@media(min-width:600px){.onboarding-subtitle{margin-top:0}}.action-buttons{padding:0 20px;border-top:1px solid #e0e0e0;background-color:#fff;position:fixed;bottom:0;right:0;left:0;height:60px;justify-content:space-between;display:flex;align-items:center;z-index:30}@media(min-width:600px){.action-buttons:not(.is-sticky){padding:0;margin-left:20px;position:static;border:none}.action-buttons:not(.is-sticky) .action_buttons__button{margin-left:20px}.action-buttons:not(.is-sticky) .action_buttons__button:first-child{margin-left:0}}.action-buttons.no-sticky{padding:0;margin-left:20px;position:static;border:none}.action-buttons.no-sticky .action_buttons__button{margin-left:20px}.action-buttons.no-sticky .action_buttons__button:first-child{margin-left:0}button.action_buttons__button.components-button{font-size:.875rem;line-height:17px;height:42px;min-width:120px;justify-content:center}button.action_buttons__button.components-button:active,button.action_buttons__button.components-button:focus,button.action_buttons__button.components-button:hover{outline-color:transparent}button.action_buttons__button.components-button:disabled{opacity:.5}button.action_buttons__button.components-button.action-buttons__back{color:var(--studio-gray-50);white-space:nowrap;min-width:0;height:auto}button.action_buttons__button.components-button.action-buttons__next{color:var(--studio-white);box-shadow:0 0 0 1px var(--studio-blue-40)}button.action_buttons__button.components-button.action-buttons__skip{color:var(--studio-gray-50);box-shadow:inset 0 0 0 1px var(--studio-gray-50)}button.action_buttons__button.components-button.action-buttons__skip:active,button.action_buttons__button.components-button.action-buttons__skip:hover{color:var(--studio-gray-60);box-shadow:inset 0 0 0 1px var(--studio-gray-60)}button.action_buttons__button.components-button.action-buttons__skip:focus{color:var(--studio-gray-60);box-shadow:inset 0 0 0 1px #fff,0 0 0 1.5px var(--highlightColor)}button.action_buttons__button.components-button.action-buttons__arrow{justify-content:flex-start;text-decoration:underline;font-weight:500;color:var(--mainColor);padding:0;margin-right:0}@media(min-width:782px){button.action_buttons__button.components-button.action-buttons__arrow{justify-content:flex-end}}button.action_buttons__button.components-button.action-buttons__arrow svg{margin:0 -5px -4px}@media(min-width:600px){button.action_buttons__button.components-button{min-width:160px}}: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;--midnight-blue-0:#e1eef5;--midnight-blue-5:#b3ddf5;--midnight-blue-10:#6bbff2;--midnight-blue-20:#30a2f0;--midnight-blue-30:#007fde;--midnight-blue-40:#006ac0;--midnight-blue-50:#00549d;--midnight-blue-60:#00417d;--midnight-blue-70:#003567;--midnight-blue-80:#00284f;--midnight-blue-90:#001a33;--midnight-blue-100:#000e1c;--midnight-blue:#00549d;--midnight-blue-0-rgb:225,238,245;--midnight-blue-5-rgb:179,221,245;--midnight-blue-10-rgb:107,191,242;--midnight-blue-20-rgb:48,162,240;--midnight-blue-30-rgb:0,127,222;--midnight-blue-40-rgb:0,106,192;--midnight-blue-50-rgb:0,84,157;--midnight-blue-60-rgb:0,65,125;--midnight-blue-70-rgb:0,53,103;--midnight-blue-80-rgb:0,40,79;--midnight-blue-90-rgb:0,26,51;--midnight-blue-100-rgb:0,14,28;--midnight-blue-rgb:0,84,157;--color-primary:var(--theme-highlight-color);--color-primary-rgb:var(--theme-highlight-color-rgb);--color-primary-dark:var(--midnight-blue-70);--color-primary-dark-rgb:var(--midnight-blue-70-rgb);--color-primary-light:var(--midnight-blue-30);--color-primary-light-rgb:var(--midnight-blue-30-rgb);--color-primary-0:var(--midnight-blue-0);--color-primary-0-rgb:var(--midnight-blue-0-rgb);--color-primary-5:var(--midnight-blue-5);--color-primary-5-rgb:var(--midnight-blue-5-rgb);--color-primary-10:var(--midnight-blue-10);--color-primary-10-rgb:var(--midnight-blue-10-rgb);--color-primary-20:var(--midnight-blue-20);--color-primary-20-rgb:var(--midnight-blue-20-rgb);--color-primary-30:var(--midnight-blue-30);--color-primary-30-rgb:var(--midnight-blue-30-rgb);--color-primary-40:var(--midnight-blue-40);--color-primary-40-rgb:var(--midnight-blue-40-rgb);--color-primary-50:var(--midnight-blue-50);--color-primary-50-rgb:var(--midnight-blue-50-rgb);--color-primary-60:var(--midnight-blue-60);--color-primary-60-rgb:var(--midnight-blue-60-rgb);--color-primary-70:var(--midnight-blue-70);--color-primary-70-rgb:var(--midnight-blue-70-rgb);--color-primary-80:var(--midnight-blue-80);--color-primary-80-rgb:var(--midnight-blue-80-rgb);--color-primary-90:var(--midnight-blue-90);--color-primary-90-rgb:var(--midnight-blue-90-rgb);--color-primary-100:var(--midnight-blue-100);--color-primary-100-rgb:var(--midnight-blue-100-rgb);--color-accent:var(--theme-highlight-color);--color-accent-rgb:var(--theme-highlight-color-rgb);--color-accent-dark:var(--midnight-blue-70);--color-accent-dark-rgb:var(--midnight-blue-70-rgb);--color-accent-light:var(--midnight-blue-30);--color-accent-light-rgb:var(--midnight-blue-30-rgb);--color-accent-0:var(--midnight-blue-0);--color-accent-0-rgb:var(--midnight-blue-0-rgb);--color-accent-5:var(--midnight-blue-5);--color-accent-5-rgb:var(--midnight-blue-5-rgb);--color-accent-10:var(--midnight-blue-10);--color-accent-10-rgb:var(--midnight-blue-10-rgb);--color-accent-20:var(--midnight-blue-20);--color-accent-20-rgb:var(--midnight-blue-20-rgb);--color-accent-30:var(--midnight-blue-30);--color-accent-30-rgb:var(--midnight-blue-30-rgb);--color-accent-40:var(--midnight-blue-40);--color-accent-40-rgb:var(--midnight-blue-40-rgb);--color-accent-50:var(--midnight-blue-50);--color-accent-50-rgb:var(--midnight-blue-50-rgb);--color-accent-60:var(--midnight-blue-60);--color-accent-60-rgb:var(--midnight-blue-60-rgb);--color-accent-70:var(--midnight-blue-70);--color-accent-70-rgb:var(--midnight-blue-70-rgb);--color-accent-80:var(--midnight-blue-80);--color-accent-80-rgb:var(--midnight-blue-80-rgb);--color-accent-90:var(--midnight-blue-90);--color-accent-90-rgb:var(--midnight-blue-90-rgb);--color-accent-100:var(--midnight-blue-100);--color-accent-100-rgb:var(--midnight-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: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-jetpack-green-50);--color-sidebar-menu-selected-text-rgb:var(--studio-jetpack-green-50-rgb);--color-sidebar-menu-selected-background:var(--studio-jetpack-green-5);--color-sidebar-menu-selected-background-rgb:var(--studio-jetpack-green-5-rgb);--color-sidebar-menu-hover-text:var(--studio-gray-90);--color-sidebar-menu-hover-background:var(--studio-gray-5);--color-sidebar-menu-hover-background-rgb:var(--studio-gray-5-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)}.domain-picker__empty-state{display:flex;justify-content:center;flex-direction:column}.domain-picker__empty-state--text{max-width:320px;font-size:.875rem;margin:10px 0;color:#757575}@media(min-width:480px){.domain-picker__empty-state{flex-direction:row;align-items:center}.domain-picker__empty-state--text{margin:15px 10px}}.domain-picker__show-more{margin-top:20px;text-align:center}.domain-picker__search{position:relative;margin-bottom:20px}.domain-picker__search input[type=text].components-text-control__input{padding:6px 40px 6px 16px;height:38px;background:#f0f0f0;border:none}.domain-picker__search input[type=text].components-text-control__input::placeholder{color:var(--studio-black)}.domain-picker__search input[type=text].components-text-control__input:focus{box-shadow:0 0 0 2px var(--studio-blue-30);background:var(--studio-white)}.domain-picker__search svg{position:absolute;top:6px;right:8px}.domain-picker__suggestion-item-group{flex-grow:1}.domain-picker__suggestion-sections{flex:1}.domain-picker__suggestion-group-label{margin:1.5em 0 .5em;text-transform:uppercase;color:var(--studio-gray-40);font-size:.75rem;letter-spacing:1px;font-weight:700}.domain-picker__suggestion-item{font-size:.875rem;line-height:17px;display:flex;justify-content:space-between;align-items:center;width:100%;min-height:58px;background:var(--studio-white);border:1px solid var(--studio-gray-5);padding:10px 14px;position:relative;text-align:left;cursor:pointer;outline-color:#117ac9}.domain-picker__suggestion-item.type-radio{outline:none}.domain-picker__suggestion-item.type-individual-item{min-height:64px;border-width:2px}.domain-picker__suggestion-item.type-individual-item.is-selected,.domain-picker__suggestion-item.type-individual-item:hover{border-color:#117ac9}.domain-picker__suggestion-item.type-link{display:flex;flex-direction:column;align-items:flex-start}@media(min-width:782px){.domain-picker__suggestion-item.type-link{flex-direction:row;align-items:center}}.domain-picker__suggestion-item.placeholder{cursor:default}.domain-picker__sugggested-items-container .domain-picker__suggestion-item.type-individual-item,.domain-picker__sugggested-items-container .domain-picker__suggestion-item:first-child{border-top-left-radius:5px;border-top-right-radius:5px}.domain-picker__sugggested-items-container .domain-picker__suggestion-item.type-individual-item,.domain-picker__sugggested-items-container .domain-picker__suggestion-item:last-child{border-bottom-left-radius:5px;border-bottom-right-radius:5px}.domain-picker__suggestion-item+.domain-picker__suggestion-item{margin-top:-1px}.domain-picker__suggestion-item+.domain-picker__suggestion-item.type-individual-item{margin-top:12px}.domain-picker__suggestion-item.is-unavailable{color:var(--studio-gray-40);cursor:default}.domain-picker__suggestion-item:nth-child(8){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:40ms}.domain-picker__suggestion-item:nth-child(9){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:80ms}.domain-picker__suggestion-item:nth-child(10){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:.12s}.domain-picker__suggestion-item:nth-child(11){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:.16s}.domain-picker__suggestion-item:nth-child(12){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:.2s}.domain-picker__suggestion-item:nth-child(13){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:.24s}.domain-picker__suggestion-item:nth-child(14){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:.28s}@keyframes domain-picker-item-slide-up{to{transform:translateY(0);opacity:1}}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;box-shadow:0 0 0 transparent;transition:box-shadow .1s linear;border-radius:2px;font-size:16px;line-height:normal;border:1px solid #1e1e1e;transition:none;border-radius:50%;width:24px;height:24px;width:16px;height:16px;min-width:16px;padding:0;margin:1px 12px 0 0;vertical-align:middle;position:relative}@media(prefers-reduced-motion:reduce){.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle{transition-duration:0s;transition-delay:0s}}@media(min-width:600px){.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle{font-size:13px;line-height:normal}}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color)}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle:-ms-input-placeholder{color:rgba(30,30,30,.62)}.is-dark-theme .domain-picker__suggestion-item .domain-picker__suggestion-radio-circle::-webkit-input-placeholder{color:hsla(0,0%,100%,.65)}.is-dark-theme .domain-picker__suggestion-item .domain-picker__suggestion-radio-circle::-moz-placeholder{opacity:1;color:hsla(0,0%,100%,.65)}.is-dark-theme .domain-picker__suggestion-item .domain-picker__suggestion-radio-circle:-ms-input-placeholder{color:hsla(0,0%,100%,.65)}@media(min-width:600px){.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle{height:20px;width:20px}}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle:checked:before{box-sizing:inherit;width:8px;height:8px;transform:translate(7px,7px);margin:0;background-color:#fff;border:4px solid #fff}@media(min-width:600px){.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle:checked:before{transform:translate(5px,5px)}}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle:focus{box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle.is-checked{border-color:var(--studio-blue-30);background-color:var(--studio-blue-30)}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle.is-checked:before{display:none}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle.is-checked:after{content:"";width:100%;height:100%;border:2px solid #fff;border-radius:50%;position:absolute;margin:0;background:transparent}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle.is-checked:focus,.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle:not(.is-unavailable):focus,.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle:not(.is-unavailable):hover{border-color:var(--studio-blue-30);box-shadow:0 0 0 1px var(--studio-blue-30)}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle.is-unavailable{border-color:var(--studio-gray-40)}.domain-picker__suggestion-item:focus .domain-picker__suggestion-radio-circle{border-color:var(--studio-blue-30);box-shadow:0 0 0 1px var(--studio-blue-30)}.domain-picker__suggestion-item .components-spinner{margin:1px 10px 0 0}.domain-picker__suggestion-item-name{flex-grow:1;flex-basis:2px;letter-spacing:.4px;margin-right:10px;word-break:break-all}@media(min-width:782px){.domain-picker__suggestion-item-name{margin-right:24px}}.domain-picker__suggestion-item-name .domain-picker__suggestion-item-name-inner{display:flex;align-items:center;flex-wrap:wrap}.domain-picker__suggestion-item-name .domain-picker__sub-domain{word-break:break-word}.domain-picker__suggestion-item-name.placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;max-width:30%;margin-right:auto}.domain-picker__suggestion-item-name.placeholder:after{content:" "}.domain-picker__suggestion-item.type-individual-item.is-selected .domain-picker__suggestion-item-name{color:#117ac9}.domain-picker__domain-tld{color:var(--studio-blue-40);word-break:keep-all;margin-right:5px}.domain-picker__suggestion-item.is-unavailable .domain-picker__domain-tld{color:var(--studio-gray-40)}.domain-picker__domain-wrapper{direction:ltr}.domain-picker__domain-wrapper.with-margin{margin-right:10px}.domain-picker__domain-wrapper.with-bold-text{font-weight:500}.domain-picker__suggestion-item.type-individual-item .domain-picker__domain-tld{font-weight:500;color:unset}.domain-picker__info-tooltip{margin-right:10px;cursor:pointer;z-index:100001}.domain-picker__badge{display:inline-flex;border-radius:2px;padding:0 2%;white-space:nowrap;line-height:20px;height:20px;align-items:center;font-size:10px;text-transform:uppercase;vertical-align:middle;background-color:var(--studio-blue-50);color:var(--color-text-inverted);margin:2px 0}.domain-picker__suggestion-item.type-individual-item .domain-picker__badge{color:var(--studio-green-80);background-color:var(--studio-green-5);border-radius:4px;text-transform:unset;font-size:.75rem}.domain-picker__suggestion-item.type-individual-item.is-selected .domain-picker__badge{color:#0f6cb3;background-color:#ddebf8}.domain-picker__price{color:var(--studio-gray-40);text-align:right;flex-basis:0;flex-grow:1;transition:opacity .2s ease-in-out}.domain-picker__price:not(.is-paid){display:none}.domain-picker__price:not(:last-child){text-align:left}@media(min-width:600px){.domain-picker__price{flex-basis:1px}.domain-picker__price:not(.is-paid){display:inline}}.domain-picker__price.placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;min-width:64px}.domain-picker__price.placeholder:after{content:" "}.domain-picker__suggestion-item.is-free .domain-picker__price{flex-grow:.1}.domain-picker__suggestion-item.type-individual-item .domain-picker__price{display:flex;flex-direction:column-reverse}.domain-picker__suggestion-item.type-individual-item .domain-picker__price:not(.is-paid){display:block}@media(min-width:782px){.domain-picker__suggestion-item.type-individual-item .domain-picker__price{display:block}}.domain-picker__price-inclusive{color:var(--studio-green-40);display:none}@media(min-width:600px){.domain-picker__price-inclusive{display:inline}}.domain-picker__price-inclusive strong{font-weight:700}.domain-picker__price-renewal{display:none;font-size:.75rem}.domain-picker__suggestion-item.type-individual-item .domain-picker__price-inclusive{display:block;line-height:20px}.domain-picker__suggestion-item.type-individual-item .domain-picker__price-inclusive strong{font-weight:500}.domain-picker__suggestion-item.type-individual-item.is-selected .domain-picker__price-inclusive{color:#117ac9}.domain-picker__price-cost{text-decoration:line-through}.domain-picker__suggestion-item.type-individual-item.is-selected .domain-picker__price-cost{color:#117ac9;opacity:.68}.domain-picker__suggestion-item.type-button{flex-direction:column;align-items:flex-start}.domain-picker__suggestion-item.type-button .domain-picker__price.is-paid{display:flex;flex-wrap:wrap}.domain-picker__suggestion-item.type-button .domain-picker__price-inclusive{display:inline}.domain-picker__suggestion-item.type-button .domain-picker__price-inclusive:before{content:" "}.domain-picker__suggestion-item.type-button .domain-picker__price-renewal{display:inline;width:100%}@media(min-width:782px){.domain-picker__suggestion-item.type-button{flex-direction:row;align-items:center}.domain-picker__suggestion-item.type-button .domain-picker__price-inclusive{order:-1}.domain-picker__suggestion-item.type-button .domain-picker__price-inclusive:before{content:none}.domain-picker__suggestion-item.type-button .domain-picker__price-inclusive:after{content:" "}}.domain-picker__body{display:flex}@media(max-width:480px){.domain-picker__body{display:block}.domain-picker__body .domain-picker__aside{width:100%;padding:0}}.domain-picker__aside{width:220px;padding-right:30px}.domain-picker__change-subdomain-tip,.domain-picker__item-tip{font-size:.75rem;color:var(--studio-gray-40);word-break:normal}.domain-picker__error.components-notice{margin:0}.domain-picker__error .domain-picker__error-message{font-size:.875rem;line-height:17px}.domain-picker__error .domain-picker__error-retry-btn{margin-top:16px}.domain-picker__suggestion-select-button.components-button.is-secondary{justify-content:center;width:100%;min-width:140px;box-shadow:inset 0 0 0 1px var(--studio-gray-10);color:var(--mainColor)}.domain-picker__suggestion-select-button.components-button.is-secondary.is-selected,.domain-picker__suggestion-select-button.components-button.is-secondary:focus,.domain-picker__suggestion-select-button.components-button.is-secondary:hover{box-shadow:inset 0 0 0 1px var(--wp-admin-theme-color-darker-10);color:var(--wp-admin-theme-color-darker-10)}@media(min-width:782px){.domain-picker__suggestion-select-button.components-button.is-secondary{width:auto}}.domain-picker__action{margin-top:1rem;width:100%}@media(min-width:782px){.domain-picker__action{margin-top:0;width:auto}}.info-tooltip.components-button.has-icon.has-text svg{margin-right:0}.info-tooltip .components-popover__content>div{color:var(--color-neutral-50);font-size:.875rem;padding:16px;text-align:left}.info-tooltip .components-popover__content>div a{color:var(--studio-blue-40)}@media(max-width:480px){.domain-categories{margin-bottom:20px}.domain-categories .domain-categories__dropdown-button.components-button{display:block;margin-bottom:0}.domain-categories .domain-categories__item-group{display:none}.domain-categories.is-open .domain-categories__item-group{display:block}}.domain-categories__dropdown-button.components-button{width:100%;text-align:center;margin-bottom:8px;height:40px;border:1px solid var(--studio-gray-5);display:none}.domain-categories__dropdown-button.components-button>*{vertical-align:middle}.domain-categories__dropdown-button.components-button svg{margin-left:5px}@media(max-width:480px){.domain-categories__item-group{text-align:center;border:1px solid var(--studio-gray-5);margin-top:-1px}}.domain-categories__item .components-button{color:var(--studio-gray-100);width:100%;text-align:left}.domain-categories__item .components-button:focus,.domain-categories__item .components-button:hover{color:var(--studio-gray-100);box-shadow:none;font-weight:600;text-decoration:underline}.domain-categories__item.is-selected .components-button{font-weight:600;text-decoration:underline}@media(max-width:480px){.domain-categories__item .components-button{display:block;text-align:center}}html:not(.accessible-focus) .domain-categories__item .components-button:focus{box-shadow:none}.nux-launch-modal.step-plan .nux-launch-step__body,.nux-launch-modal.step-plan .plans-grid{margin-bottom:0}.nux-launch-modal.step-plan .plans-grid__details-container{position:relative;margin-left:-24px;margin-right:-24px;width:auto}@media(min-width:600px){.nux-launch-modal.step-plan .plans-grid__details-container{margin-left:-48px;margin-right:-48px}}@media(min-width:782px){.nux-launch-modal.step-plan .plans-grid__details-container{margin-left:-96px;margin-right:-96px}}@media(min-width:1440px){.nux-launch-modal.step-plan .plans-grid__details-container{margin-left:0;margin-right:0}}.plans-grid{margin-bottom:85px}@media(min-width:600px){.plans-grid{margin-bottom:0}}.plans-grid__header{margin:48px 0 38.4px;display:flex;justify-content:space-between;align-items:center}@media(min-width:600px){.plans-grid__header{margin:64px 0 51.2px}}@media(min-width:782px){.plans-grid__header{margin:80px 0 64px}}.plans-grid__toggle{margin:-24px 0 32px}@media(min-width:782px){.plans-grid__toggle{margin-bottom:40px}}.plans-grid__details{margin-top:70px}.plans-grid__details-container{padding-bottom:120px}@media(max-width:1439px){.plans-grid__details-container{overflow-x:auto;width:100%;position:absolute;left:0}}.plans-grid__details-heading .plans-ui-title{color:var(--studio-black);margin-bottom:40px;font-size:32px;line-height:40px;letter-spacing:.2px}.plans-interval-toggle{display:flex;justify-content:center}.plans-interval-toggle .segmented-control{-webkit-tap-highlight-color:transparent;background-color:#f2f2f2;border-radius:6px;height:auto;overflow:hidden}.plans-interval-toggle--monthly .segmented-control{margin-bottom:60px}@media(min-width:782px){.plans-interval-toggle--monthly .segmented-control{margin-bottom:0}}.plans-interval-toggle .segmented-control__item .segmented-control__link,.plans-interval-toggle .segmented-control__item:first-of-type .segmented-control__link,.plans-interval-toggle .segmented-control__item:last-of-type .segmented-control__link{border-radius:5px;margin:2px;padding:0}.plans-interval-toggle .segmented-control__item{margin:0}.plans-interval-toggle .segmented-control__item.segmented-control__item:not(.is-selected) .segmented-control__link{background-color:transparent;border:.5px solid transparent;box-shadow:none}.plans-interval-toggle .segmented-control__item.is-selected .segmented-control__link{background-color:var(--studio-white);border:.5px solid #f5f5f5;box-shadow:0 3px 8px rgba(0,0,0,.12),0 3px 1px rgba(0,0,0,.04)}.plans-interval-toggle .segmented-control__item.is-selected .segmented-control__link:focus,.plans-interval-toggle .segmented-control__item.is-selected .segmented-control__link:hover,.plans-interval-toggle .segmented-control__item:not(.is-selected) .segmented-control__link:focus,.plans-interval-toggle .segmented-control__item:not(.is-selected) .segmented-control__link:hover{border-color:var(--studio-gray-10)}.plans-interval-toggle .segmented-control__text{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:.875rem;font-weight:500;letter-spacing:.16px;color:var(--studio-gray-90)}.plans-interval-toggle__label{display:inline-flex;align-items:center;justify-content:center;height:32px;min-width:102px;padding:0 16px}.components-popover.plans-interval-toggle__popover--mobile{display:block}@media(min-width:782px){.components-popover.plans-interval-toggle__popover--mobile{display:none}}.components-popover.plans-interval-toggle__popover--desktop[data-y-axis=middle]{display:none}@media(min-width:782px){.components-popover.plans-interval-toggle__popover--desktop[data-y-axis=middle]{display:flex}}.components-popover.plans-interval-toggle__popover .components-popover__content{padding:8px 10px;min-width:auto;width:232px;box-sizing:border-box;background-color:var(--studio-gray-100);border-color:var(--studio-gray-100);color:var(--studio-white);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:.75rem;font-weight:400;text-align:left;white-space:normal}.components-popover.plans-interval-toggle__popover:not(.is-without-arrow):after,.components-popover.plans-interval-toggle__popover:not(.is-without-arrow):before{border-color:var(--studio-gray-100)}.components-popover.plans-interval-toggle__popover:not(.is-without-arrow)[data-y-axis=bottom]:after,.components-popover.plans-interval-toggle__popover:not(.is-without-arrow)[data-y-axis=bottom]:before,.components-popover.plans-interval-toggle__popover:not(.is-without-arrow)[data-y-axis=top]:after,.components-popover.plans-interval-toggle__popover:not(.is-without-arrow)[data-y-axis=top]:before{border-left-color:transparent;border-right-color:transparent}.components-popover.plans-interval-toggle__popover:not(.is-without-arrow)[data-y-axis=middle]:after,.components-popover.plans-interval-toggle__popover:not(.is-without-arrow)[data-y-axis=middle]:before{border-bottom-color:transparent;border-top-color:transparent}.segmented-control{display:flex;margin:0;border-radius:2px;background-color:var(--color-surface);list-style:none}.segmented-control__item{flex:1 1 auto;cursor:pointer}.segmented-control__item:first-of-type .segmented-control__link{border-top-left-radius:2px;border-bottom-left-radius:2px}.segmented-control__item:last-of-type .segmented-control__link{border-right:1px solid var(--color-neutral-10);border-top-right-radius:2px;border-bottom-right-radius:2px}.segmented-control__item.is-selected+.segmented-control__item .segmented-control__link{border-left-color:var(--color-neutral-70)}.segmented-control__link{display:block;padding:8px 12px;border:1px solid var(--color-neutral-10);border-right:none;font-size:.875rem;line-height:18px;color:var(--color-text-subtle);text-align:center;transition:color .1s linear,background-color .1s linear}.segmented-control__link:focus{color:var(--color-neutral-70);outline:none;background-color:var(--color-neutral-0)}.segmented-control__item.is-selected .segmented-control__link{border-color:var(--color-neutral-70);color:var(--color-neutral-70)}.notouch .segmented-control__link:hover{color:var(--color-neutral-70);background-color:var(--color-neutral-0)}.segmented-control__text{display:block;max-width:100%;color:inherit;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.segmented-control.is-compact .segmented-control__link{font-size:.875rem;padding:4px 8px}.segmented-control.is-primary .segmented-control__item.is-selected .segmented-control__link{border-color:var(--color-primary);background-color:var(--color-primary);color:var(--color-text-inverted)}.segmented-control.is-primary .segmented-control__item.is-selected .segmented-control__link:focus{background-color:var(--color-primary-dark);border-color:var(--color-primary-dark)}.segmented-control.is-primary .segmented-control__item.is-selected+.segmented-control__item .segmented-control__link{border-left-color:var(--color-primary)}.notouch .segmented-control.is-primary .segmented-control__link:hover,.segmented-control.is-primary .segmented-control__link:focus{background-color:var(--color-neutral-0)}.notouch .segmented-control.is-primary .segmented-control__item.is-selected .segmented-control__link:hover{background-color:var(--color-primary-light)}.plans-accordion__actions{text-align:center}.plans-accordion__plan-item-group{width:100%;display:flex;flex-direction:column}.plans-accordion__toggle-all-button.components-button.is-link{margin:22px auto;color:#757575}@media(min-width:782px){.plans-accordion__toggle-all-button.components-button.is-link{margin:32px auto}}.plans-accordion__recommend-hint{color:var(--studio-gray-40);font-size:.875rem;text-align:right;margin-bottom:16px}.plans-accordion__recommend-hint svg{fill:var(--studio-yellow-30);margin-right:8px;position:relative;top:2px}.plans-accordion__placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;display:inline-block;width:64px}.plans-accordion__placeholder:after{content:" "}.plans-accordion__placeholder--narrow{width:32px}.plans-accordion__placeholder--wide{width:96px}.plans-accordion-item{display:block;flex-grow:1;flex-basis:0;flex-direction:column}.plans-accordion-item.is-disabled{background-color:var(--studio-gray-5)}.plans-accordion-item__viewport{width:100%;height:100%;padding:20px;border:1px solid var(--studio-gray-5)}.plans-accordion-item+.plans-accordion-item .plans-accordion-item__viewport{border-top:0}@media(min-width:600px){.plans-accordion-item__viewport{padding:32px}}.plans-accordion-item:first-of-type .plans-accordion-item__viewport{border-top-left-radius:5px;border-top-right-radius:5px}.plans-accordion-item:last-of-type .plans-accordion-item__viewport{border-bottom-left-radius:5px;border-bottom-right-radius:5px}.plans-accordion-item.has-badge .plans-accordion-item__viewport{border-top-width:0;border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:5px;border-bottom-right-radius:5px}@media(min-width:600px){.plans-accordion-item.has-badge .plans-accordion-item__viewport{border-top-width:1px;border-top-left-radius:5px;border-top-right-radius:5px}}.plans-accordion-item:not(.is-open) .plans-accordion-item__viewport{padding:0}.plans-accordion-item__name{display:inline-block;font-size:1rem;line-height:1.2}@media(min-width:600px){.plans-accordion-item__name{font-size:1.5rem}}.plans-accordion-item:not(.is-open) .plans-accordion-item__name{font-size:.875rem}@media(min-width:600px){.plans-accordion-item:not(.is-open) .plans-accordion-item__name{font-size:.875rem}}.plans-accordion-item.is-primary .plans-accordion-item__name{font-size:1.25rem}@media(min-width:600px){.plans-accordion-item.is-primary .plans-accordion-item__name{font-size:1.5rem}}.plans-accordion-item__description{font-size:.875rem;color:var(--studio-gray-50);margin-top:4px;display:none}.plans-accordion-item:not(.is-open) .plans-accordion-item__description{display:none}@media(min-width:600px){.plans-accordion-item__description{display:block}}.plans-accordion-item__domain-name{font-size:.875rem}ul.plans-accordion-item__feature-item-group{margin:0;column-count:1}@media(min-width:600px){ul.plans-accordion-item__feature-item-group{column-count:2}}@media(min-width:960px){ul.plans-accordion-item__feature-item-group{column-count:3}}.plans-accordion-item__badge{border-top-left-radius:5px;border-top-right-radius:5px;margin-bottom:-1px}.plans-accordion-item__badge>span{display:block;height:24px;line-height:24px;padding:0 14px;background:#000;color:#fff;font-size:.75rem;font-weight:600;letter-spacing:.5px;text-align:center;text-transform:uppercase}@media(min-width:600px){.plans-accordion-item__badge{position:relative;top:-12px;height:0;overflow:visible;text-align:center;border-radius:0}.plans-accordion-item__badge>span{display:inline-block;border-radius:2px}}.plans-accordion-item__price-amount{font-size:1.5rem}@media(min-width:600px){.plans-accordion-item__price-amount{text-align:right;font-size:2rem}}.plans-accordion-item__price-amount.is-loading{max-width:60px;animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent}@media(min-width:600px){.plans-accordion-item__price-amount.is-loading{max-width:none}}.plans-accordion-item__price-amount.is-loading:after{content:" "}.plans-accordion-item__price-amount>span{display:none;font-size:1rem;line-height:1.2;color:var(--studio-gray-40);position:relative;top:-1px;margin-left:1px}@media(min-width:600px){.plans-accordion-item__price-amount>span{display:inline-block}}.plans-accordion-item:not(.is-open) .plans-accordion-item__price-amount{font-size:.875rem;line-height:1.2}.plans-accordion-item:not(.is-open) .plans-accordion-item__price-amount>span{display:none}.plans-accordion-item__header{display:block;width:100%;cursor:pointer}.plans-accordion-item:not(.is-open) .plans-accordion-item__header{display:flex;align-items:baseline;padding:16px 12px}@media(min-width:600px){.plans-accordion-item:not(.is-open) .plans-accordion-item__header{padding:16px 24px}}.plans-accordion-item.is-primary .plans-accordion-item__header{cursor:default}@media(min-width:600px){.plans-accordion-item__header{display:flex}}.plans-accordion-item__price{margin-top:12px}.plans-accordion-item:not(.is-open) .plans-accordion-item__price{margin-top:0;margin-left:8px;color:var(--studio-gray-40)}@media(min-width:600px){.plans-accordion-item__price{margin-top:0;margin-left:auto}}.plans-accordion-item__disabled-label{margin-left:8px;color:var(--studio-gray-40)}.plans-accordion-item__price-note{display:block;font-size:.75rem;line-height:1.5;color:var(--studio-gray-40);margin-bottom:8px}.plans-accordion-item:not(.is-open) .plans-accordion-item__price-note{display:none}@media(min-width:600px){.plans-accordion-item__price-note{margin-bottom:12px;text-align:right}}.plans-accordion-item__price-discount{display:block;font-size:.75rem;font-weight:600;line-height:1.3;letter-spacing:.2px;text-transform:uppercase;color:var(--studio-green-60)}.plans-accordion-item__price-discount--disabled{color:var(--studio-gray-40);text-decoration:line-through}.plans-accordion-item:not(.is-open) .plans-accordion-item__price-discount{display:none}@media(min-width:600px){.plans-accordion-item__price-discount{text-align:right;margin-left:auto;max-width:170px}}@media(min-width:960px){.plans-accordion-item__price-discount{max-width:none}}.plans-accordion-item__actions{margin-top:16px}@media(min-width:600px){.plans-accordion-item__actions{margin-top:24px}}.plans-accordion-item__actions--paid-plan-margin{margin-top:20px}@media(min-width:782px){.plans-accordion-item__actions--paid-plan-margin{margin-top:-10px}}.plans-accordion-item__dropdown-chevron{flex:1;text-align:right;position:relative;top:-2px}@media(min-width:600px){.plans-accordion-item__dropdown-chevron{right:-8px}}.plans-accordion-item.is-open .plans-accordion-item__dropdown-chevron{display:none}.plans-accordion-item__placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;display:inline-block;width:64px}.plans-accordion-item__placeholder:after{content:" "}.plans-accordion-item__placeholder--narrow{width:32px}.plans-accordion-item__placeholder--wide{width:96px}.plans-feature-list{margin-top:16px}@media(min-width:600px){.plans-feature-list{margin-top:24px}}.plans-accordion .plans-feature-list{margin-top:24px}@media(min-width:600px){.plans-accordion .plans-feature-list{margin-top:36px}}ul.plans-feature-list__item-group{margin:0}ul.plans-feature-list__item-group--columns{display:flex;flex-wrap:wrap}@media(min-width:480px){@supports(display:grid){ul.plans-feature-list__item-group--columns{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr))}}}.plans-feature-list__item{flex:300px 0 1;margin:4px 0}.plans-feature-list__item+.plans-feature-list__item--requires-annual-disabled,.plans-feature-list__item+.plans-feature-list__item--requires-annual-enabled{margin-top:8px}.plans-feature-list__item-group--columns .plans-feature-list__item{margin-right:10px;align-self:flex-end}@media(min-width:480px){@supports(display:grid){.plans-feature-list__item-group--columns .plans-feature-list__item{align-self:end}}}.plans-feature-list__item-content-wrapper,.plans-feature-list__item-content-wrapper.components-button.is-link{display:flex;align-items:flex-end;padding:0;text-decoration:none}.plans-feature-list__item-content-wrapper.components-button.is-link.plans-feature-list__item-content-wrapper--domain-button,.plans-feature-list__item-content-wrapper.plans-feature-list__item-content-wrapper--domain-button{cursor:pointer}.plans-feature-list__item-bullet-icon{flex-grow:0;flex-shrink:0;margin-right:6px;color:var(--studio-gray-100)}.plans-accordion .plans-feature-list__item-bullet-icon{color:var(--studio-green-60)}.plans-feature-list__item--disabled-message .plans-feature-list__item-bullet-icon,.plans-feature-list__item--requires-annual-disabled .plans-feature-list__item-bullet-icon,.plans-feature-list__item-content-wrapper--domain-button.is-unavailable .plans-feature-list__item-bullet-icon{color:var(--studio-orange-40)}.plans-feature-list__item-bullet-icon,.plans-feature-list__item-bullet-icon path{fill:currentColor;stroke:currentColor}.plans-feature-list__item-text{flex:1;max-width:100%;margin-bottom:1px}.plans-feature-list__item-annual-nudge{display:block;text-transform:uppercase;font-size:10px;font-weight:700;letter-spacing:.02em;line-height:1;margin-bottom:6px}.plans-feature-list__item--requires-annual-enabled .plans-feature-list__item-annual-nudge{color:var(--studio-green-60)}.plans-feature-list__item--requires-annual-disabled .plans-feature-list__item-annual-nudge{color:var(--studio-orange-40)}.plans-feature-list__item-description{font-size:.875rem;line-height:1.2;letter-spacing:.2px;font-weight:400;color:var(--studio-gray-70)}.plans-feature-list__item--disabled-message .plans-feature-list__item-description,.plans-feature-list__item-content-wrapper--domain-button .plans-feature-list__item-description{font-weight:700}.plans-feature-list__item-content-wrapper--domain-button:not(.is-unavailable) .plans-feature-list__item-description{color:var(--studio-blue-40)}.plans-feature-list__item-content-wrapper--domain-button:not(.is-unavailable) .plans-feature-list__item-description:focus,.plans-feature-list__item-content-wrapper--domain-button:not(.is-unavailable) .plans-feature-list__item-description:hover{color:var(--studio-blue-30)}.plans-accordion .plans-feature-list__item-content-wrapper--domain-button:not(.is-unavailable) .plans-feature-list__item-description{color:var(--studio-gray-70)}.plans-accordion .plans-feature-list__item-content-wrapper--domain-button:not(.is-unavailable) .plans-feature-list__item-description.is-cta{color:var(--studio-gray-100)}.plans-accordion .plans-feature-list__item-content-wrapper--domain-button:not(.is-unavailable) .plans-feature-list__item-description:focus,.plans-accordion .plans-feature-list__item-content-wrapper--domain-button:not(.is-unavailable) .plans-feature-list__item-description:hover{color:var(--studio-gray-50)}.plans-feature-list__item--disabled-message .plans-feature-list__item-description,.plans-feature-list__item-content-wrapper--domain-button.is-unavailable .plans-feature-list__item-description{color:var(--studio-orange-40)}.plans-feature-list__item-content-wrapper--domain-button.is-unavailable .plans-feature-list__item-description:focus,.plans-feature-list__item-content-wrapper--domain-button.is-unavailable .plans-feature-list__item-description:hover{color:var(--studio-orange-30)}.plans-feature-list__item-content-wrapper--domain-button.is-cta .plans-feature-list__item-description{text-decoration:underline}.plans-feature-list__item--disabled-message .plans-feature-list__item-content-wrapper--domain-button.is-cta .plans-feature-list__item-description,.plans-feature-list__item--disabled-message .plans-feature-list__item-description,.plans-feature-list__item--requires-annual-disabled .plans-feature-list__item-content-wrapper--domain-button.is-cta .plans-feature-list__item-description,.plans-feature-list__item--requires-annual-disabled .plans-feature-list__item-description,.plans-feature-list__item-content-wrapper--domain-button.is-unavailable .plans-feature-list__item-description{text-decoration:line-through}.plans-feature-list__item-url{word-break:break-all}.plans-feature-list__placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;display:inline-block;width:200px}.plans-feature-list__placeholder:after{content:" "}.plans-table{width:100%;display:flex;flex-wrap:wrap}.plan-item{display:inline-flex;min-width:250px;flex-grow:1;flex-basis:0;flex-direction:column;margin-top:30px}.plan-item.badge-next-to-name{color:var(--studio-gray-100)}@media(min-width:480px){.plan-item+.plan-item{margin-left:-1px}}@media(max-width:480px){.plan-item:not(.is-popular){margin-top:-1px}.plan-item.is-open:not(.is-popular){margin-bottom:30px}}.plan-item__viewport{width:100%;height:100%;flex:1;border:1px solid #999;padding:20px}.plan-item:not(.is-popular) .plan-item__heading{display:flex;align-items:center}@media(max-width:480px){.plan-item:not(.is-popular) .plan-item__heading{font-size:1em}}.plan-item__heading.badge-next-to-name{display:flex;justify-content:space-between}.plan-item__name{font-weight:700;font-size:18px;line-height:24px;display:inline-block}@media(max-width:480px){.plan-item__name{font-size:14px}}.plan-item__badge-next-to-name{height:20px;background:rgba(184,230,191,.64);border-radius:4px;color:var(--studio-green-80);padding:2px 5px;font-size:.75rem}.plan-item__tagline{color:var(--studio-gray-80);font-size:.875rem;margin:4px 0}@media(max-width:480px){.plan-item:not(.is-popular) .plan-item__name{font-weight:400}}.plan-item__mobile-expand-all-plans.components-button.is-link{margin:20px auto;color:#757575}.plan-item__badge{position:relative;display:block;background:#000;text-align:center;text-transform:uppercase;color:#fff;padding:0 5px;font-size:.75rem;margin:-24px 0 0;height:24px;line-height:24px}.plan-item__price-amount{font-weight:600;font-size:32px;line-height:24px}.plan-item__price-amount.is-loading{max-width:60px;animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent}.plan-item__price-amount.is-loading:after{content:" "}@media(max-width:480px){.plan-item:not(.is-open) .plan-item__price-amount{font-weight:400;font-size:1em}}.plan-item__summary{width:100%}.plan-item__summary::-webkit-details-marker{display:none}@media(min-width:480px){.plan-item.is-popular .plan-item__summary,.plan-item__summary{pointer-events:none}}@media(max-width:480px){.plan-item:not(.is-open) .plan-item__summary{display:flex}}.plan-item__price-note{font-size:12px;line-height:19px;letter-spacing:-.4px;color:var(--studio-gray-40);margin-top:8px;margin-bottom:10px}.plan-item__details .plan-item__summary .plan-item__price{margin-top:16px;margin-bottom:8px}.plan-item:not(.is-open) .plan-item__summary .plan-item__price{margin-top:0;margin-bottom:0;margin-left:10px;color:#757575}.plan-item__actions{margin-bottom:16px}.plan-item__dropdown-chevron{flex:1;text-align:right}.plan-item.is-open .plan-item__dropdown-chevron{display:none}@media(max-width:480px){.plan-item.is-popular{order:-3}}.plan-item__select-button.components-button{justify-content:center;height:40px;margin-top:15px;padding:0 24px;font-size:.875rem;color:var(--studio-gray-90);border-radius:4px;border:1px solid var(--studio-gray-10)}.plan-item__select-button.components-button:active,.plan-item__select-button.components-button:hover{background:inherit;color:inherit}.plan-item__select-button.components-button:focus{border-color:inherit;box-shadow:0 0 0 1.5px #117ac9}.plan-item__select-button.components-button:disabled{border-color:var(--studio-gray-5);text-decoration:line-through;opacity:.5}.plan-item__select-button.components-button.is-popular,.plan-item__select-button.components-button.is-primary{background:#117ac9;border-color:#117ac9;color:var(--studio-white)}.plan-item__select-button.components-button.is-popular:active:not(:disabled),.plan-item__select-button.components-button.is-popular:hover,.plan-item__select-button.components-button.is-primary:active:not(:disabled),.plan-item__select-button.components-button.is-primary:hover{background:#117ac9;border-color:inherit}.plan-item__select-button.components-button.is-popular:focus,.plan-item__select-button.components-button.is-primary:focus{box-shadow:0 0 0 1.5px #117ac9}.plan-item__select-button.components-button.is-popular:not(.full-width) svg,.plan-item__select-button.components-button.is-primary:not(.full-width) svg{margin-left:-8px;margin-right:10px}.plan-item__select-button.components-button.is-selected{border-color:#117ac9;color:#117ac9;background:#fafcfe}.plan-item__select-button.components-button.is-selected svg{fill:currentColor;stroke:currentColor;transform:translateY(-1px);vertical-align:middle;margin-right:4px}.plan-item__select-button.components-button.full-width{width:100%}.plan-item__price-discount{display:block;font-size:.75rem;font-weight:600;line-height:1.3;letter-spacing:.2px;text-transform:uppercase;color:var(--studio-green-60);margin-bottom:8px}.plan-item__price-discount--disabled{color:var(--studio-gray-40);text-decoration:line-through}.plan-item__price-discount--hidden{visibility:hidden}.plan-item:not(.is-open) .plan-item__price-discount{display:none}.plans-grid__details-heading{margin-bottom:20px}.plans-details__table{padding-left:24px;padding-right:24px;width:100%;border-spacing:0}@media(min-width:600px){.plans-details__table{padding-left:48px;padding-right:48px}}@media(min-width:782px){.plans-details__table{padding-left:96px;padding-right:96px}}@media(min-width:1440px){.plans-details__table{padding-left:0;padding-right:0}}.plans-details__table td,.plans-details__table th{padding:13px 24px}.plans-details__table td:first-child,.plans-details__table th:first-child{padding-left:0;width:20%}@media(min-width:480px){.plans-details__table td:first-child,.plans-details__table th:first-child{width:40%}}.plans-details__table td:not(:first-child),.plans-details__table th:not(:first-child){white-space:nowrap}.plans-details__table .hidden{display:none}.plans-details__header-row th{font-weight:600;font-size:.875rem;line-height:20px;text-transform:uppercase;color:var(--studio-gray-20);padding-top:5px;padding-bottom:5px;border-bottom:1px solid #eaeaeb;text-align:left}thead .plans-details__header-row th:not(:first-child){text-align:center}.plans-details__feature-row td,.plans-details__feature-row th{font-size:.875rem;font-weight:400;line-height:17px;letter-spacing:.2px;border-bottom:1px solid #eaeaeb;vertical-align:middle}.plans-details__feature-row th{text-align:left}.plans-details__feature-row td{text-align:center}.plans-details__placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;display:inline-block;width:64px}.plans-details__placeholder:after{content:" "}.plans-details__placeholder--narrow{width:32px}.plans-details__placeholder--wide{width:96px}.plans-details__select-button.components-button{height:36px;padding:0 18px}@media(min-width:600px){.plans-details__select-button.components-button{height:40px;padding:0 24px}}.plans-details__feature-annual-nudge{display:block;text-transform:uppercase;font-size:10px;font-weight:700;letter-spacing:.02em;line-height:1;margin-bottom:6px}.plans-details__feature-row--enabled .plans-details__feature-annual-nudge{color:var(--studio-green-60)}.plans-details__feature-row--disabled .plans-details__feature-annual-nudge{color:var(--studio-orange-40)}.plans-details__feature-row--disabled .plans-details__feature-annual-nudge+span{text-decoration:line-through}.nux-launch__feature-list{padding:20px}.nux-launch__feature-list p{margin:10px 0 0}.nux-launch__feature-list-title{margin:0 0 10px;color:#555d66;font-weight:400}ul.nux-launch__feature-item-group{margin:0}.nux-launch__feature-item{font-size:.875rem;line-height:20px;letter-spacing:.2px;margin:4px 0;vertical-align:middle;color:#555d66;display:flex;align-items:flex-start}.nux-launch__feature-item svg{display:block;margin-right:6px;margin-top:2px;flex-shrink:0}.nux-launch__feature-item svg path{fill:var(--studio-green-40);stroke:var(--studio-green-40)}.nux-launch__submit-button.components-button.is-primary{background:var(--color-accent);border:1px solid var(--color-accent-dark);width:100%;justify-content:center}.nux-launch__submit-button.components-button.is-primary:active,.nux-launch__submit-button.components-button.is-primary:hover{background:var(--color-accent-dark)}.nux-launch__submit-button.components-button.is-primary:disabled{color:#fff;opacity:.5}.nux-launch__submit-button.components-button.is-primary:disabled:hover{background:var(--color-accent)}.nux-launch__summary-item p{margin:0;word-break:break-word}.nux-launch__summary-item .components-tip{margin-top:10px}.nux-launch__summary-item .components-tip svg{align-self:flex-start}.nux-launch__summary-item__plan-name{color:var(--color-text)}.nux-launch__summary-item__domain-name{font-weight:600}.nux-launch__summary-item__domain-name.is-loading{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent}.nux-launch__summary-item__domain-name.is-loading:after{content:" "}.nux-launch__summary-item__domain-price{font-size:.875rem}.nux-launch-menu h4{text-transform:uppercase;margin-bottom:16px}.nux-launch-menu__item-group{margin:0 -12px}.nux-launch-menu__item.components-button.is-link{font-size:.875rem;line-height:17px;display:flex;color:var(--studio-gray-30);width:100%;text-align:left;text-decoration:none;padding:16px 14px}.nux-launch-menu__item.components-button.is-link:hover{color:initial}.nux-launch-menu__item.components-button.is-link:focus{box-shadow:none}.nux-launch-menu__item.components-button.is-link svg{margin-right:10px;color:var(--studio-gray-10);position:relative;top:1px;left:-1px}@media(min-width:782px){.nux-launch-menu__item.components-button.is-link.is-current{background:var(--studio-blue-0);color:initial}.nux-launch-menu__item.components-button.is-link.is-current svg{color:initial}}.nux-launch-menu__item.components-button.is-link.is-completed svg{color:var(--studio-green-40);top:0;left:0}.nux-launch-sidebar{margin-left:24px;margin-right:24px;display:flex;flex-direction:column;height:100%;background:var(--studio-white);padding-top:60px}@media(min-width:600px){.nux-launch-sidebar{margin-left:48px;margin-right:48px}}@media(min-width:782px){.nux-launch-sidebar{margin-left:96px;margin-right:96px;display:block;height:auto;margin:0 24px;padding-top:0}}@media(min-width:782px){.nux-launch-sidebar h1.onboarding-title{font-size:1.5rem}.nux-launch-sidebar h2.onboarding-subtitle{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:400;font-size:.875rem;line-height:1.5;color:var(--studio-gray-60)}}.nux-launch-sidebar__header{margin:48px 0 38.4px}@media(min-width:600px){.nux-launch-sidebar__header{margin:64px 0 51.2px}}@media(min-width:782px){.nux-launch-sidebar__header{margin:80px 0 64px}}.nux-launch-sidebar__body{flex-grow:1;margin:0 0 48px}@media(min-width:600px){.nux-launch-sidebar__body{margin:0 0 64px}}@media(min-width:782px){.nux-launch-sidebar__body{margin:0 0 80px}}.nux-launch-sidebar__footer{margin-left:-24px;margin-right:-24px;position:sticky;bottom:0}@media(min-width:600px){.nux-launch-sidebar__footer{margin-left:-48px;margin-right:-48px}}@media(min-width:782px){.nux-launch-sidebar__footer{margin-left:-96px;margin-right:-96px}}.nux-launch-sidebar__footer .action-buttons{position:relative;justify-content:flex-end}@media(min-width:782px){.nux-launch-sidebar__footer{display:none}}.nux-launch-progress{display:flex;align-items:center;font-weight:600}@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}}body.has-nux-launch-modal{overflow:hidden}.nux-launch-modal.components-modal__frame{transform:none}.nux-launch-modal .components-modal__header{display:none}.nux-launch-modal .components-modal__content{left:0;height:100%;padding:0;overflow:auto}.nux-launch-modal-header,.nux-launch-modal .components-modal__content{position:fixed;top:0;display:flex;background:var(--studio-white);width:100%}.nux-launch-modal-header{margin-left:-24px;margin-right:-24px;height:60px;border-bottom:1px solid #e0e0e0;z-index:10}@media(min-width:600px){.nux-launch-modal-header{margin-left:-48px;margin-right:-48px}}@media(min-width:782px){.nux-launch-modal-header{margin-left:-96px;margin-right:-96px;position:relative;border-bottom:none}}.nux-launch-modal-header .nux-launch-progress{height:60px}@media(min-width:782px){.nux-launch-modal-header .nux-launch-progress{display:none}}.nux-launch-modal-header__wp-logo{display:flex;align-items:center;justify-content:center;width:60px;height:60px}.nux-launch-modal-body{position:relative;flex-grow:1;min-width:0;display:flex;flex-direction:column;margin-left:24px;margin-right:24px;padding-top:60px}@media(min-width:600px){.nux-launch-modal-body{margin-left:48px;margin-right:48px}}@media(min-width:782px){.nux-launch-modal-body{margin-left:96px;margin-right:96px}}.nux-launch-modal-body .nux-launch-step__body{flex-grow:1}.is-sidebar-fullscreen .nux-launch-modal-body{overflow:hidden}@media(min-width:782px){.nux-launch-modal-body{padding-top:0}}.nux-launch-modal-aside{position:absolute;top:0;left:-200%;width:100%;height:100%;background:var(--studio-white);z-index:12}@media(max-width:782px){.is-sidebar-fullscreen .nux-launch-modal-aside{left:0}}@media(min-width:782px){.nux-launch-modal-aside{position:sticky;top:0;left:auto;width:280px;min-width:280px;max-width:280px;border-left:1px solid var(--studio-gray-5)}}.nux-launch-modal__close-button.components-button.is-link{position:sticky;top:0;z-index:13;width:0;height:0;overflow:visible;display:flex;align-items:flex-start;color:var(--studio-gray-50)}.nux-launch-modal__close-button.components-button.is-link:hover{color:var(--studio-gray-40)}.nux-launch-modal__close-button.components-button.is-link>span{position:relative;right:60px;padding:0 18px;height:60px;display:flex;align-items:center}.nux-launch-modal-body__launching{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center;font-size:1rem}
1
+ .nux-launch-step__header{margin:48px 0 38.4px;display:flex;justify-content:space-between;align-items:center}@media(min-width:600px){.nux-launch-step__header{margin:64px 0 51.2px}}@media(min-width:782px){.nux-launch-step__header{margin:80px 0 64px}}.nux-launch-step__header .action-buttons{display:none}@media(min-width:782px){.nux-launch-step__header .action-buttons{display:block}}.nux-launch-step__body{margin:0 0 48px}@media(min-width:600px){.nux-launch-step__body{margin:0 0 64px}}@media(min-width:782px){.nux-launch-step__body{margin:0 0 80px}}.nux-launch-step__footer{margin-left:-24px;margin-right:-24px;position:sticky;bottom:0}@media(min-width:600px){.nux-launch-step__footer{margin-left:-48px;margin-right:-48px}}@media(min-width:782px){.nux-launch-step__footer{margin-left:-96px;margin-right:-96px}}.nux-launch-step__footer .action-buttons{position:relative}@media(min-width:782px){.nux-launch-step__footer{display:none}}.onboarding-title{font-family:Recoleta,"Noto Serif",Georgia,Times New Roman,Times,serif;font-weight:400;letter-spacing:-.4px;font-size:32px;line-height:40px;color:var(--mainColor);margin:0}@media(min-width:480px){.onboarding-title{font-family:Recoleta,"Noto Serif",Georgia,Times New Roman,Times,serif;font-weight:400;letter-spacing:-.4px;font-size:36px;line-height:40px}}@media(min-width:1080px){.onboarding-title{font-family:Recoleta,"Noto Serif",Georgia,Times New Roman,Times,serif;font-weight:400;letter-spacing:-.4px;font-size:42px;line-height:57px}}.onboarding-subtitle{font-size:16px;line-height:24px;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:400;letter-spacing:.2px;color:var(--studio-gray-60);margin:5px 0 0}@media(min-width:600px){.onboarding-subtitle{margin-top:0}}.action-buttons{padding:0 20px;border-top:1px solid #e0e0e0;background-color:#fff;position:fixed;bottom:0;right:0;left:0;height:60px;justify-content:space-between;display:flex;align-items:center;z-index:30}@media(min-width:600px){.action-buttons:not(.is-sticky){padding:0;margin-left:20px;position:static;border:none}.action-buttons:not(.is-sticky) .action_buttons__button{margin-left:20px}.action-buttons:not(.is-sticky) .action_buttons__button:first-child{margin-left:0}}.action-buttons.no-sticky{padding:0;margin-left:20px;position:static;border:none}.action-buttons.no-sticky .action_buttons__button{margin-left:20px}.action-buttons.no-sticky .action_buttons__button:first-child{margin-left:0}button.action_buttons__button.components-button{font-size:.875rem;line-height:17px;height:42px;min-width:120px;justify-content:center}button.action_buttons__button.components-button:active,button.action_buttons__button.components-button:focus,button.action_buttons__button.components-button:hover{outline-color:transparent}button.action_buttons__button.components-button:disabled{opacity:.5}button.action_buttons__button.components-button.action-buttons__back{color:var(--studio-gray-50);white-space:nowrap;min-width:0;height:auto}button.action_buttons__button.components-button.action-buttons__next{color:var(--studio-white);box-shadow:0 0 0 1px var(--studio-blue-40)}button.action_buttons__button.components-button.action-buttons__skip{color:var(--studio-gray-50);box-shadow:inset 0 0 0 1px var(--studio-gray-50)}button.action_buttons__button.components-button.action-buttons__skip:active,button.action_buttons__button.components-button.action-buttons__skip:hover{color:var(--studio-gray-60);box-shadow:inset 0 0 0 1px var(--studio-gray-60)}button.action_buttons__button.components-button.action-buttons__skip:focus{color:var(--studio-gray-60);box-shadow:inset 0 0 0 1px #fff,0 0 0 1.5px var(--highlightColor)}button.action_buttons__button.components-button.action-buttons__arrow{justify-content:flex-start;text-decoration:underline;font-weight:500;color:var(--mainColor);padding:0;margin-right:0}@media(min-width:782px){button.action_buttons__button.components-button.action-buttons__arrow{justify-content:flex-end}}button.action_buttons__button.components-button.action-buttons__arrow svg{margin:0 -5px -4px}@media(min-width:600px){button.action_buttons__button.components-button{min-width:160px}}: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;--midnight-blue-0:#e1eef5;--midnight-blue-5:#b3ddf5;--midnight-blue-10:#6bbff2;--midnight-blue-20:#30a2f0;--midnight-blue-30:#007fde;--midnight-blue-40:#006ac0;--midnight-blue-50:#00549d;--midnight-blue-60:#00417d;--midnight-blue-70:#003567;--midnight-blue-80:#00284f;--midnight-blue-90:#001a33;--midnight-blue-100:#000e1c;--midnight-blue:#00549d;--midnight-blue-0-rgb:225,238,245;--midnight-blue-5-rgb:179,221,245;--midnight-blue-10-rgb:107,191,242;--midnight-blue-20-rgb:48,162,240;--midnight-blue-30-rgb:0,127,222;--midnight-blue-40-rgb:0,106,192;--midnight-blue-50-rgb:0,84,157;--midnight-blue-60-rgb:0,65,125;--midnight-blue-70-rgb:0,53,103;--midnight-blue-80-rgb:0,40,79;--midnight-blue-90-rgb:0,26,51;--midnight-blue-100-rgb:0,14,28;--midnight-blue-rgb:0,84,157;--color-primary:var(--theme-highlight-color);--color-primary-rgb:var(--theme-highlight-color-rgb);--color-primary-dark:var(--midnight-blue-70);--color-primary-dark-rgb:var(--midnight-blue-70-rgb);--color-primary-light:var(--midnight-blue-30);--color-primary-light-rgb:var(--midnight-blue-30-rgb);--color-primary-0:var(--midnight-blue-0);--color-primary-0-rgb:var(--midnight-blue-0-rgb);--color-primary-5:var(--midnight-blue-5);--color-primary-5-rgb:var(--midnight-blue-5-rgb);--color-primary-10:var(--midnight-blue-10);--color-primary-10-rgb:var(--midnight-blue-10-rgb);--color-primary-20:var(--midnight-blue-20);--color-primary-20-rgb:var(--midnight-blue-20-rgb);--color-primary-30:var(--midnight-blue-30);--color-primary-30-rgb:var(--midnight-blue-30-rgb);--color-primary-40:var(--midnight-blue-40);--color-primary-40-rgb:var(--midnight-blue-40-rgb);--color-primary-50:var(--midnight-blue-50);--color-primary-50-rgb:var(--midnight-blue-50-rgb);--color-primary-60:var(--midnight-blue-60);--color-primary-60-rgb:var(--midnight-blue-60-rgb);--color-primary-70:var(--midnight-blue-70);--color-primary-70-rgb:var(--midnight-blue-70-rgb);--color-primary-80:var(--midnight-blue-80);--color-primary-80-rgb:var(--midnight-blue-80-rgb);--color-primary-90:var(--midnight-blue-90);--color-primary-90-rgb:var(--midnight-blue-90-rgb);--color-primary-100:var(--midnight-blue-100);--color-primary-100-rgb:var(--midnight-blue-100-rgb);--color-accent:var(--theme-highlight-color);--color-accent-rgb:var(--theme-highlight-color-rgb);--color-accent-dark:var(--midnight-blue-70);--color-accent-dark-rgb:var(--midnight-blue-70-rgb);--color-accent-light:var(--midnight-blue-30);--color-accent-light-rgb:var(--midnight-blue-30-rgb);--color-accent-0:var(--midnight-blue-0);--color-accent-0-rgb:var(--midnight-blue-0-rgb);--color-accent-5:var(--midnight-blue-5);--color-accent-5-rgb:var(--midnight-blue-5-rgb);--color-accent-10:var(--midnight-blue-10);--color-accent-10-rgb:var(--midnight-blue-10-rgb);--color-accent-20:var(--midnight-blue-20);--color-accent-20-rgb:var(--midnight-blue-20-rgb);--color-accent-30:var(--midnight-blue-30);--color-accent-30-rgb:var(--midnight-blue-30-rgb);--color-accent-40:var(--midnight-blue-40);--color-accent-40-rgb:var(--midnight-blue-40-rgb);--color-accent-50:var(--midnight-blue-50);--color-accent-50-rgb:var(--midnight-blue-50-rgb);--color-accent-60:var(--midnight-blue-60);--color-accent-60-rgb:var(--midnight-blue-60-rgb);--color-accent-70:var(--midnight-blue-70);--color-accent-70-rgb:var(--midnight-blue-70-rgb);--color-accent-80:var(--midnight-blue-80);--color-accent-80-rgb:var(--midnight-blue-80-rgb);--color-accent-90:var(--midnight-blue-90);--color-accent-90-rgb:var(--midnight-blue-90-rgb);--color-accent-100:var(--midnight-blue-100);--color-accent-100-rgb:var(--midnight-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: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-jetpack-green-50);--color-sidebar-menu-selected-text-rgb:var(--studio-jetpack-green-50-rgb);--color-sidebar-menu-selected-background:var(--studio-jetpack-green-5);--color-sidebar-menu-selected-background-rgb:var(--studio-jetpack-green-5-rgb);--color-sidebar-menu-hover-text:var(--studio-gray-90);--color-sidebar-menu-hover-background:var(--studio-gray-5);--color-sidebar-menu-hover-background-rgb:var(--studio-gray-5-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)}.domain-picker__empty-state{display:flex;justify-content:center;flex-direction:column}.domain-picker__empty-state--text{max-width:320px;font-size:.875rem;margin:10px 0;color:#757575}@media(min-width:480px){.domain-picker__empty-state{flex-direction:row;align-items:center}.domain-picker__empty-state--text{margin:15px 10px}}.domain-picker__show-more{margin-top:20px;text-align:center}.domain-picker__search{position:relative;margin-bottom:20px}.domain-picker__search input[type=text].components-text-control__input{padding:6px 40px 6px 16px;height:38px;background:#f0f0f0;border:none}.domain-picker__search input[type=text].components-text-control__input::placeholder{color:var(--studio-black)}.domain-picker__search input[type=text].components-text-control__input:focus{box-shadow:0 0 0 2px var(--studio-blue-30);background:var(--studio-white)}.domain-picker__search svg{position:absolute;top:6px;right:8px}.domain-picker__suggestion-item-group{flex-grow:1}.domain-picker__suggestion-sections{flex:1}.domain-picker__suggestion-group-label{margin:1.5em 0 .5em;text-transform:uppercase;color:var(--studio-gray-40);font-size:.75rem;letter-spacing:1px;font-weight:700}.domain-picker__suggestion-item{font-size:.875rem;line-height:17px;display:flex;justify-content:space-between;align-items:center;width:100%;min-height:58px;background:var(--studio-white);border:1px solid var(--studio-gray-5);padding:10px 14px;position:relative;text-align:left;cursor:pointer;outline-color:#117ac9}.domain-picker__suggestion-item.type-radio{outline:none}.domain-picker__suggestion-item.type-individual-item{min-height:64px;border-width:2px}.domain-picker__suggestion-item.type-individual-item.is-selected,.domain-picker__suggestion-item.type-individual-item:hover{border-color:#117ac9}.domain-picker__suggestion-item.type-link{display:flex;flex-direction:column;align-items:flex-start}@media(min-width:782px){.domain-picker__suggestion-item.type-link{flex-direction:row;align-items:center}}.domain-picker__suggestion-item.placeholder{cursor:default}.domain-picker__sugggested-items-container .domain-picker__suggestion-item.type-individual-item,.domain-picker__sugggested-items-container .domain-picker__suggestion-item:first-child{border-top-left-radius:5px;border-top-right-radius:5px}.domain-picker__sugggested-items-container .domain-picker__suggestion-item.type-individual-item,.domain-picker__sugggested-items-container .domain-picker__suggestion-item:last-child{border-bottom-left-radius:5px;border-bottom-right-radius:5px}.domain-picker__suggestion-item+.domain-picker__suggestion-item{margin-top:-1px}.domain-picker__suggestion-item+.domain-picker__suggestion-item.type-individual-item{margin-top:12px}.domain-picker__suggestion-item.is-unavailable{color:var(--studio-gray-40);cursor:default}.domain-picker__suggestion-item:nth-child(8){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:40ms}.domain-picker__suggestion-item:nth-child(9){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:80ms}.domain-picker__suggestion-item:nth-child(10){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:.12s}.domain-picker__suggestion-item:nth-child(11){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:.16s}.domain-picker__suggestion-item:nth-child(12){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:.2s}.domain-picker__suggestion-item:nth-child(13){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:.24s}.domain-picker__suggestion-item:nth-child(14){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:.28s}@keyframes domain-picker-item-slide-up{to{transform:translateY(0);opacity:1}}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;box-shadow:0 0 0 transparent;transition:box-shadow .1s linear;border-radius:2px;font-size:16px;line-height:normal;border:1px solid #1e1e1e;transition:none;border-radius:50%;width:24px;height:24px;width:16px;height:16px;min-width:16px;padding:0;margin:1px 12px 0 0;vertical-align:middle;position:relative}@media(prefers-reduced-motion:reduce){.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle{transition-duration:0s;transition-delay:0s}}@media(min-width:600px){.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle{font-size:13px;line-height:normal}}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color)}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle:-ms-input-placeholder{color:rgba(30,30,30,.62)}.is-dark-theme .domain-picker__suggestion-item .domain-picker__suggestion-radio-circle::-webkit-input-placeholder{color:hsla(0,0%,100%,.65)}.is-dark-theme .domain-picker__suggestion-item .domain-picker__suggestion-radio-circle::-moz-placeholder{opacity:1;color:hsla(0,0%,100%,.65)}.is-dark-theme .domain-picker__suggestion-item .domain-picker__suggestion-radio-circle:-ms-input-placeholder{color:hsla(0,0%,100%,.65)}@media(min-width:600px){.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle{height:20px;width:20px}}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle:checked:before{box-sizing:inherit;width:8px;height:8px;transform:translate(7px,7px);margin:0;background-color:#fff;border:4px solid #fff}@media(min-width:600px){.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle:checked:before{transform:translate(5px,5px)}}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle:focus{box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle.is-checked{border-color:var(--studio-blue-30);background-color:var(--studio-blue-30)}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle.is-checked:before{display:none}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle.is-checked:after{content:"";width:100%;height:100%;border:2px solid #fff;border-radius:50%;position:absolute;margin:0;background:transparent}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle.is-checked:focus,.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle:not(.is-unavailable):focus,.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle:not(.is-unavailable):hover{border-color:var(--studio-blue-30);box-shadow:0 0 0 1px var(--studio-blue-30)}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle.is-unavailable{border-color:var(--studio-gray-40)}.domain-picker__suggestion-item:focus .domain-picker__suggestion-radio-circle{border-color:var(--studio-blue-30);box-shadow:0 0 0 1px var(--studio-blue-30)}.domain-picker__suggestion-item .components-spinner{margin:1px 10px 0 0}.domain-picker__suggestion-item-name{flex-grow:1;flex-basis:2px;letter-spacing:.4px;margin-right:10px;word-break:break-all}@media(min-width:782px){.domain-picker__suggestion-item-name{margin-right:24px}}.domain-picker__suggestion-item-name .domain-picker__suggestion-item-name-inner{display:flex;align-items:center;flex-wrap:wrap}.domain-picker__suggestion-item-name .domain-picker__sub-domain{word-break:break-word}.domain-picker__suggestion-item-name.placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;max-width:30%;margin-right:auto}.domain-picker__suggestion-item-name.placeholder:after{content:" "}.domain-picker__suggestion-item.type-individual-item.is-selected .domain-picker__suggestion-item-name{color:#117ac9}.domain-picker__domain-tld{color:var(--studio-blue-40);word-break:keep-all;margin-right:5px}.domain-picker__suggestion-item.is-unavailable .domain-picker__domain-tld{color:var(--studio-gray-40)}.domain-picker__domain-wrapper{direction:ltr}.domain-picker__domain-wrapper.with-margin{margin-right:10px}.domain-picker__domain-wrapper.with-bold-text{font-weight:500}.domain-picker__suggestion-item.type-individual-item .domain-picker__domain-tld{font-weight:500;color:unset}.domain-picker__info-tooltip{margin-right:10px;cursor:pointer;z-index:100001}.domain-picker__badge{display:inline-flex;border-radius:2px;padding:0 2%;white-space:nowrap;line-height:20px;height:20px;align-items:center;font-size:10px;text-transform:uppercase;vertical-align:middle;background-color:var(--studio-blue-50);color:var(--color-text-inverted);margin:2px 0}.domain-picker__suggestion-item.type-individual-item .domain-picker__badge{color:var(--studio-green-80);background-color:var(--studio-green-5);border-radius:4px;text-transform:unset;font-size:.75rem}.domain-picker__suggestion-item.type-individual-item.is-selected .domain-picker__badge{color:#0f6cb3;background-color:#ddebf8}.domain-picker__price{color:var(--studio-gray-40);text-align:right;flex-basis:0;flex-grow:1;transition:opacity .2s ease-in-out}.domain-picker__price:not(.is-paid){display:none}.domain-picker__price:not(:last-child){text-align:left}@media(min-width:600px){.domain-picker__price{flex-basis:1px}.domain-picker__price:not(.is-paid){display:inline}}.domain-picker__price.placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;min-width:64px}.domain-picker__price.placeholder:after{content:" "}.domain-picker__suggestion-item.is-free .domain-picker__price{flex-grow:.1}.domain-picker__suggestion-item.type-individual-item .domain-picker__price{display:flex;flex-direction:column-reverse}.domain-picker__suggestion-item.type-individual-item .domain-picker__price:not(.is-paid){display:block}@media(min-width:782px){.domain-picker__suggestion-item.type-individual-item .domain-picker__price{display:block}}.domain-picker__price-inclusive{color:var(--studio-green-40);display:none}@media(min-width:600px){.domain-picker__price-inclusive{display:inline}}.domain-picker__price-inclusive strong{font-weight:700}.domain-picker__price-renewal{display:none;font-size:.75rem}.domain-picker__suggestion-item.type-individual-item .domain-picker__price-inclusive{display:block;line-height:20px}.domain-picker__suggestion-item.type-individual-item .domain-picker__price-inclusive strong{font-weight:500}.domain-picker__suggestion-item.type-individual-item.is-selected .domain-picker__price-inclusive{color:#117ac9}.domain-picker__price-cost{text-decoration:line-through}.domain-picker__suggestion-item.type-individual-item.is-selected .domain-picker__price-cost{color:#117ac9;opacity:.68}.domain-picker__suggestion-item.type-button{flex-direction:column;align-items:flex-start}.domain-picker__suggestion-item.type-button .domain-picker__price.is-paid{display:flex;flex-wrap:wrap}.domain-picker__suggestion-item.type-button .domain-picker__price-inclusive{display:inline}.domain-picker__suggestion-item.type-button .domain-picker__price-inclusive:before{content:" "}.domain-picker__suggestion-item.type-button .domain-picker__price-renewal{display:inline;width:100%}@media(min-width:782px){.domain-picker__suggestion-item.type-button{flex-direction:row;align-items:center}.domain-picker__suggestion-item.type-button .domain-picker__price-inclusive{order:-1}.domain-picker__suggestion-item.type-button .domain-picker__price-inclusive:before{content:none}.domain-picker__suggestion-item.type-button .domain-picker__price-inclusive:after{content:" "}}.domain-picker__body{display:flex}@media(max-width:480px){.domain-picker__body{display:block}.domain-picker__body .domain-picker__aside{width:100%;padding:0}}.domain-picker__aside{width:220px;padding-right:30px}.domain-picker__change-subdomain-tip,.domain-picker__item-tip{font-size:.75rem;color:var(--studio-gray-40);word-break:normal}.domain-picker__error.components-notice{margin:0}.domain-picker__error .domain-picker__error-message{font-size:.875rem;line-height:17px}.domain-picker__error .domain-picker__error-retry-btn{margin-top:16px}.domain-picker__suggestion-select-button.components-button.is-secondary{justify-content:center;width:100%;min-width:140px;box-shadow:inset 0 0 0 1px var(--studio-gray-10);color:var(--mainColor)}.domain-picker__suggestion-select-button.components-button.is-secondary.is-selected,.domain-picker__suggestion-select-button.components-button.is-secondary:focus,.domain-picker__suggestion-select-button.components-button.is-secondary:hover{box-shadow:inset 0 0 0 1px var(--wp-admin-theme-color-darker-10);color:var(--wp-admin-theme-color-darker-10)}@media(min-width:782px){.domain-picker__suggestion-select-button.components-button.is-secondary{width:auto}}.domain-picker__action{margin-top:1rem;width:100%}@media(min-width:782px){.domain-picker__action{margin-top:0;width:auto}}.info-tooltip.components-button.has-icon.has-text svg{margin-right:0}.info-tooltip .components-popover__content>div{color:var(--color-neutral-50);font-size:.875rem;padding:16px;text-align:left}.info-tooltip .components-popover__content>div a{color:var(--studio-blue-40)}@media(max-width:480px){.domain-categories{margin-bottom:20px}.domain-categories .domain-categories__dropdown-button.components-button{display:block;margin-bottom:0}.domain-categories .domain-categories__item-group{display:none}.domain-categories.is-open .domain-categories__item-group{display:block}}.domain-categories__dropdown-button.components-button{width:100%;text-align:center;margin-bottom:8px;height:40px;border:1px solid var(--studio-gray-5);display:none}.domain-categories__dropdown-button.components-button>*{vertical-align:middle}.domain-categories__dropdown-button.components-button svg{margin-left:5px}@media(max-width:480px){.domain-categories__item-group{text-align:center;border:1px solid var(--studio-gray-5);margin-top:-1px}}.domain-categories__item .components-button{color:var(--studio-gray-100);width:100%;text-align:left}.domain-categories__item .components-button:focus,.domain-categories__item .components-button:hover{color:var(--studio-gray-100);box-shadow:none;font-weight:600;text-decoration:underline}.domain-categories__item.is-selected .components-button{font-weight:600;text-decoration:underline}@media(max-width:480px){.domain-categories__item .components-button{display:block;text-align:center}}html:not(.accessible-focus) .domain-categories__item .components-button:focus{box-shadow:none}.nux-launch__feature-list{padding:20px}.nux-launch__feature-list p{margin:10px 0 0}.nux-launch__feature-list-title{margin:0 0 10px;color:#555d66;font-weight:400}ul.nux-launch__feature-item-group{margin:0}.nux-launch__feature-item{font-size:.875rem;line-height:20px;letter-spacing:.2px;margin:4px 0;vertical-align:middle;color:#555d66;display:flex;align-items:flex-start}.nux-launch__feature-item svg{display:block;margin-right:6px;margin-top:2px;flex-shrink:0}.nux-launch__feature-item svg path{fill:var(--studio-green-40);stroke:var(--studio-green-40)}.nux-launch__submit-button.components-button.is-primary{background:var(--color-accent);border:1px solid var(--color-accent-dark);width:100%;justify-content:center}.nux-launch__submit-button.components-button.is-primary:active,.nux-launch__submit-button.components-button.is-primary:hover{background:var(--color-accent-dark)}.nux-launch__submit-button.components-button.is-primary:disabled{color:#fff;opacity:.5}.nux-launch__submit-button.components-button.is-primary:disabled:hover{background:var(--color-accent)}.nux-launch__summary-item p{margin:0;word-break:break-word}.nux-launch__summary-item .components-tip{margin-top:10px}.nux-launch__summary-item .components-tip svg{align-self:flex-start}.nux-launch__summary-item__plan-name{color:var(--color-text)}.nux-launch__summary-item__domain-name{font-weight:600}.nux-launch__summary-item__domain-name.is-loading{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent}.nux-launch__summary-item__domain-name.is-loading:after{content:" "}.nux-launch__summary-item__domain-price{font-size:.875rem}.nux-launch-step__input{position:relative;margin-bottom:20px}.nux-launch-step__input input[type=text].components-text-control__input{padding:6px 40px 6px 16px;height:38px;background:#f0f0f0;border:none}.nux-launch-step__input input[type=text].components-text-control__input::placeholder{color:var(--studio-black)}.nux-launch-step__input input[type=text].components-text-control__input:focus{box-shadow:0 0 0 2px var(--studio-blue-30);background:var(--studio-white)}.nux-launch-step__input svg{position:absolute;top:6px;right:8px}.nux-launch-step__input-hint{display:flex;align-items:center;color:var(--studio-gray-50);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:14px;line-height:14px}.nux-launch-step__input-hint>.components-tip svg{margin-right:10px}.nux-launch-modal.step-plan .nux-launch-step__body,.nux-launch-modal.step-plan .plans-grid{margin-bottom:0}.nux-launch-modal.step-plan .plans-grid__details-container{position:relative;margin-left:-24px;margin-right:-24px;width:auto}@media(min-width:600px){.nux-launch-modal.step-plan .plans-grid__details-container{margin-left:-48px;margin-right:-48px}}@media(min-width:782px){.nux-launch-modal.step-plan .plans-grid__details-container{margin-left:-96px;margin-right:-96px}}@media(min-width:1440px){.nux-launch-modal.step-plan .plans-grid__details-container{margin-left:0;margin-right:0}}.plans-grid{margin-bottom:85px}@media(min-width:600px){.plans-grid{margin-bottom:0}}.plans-grid__header{margin:48px 0 38.4px;display:flex;justify-content:space-between;align-items:center}@media(min-width:600px){.plans-grid__header{margin:64px 0 51.2px}}@media(min-width:782px){.plans-grid__header{margin:80px 0 64px}}.plans-grid__toggle{margin:-24px 0 32px}@media(min-width:782px){.plans-grid__toggle{margin-bottom:40px}}.plans-grid__details{margin-top:70px}.plans-grid__details-container{padding-bottom:120px}@media(max-width:1439px){.plans-grid__details-container{overflow-x:auto;width:100%;position:absolute;left:0}}.plans-grid__details-heading .plans-ui-title{color:var(--studio-black);margin-bottom:40px;font-size:32px;line-height:40px;letter-spacing:.2px}.plans-interval-toggle{display:flex;justify-content:center}.plans-interval-toggle .segmented-control{-webkit-tap-highlight-color:transparent;background-color:#f2f2f2;border-radius:6px;height:auto;overflow:hidden}.plans-interval-toggle--monthly .segmented-control{margin-bottom:60px}@media(min-width:782px){.plans-interval-toggle--monthly .segmented-control{margin-bottom:0}}.plans-interval-toggle .segmented-control__item .segmented-control__link,.plans-interval-toggle .segmented-control__item:first-of-type .segmented-control__link,.plans-interval-toggle .segmented-control__item:last-of-type .segmented-control__link{border-radius:5px;margin:2px;padding:0}.plans-interval-toggle .segmented-control__item{margin:0}.plans-interval-toggle .segmented-control__item.segmented-control__item:not(.is-selected) .segmented-control__link{background-color:transparent;border:.5px solid transparent;box-shadow:none}.plans-interval-toggle .segmented-control__item.is-selected .segmented-control__link{background-color:var(--studio-white);border:.5px solid #f5f5f5;box-shadow:0 3px 8px rgba(0,0,0,.12),0 3px 1px rgba(0,0,0,.04)}.plans-interval-toggle .segmented-control__item.is-selected .segmented-control__link:focus,.plans-interval-toggle .segmented-control__item.is-selected .segmented-control__link:hover,.plans-interval-toggle .segmented-control__item:not(.is-selected) .segmented-control__link:focus,.plans-interval-toggle .segmented-control__item:not(.is-selected) .segmented-control__link:hover{border-color:var(--studio-gray-10)}.plans-interval-toggle .segmented-control__text{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:.875rem;font-weight:500;letter-spacing:.16px;color:var(--studio-gray-90)}.plans-interval-toggle__label{display:inline-flex;align-items:center;justify-content:center;height:32px;min-width:102px;padding:0 16px}.components-popover.plans-interval-toggle__popover--mobile{display:block}@media(min-width:782px){.components-popover.plans-interval-toggle__popover--mobile{display:none}}.components-popover.plans-interval-toggle__popover--desktop[data-y-axis=middle]{display:none}@media(min-width:782px){.components-popover.plans-interval-toggle__popover--desktop[data-y-axis=middle]{display:flex}}.components-popover.plans-interval-toggle__popover .components-popover__content{padding:8px 10px;min-width:auto;width:232px;box-sizing:border-box;background-color:var(--studio-gray-100);border-color:var(--studio-gray-100);color:var(--studio-white);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:.75rem;font-weight:400;text-align:left;white-space:normal}.components-popover.plans-interval-toggle__popover:not(.is-without-arrow):after,.components-popover.plans-interval-toggle__popover:not(.is-without-arrow):before{border-color:var(--studio-gray-100)}.components-popover.plans-interval-toggle__popover:not(.is-without-arrow)[data-y-axis=bottom]:after,.components-popover.plans-interval-toggle__popover:not(.is-without-arrow)[data-y-axis=bottom]:before,.components-popover.plans-interval-toggle__popover:not(.is-without-arrow)[data-y-axis=top]:after,.components-popover.plans-interval-toggle__popover:not(.is-without-arrow)[data-y-axis=top]:before{border-left-color:transparent;border-right-color:transparent}.components-popover.plans-interval-toggle__popover:not(.is-without-arrow)[data-y-axis=middle]:after,.components-popover.plans-interval-toggle__popover:not(.is-without-arrow)[data-y-axis=middle]:before{border-bottom-color:transparent;border-top-color:transparent}.segmented-control{display:flex;margin:0;border-radius:2px;background-color:var(--color-surface);list-style:none}.segmented-control__item{flex:1 1 auto;cursor:pointer}.segmented-control__item:first-of-type .segmented-control__link{border-top-left-radius:2px;border-bottom-left-radius:2px}.segmented-control__item:last-of-type .segmented-control__link{border-right:1px solid var(--color-neutral-10);border-top-right-radius:2px;border-bottom-right-radius:2px}.segmented-control__item.is-selected+.segmented-control__item .segmented-control__link{border-left-color:var(--color-neutral-70)}.segmented-control__link{display:block;padding:8px 12px;border:1px solid var(--color-neutral-10);border-right:none;font-size:.875rem;line-height:18px;color:var(--color-text-subtle);text-align:center;transition:color .1s linear,background-color .1s linear}.segmented-control__link:focus{color:var(--color-neutral-70);outline:none;background-color:var(--color-neutral-0)}.segmented-control__item.is-selected .segmented-control__link{border-color:var(--color-neutral-70);color:var(--color-neutral-70)}.notouch .segmented-control__link:hover{color:var(--color-neutral-70);background-color:var(--color-neutral-0)}.segmented-control__text{display:block;max-width:100%;color:inherit;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.segmented-control.is-compact .segmented-control__link{font-size:.875rem;padding:4px 8px}.segmented-control.is-primary .segmented-control__item.is-selected .segmented-control__link{border-color:var(--color-primary);background-color:var(--color-primary);color:var(--color-text-inverted)}.segmented-control.is-primary .segmented-control__item.is-selected .segmented-control__link:focus{background-color:var(--color-primary-dark);border-color:var(--color-primary-dark)}.segmented-control.is-primary .segmented-control__item.is-selected+.segmented-control__item .segmented-control__link{border-left-color:var(--color-primary)}.notouch .segmented-control.is-primary .segmented-control__link:hover,.segmented-control.is-primary .segmented-control__link:focus{background-color:var(--color-neutral-0)}.notouch .segmented-control.is-primary .segmented-control__item.is-selected .segmented-control__link:hover{background-color:var(--color-primary-light)}.plans-accordion__actions{text-align:center}.plans-accordion__plan-item-group{width:100%;display:flex;flex-direction:column}.plans-accordion__toggle-all-button.components-button.is-link{margin:22px auto;color:#757575}@media(min-width:782px){.plans-accordion__toggle-all-button.components-button.is-link{margin:32px auto}}.plans-accordion__recommend-hint{color:var(--studio-gray-40);font-size:.875rem;text-align:right;margin-bottom:16px}.plans-accordion__recommend-hint svg{fill:var(--studio-yellow-30);margin-right:8px;position:relative;top:2px}.plans-accordion__placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;display:inline-block;width:64px}.plans-accordion__placeholder:after{content:" "}.plans-accordion__placeholder--narrow{width:32px}.plans-accordion__placeholder--wide{width:96px}.plans-accordion-item{display:block;flex-grow:1;flex-basis:0;flex-direction:column}.plans-accordion-item.is-disabled{background-color:var(--studio-gray-5)}.plans-accordion-item__viewport{width:100%;height:100%;padding:20px;border:1px solid var(--studio-gray-5)}.plans-accordion-item+.plans-accordion-item .plans-accordion-item__viewport{border-top:0}@media(min-width:600px){.plans-accordion-item__viewport{padding:32px}}.plans-accordion-item:first-of-type .plans-accordion-item__viewport{border-top-left-radius:5px;border-top-right-radius:5px}.plans-accordion-item:last-of-type .plans-accordion-item__viewport{border-bottom-left-radius:5px;border-bottom-right-radius:5px}.plans-accordion-item.has-badge .plans-accordion-item__viewport{border-top-width:0;border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:5px;border-bottom-right-radius:5px}@media(min-width:600px){.plans-accordion-item.has-badge .plans-accordion-item__viewport{border-top-width:1px;border-top-left-radius:5px;border-top-right-radius:5px}}.plans-accordion-item:not(.is-open) .plans-accordion-item__viewport{padding:0}.plans-accordion-item__name{display:inline-block;font-size:1rem;line-height:1.2}@media(min-width:600px){.plans-accordion-item__name{font-size:1.5rem}}.plans-accordion-item:not(.is-open) .plans-accordion-item__name{font-size:.875rem}@media(min-width:600px){.plans-accordion-item:not(.is-open) .plans-accordion-item__name{font-size:.875rem}}.plans-accordion-item.is-primary .plans-accordion-item__name{font-size:1.25rem}@media(min-width:600px){.plans-accordion-item.is-primary .plans-accordion-item__name{font-size:1.5rem}}.plans-accordion-item__description{font-size:.875rem;color:var(--studio-gray-50);margin-top:4px;display:none}.plans-accordion-item:not(.is-open) .plans-accordion-item__description{display:none}@media(min-width:600px){.plans-accordion-item__description{display:block}}.plans-accordion-item__domain-name{font-size:.875rem}ul.plans-accordion-item__feature-item-group{margin:0;column-count:1}@media(min-width:600px){ul.plans-accordion-item__feature-item-group{column-count:2}}@media(min-width:960px){ul.plans-accordion-item__feature-item-group{column-count:3}}.plans-accordion-item__badge{border-top-left-radius:5px;border-top-right-radius:5px;margin-bottom:-1px}.plans-accordion-item__badge>span{display:block;height:24px;line-height:24px;padding:0 14px;background:#000;color:#fff;font-size:.75rem;font-weight:600;letter-spacing:.5px;text-align:center;text-transform:uppercase}@media(min-width:600px){.plans-accordion-item__badge{position:relative;top:-12px;height:0;overflow:visible;text-align:center;border-radius:0}.plans-accordion-item__badge>span{display:inline-block;border-radius:2px}}.plans-accordion-item__price-amount{font-size:1.5rem}@media(min-width:600px){.plans-accordion-item__price-amount{text-align:right;font-size:2rem}}.plans-accordion-item__price-amount.is-loading{max-width:60px;animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent}@media(min-width:600px){.plans-accordion-item__price-amount.is-loading{max-width:none}}.plans-accordion-item__price-amount.is-loading:after{content:" "}.plans-accordion-item__price-amount>span{display:none;font-size:1rem;line-height:1.2;color:var(--studio-gray-40);position:relative;top:-1px;margin-left:1px}@media(min-width:600px){.plans-accordion-item__price-amount>span{display:inline-block}}.plans-accordion-item:not(.is-open) .plans-accordion-item__price-amount{font-size:.875rem;line-height:1.2}.plans-accordion-item:not(.is-open) .plans-accordion-item__price-amount>span{display:none}.plans-accordion-item__header{display:block;width:100%;cursor:pointer}.plans-accordion-item:not(.is-open) .plans-accordion-item__header{display:flex;align-items:baseline;padding:16px 12px}@media(min-width:600px){.plans-accordion-item:not(.is-open) .plans-accordion-item__header{padding:16px 24px}}.plans-accordion-item.is-primary .plans-accordion-item__header{cursor:default}@media(min-width:600px){.plans-accordion-item__header{display:flex}}.plans-accordion-item__price{margin-top:12px}.plans-accordion-item:not(.is-open) .plans-accordion-item__price{margin-top:0;margin-left:8px;color:var(--studio-gray-40)}@media(min-width:600px){.plans-accordion-item__price{margin-top:0;margin-left:auto}}.plans-accordion-item__disabled-label{margin-left:8px;color:var(--studio-gray-40)}.plans-accordion-item__price-note{display:block;font-size:.75rem;line-height:1.5;color:var(--studio-gray-40);margin-bottom:8px}.plans-accordion-item:not(.is-open) .plans-accordion-item__price-note{display:none}@media(min-width:600px){.plans-accordion-item__price-note{margin-bottom:12px;text-align:right}}.plans-accordion-item__price-discount{display:block;font-size:.75rem;font-weight:600;line-height:1.3;letter-spacing:.2px;text-transform:uppercase;color:var(--studio-green-60)}.plans-accordion-item__price-discount--disabled{color:var(--studio-gray-40);text-decoration:line-through}.plans-accordion-item:not(.is-open) .plans-accordion-item__price-discount{display:none}@media(min-width:600px){.plans-accordion-item__price-discount{text-align:right;margin-left:auto;max-width:170px}}@media(min-width:960px){.plans-accordion-item__price-discount{max-width:none}}.plans-accordion-item__actions{margin-top:16px}@media(min-width:600px){.plans-accordion-item__actions{margin-top:24px}}.plans-accordion-item__actions--paid-plan-margin{margin-top:20px}@media(min-width:782px){.plans-accordion-item__actions--paid-plan-margin{margin-top:-10px}}.plans-accordion-item__dropdown-chevron{flex:1;text-align:right;position:relative;top:-2px}@media(min-width:600px){.plans-accordion-item__dropdown-chevron{right:-8px}}.plans-accordion-item.is-open .plans-accordion-item__dropdown-chevron{display:none}.plans-accordion-item__placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;display:inline-block;width:64px}.plans-accordion-item__placeholder:after{content:" "}.plans-accordion-item__placeholder--narrow{width:32px}.plans-accordion-item__placeholder--wide{width:96px}.plans-feature-list{margin-top:16px}@media(min-width:600px){.plans-feature-list{margin-top:24px}}.plans-accordion .plans-feature-list{margin-top:24px}@media(min-width:600px){.plans-accordion .plans-feature-list{margin-top:36px}}ul.plans-feature-list__item-group{margin:0}ul.plans-feature-list__item-group--columns{display:flex;flex-wrap:wrap}@media(min-width:480px){@supports(display:grid){ul.plans-feature-list__item-group--columns{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr))}}}.plans-feature-list__item{flex:300px 0 1;margin:4px 0}.plans-feature-list__item+.plans-feature-list__item--requires-annual-disabled,.plans-feature-list__item+.plans-feature-list__item--requires-annual-enabled{margin-top:8px}.plans-feature-list__item-group--columns .plans-feature-list__item{margin-right:10px;align-self:flex-end}@media(min-width:480px){@supports(display:grid){.plans-feature-list__item-group--columns .plans-feature-list__item{align-self:end}}}.plans-feature-list__item-content-wrapper,.plans-feature-list__item-content-wrapper.components-button.is-link{display:flex;align-items:flex-end;padding:0;text-decoration:none}.plans-feature-list__item-content-wrapper.components-button.is-link.plans-feature-list__item-content-wrapper--domain-button,.plans-feature-list__item-content-wrapper.plans-feature-list__item-content-wrapper--domain-button{cursor:pointer}.plans-feature-list__item-bullet-icon{flex-grow:0;flex-shrink:0;margin-right:6px;color:var(--studio-gray-100)}.plans-accordion .plans-feature-list__item-bullet-icon{color:var(--studio-green-60)}.plans-feature-list__item--disabled-message .plans-feature-list__item-bullet-icon,.plans-feature-list__item--requires-annual-disabled .plans-feature-list__item-bullet-icon,.plans-feature-list__item-content-wrapper--domain-button.is-unavailable .plans-feature-list__item-bullet-icon{color:var(--studio-orange-40)}.plans-feature-list__item-bullet-icon,.plans-feature-list__item-bullet-icon path{fill:currentColor;stroke:currentColor}.plans-feature-list__item-text{flex:1;max-width:100%;margin-bottom:1px}.plans-feature-list__item-annual-nudge{display:block;text-transform:uppercase;font-size:10px;font-weight:700;letter-spacing:.02em;line-height:1;margin-bottom:6px}.plans-feature-list__item--requires-annual-enabled .plans-feature-list__item-annual-nudge{color:var(--studio-green-60)}.plans-feature-list__item--requires-annual-disabled .plans-feature-list__item-annual-nudge{color:var(--studio-orange-40)}.plans-feature-list__item-description{font-size:.875rem;line-height:1.2;letter-spacing:.2px;font-weight:400;color:var(--studio-gray-70)}.plans-feature-list__item--disabled-message .plans-feature-list__item-description,.plans-feature-list__item-content-wrapper--domain-button .plans-feature-list__item-description{font-weight:700}.plans-feature-list__item-content-wrapper--domain-button:not(.is-unavailable) .plans-feature-list__item-description{color:var(--studio-blue-40)}.plans-feature-list__item-content-wrapper--domain-button:not(.is-unavailable) .plans-feature-list__item-description:focus,.plans-feature-list__item-content-wrapper--domain-button:not(.is-unavailable) .plans-feature-list__item-description:hover{color:var(--studio-blue-30)}.plans-accordion .plans-feature-list__item-content-wrapper--domain-button:not(.is-unavailable) .plans-feature-list__item-description{color:var(--studio-gray-70)}.plans-accordion .plans-feature-list__item-content-wrapper--domain-button:not(.is-unavailable) .plans-feature-list__item-description.is-cta{color:var(--studio-gray-100)}.plans-accordion .plans-feature-list__item-content-wrapper--domain-button:not(.is-unavailable) .plans-feature-list__item-description:focus,.plans-accordion .plans-feature-list__item-content-wrapper--domain-button:not(.is-unavailable) .plans-feature-list__item-description:hover{color:var(--studio-gray-50)}.plans-feature-list__item--disabled-message .plans-feature-list__item-description,.plans-feature-list__item-content-wrapper--domain-button.is-unavailable .plans-feature-list__item-description{color:var(--studio-orange-40)}.plans-feature-list__item-content-wrapper--domain-button.is-unavailable .plans-feature-list__item-description:focus,.plans-feature-list__item-content-wrapper--domain-button.is-unavailable .plans-feature-list__item-description:hover{color:var(--studio-orange-30)}.plans-feature-list__item-content-wrapper--domain-button.is-cta .plans-feature-list__item-description{text-decoration:underline}.plans-feature-list__item--disabled-message .plans-feature-list__item-content-wrapper--domain-button.is-cta .plans-feature-list__item-description,.plans-feature-list__item--disabled-message .plans-feature-list__item-description,.plans-feature-list__item--requires-annual-disabled .plans-feature-list__item-content-wrapper--domain-button.is-cta .plans-feature-list__item-description,.plans-feature-list__item--requires-annual-disabled .plans-feature-list__item-description,.plans-feature-list__item-content-wrapper--domain-button.is-unavailable .plans-feature-list__item-description{text-decoration:line-through}.plans-feature-list__item-url{word-break:break-all}.plans-feature-list__placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;display:inline-block;width:200px}.plans-feature-list__placeholder:after{content:" "}.plans-table{width:100%;display:flex;flex-wrap:wrap}.plan-item{display:inline-flex;min-width:250px;flex-grow:1;flex-basis:0;flex-direction:column;margin-top:30px}.plan-item.badge-next-to-name{color:var(--studio-gray-100)}@media(min-width:480px){.plan-item+.plan-item{margin-left:-1px}}@media(max-width:480px){.plan-item:not(.is-popular){margin-top:-1px}.plan-item.is-open:not(.is-popular){margin-bottom:30px}}.plan-item__viewport{width:100%;height:100%;flex:1;border:1px solid #999;padding:20px}.plan-item:not(.is-popular) .plan-item__heading{display:flex;align-items:center}@media(max-width:480px){.plan-item:not(.is-popular) .plan-item__heading{font-size:1em}}.plan-item__heading.badge-next-to-name{display:flex;justify-content:space-between}.plan-item__name{font-weight:700;font-size:18px;line-height:24px;display:inline-block}@media(max-width:480px){.plan-item__name{font-size:14px}}.plan-item__badge-next-to-name{height:20px;background:rgba(184,230,191,.64);border-radius:4px;color:var(--studio-green-80);padding:2px 5px;font-size:.75rem}.plan-item__tagline{color:var(--studio-gray-80);font-size:.875rem;margin:4px 0}@media(max-width:480px){.plan-item:not(.is-popular) .plan-item__name{font-weight:400}}.plan-item__mobile-expand-all-plans.components-button.is-link{margin:20px auto;color:#757575}.plan-item__badge{position:relative;display:block;background:#000;text-align:center;text-transform:uppercase;color:#fff;padding:0 5px;font-size:.75rem;margin:-24px 0 0;height:24px;line-height:24px}.plan-item__price-amount{font-weight:600;font-size:32px;line-height:24px}.plan-item__price-amount.is-loading{max-width:60px;animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent}.plan-item__price-amount.is-loading:after{content:" "}@media(max-width:480px){.plan-item:not(.is-open) .plan-item__price-amount{font-weight:400;font-size:1em}}.plan-item__summary{width:100%}.plan-item__summary::-webkit-details-marker{display:none}@media(min-width:480px){.plan-item.is-popular .plan-item__summary,.plan-item__summary{pointer-events:none}}@media(max-width:480px){.plan-item:not(.is-open) .plan-item__summary{display:flex}}.plan-item__price-note{font-size:12px;line-height:19px;letter-spacing:-.4px;color:var(--studio-gray-40);margin-top:8px;margin-bottom:10px}.plan-item__details .plan-item__summary .plan-item__price{margin-top:16px;margin-bottom:8px}.plan-item:not(.is-open) .plan-item__summary .plan-item__price{margin-top:0;margin-bottom:0;margin-left:10px;color:#757575}.plan-item__actions{margin-bottom:16px}.plan-item__dropdown-chevron{flex:1;text-align:right}.plan-item.is-open .plan-item__dropdown-chevron{display:none}@media(max-width:480px){.plan-item.is-popular{order:-3}}.plan-item__select-button.components-button{justify-content:center;height:40px;margin-top:15px;padding:0 24px;font-size:.875rem;color:var(--studio-gray-90);border-radius:4px;border:1px solid var(--studio-gray-10)}.plan-item__select-button.components-button:active,.plan-item__select-button.components-button:hover{background:inherit;color:inherit}.plan-item__select-button.components-button:focus{border-color:inherit;box-shadow:0 0 0 1.5px #117ac9}.plan-item__select-button.components-button:disabled{border-color:var(--studio-gray-5);text-decoration:line-through;opacity:.5}.plan-item__select-button.components-button.is-popular,.plan-item__select-button.components-button.is-primary{background:#117ac9;border-color:#117ac9;color:var(--studio-white)}.plan-item__select-button.components-button.is-popular:active:not(:disabled),.plan-item__select-button.components-button.is-popular:hover,.plan-item__select-button.components-button.is-primary:active:not(:disabled),.plan-item__select-button.components-button.is-primary:hover{background:#117ac9;border-color:inherit}.plan-item__select-button.components-button.is-popular:focus,.plan-item__select-button.components-button.is-primary:focus{box-shadow:0 0 0 1.5px #117ac9}.plan-item__select-button.components-button.is-popular:not(.full-width) svg,.plan-item__select-button.components-button.is-primary:not(.full-width) svg{margin-left:-8px;margin-right:10px}.plan-item__select-button.components-button.is-selected{border-color:#117ac9;color:#117ac9;background:#fafcfe}.plan-item__select-button.components-button.is-selected svg{fill:currentColor;stroke:currentColor;transform:translateY(-1px);vertical-align:middle;margin-right:4px}.plan-item__select-button.components-button.full-width{width:100%}.plan-item__price-discount{display:block;font-size:.75rem;font-weight:600;line-height:1.3;letter-spacing:.2px;text-transform:uppercase;color:var(--studio-green-60);margin-bottom:8px}.plan-item__price-discount--disabled{color:var(--studio-gray-40);text-decoration:line-through}.plan-item__price-discount--hidden{visibility:hidden}.plan-item:not(.is-open) .plan-item__price-discount{display:none}.plans-grid__details-heading{margin-bottom:20px}.plans-details__table{padding-left:24px;padding-right:24px;width:100%;border-spacing:0}@media(min-width:600px){.plans-details__table{padding-left:48px;padding-right:48px}}@media(min-width:782px){.plans-details__table{padding-left:96px;padding-right:96px}}@media(min-width:1440px){.plans-details__table{padding-left:0;padding-right:0}}.plans-details__table td,.plans-details__table th{padding:13px 24px}.plans-details__table td:first-child,.plans-details__table th:first-child{padding-left:0;width:20%}@media(min-width:480px){.plans-details__table td:first-child,.plans-details__table th:first-child{width:40%}}.plans-details__table td:not(:first-child),.plans-details__table th:not(:first-child){white-space:nowrap}.plans-details__table .hidden{display:none}.plans-details__header-row th{font-weight:600;font-size:.875rem;line-height:20px;text-transform:uppercase;color:var(--studio-gray-20);padding-top:5px;padding-bottom:5px;border-bottom:1px solid #eaeaeb;text-align:left}thead .plans-details__header-row th:not(:first-child){text-align:center}.plans-details__feature-row td,.plans-details__feature-row th{font-size:.875rem;font-weight:400;line-height:17px;letter-spacing:.2px;border-bottom:1px solid #eaeaeb;vertical-align:middle}.plans-details__feature-row th{text-align:left}.plans-details__feature-row td{text-align:center}.plans-details__placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;display:inline-block;width:64px}.plans-details__placeholder:after{content:" "}.plans-details__placeholder--narrow{width:32px}.plans-details__placeholder--wide{width:96px}.plans-details__select-button.components-button{height:36px;padding:0 18px}@media(min-width:600px){.plans-details__select-button.components-button{height:40px;padding:0 24px}}.plans-details__feature-annual-nudge{display:block;text-transform:uppercase;font-size:10px;font-weight:700;letter-spacing:.02em;line-height:1;margin-bottom:6px}.plans-details__feature-row--enabled .plans-details__feature-annual-nudge{color:var(--studio-green-60)}.plans-details__feature-row--disabled .plans-details__feature-annual-nudge{color:var(--studio-orange-40)}.plans-details__feature-row--disabled .plans-details__feature-annual-nudge+span{text-decoration:line-through}.nux-launch-progress{display:flex;align-items:center;font-weight:600}.nux-launch-menu h4{text-transform:uppercase;margin-bottom:16px}.nux-launch-menu__item-group{margin:0 -12px}.nux-launch-menu__item.components-button.is-link{font-size:.875rem;line-height:17px;display:flex;color:var(--studio-gray-30);width:100%;text-align:left;text-decoration:none;padding:16px 14px}.nux-launch-menu__item.components-button.is-link:hover{color:initial}.nux-launch-menu__item.components-button.is-link:focus{box-shadow:none}.nux-launch-menu__item.components-button.is-link svg{margin-right:10px;color:var(--studio-gray-10);position:relative;top:1px;left:-1px}@media(min-width:782px){.nux-launch-menu__item.components-button.is-link.is-current{background:var(--studio-blue-0);color:initial}.nux-launch-menu__item.components-button.is-link.is-current svg{color:initial}}.nux-launch-menu__item.components-button.is-link.is-completed svg{color:var(--studio-green-40);top:0;left:0}.nux-launch-sidebar{margin-left:24px;margin-right:24px;display:flex;flex-direction:column;height:100%;background:var(--studio-white);padding-top:60px}@media(min-width:600px){.nux-launch-sidebar{margin-left:48px;margin-right:48px}}@media(min-width:782px){.nux-launch-sidebar{margin-left:96px;margin-right:96px;display:block;height:auto;margin:0 24px;padding-top:0}}@media(min-width:782px){.nux-launch-sidebar h1.onboarding-title{font-size:1.5rem}.nux-launch-sidebar h2.onboarding-subtitle{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:400;font-size:.875rem;line-height:1.5;color:var(--studio-gray-60)}}.nux-launch-sidebar__header{margin:48px 0 38.4px}@media(min-width:600px){.nux-launch-sidebar__header{margin:64px 0 51.2px}}@media(min-width:782px){.nux-launch-sidebar__header{margin:80px 0 64px}}.nux-launch-sidebar__body{flex-grow:1;margin:0 0 48px}@media(min-width:600px){.nux-launch-sidebar__body{margin:0 0 64px}}@media(min-width:782px){.nux-launch-sidebar__body{margin:0 0 80px}}.nux-launch-sidebar__footer{margin-left:-24px;margin-right:-24px;position:sticky;bottom:0}@media(min-width:600px){.nux-launch-sidebar__footer{margin-left:-48px;margin-right:-48px}}@media(min-width:782px){.nux-launch-sidebar__footer{margin-left:-96px;margin-right:-96px}}.nux-launch-sidebar__footer .action-buttons{position:relative;justify-content:flex-end}@media(min-width:782px){.nux-launch-sidebar__footer{display:none}}@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}}body.has-nux-launch-modal{overflow:hidden}.nux-launch-modal.components-modal__frame{transform:none}.nux-launch-modal .components-modal__header{display:none}.nux-launch-modal .components-modal__content{left:0;height:100%;padding:0;overflow:auto}.nux-launch-modal-header,.nux-launch-modal .components-modal__content{position:fixed;top:0;display:flex;background:var(--studio-white);width:100%}.nux-launch-modal-header{margin-left:-24px;margin-right:-24px;height:60px;border-bottom:1px solid #e0e0e0;z-index:10}@media(min-width:600px){.nux-launch-modal-header{margin-left:-48px;margin-right:-48px}}@media(min-width:782px){.nux-launch-modal-header{margin-left:-96px;margin-right:-96px;position:relative;border-bottom:none}}.nux-launch-modal-header .nux-launch-progress{height:60px}@media(min-width:782px){.nux-launch-modal-header .nux-launch-progress{display:none}}.nux-launch-modal-header__wp-logo{display:flex;align-items:center;justify-content:center;width:60px;height:60px}.nux-launch-modal-body{position:relative;flex-grow:1;min-width:0;display:flex;flex-direction:column;margin-left:24px;margin-right:24px;padding-top:60px}@media(min-width:600px){.nux-launch-modal-body{margin-left:48px;margin-right:48px}}@media(min-width:782px){.nux-launch-modal-body{margin-left:96px;margin-right:96px}}.nux-launch-modal-body .nux-launch-step__body{flex-grow:1}.is-sidebar-fullscreen .nux-launch-modal-body{overflow:hidden}@media(min-width:782px){.nux-launch-modal-body{padding-top:0}}.nux-launch-modal-aside{position:absolute;top:0;left:-200%;width:100%;height:100%;background:var(--studio-white);z-index:12}@media(max-width:782px){.is-sidebar-fullscreen .nux-launch-modal-aside{left:0}}@media(min-width:782px){.nux-launch-modal-aside{position:sticky;top:0;left:auto;width:280px;min-width:280px;max-width:280px;border-left:1px solid var(--studio-gray-5)}}.nux-launch-modal__close-button.components-button.is-link{position:sticky;top:0;z-index:13;width:0;height:0;overflow:visible;display:flex;align-items:flex-start;color:var(--studio-gray-50)}.nux-launch-modal__close-button.components-button.is-link:hover{color:var(--studio-gray-40)}.nux-launch-modal__close-button.components-button.is-link>span{position:relative;right:60px;padding:0 18px;height:60px;display:flex;align-items:center}.nux-launch-modal-body__launching{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center;font-size:1rem}
editor-site-launch/dist/gutenboarding-launch.js CHANGED
@@ -3,7 +3,7 @@
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 r={}.hasOwnProperty;function i(){for(var e=[],t=0;t<arguments.length;t++){var n=arguments[t];if(n){var o=typeof n;if("string"===o||"number"===o)e.push(n);else if(Array.isArray(n)){if(n.length){var a=i.apply(null,n);a&&e.push(a)}}else if("object"===o)if(n.toString===Object.prototype.toString)for(var u in n)r.call(n,u)&&n[u]&&e.push(u);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,r=encodeURIComponent,i=/; */,o=/^[\u0009\u0020-\u007e\u0080-\u00ff]+$/;function a(e,t){try{return t(e)}catch(n){return e}}},50:function(e,t,n){"use strict";n.d(t,{f6:function(){return c}});var r=n(1119),i=n(3804),o=n(3389),a=n(9327);n(3463);function u(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}var s=function(e,t){return"function"==typeof t?t(e):function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?u(n,!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):u(n).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({},e,{},t)},l=(0,a.Z)((function(e){return(0,a.Z)((function(t){return s(e,t)}))})),c=function(e){return(0,i.createElement)(o.Ni.Consumer,null,(function(t){return e.theme!==t&&(t=l(t)(e.theme)),(0,i.createElement)(o.Ni.Provider,{value:t},e.children)}))}},382:function(e){"use strict";var t,n="object"==typeof Reflect?Reflect:null,r=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 o(){o.init.call(this)}e.exports=o,e.exports.once=function(e,t){return new Promise((function(n,r){function i(){void 0!==o&&e.removeListener("error",o),n([].slice.call(arguments))}var o;"error"!==t&&(o=function(n){e.removeListener(t,i),r(n)},e.once("error",o)),e.once(t,i)}))},o.EventEmitter=o,o.prototype._events=void 0,o.prototype._eventsCount=0,o.prototype._maxListeners=void 0;var a=10;function u(e){if("function"!=typeof e)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof e)}function s(e){return void 0===e._maxListeners?o.defaultMaxListeners:e._maxListeners}function l(e,t,n,r){var i,o,a,l;if(u(n),void 0===(o=e._events)?(o=e._events=Object.create(null),e._eventsCount=0):(void 0!==o.newListener&&(e.emit("newListener",t,n.listener?n.listener:n),o=e._events),a=o[t]),void 0===a)a=o[t]=n,++e._eventsCount;else if("function"==typeof a?a=o[t]=r?[n,a]:[a,n]:r?a.unshift(n):a.push(n),(i=s(e))>0&&a.length>i&&!a.warned){a.warned=!0;var c=new Error("Possible EventEmitter memory leak detected. "+a.length+" "+String(t)+" listeners added. Use emitter.setMaxListeners() to increase limit");c.name="MaxListenersExceededWarning",c.emitter=e,c.type=t,c.count=a.length,l=c,console&&console.warn&&console.warn(l)}return e}function c(){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 r={fired:!1,wrapFn:void 0,target:e,type:t,listener:n},i=c.bind(r);return i.listener=n,r.wrapFn=i,i}function f(e,t,n){var r=e._events;if(void 0===r)return[];var i=r[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),r=0;r<t;++r)n[r]=e[r];return n}Object.defineProperty(o,"defaultMaxListeners",{enumerable:!0,get:function(){return a},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+".");a=e}}),o.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},o.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},o.prototype.getMaxListeners=function(){return s(this)},o.prototype.emit=function(e){for(var t=[],n=1;n<arguments.length;n++)t.push(arguments[n]);var i="error"===e,o=this._events;if(void 0!==o)i=i&&void 0===o.error;else if(!i)return!1;if(i){var a;if(t.length>0&&(a=t[0]),a instanceof Error)throw a;var u=new Error("Unhandled error."+(a?" ("+a.message+")":""));throw u.context=a,u}var s=o[e];if(void 0===s)return!1;if("function"==typeof s)r(s,this,t);else{var l=s.length,c=m(s,l);for(n=0;n<l;++n)r(c[n],this,t)}return!0},o.prototype.addListener=function(e,t){return l(this,e,t,!1)},o.prototype.on=o.prototype.addListener,o.prototype.prependListener=function(e,t){return l(this,e,t,!0)},o.prototype.once=function(e,t){return u(t),this.on(e,d(this,e,t)),this},o.prototype.prependOnceListener=function(e,t){return u(t),this.prependListener(e,d(this,e,t)),this},o.prototype.removeListener=function(e,t){var n,r,i,o,a;if(u(t),void 0===(r=this._events))return this;if(void 0===(n=r[e]))return this;if(n===t||n.listener===t)0==--this._eventsCount?this._events=Object.create(null):(delete r[e],r.removeListener&&this.emit("removeListener",e,n.listener||t));else if("function"!=typeof n){for(i=-1,o=n.length-1;o>=0;o--)if(n[o]===t||n[o].listener===t){a=n[o].listener,i=o;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&&(r[e]=n[0]),void 0!==r.removeListener&&this.emit("removeListener",e,a||t)}return this},o.prototype.off=o.prototype.removeListener,o.prototype.removeAllListeners=function(e){var t,n,r;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,o=Object.keys(n);for(r=0;r<o.length;++r)"removeListener"!==(i=o[r])&&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(r=t.length-1;r>=0;r--)this.removeListener(e,t[r]);return this},o.prototype.listeners=function(e){return f(this,e,!0)},o.prototype.rawListeners=function(e){return f(this,e,!1)},o.listenerCount=function(e,t){return"function"==typeof e.listenerCount?e.listenerCount(t):p.call(e,t)},o.prototype.listenerCount=p,o.prototype.eventNames=function(){return this._eventsCount>0?t(this._events):[]}},5695:function(e){"use strict";e.exports=function(e,t){t||(t={}),"function"==typeof t&&(t={cmp:t});var n,r="boolean"==typeof t.cycles&&t.cycles,i=t.cmp&&(n=t.cmp,function(e){return function(t,r){var i={key:t,value:e[t]},o={key:r,value:e[r]};return n(i,o)}}),o=[];return function e(t){if(t&&t.toJSON&&"function"==typeof t.toJSON&&(t=t.toJSON()),void 0!==t){if("number"==typeof t)return isFinite(t)?""+t:"null";if("object"!=typeof t)return JSON.stringify(t);var n,a;if(Array.isArray(t)){for(a="[",n=0;n<t.length;n++)n&&(a+=","),a+=e(t[n])||"null";return a+"]"}if(null===t)return"null";if(-1!==o.indexOf(t)){if(r)return JSON.stringify("__cycle__");throw new TypeError("Converting circular structure to JSON")}var u=o.push(t)-1,s=Object.keys(t).sort(i&&i(t));for(a="",n=0;n<s.length;n++){var l=s[n],c=e(t[l]);c&&(a&&(a+=","),a+=JSON.stringify(l)+":"+c)}return o.splice(u,1),"{"+a+"}"}}(e)}},7201:function(e){"use strict";function t(e){return function(){return e}}var n=function(){};n.thatReturns=t,n.thatReturnsFalse=t(!1),n.thatReturnsTrue=t(!0),n.thatReturnsNull=t(null),n.thatReturnsThis=function(){return this},n.thatReturnsArgument=function(e){return e},e.exports=n},4983:function(e){"use strict";e.exports=function(e,t,n,r,i,o,a,u){if(!e){var s;if(void 0===t)s=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var l=[n,r,i,o,a,u],c=0;(s=new Error(t.replace(/%s/g,(function(){return l[c++]})))).name="Invariant Violation"}throw s.framesToPop=1,s}}},6590:function(e,t,n){"use strict";var r=n(7201);e.exports=r},4495:function(e,t,n){"use strict";var r=n(212),i=n(9561);function o(){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=o,o.prototype.update=function(e,t){if(e=r.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=r.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},o.prototype.digest=function(e){return this.update(this._pad()),i(null===this.pending),this._digest(e)},o.prototype._pad=function(){var e=this.pendingTotal,t=this._delta8,n=t-(e+this.padLength)%t,r=new Array(n+this.padLength);r[0]=128;for(var i=1;i<n;i++)r[i]=0;if(e<<=3,"big"===this.endian){for(var o=8;o<this.padLength;o++)r[i++]=0;r[i++]=0,r[i++]=0,r[i++]=0,r[i++]=0,r[i++]=e>>>24&255,r[i++]=e>>>16&255,r[i++]=e>>>8&255,r[i++]=255&e}else for(r[i++]=255&e,r[i++]=e>>>8&255,r[i++]=e>>>16&255,r[i++]=e>>>24&255,r[i++]=0,r[i++]=0,r[i++]=0,r[i++]=0,o=8;o<this.padLength;o++)r[i++]=0;return r}},5079:function(e,t,n){"use strict";var r=n(212),i=n(4495),o=n(713),a=r.rotl32,u=r.sum32,s=r.sum32_5,l=o.ft_1,c=i.BlockHash,d=[1518500249,1859775393,2400959708,3395469782];function f(){if(!(this instanceof f))return new f;c.call(this),this.h=[1732584193,4023233417,2562383102,271733878,3285377520],this.W=new Array(80)}r.inherits(f,c),e.exports=f,f.blockSize=512,f.outSize=160,f.hmacStrength=80,f.padLength=64,f.prototype._update=function(e,t){for(var n=this.W,r=0;r<16;r++)n[r]=e[t+r];for(;r<n.length;r++)n[r]=a(n[r-3]^n[r-8]^n[r-14]^n[r-16],1);var i=this.h[0],o=this.h[1],c=this.h[2],f=this.h[3],p=this.h[4];for(r=0;r<n.length;r++){var m=~~(r/20),g=s(a(i,5),l(m,o,c,f),p,n[r],d[m]);p=f,f=c,c=a(o,30),o=i,i=g}this.h[0]=u(this.h[0],i),this.h[1]=u(this.h[1],o),this.h[2]=u(this.h[2],c),this.h[3]=u(this.h[3],f),this.h[4]=u(this.h[4],p)},f.prototype._digest=function(e){return"hex"===e?r.toHex32(this.h,"big"):r.split32(this.h,"big")}},8032:function(e,t,n){"use strict";var r=n(212),i=n(4495),o=n(713),a=n(9561),u=r.sum32,s=r.sum32_4,l=r.sum32_5,c=o.ch32,d=o.maj32,f=o.s0_256,p=o.s1_256,m=o.g0_256,g=o.g1_256,h=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 y(){if(!(this instanceof y))return new y;h.call(this),this.h=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],this.k=v,this.W=new Array(64)}r.inherits(y,h),e.exports=y,y.blockSize=512,y.outSize=256,y.hmacStrength=192,y.padLength=64,y.prototype._update=function(e,t){for(var n=this.W,r=0;r<16;r++)n[r]=e[t+r];for(;r<n.length;r++)n[r]=s(g(n[r-2]),n[r-7],m(n[r-15]),n[r-16]);var i=this.h[0],o=this.h[1],h=this.h[2],v=this.h[3],y=this.h[4],b=this.h[5],_=this.h[6],S=this.h[7];for(a(this.k.length===n.length),r=0;r<n.length;r++){var E=l(S,p(y),c(y,b,_),this.k[r],n[r]),w=u(f(i),d(i,o,h));S=_,_=b,b=y,y=u(v,E),v=h,h=o,o=i,i=u(E,w)}this.h[0]=u(this.h[0],i),this.h[1]=u(this.h[1],o),this.h[2]=u(this.h[2],h),this.h[3]=u(this.h[3],v),this.h[4]=u(this.h[4],y),this.h[5]=u(this.h[5],b),this.h[6]=u(this.h[6],_),this.h[7]=u(this.h[7],S)},y.prototype._digest=function(e){return"hex"===e?r.toHex32(this.h,"big"):r.split32(this.h,"big")}},713:function(e,t,n){"use strict";var r=n(212).rotr32;function i(e,t,n){return e&t^~e&n}function o(e,t,n){return e&t^e&n^t&n}function a(e,t,n){return e^t^n}t.ft_1=function(e,t,n,r){return 0===e?i(t,n,r):1===e||3===e?a(t,n,r):2===e?o(t,n,r):void 0},t.ch32=i,t.maj32=o,t.p32=a,t.s0_256=function(e){return r(e,2)^r(e,13)^r(e,22)},t.s1_256=function(e){return r(e,6)^r(e,11)^r(e,25)},t.g0_256=function(e){return r(e,7)^r(e,18)^e>>>3},t.g1_256=function(e){return r(e,17)^r(e,19)^e>>>10}},212:function(e,t,n){"use strict";var r=n(9561),i=n(1285);function o(e,t){return 55296==(64512&e.charCodeAt(t))&&(!(t<0||t+1>=e.length)&&56320==(64512&e.charCodeAt(t+1)))}function a(e){return(e>>>24|e>>>8&65280|e<<8&16711680|(255&e)<<24)>>>0}function u(e){return 1===e.length?"0"+e:e}function s(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 r=0,i=0;i<e.length;i++){var a=e.charCodeAt(i);a<128?n[r++]=a:a<2048?(n[r++]=a>>6|192,n[r++]=63&a|128):o(e,i)?(a=65536+((1023&a)<<10)+(1023&e.charCodeAt(++i)),n[r++]=a>>18|240,n[r++]=a>>12&63|128,n[r++]=a>>6&63|128,n[r++]=63&a|128):(n[r++]=a>>12|224,n[r++]=a>>6&63|128,n[r++]=63&a|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+=u(e[n].toString(16));return t},t.htonl=a,t.toHex32=function(e,t){for(var n="",r=0;r<e.length;r++){var i=e[r];"little"===t&&(i=a(i)),n+=s(i.toString(16))}return n},t.zero2=u,t.zero8=s,t.join32=function(e,t,n,i){var o=n-t;r(o%4==0);for(var a=new Array(o/4),u=0,s=t;u<a.length;u++,s+=4){var l;l="big"===i?e[s]<<24|e[s+1]<<16|e[s+2]<<8|e[s+3]:e[s+3]<<24|e[s+2]<<16|e[s+1]<<8|e[s],a[u]=l>>>0}return a},t.split32=function(e,t){for(var n=new Array(4*e.length),r=0,i=0;r<e.length;r++,i+=4){var o=e[r];"big"===t?(n[i]=o>>>24,n[i+1]=o>>>16&255,n[i+2]=o>>>8&255,n[i+3]=255&o):(n[i+3]=o>>>24,n[i+2]=o>>>16&255,n[i+1]=o>>>8&255,n[i]=255&o)}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,r){return e+t+n+r>>>0},t.sum32_5=function(e,t,n,r,i){return e+t+n+r+i>>>0},t.sum64=function(e,t,n,r){var i=e[t],o=r+e[t+1]>>>0,a=(o<r?1:0)+n+i;e[t]=a>>>0,e[t+1]=o},t.sum64_hi=function(e,t,n,r){return(t+r>>>0<t?1:0)+e+n>>>0},t.sum64_lo=function(e,t,n,r){return t+r>>>0},t.sum64_4_hi=function(e,t,n,r,i,o,a,u){var s=0,l=t;return s+=(l=l+r>>>0)<t?1:0,s+=(l=l+o>>>0)<o?1:0,e+n+i+a+(s+=(l=l+u>>>0)<u?1:0)>>>0},t.sum64_4_lo=function(e,t,n,r,i,o,a,u){return t+r+o+u>>>0},t.sum64_5_hi=function(e,t,n,r,i,o,a,u,s,l){var c=0,d=t;return c+=(d=d+r>>>0)<t?1:0,c+=(d=d+o>>>0)<o?1:0,c+=(d=d+u>>>0)<u?1:0,e+n+i+a+s+(c+=(d=d+l>>>0)<l?1:0)>>>0},t.sum64_5_lo=function(e,t,n,r,i,o,a,u,s,l){return t+r+o+u+l>>>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}},3463:function(e,t,n){"use strict";var r=n(8570),i={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},o={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},a={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},u={};function s(e){return r.isMemo(e)?a:u[e.$$typeof]||i}u[r.ForwardRef]={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},u[r.Memo]=a;var l=Object.defineProperty,c=Object.getOwnPropertyNames,d=Object.getOwnPropertySymbols,f=Object.getOwnPropertyDescriptor,p=Object.getPrototypeOf,m=Object.prototype;e.exports=function e(t,n,r){if("string"!=typeof n){if(m){var i=p(n);i&&i!==m&&e(t,i,r)}var a=c(n);d&&(a=a.concat(d(n)));for(var u=s(t),g=s(n),h=0;h<a.length;++h){var v=a[h];if(!(o[v]||r&&r[v]||g&&g[v]||u&&u[v])){var y=f(n,v);try{l(t,v,y)}catch(b){}}}}return t}},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}}},7010:function(e,t,n){"use strict";var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i=u(n(3804)),o=u(n(3631)),a=u(n(2586));function u(e){return e&&e.__esModule?e:{default:e}}var s=void 0;function l(e,t){var n,a,u,c,d,f,p,m,g=[],h={};for(f=0;f<e.length;f++)if("string"!==(d=e[f]).type){if(!t.hasOwnProperty(d.value)||void 0===t[d.value])throw new Error("Invalid interpolation, missing component node: `"+d.value+"`");if("object"!==r(t[d.value]))throw new Error("Invalid interpolation, component node must be a ReactElement or null: `"+d.value+"`","\n> "+s);if("componentClose"===d.type)throw new Error("Missing opening component token: `"+d.value+"`");if("componentOpen"===d.type){n=t[d.value],u=f;break}g.push(t[d.value])}else g.push(d.value);return n&&(c=function(e,t){var n,r,i=t[e],o=0;for(r=e+1;r<t.length;r++)if((n=t[r]).value===i.value){if("componentOpen"===n.type){o++;continue}if("componentClose"===n.type){if(0===o)return r;o--}}throw new Error("Missing closing component token `"+i.value+"`")}(u,e),p=l(e.slice(u+1,c),t),a=i.default.cloneElement(n,{},p),g.push(a),c<e.length-1&&(m=l(e.slice(c+1),t),g=g.concat(m))),1===g.length?g[0]:(g.forEach((function(e,t){e&&(h["interpolation-child-"+t]=e)})),(0,o.default)(h))}t.Z=function(e){var t=e.mixedString,n=e.components,i=e.throwErrors;if(s=t,!n)return t;if("object"!==(void 0===n?"undefined":r(n))){if(i)throw new Error("Interpolation Error: unable to process `"+t+"` because components is not an object");return t}var o=(0,a.default)(t);try{return l(o,n)}catch(u){if(i)throw new Error("Interpolation Error: unable to process `"+t+"` because of error `"+u.message+"`");return t}}},2586:function(e){"use strict";function t(e){return e.match(/^\{\{\//)?{type:"componentClose",value:e.replace(/\W/g,"")}:e.match(/\/\}\}$/)?{type:"componentSelfClosing",value:e.replace(/\W/g,"")}:e.match(/^\{\{/)?{type:"componentOpen",value:e.replace(/\W/g,"")}:{type:"string",value:e}}e.exports=function(e){return e.split(/(\{\{\/?\s*\w+\s*\/?\}\})/g).map(t)}},7839:function(e,t,n){var r=n(382),i=n(1285);function o(e){if(!(this instanceof o))return new o(e);"number"==typeof e&&(e={max:e}),e||(e={}),r.EventEmitter.call(this),this.cache={},this.head=this.tail=null,this.length=0,this.max=e.max||1e3,this.maxAge=e.maxAge||0}e.exports=o,i(o,r.EventEmitter),Object.defineProperty(o.prototype,"keys",{get:function(){return Object.keys(this.cache)}}),o.prototype.clear=function(){this.cache={},this.head=this.tail=null,this.length=0},o.prototype.remove=function(e){if("string"!=typeof e&&(e=""+e),this.cache.hasOwnProperty(e)){var t=this.cache[e];return delete this.cache[e],this._unlink(e,t.prev,t.next),t.value}},o.prototype._unlink=function(e,t,n){this.length--,0===this.length?this.head=this.tail=null:this.head===e?(this.head=t,this.cache[this.head].next=null):this.tail===e?(this.tail=n,this.cache[this.tail].prev=null):(this.cache[t].next=n,this.cache[n].prev=t)},o.prototype.peek=function(e){if(this.cache.hasOwnProperty(e)){var t=this.cache[e];if(this._checkAge(e,t))return t.value}},o.prototype.set=function(e,t){var n;if("string"!=typeof e&&(e=""+e),this.cache.hasOwnProperty(e)){if((n=this.cache[e]).value=t,this.maxAge&&(n.modified=Date.now()),e===this.head)return t;this._unlink(e,n.prev,n.next)}else n={value:t,modified:0,next:null,prev:null},this.maxAge&&(n.modified=Date.now()),this.cache[e]=n,this.length===this.max&&this.evict();return this.length++,n.next=null,n.prev=this.head,this.head&&(this.cache[this.head].next=e),this.head=e,this.tail||(this.tail=e),t},o.prototype._checkAge=function(e,t){return!(this.maxAge&&Date.now()-t.modified>this.maxAge)||(this.remove(e),this.emit("evict",{key:e,value:t.value}),!1)},o.prototype.get=function(e){if("string"!=typeof e&&(e=""+e),this.cache.hasOwnProperty(e)){var t=this.cache[e];if(this._checkAge(e,t))return this.head!==e&&(e===this.tail?(this.tail=t.next,this.cache[this.tail].prev=null):this.cache[t.prev].next=t.next,this.cache[t.next].prev=t.prev,this.cache[this.head].next=e,t.prev=this.head,t.next=null,this.head=e),t.value}},o.prototype.evict=function(){if(this.tail){var e=this.tail,t=this.remove(this.tail);this.emit("evict",{key:e,value:t})}}},1641:function(){},6879:function(){},8560:function(){},9658:function(){},7560:function(){},2272:function(){},5444:function(){},12:function(){},6020:function(){},8062:function(){},101:function(){},3437:function(){},8619:function(){},6472:function(){},1670:function(){},9403:function(){},965:function(){},6233:function(){},5618:function(){},4683:function(){},7470:function(){},8741: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,r=60*n,i=24*r,o=7*i,a=365.25*i;function u(e,t,n,r){var i=t>=1.5*n;return Math.round(e/n)+" "+r+(i?"s":"")}e.exports=function(e,s){s=s||{};var l=typeof e;if("string"===l&&e.length>0)return function(e){if((e=String(e)).length>100)return;var u=/^(-?(?:\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(!u)return;var s=parseFloat(u[1]);switch((u[2]||"ms").toLowerCase()){case"years":case"year":case"yrs":case"yr":case"y":return s*a;case"weeks":case"week":case"w":return s*o;case"days":case"day":case"d":return s*i;case"hours":case"hour":case"hrs":case"hr":case"h":return s*r;case"minutes":case"minute":case"mins":case"min":case"m":return s*n;case"seconds":case"second":case"secs":case"sec":case"s":return s*t;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return s;default:return}}(e);if("number"===l&&isFinite(e))return s.long?function(e){var o=Math.abs(e);if(o>=i)return u(e,o,i,"day");if(o>=r)return u(e,o,r,"hour");if(o>=n)return u(e,o,n,"minute");if(o>=t)return u(e,o,t,"second");return e+" ms"}(e):function(e){var o=Math.abs(e);if(o>=i)return Math.round(e/i)+"d";if(o>=r)return Math.round(e/r)+"h";if(o>=n)return Math.round(e/n)+"m";if(o>=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))}},7320:function(e){"use strict";
7
  /*
8
  object-assign
9
  (c) Sindre Sorhus
@@ -16,7 +16,7 @@ object-assign
16
  *
17
  * This source code is licensed under the MIT license found in the
18
  * LICENSE file in the root directory of this source tree.
19
- */var n="function"==typeof Symbol&&Symbol.for,r=n?Symbol.for("react.element"):60103,i=n?Symbol.for("react.portal"):60106,o=n?Symbol.for("react.fragment"):60107,a=n?Symbol.for("react.strict_mode"):60108,u=n?Symbol.for("react.profiler"):60114,s=n?Symbol.for("react.provider"):60109,l=n?Symbol.for("react.context"):60110,c=n?Symbol.for("react.async_mode"):60111,d=n?Symbol.for("react.concurrent_mode"):60111,f=n?Symbol.for("react.forward_ref"):60112,p=n?Symbol.for("react.suspense"):60113,m=n?Symbol.for("react.suspense_list"):60120,g=n?Symbol.for("react.memo"):60115,h=n?Symbol.for("react.lazy"):60116,v=n?Symbol.for("react.block"):60121,y=n?Symbol.for("react.fundamental"):60117,b=n?Symbol.for("react.responder"):60118,_=n?Symbol.for("react.scope"):60119;function S(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case r:switch(e=e.type){case c:case d:case o:case u:case a:case p:return e;default:switch(e=e&&e.$$typeof){case l:case f:case h:case g:case s:return e;default:return t}}case i:return t}}}function E(e){return S(e)===d}t.AsyncMode=c,t.ConcurrentMode=d,t.ContextConsumer=l,t.ContextProvider=s,t.Element=r,t.ForwardRef=f,t.Fragment=o,t.Lazy=h,t.Memo=g,t.Portal=i,t.Profiler=u,t.StrictMode=a,t.Suspense=p,t.isAsyncMode=function(e){return E(e)||S(e)===c},t.isConcurrentMode=E,t.isContextConsumer=function(e){return S(e)===l},t.isContextProvider=function(e){return S(e)===s},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===r},t.isForwardRef=function(e){return S(e)===f},t.isFragment=function(e){return S(e)===o},t.isLazy=function(e){return S(e)===h},t.isMemo=function(e){return S(e)===g},t.isPortal=function(e){return S(e)===i},t.isProfiler=function(e){return S(e)===u},t.isStrictMode=function(e){return S(e)===a},t.isSuspense=function(e){return S(e)===p},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===o||e===d||e===u||e===a||e===p||e===m||"object"==typeof e&&null!==e&&(e.$$typeof===h||e.$$typeof===g||e.$$typeof===s||e.$$typeof===l||e.$$typeof===f||e.$$typeof===y||e.$$typeof===b||e.$$typeof===_||e.$$typeof===v)},t.typeOf=S},8570:function(e,t,n){"use strict";e.exports=n(6866)},9830:function(e,t,n){"use strict";n.d(t,{Z:function(){return o}});var r=n(1184),i={contextDelimiter:"",onMissingKey:null};function o(e,t){var n;for(n in this.data=e,this.pluralForms={},this.options={},i)this.options[n]=void 0!==t&&n in t?t[n]:i[n]}o.prototype.getPluralForm=function(e,t){var n,i,o,a=this.pluralForms[e];return a||("function"!=typeof(o=(n=this.data[e][""])["Plural-Forms"]||n["plural-forms"]||n.plural_forms)&&(i=function(e){var t,n,r;for(t=e.split(";"),n=0;n<t.length;n++)if(0===(r=t[n].trim()).indexOf("plural="))return r.substr(7)}(n["Plural-Forms"]||n["plural-forms"]||n.plural_forms),o=(0,r.Z)(i)),a=this.pluralForms[e]=o),a(t)},o.prototype.dcnpgettext=function(e,t,n,r,i){var o,a,u;return o=void 0===i?0:this.getPluralForm(e,i),a=n,t&&(a=t+this.options.contextDelimiter+n),(u=this.data[e][a])&&u[o]?u[o]:(this.options.onMissingKey&&this.options.onMissingKey(n,e),0===o?n:r)}},365:function(e,t,n){"use strict";n.d(t,{y:function(){return r}});var r=function(){try{return window.self!==window.top}catch(e){return!0}};!window||!window._currentSiteType||window._currentSiteType},7989:function(e,t,n){"use strict";var r,i,o=n(3027),a=n(3804),u=n.n(a),s=n(5707),l=n(1200),c=n(5799),d=n(6357),f=n(849),p=n(4655),m=n(9095),g=n(8318),h=n(1157),v=n(8550),y=n(365);r="a8c-editor-site-launch",i={render:function(){var e,t,n=(0,s.useSelect)((function(e){return e(g.sC).getState()})).isSidebarOpen,r=(0,s.useDispatch)(g.sC),i=r.closeSidebar,a=r.setSidebarFullscreen,l=r.unsetSidebarFullscreen;return u().useEffect((function(){window.innerWidth<782?a():l()}),[n,a,l]),u().useEffect((function(){var e="a8c.wpcom-block-editor.toggleInlineHelpButton";(0,c.hasAction)(e)&&(0,c.doAction)(e,{hidden:n})}),[n]),n?(0,o.createElement)(f.Iw,{localeSlug:null!==(e=null===(t=window.wpcomEditorSiteLaunch)||void 0===t?void 0:t.locale)&&void 0!==e?e:p.OP},(0,o.createElement)(d.Z.Provider,{value:{siteId:window._currentSiteId,flow:h.OS,redirectTo:v.gQ,openCheckout:v.Rd,getCurrentLaunchFlowUrl:v.O0,isInIframe:(0,y.y)()}},(0,o.createElement)(m.Z,{onClose:i}))):null}},(0,l.registerPlugin)(r,i)},1157:function(e,t,n){"use strict";n.d(t,{OS:function(){return r},Js:function(){return i},nU:function(){return o}});var r="gutenboarding",i="focused-launch",o="should_launch"},6915:function(e,t,n){"use strict";var r=n(1119),i=n(3027),o=(n(3804),n(5707)),a=n(8675),u=n(8318),s=n(8374);n(1641);t.Z=function(e){var t,n=e.onMenuItemClick,__=(0,a.useI18n)().__,l=(0,o.useSelect)((function(e){var t=e(u.sC);return{currentStep:t.getCurrentStep(),LaunchStep:t.getLaunchStep(),LaunchSequence:t.getLaunchSequence(),isStepCompleted:t.isStepCompleted,isFlowCompleted:t.isFlowCompleted()}})),c=l.currentStep,d=l.LaunchStep,f=l.LaunchSequence,p=l.isStepCompleted,m=l.isFlowCompleted,g=(t={},(0,r.Z)(t,d.Name,__("Name your site","full-site-editing")),(0,r.Z)(t,d.Domain,__("Select a domain","full-site-editing")),(0,r.Z)(t,d.Plan,__("Select a plan","full-site-editing")),(0,r.Z)(t,d.Final,__("Launch your site","full-site-editing")),t),h=(0,o.useDispatch)(u.sC).setStep;return(0,i.createElement)("div",{className:"nux-launch-menu"},(0,i.createElement)("h4",null,__("Site Launch Steps","full-site-editing")),(0,i.createElement)("div",{className:"nux-launch-menu__item-group"},f.map((function(e){return(0,i.createElement)(s.Z,{key:e,title:g[e],isCompleted:p(e),isCurrent:e===c,onClick:function(){return function(e){h(e),n(e)}(e)},isDisabled:e===d.Final&&!m})}))))}},8374:function(e,t,n){"use strict";var r=n(3027),i=(n(3804),n(7997)),o=n(5869),a=n(9806),u=n(2779),s=n.n(u),l=(0,r.createElement)(i.SVG,{viewBox:"0 0 24 24"},(0,r.createElement)(i.Circle,{cx:"12",cy:"12",r:"5"}));t.Z=function(e){var t=e.title,n=e.isCompleted,u=e.isCurrent,c=e.isDisabled,d=e.onClick;return(0,r.createElement)(i.Button,{className:s()("nux-launch-menu__item",{"is-current":u,"is-completed":n}),onClick:d,disabled:c,isLink:!0},(0,r.createElement)(o.Z,{icon:n?a.Z:l,size:16}),(0,r.createElement)("span",null,t))}},9095:function(e,t,n){"use strict";var r=n(6470),i=n(3258),o=n(3027),a=n(3804),u=n.n(a),s=n(2779),l=n.n(s),c=n(5707),d=n(3163),f=n(7997),p=n(5869),m=n(1742),g=n(8565),h=n(6357),v=n(3357),y=n(849),b=n(8318),_=n(8398),S=n(2326),E=n(2526),__=(n(6879),d.__);t.Z=function(e){var t=e.onClose,n=e.isLaunchImmediately,a=u().useContext(h.Z).siteId,s=(0,c.useSelect)((function(e){return e(b.sC).getState()})),d=s.step,w=s.isSidebarFullscreen,A=u().useState(!1),x=(0,i.Z)(A,2),C=x[0],P=x[1],N=u().useState(!1),k=(0,i.Z)(N,2),I=k[0],O=k[1],Z=(0,c.useDispatch)(b.j4).launchSite,L=(0,c.useDispatch)("core/editor").savePost,M=(0,y.bU)(),T=(0,c.useDispatch)(b.sC).setPlanProductId,D=(0,c.useSelect)((function(e){return e(b.Fs).getDefaultFreePlan(M)})),F=u().useCallback((function(){Z(a),P(!0)}),[Z,P,a]);return u().useEffect((function(){n&&!C&&P(!0)}),[C,n]),u().useEffect((function(){var e=function(){var e=(0,r.Z)(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,L();case 2:case"end":return e.stop()}}),e)})));return function(){return e.apply(this,arguments)}}();n&&!I&&null!=D&&D.productIds[0]&&(T(null==D?void 0:D.productIds[0]),O(!0),e(),F())}),[n,I,F,L,D,T]),(0,v.X)(),(0,o.createElement)(f.Modal,{open:!0,className:l()("nux-launch-modal","step-".concat(d),w?"is-sidebar-fullscreen":""),overlayClassName:"nux-launch-modal-overlay",bodyOpenClassName:"has-nux-launch-modal",onRequestClose:t,title:""},C?(0,o.createElement)("div",{className:"nux-launch-modal-body__launching"},__("Hooray! Your site will be ready shortly.","full-site-editing")):(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{className:"nux-launch-modal-body"},(0,o.createElement)("div",{className:"nux-launch-modal-header"},(0,o.createElement)("div",{className:"nux-launch-modal-header__wp-logo"},(0,o.createElement)(p.Z,{icon:m.Z,size:36})),(0,o.createElement)(E.Z,null)),(0,o.createElement)(_.Z,{onSubmit:F})),(0,o.createElement)("div",{className:"nux-launch-modal-aside"},(0,o.createElement)(S.Z,null)),(0,o.createElement)(f.Button,{isLink:!0,className:"nux-launch-modal__close-button",onClick:t,"aria-label":__("Close dialog","full-site-editing"),disabled:!t},(0,o.createElement)("span",null,(0,o.createElement)(p.Z,{icon:g.Z,size:24})))))}},2526:function(e,t,n){"use strict";var r=n(3027),i=(n(3804),n(5707)),o=n(3163),a=n(8675),u=n(8318);n(8560);t.Z=function(){var __=(0,a.useI18n)().__,e=(0,i.useSelect)((function(e){var t=e(u.sC);return{currentStep:t.getCurrentStep(),LaunchSequence:t.getLaunchSequence()}})),t=e.currentStep,n=e.LaunchSequence,s=n.indexOf(t)+1,l=n.length,c=(0,o.sprintf)(__("%1$d of %2$d","full-site-editing"),s,l);return(0,r.createElement)("div",{className:"nux-launch-progress"},c)}},2326:function(e,t,n){"use strict";var r=n(3027),i=(n(3804),n(3163)),o=n(5707),a=n(5915),u=n(9211),s=n(6915),l=n(8318),__=(n(9658),i.__);t.Z=function(){var e=(0,o.useDispatch)(l.sC),t=e.setStep,n=e.unsetSidebarFullscreen,i=(0,o.useSelect)((function(e){return e(l.sC).getLaunchSequence()}));return(0,r.createElement)("div",{className:"nux-launch-sidebar"},(0,r.createElement)("div",{className:"nux-launch-sidebar__header"},(0,r.createElement)(a.b,null,__("You're almost there!","full-site-editing")),(0,r.createElement)(a.D,null,__("Complete the following steps to launch your site. Your site will remain private until you Launch.","full-site-editing"))),(0,r.createElement)("div",{className:"nux-launch-sidebar__body"},(0,r.createElement)(s.Z,{onMenuItemClick:function(){n()}})),(0,r.createElement)("div",{className:"nux-launch-sidebar__footer"},(0,r.createElement)(u.ZP,{sticky:!0},(0,r.createElement)(u.aW,{onClick:function(){t(i[0]),n()}},__("Get Started","full-site-editing")))))}},381:function(e,t,n){"use strict";var r=n(3027);n(3804),n(7560);t.Z=function(e){var t=e.children;return(0,r.createElement)(r.Fragment,null,t)}},9270:function(e,t,n){"use strict";var r=n(3027),i=(n(3804),n(5707)),o=n(8675),a=n(849),u=n(2999),s=n(3446),l=n(5915),c=n(9211),d=n(6115),f=n(381),p=n(8318),m=n(780),g=n(5144),h=n(6956),v=n(1157);t.Z=function(e){var t=e.onPrevStep,n=e.onNextStep,y=(0,o.useI18n)(),__=y.__,b=y.hasTranslation,_=(0,a.bU)(),S=(0,m.my)(),E=S.onDomainSelect,w=S.onExistingSubdomainSelect,A=S.currentDomain,x=(0,g.j)().siteSubdomain,C=(0,h.f)(),P=C.domainSearch,N=C.setDomainSearch,k=(0,i.useDispatch)(p.sC).confirmDomainSelection,I=function(){k(),null==n||n()},O=__("Free for the first year with any paid plan.","full-site-editing"),Z=__("Free for the first year with any annual plan.","full-site-editing"),L="en"===_||null!=b&&b("Free for the first year with any annual plan.")?Z:O;return(0,r.createElement)(f.Z,null,(0,r.createElement)("div",{className:"nux-launch-step__header"},(0,r.createElement)("div",null,(0,r.createElement)(l.b,null,__("Choose a domain","full-site-editing")),(0,r.createElement)(l.D,null,L)),(0,r.createElement)(c.ZP,{sticky:!1},(0,r.createElement)(c.aW,{onClick:I,disabled:!P}))),(0,r.createElement)("div",{className:"nux-launch-step__body"},(0,r.createElement)(u.ZP,{analyticsFlowId:v.OS,initialDomainSearch:P,onSetDomainSearch:N,onDomainSearchBlur:function(e){(0,d.jN)("calypso_newsite_domain_search_blur",{flow:v.OS,query:e,where:"editor_domain_modal"})},currentDomain:A||(0,s.nf)(null==x?void 0:x.domain),existingSubdomain:(0,s.nf)(null==x?void 0:x.domain),onDomainSelect:E,onExistingSubdomainSelect:w,analyticsUiAlgo:"editor_domain_modal",segregateFreeAndPaid:!0,locale:_})),(0,r.createElement)("div",{className:"nux-launch-step__footer"},(0,r.createElement)(c.ZP,{sticky:!0},(0,r.createElement)(c.xE,{onClick:function(){null==t||t()}}),(0,r.createElement)(c.aW,{onClick:I,disabled:!P}))))}},4502:function(e,t,n){"use strict";var r=n(3258),i=n(3027),o=(n(3804),n(2779)),a=n.n(o),u=n(50),s=n(3163),l=n(5707),c=n(7997),d=n(5869),f=n(9806),p=n(4557),m=n(5144),g=n(8463),h=n(6956),v=n(849),y=n(7498),b=n(8675),_=n(5915),S=n(9211),E=n(7384),w=n(1806),A=n(7450),x=n(381),C=n(8318),P=(n(2272),(0,i.createElement)(d.Z,{icon:f.Z,size:17}));t.Z=function(e){var t=e.onNextStep,n=e.onPrevStep,o=(0,l.useSelect)((function(e){var t=e(C.sC);return{domain:t.getSelectedDomain(),LaunchStep:t.getLaunchStep(),isStepCompleted:t.isStepCompleted,isFlowCompleted:t.isFlowCompleted(),planProductId:t.getSelectedPlanProductId()}})),d=o.domain,f=o.LaunchStep,N=o.isStepCompleted,k=o.isFlowCompleted,I=o.planProductId,O=(0,b.useI18n)(),__=O.__,Z=O.hasTranslation,L=(0,v.bU)(),M=(0,l.useSelect)((function(e){return[e(C.Fs).getPlanByProductId(I,L),e(C.Fs).getPlanProductById(I)]})),T=(0,r.Z)(M,2),D=T[0],F=T[1],R=(0,p.Z)().title,$=(0,m.j)().siteSubdomain,j=(0,g.V)(),B=(0,h.f)().domainSearch,U=(0,l.useDispatch)(C.sC).setStep,G=(0,y.Iu)(),V=(0,i.createElement)("div",{className:"nux-launch__summary-item"},(0,i.createElement)("p",null,__("Site","full-site-editing"),": ",R)),H=(0,i.createElement)("div",{className:"nux-launch__summary-item"},null!=d&&d.domain_name?(0,i.createElement)("p",null,__("Custom domain","full-site-editing"),": ",d.domain_name,"MONTHLY"===(null==F?void 0:F.billingPeriod)&&(0,i.createElement)(i.Fragment,null,(0,i.createElement)("br",null),(0,i.createElement)("span",{className:"nux-launch__summary-item__domain-price"},__("Domain Registration","full-site-editing"),":"," ",(0,s.sprintf)(__("%s/year","full-site-editing"),d.cost)))):(0,i.createElement)(i.Fragment,null,(0,i.createElement)("p",null,__("Free site address","full-site-editing"),": ",null==$?void 0:$.domain),(0,i.createElement)(c.Tip,null,B?(0,i.createInterpolateElement)(__("A custom site address like <DomainName /> (<Link>now available!</Link>) is more unique and can help with your SEO ranking.","full-site-editing"),{DomainName:(0,i.createElement)("span",{className:a()("nux-launch__summary-item__domain-name",{"is-loading":!j})},(null==j?void 0:j.domain_name)||"loading-example.com"),Link:(0,i.createElement)(c.Button,{isLink:!0,onClick:function(){return U(f.Domain)}})}):__("A custom site address is more unique and can help with your SEO ranking.","full-site-editing")))),z=__("billed annually","full-site-editing"),Y=__("per month, billed as %s annually","full-site-editing"),W="en"===L||null!=Z&&Z("per month, billed as %s annually")?(0,s.sprintf)(Y,null==F?void 0:F.annualPrice):z,q=__("per month, billed monthly","full-site-editing"),K=(0,i.createElement)("div",{className:"nux-launch__summary-item"},D&&F&&!D.isFree?(0,i.createElement)(i.Fragment,null,(0,i.createElement)("p",{className:"nux-launch__summary-item__plan-name"},"WordPress.com ",D.title),__("Plan subscription","full-site-editing"),": ",F.price," ","ANNUALLY"===F.billingPeriod?W:q):(0,i.createElement)(i.Fragment,null,(0,i.createElement)("p",{className:"nux-launch__summary-item__plan-name"},"WordPress.com Free"),(0,i.createElement)("p",null,__("Plan subscription: Free forever","full-site-editing")),(0,i.createElement)(c.Tip,null,(0,i.createInterpolateElement)((0,s.sprintf)(__("<Link>Upgrade to Premium</Link> to get access to 13GB storage space, payment collection options, 24/7 Live Chat support, and more. Not sure? Give it a spin—we offer %1$d-day full-refunds, guaranteed.","full-site-editing"),14),{Link:(0,i.createElement)(c.Button,{isLink:!0,onClick:function(){return U(f.Plan)}})}))));return(0,i.createElement)(x.Z,null,(0,i.createElement)("div",{className:"nux-launch-step__header"},(0,i.createElement)("div",null,(0,i.createElement)(_.b,null,__("Launch your site","full-site-editing")),(0,i.createElement)(_.D,null,__("Your site will be made public and ready to share with others.","full-site-editing")))),(0,i.createElement)("div",{className:"nux-launch-step__body"},(0,i.createElement)(u.f6,{theme:E.Z},(0,i.createElement)(w._U,null,N(f.Plan)&&(0,i.createElement)(w.Bb,null,(0,i.createElement)(w.nb,{className:"nux-launch__feature-list"},(0,i.createElement)("h3",{className:"nux-launch__feature-list-title"},__("Included in your plan","full-site-editing")),(0,i.createElement)("ul",{className:"nux-launch__feature-item-group"},null==D?void 0:D.features.filter((function(e){return"ANNUALLY"===(null==F?void 0:F.billingPeriod)||!e.requiresAnnuallyBilledPlan})).map((function(e,t){return(0,i.createElement)("li",{key:t,className:"nux-launch__feature-item"},P," ",e.name)}))),(0,i.createElement)("p",null,__("Questions?","full-site-editing")," ",(0,i.createElement)(c.Button,{isLink:!0,href:G("https://wordpress.com/help/contact",L),target:"_blank",rel:"noopener noreferrer"},__("Ask a Happiness Engineer","full-site-editing"))))),(0,i.createElement)(w.r8,null,(0,i.createElement)(w.V9,{isStepActive:!1,titleContent:__("Your site name","full-site-editing"),isStepComplete:N(f.Name),goToThisStep:function(){return U(f.Name)},completeStepContent:V,stepId:"name",formStatus:A.PX.READY}),(0,i.createElement)(w.V9,{isStepActive:!1,titleContent:__("Your domain","full-site-editing"),isStepComplete:N(f.Domain),goToThisStep:function(){return U(f.Domain)},completeStepContent:H,stepId:"domain",formStatus:A.PX.READY}),(0,i.createElement)(w.V9,{isStepActive:!1,titleContent:__("Your plan","full-site-editing"),isStepComplete:N(f.Plan),goToThisStep:function(){return U(f.Plan)},completeStepContent:K,stepId:"plan",formStatus:A.PX.READY}),(0,i.createElement)(w.ds,null,(0,i.createElement)(c.Button,{isPrimary:!0,disabled:!k,onClick:t,className:"nux-launch__submit-button"},__("Launch your site","full-site-editing"))))))),(0,i.createElement)("div",{className:"nux-launch-step__footer"},(0,i.createElement)(S.ZP,{sticky:!0},(0,i.createElement)(S.xE,{onClick:function(){null==n||n()}}))))}},958:function(e,t,n){"use strict";var r=n(3027),i=(n(3804),n(3163)),o=n(7997),a=n(5915),u=n(9211),s=n(381),l=n(4557),__=(n(5444),i.__);t.Z=function(e){var t=e.onPrevStep,n=e.onNextStep,i=(0,l.Z)(),c=i.title,d=i.updateTitle,f=function(){null==n||n()};return(0,r.createElement)(s.Z,null,(0,r.createElement)("div",{className:"nux-launch-step__header"},(0,r.createElement)("div",null,(0,r.createElement)(a.b,null,__("Name your site","full-site-editing")),(0,r.createElement)(a.D,null,__("Pick a name for your site.","full-site-editing"))),(0,r.createElement)(u.ZP,{sticky:!1},(0,r.createElement)(u.aW,{onClick:f,disabled:!(null!=c&&c.trim())}))),(0,r.createElement)("div",{className:"nux-launch-step__body"},(0,r.createElement)("form",{onSubmit:f},(0,r.createElement)(o.TextControl,{id:"nux-launch-step__input",className:"nux-launch-step__input",onChange:d,value:c||"",spellCheck:!1,autoComplete:"off",placeholder:__("Enter site name","full-site-editing"),autoCorrect:"off"}),(0,r.createElement)("div",{className:"nux-launch-step__input-hint"},(0,r.createElement)(o.Tip,{size:18}),(0,r.createElement)("span",null,__("Don't worry, you can change it later.","full-site-editing"))))),(0,r.createElement)("div",{className:"nux-launch-step__footer"},(0,r.createElement)(u.ZP,{sticky:!0},(0,r.createElement)(u.xE,{onClick:function(){null==t||t()}}),(0,r.createElement)(u.aW,{onClick:f,disabled:!(null!=c&&c.trim())}))))}},4524:function(e,t,n){"use strict";var r=n(3027),i=(n(3804),n(5707)),o=n(3163),a=n(5315),u=n(5915),s=n(9211),l=n(3073),c=n(381),d=n(8318),__=(n(12),o.__);t.Z=function(e){var t,n=e.onPrevStep,f=e.onNextStep,p=(0,i.useSelect)((function(e){var t=e(d.sC);return{domain:t.getSelectedDomain(),LaunchStep:t.getLaunchStep(),selectedPlanProductId:t.getSelectedPlanProductId()}})),m=p.domain,g=p.LaunchStep,h=p.selectedPlanProductId,v=(0,i.useDispatch)(d.sC),y=v.setPlanProductId,b=v.setStep,_=(0,l.W)().selectedFeatures,S=m&&!m.is_free;return(0,r.createElement)(c.Z,null,(0,r.createElement)("div",{className:"nux-launch-step__header"},(0,r.createElement)("div",null,(0,r.createElement)(u.b,null,__("Select a plan","full-site-editing")),(0,r.createElement)(u.D,null,(0,o.sprintf)(__("Pick a plan that’s right for you. Switch plans as your needs change. There’s no risk, you can cancel for a full refund within %1$d days.","full-site-editing"),14)))),(0,r.createElement)("div",{className:"nux-launch-step__body"},(0,r.createElement)(a.Z,{currentPlanProductId:h,currentDomain:m,onPlanSelect:function(e){y(e),null==f||f()},onPickDomainClick:function(){b(g.Domain)},disabledPlans:S?{free:__("Unavailable with domain","full-site-editing")}:void 0,isAccordion:!0,selectedFeatures:_,locale:(null===(t=window.wpcomEditorSiteLaunch)||void 0===t?void 0:t.locale)||"en"})),(0,r.createElement)("div",{className:"nux-launch-step__footer"},(0,r.createElement)(s.ZP,{sticky:!0},(0,r.createElement)(s.xE,{onClick:function(){null==n||n()}}))))}},8398:function(e,t,n){"use strict";var r=n(1119),i=n(3027),o=n(3804),a=n.n(o),u=n(5707),s=n(958),l=n(9270),c=n(4524),d=n(4502),f=n(8318);n(6020);t.Z=function(e){var t,n=e.onSubmit,o=(0,u.useSelect)((function(e){return e(f.sC).getState()})).step,p=(0,u.useSelect)((function(e){return e(f.sC).getLaunchStep()})),m=(0,u.useSelect)((function(e){return e(f.sC).getLaunchSequence()})),g=(0,u.useSelect)((function(e){return e(f.sC).getFirstIncompleteStep()})),h=(0,u.useDispatch)(f.sC),v=h.setStep,y=h.setSidebarFullscreen,b=h.unsetSidebarFullscreen,_=(t={},(0,r.Z)(t,p.Name,s.Z),(0,r.Z)(t,p.Domain,l.Z),(0,r.Z)(t,p.Plan,c.Z),(0,r.Z)(t,p.Final,d.Z),t),S=m.indexOf(o),E=_[o];return a().useEffect((function(){g&&g!==p.Name&&v(g)}),[]),(0,i.createElement)(E,{onPrevStep:function(){var e=S-1;e<0&&(e=0,y()),v(m[e])},onNextStep:function(){var e=S+1;e>m.length-1&&(null==n||n()),b(),v(m[e])}})}},8318:function(e,t,n){"use strict";n.d(t,{j4:function(){return r},sC:function(){return i},Fs:function(){return o}});n(8681);var r="automattic/site",i="automattic/launch",o="automattic/onboard/plans"},8550:function(e,t,n){"use strict";n.d(t,{O0:function(){return s},gQ:function(){return l},Rd:function(){return c}});var r=n(9394),i=n(1119),o=n(5799),a=n(791),u=n(1157),s=function(){var e,t,n;return null!==(e=null===(t=window)||void 0===t||null===(n=t.calypsoifyGutenberg)||void 0===n?void 0:n.currentCalypsoUrl)&&void 0!==e?e:window.location.href},l=function(e){var t="https://wordpress.com";try{var n,r;t=new URL((null===(n=window)||void 0===n||null===(r=n.calypsoifyGutenberg)||void 0===r?void 0:r.currentCalypsoUrl)||"").origin}catch(o){}var i=e.startsWith("/")?e:"/".concat(e);!function(e){window.top.location.href=e}("".concat(t).concat(i))},c=function(){var e,t,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:window._currentSiteId.toString(),c=arguments.length>1&&void 0!==arguments[1]&&arguments[1],d=arguments.length>2?arguments[2]:void 0,f="a8c.wpcom-block-editor.openCheckoutModal",p=(null===(e=window)||void 0===e||null===(t=e.wpcomEditorSiteLaunch)||void 0===t?void 0:t.launchFlow)===u.Js,m=s().split("?")[0];if((0,o.hasAction)(f)&&p&&!c)(0,o.doAction)(f,{checkoutOnSuccessCallback:d,isFocusedLaunch:!0,redirectTo:(0,a.addQueryArgs)(m,(0,i.Z)({},u.nU,!0))});else{var g=(0,a.addQueryArgs)("/checkout/".concat(n),(0,r.Z)({},!c&&{redirect_to:"/home/".concat(n)}));l(g)}}},6115:function(e,t,n){"use strict";n.d(t,{jN:function(){return r.jN},Sn:function(){return i.Sn},Lo:function(){return i.Lo},k9:function(){return i.k9}});n(1694),n(6209),n(9377);var r=n(9792),i=n(3722)},9377:function(e,t,n){"use strict";"undefined"!=typeof window&&window.addEventListener("popstate",(function(){null}))},9792:function(e,t,n){"use strict";n.d(t,{jN:function(){return f}});var r,i=n(9394),o=n(1205),a=(n(3421),n(382)),u=n(4898),s=(n(6209),n(1694),n(9377),n(9358)),l=["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"];Promise.resolve();function c(e){"undefined"!=typeof window&&(window._tkq=window._tkq||[],window._tkq.push(e))}"undefined"!=typeof document&&(0,u.ve)("//stats.wp.com/w.js?63");var d=new a.EventEmitter;function f(e,t){if(t=t||{},(0,s.Z)('Record event "%s" called with props %o',e,t),e.startsWith("calypso_")||(0,o.includes)(l,e)){if(r){var n=r(t);t=(0,i.Z)((0,i.Z)({},t),n)}t=(0,o.omitBy)(t,(function(e){return void 0===e})),(0,s.Z)('Recording event "%s" with actual props %o',e,t),c(["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.d(t,{Sn:function(){return o},Lo:function(){return a},k9:function(){return u}});var r=n(8767),i=n(9792);function o(e){var t=e.railcarId,n=e.uiAlgo,r=e.uiPosition,o=e.fetchAlgo,a=e.result,u=e.query;(0,i.jN)("calypso_traintracks_render",{railcar:t,ui_algo:n,ui_position:r,fetch_algo:o,rec_result:a,fetch_query:u})}function a(e){var t=e.railcarId,n=e.action;(0,i.jN)("calypso_traintracks_interact",{railcar:t,action:n})}function u(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"recommendation";return"".concat((0,r.Z)().replace(/-/g,""),"-").concat(e)}},6209:function(e,t,n){"use strict";n(4)},9358:function(e,t,n){"use strict";var r=n(8049),i=n.n(r);t.Z=i()("calypso:analytics")},1694:function(e,t,n){"use strict";n(9358)},4:function(e,t,n){"use strict";n(8032)},4790:function(e,t,n){"use strict";var r,i=n(2389),o=n(1766),a=n(4530),u=n(4059),s=n(3027),l=(n(3804),n(6654)),c=(0,n(5393).Z)("button")(r||(r=(0,u.Z)(["\n\tdisplay: block;\n\twidth: ",";\n\tfont-size: 16px;\n\tborder-radius: ",";\n\tpadding: ",";\n\tborder: ",";\n\tbackground: ",";\n\tcolor: ",";\n\tfont-weight: ",";\n\ttext-decoration: ",";\n\n\t:hover {\n\t\tbackground: ",";\n\t\tborder-color: ",";\n\t\ttext-decoration: none;\n\t\tcolor: ",";\n\t\tcursor: ",";\n\t}\n\n\t:active {\n\t\tbackground: ",";\n\t\ttext-decoration: ",";\n\t\tcolor: ",";\n\t}\n\n\tsvg {\n\t\tmargin-bottom: -1px;\n\t\ttransform: translateY( 2px );\n\t\tfilter: ",";\n\t\topacity: ",";\n\t}\n\n\t&.is-busy {\n\t\tanimation: components-button__busy-animation 2500ms infinite linear;\n\t\tbackground-image: linear-gradient(\n\t\t\t-45deg,\n\t\t\t"," 28%,\n\t\t\t"," 28%,\n\t\t\t"," 72%,\n\t\t\t"," 72%\n\t\t);\n\t\tbackground-size: 200px 100%;\n\t\topacity: 1;\n\t}\n\n\t@keyframes components-button__busy-animation {\n\t\t0% {\n\t\t\tbackground-position: 200px 0;\n\t\t}\n\t}\n"])),(function(e){return e.fullWidth?"100%":"auto"}),(function(e){return"paypal"===e.buttonType?"50px":"2px"}),(function(e){return"text-button"===e.buttonType?"0":"10px 15px"}),(function(e){return!e.buttonType||e.disabled?"1px solid "+e.theme.colors.borderColor:"0"}),p,f,(function(e){return e.theme.weights.normal}),g,d,(function(e){return e.buttonType?"inherit":e.theme.colors.borderColorDark}),f,(function(e){return e.disabled?"not-allowed":"pointer"}),d,g,f,(function(e){var t=e.buttonType;return"grayscale( ".concat("primary"===t||"paypal"===t?"0":"100"," ) invert( 0 );")}),(function(e){var t=e.buttonType;return"primary"===t||"paypal"===t?"1":"0.5"}),p,m,m,p);function d(e){var t=e.disabled,n=e.buttonType,r=e.theme.colors;if(t)return r.disabledPaymentButtons;switch(n){case"paypal":return r.paypalGoldHover;case"primary":return r.primaryOver;case"secondary":return r.highlightOver;case"text-button":case"borderless":default:return"none"}}function f(e){var t=e.disabled,n=e.buttonType,r=e.theme.colors;if(t)return r.disabledButtons;switch(n){case"primary":case"secondary":return r.surface;case"text-button":return r.highlight;default:return r.textColor}}function p(e){var t=e.disabled,n=e.buttonType,r=e.theme.colors;if(t)return r.disabledPaymentButtons;switch(n){case"paypal":return r.paypalGold;case"primary":return r.primary;case"secondary":return r.highlight;default:return"none"}}function m(e){var t=e.disabled,n=e.buttonType,r=e.theme.colors;if(t)return r.disabledPaymentButtonsAccent;switch(n){case"paypal":return r.paypalGoldHover;case"primary":return r.primaryOver;case"secondary":return r.highlightOver;case"text-button":case"borderless":default:return"none"}}function g(e){return"text-button"===e.buttonType?"underline":"none"}t.Z=function(e){var t=e.className,n=e.buttonType,r=e.isBusy,u=e.children,d=e.fullWidth,f=(0,a.Z)(e,["className","buttonType","isBusy","children","fullWidth"]),p=(0,l.Z)(["checkout-button"].concat((0,o.Z)(n?["is-status-"+n]:[]),(0,o.Z)(r?["is-busy"]:[]),(0,o.Z)(t?[t]:[])));return(0,s.createElement)(c,(0,i.Z)({fullWidth:d,buttonType:n,className:p},f),u)}},3246:function(e,t,n){"use strict";n.d(t,{Z:function(){return b}});var r,i=n(4659),o=n(4730),a=n(3989),u=n(5663),s=n(9049),l=n(1119),c=n(4059),d=n(3027),f=n(8049),p=n.n(f),m=n(3804),g=n.n(m),h=n(5393),v=p()("composite-checkout:checkout-error-boundary"),y=h.Z.div(r||(r=(0,c.Z)(["\n\tmargin: 2em;\n\ttext-align: center;\n"]))),b=function(e){(0,u.Z)(n,e);var t=(0,s.Z)(n);function n(e){var r;return(0,i.Z)(this,n),r=t.call(this,e),(0,l.Z)((0,a.Z)(r),"state",{hasError:!1}),r}return(0,o.Z)(n,[{key:"componentDidCatch",value:function(e,t){if(this.props.onError){var n="".concat(e.message,"; Stack: ").concat(e.stack,"; Component Stack: ").concat(t.componentStack);v("reporting the error",n),this.props.onError(n)}}},{key:"render",value:function(){return this.state.hasError?(0,d.createElement)(_,{errorMessage:this.props.errorMessage}):this.props.children}}],[{key:"getDerivedStateFromError",value:function(){return{hasError:!0}}}]),n}(g().Component);function _(e){var t=e.errorMessage;return(0,d.createElement)(y,null,t)}},7984:function(e,t,n){"use strict";var r=n(2389),i=n(4530),o=n(3027),a=(n(3804),n(4790));t.Z=function(e){var t=e.value,n=e.onClick,u=e.ariaLabel,s=(0,i.Z)(e,["value","onClick","ariaLabel"]);return(0,o.createElement)(a.Z,(0,r.Z)({onClick:n,buttonType:"primary","aria-label":u},s),t)}},1806:function(e,t,n){"use strict";n.d(t,{_U:function(){return L},Bb:function(){return T},nb:function(){return D},r8:function(){return F},ds:function(){return R},V9:function(){return U}});var r,i,o,a,u,s,l,c,d,f,p,m,g,h,v,y,b=n(4059),_=n(3027),S=n(8675),E=n(8049),w=n.n(E),A=n(3980),x=n.n(A),C=(n(3804),n(6654)),P=n(5393),N=n(7450),k=n(4790),I=n(3246),O=n(7984),Z=n(5197),L=(w()("composite-checkout:checkout"),P.Z.div(r||(r=(0,b.Z)(["\n\t*:focus {\n\t\toutline: "," solid 2px;\n\t}\n"])),(function(e){return e.theme.colors.outline})),P.Z.div(i||(i=(0,b.Z)(["\n\tdisplay: flex;\n\tflex-direction: column;\n\twidth: 100%;\n\n\t@media ( "," ) {\n\t\tmargin: 0 auto 32px;\n\t}\n\n\t@media ( "," ) {\n\t\talign-items: flex-start;\n\t\tflex-direction: row;\n\t\tjustify-content: center;\n\t\tmax-width: none;\n\t}\n"])),(function(e){return e.theme.breakpoints.tabletUp}),(function(e){return e.theme.breakpoints.desktopUp}))),M=P.Z.div(o||(o=(0,b.Z)(["\n\tbox-sizing: border-box;\n\tmargin: 0 auto;\n\twidth: 100%;\n\n\t@media ( "," ) {\n\t\tmax-width: 556px;\n\t}\n\n\t@media ( "," ) {\n\t\tmargin-right: 0;\n\t\tmargin-left: 24px;\n\t\torder: 2;\n\t\twidth: 328px;\n\n\t\t.rtl & {\n\t\t\tmargin-right: 24px;\n\t\t\tmargin-left: 0;\n\t\t}\n\t}\n"])),(function(e){return e.theme.breakpoints.tabletUp}),(function(e){return e.theme.breakpoints.desktopUp})),T=function(e){var t=e.children,n=e.className;return(0,_.createElement)(M,{className:(0,C.Z)([n,"checkout__summary-area"])},t)},D=P.Z.div(a||(a=(0,b.Z)(["\n\tbackground: ",";\n\tborder-bottom: 1px solid ",";\n\n\t@media ( "," ) {\n\t\tborder: 1px solid ",";\n\t\tborder-bottom: none 0;\n\t}\n\n\t@media ( "," ) {\n\t\tborder: 1px solid ",";\n\t}\n"])),(function(e){return e.theme.colors.surface}),(function(e){return e.theme.colors.borderColorLight}),(function(e){return e.theme.breakpoints.smallPhoneUp}),(function(e){return e.theme.colors.borderColorLight}),(function(e){return e.theme.breakpoints.desktopUp}),(function(e){return e.theme.colors.borderColorLight}));var F=P.Z.div(u||(u=(0,b.Z)(["\n\tbackground: ",";\n\tbox-sizing: border-box;\n\tmargin: 0 auto;\n\twidth: 100%;\n\n\t&.checkout__step-wrapper--last-step {\n\t\tmargin-bottom: 100px;\n\t}\n\n\t@media ( "," ) {\n\t\tborder: 1px solid ",";\n\t}\n\n\t@media ( "," ) {\n\t\tmax-width: 556px;\n\t}\n\n\t@media ( "," ) {\n\t\tmargin: 0;\n\t\torder: 1;\n\t\twidth: 556px;\n\t}\n"])),(function(e){return e.theme.colors.surface}),(function(e){return e.theme.breakpoints.smallPhoneUp}),(function(e){return e.theme.colors.borderColorLight}),(function(e){return e.theme.breakpoints.tabletUp}),(function(e){return e.theme.breakpoints.desktopUp})),R=P.Z.div(s||(s=(0,b.Z)(["\n\tbackground: ",";\n\tpadding: 24px;\n\tbottom: 0;\n\tleft: 0;\n\tbox-sizing: border-box;\n\twidth: 100%;\n\tz-index: 10;\n\tborder-top-width: 0;\n\tborder-top-style: solid;\n\tborder-top-color: ",";\n\n\t.checkout__step-wrapper--last-step & {\n\t\tborder-top-width: 1px;\n\t\tposition: fixed;\n\t}\n\n\t.rtl & {\n\t\tright: 0;\n\t\tleft: auto;\n\t}\n\n\t.checkout-button {\n\t\twidth: calc( 100% - 60px );\n\t}\n\n\t@media ( "," ) {\n\t\t.checkout-button {\n\t\t\twidth: 100%;\n\t\t}\n\n\t\t.checkout__step-wrapper--last-step & {\n\t\t\tposition: relative;\n\t\t\tborder: 0;\n\t\t}\n\t}\n"])),(function(e){return e.theme.colors.background}),(function(e){return e.theme.colors.borderColorLight}),(function(e){return e.theme.breakpoints.tabletUp}));var $=P.Z.div(l||(l=(0,b.Z)(["\n\tposition: relative;\n\tborder-bottom: 1px solid ",";\n\tpadding: 16px;\n\n\t&.checkout-step {\n\t\tbackground: ",";\n\t}\n\n\t&.checkout-step.is-active,\n\t&.checkout-step.is-complete {\n\t\tbackground: ",";\n\t}\n\n\t@media ( "," ) {\n\t\tpadding: 24px;\n\t}\n"])),(function(e){return e.theme.colors.borderColorLight}),(function(e){return e.theme.colors.background}),(function(e){return e.theme.colors.surface}),(function(e){return e.theme.breakpoints.tabletUp})),j=P.Z.div(c||(c=(0,b.Z)(["\n\tcolor: ",";\n\tdisplay: ",";\n\tpadding-left: 35px;\n\n\t.rtl & {\n\t\tpadding-right: 35px;\n\t\tpadding-left: 0;\n\t}\n"])),(function(e){return e.theme.colors.textColor}),(function(e){return e.isVisible?"block":"none"})),B=P.Z.div(d||(d=(0,b.Z)(["\n\tcolor: ",";\n\tfont-size: 14px;\n\tdisplay: ",";\n\tpadding-left: 35px;\n\n\t.rtl & {\n\t\tpadding-right: 35px;\n\t\tpadding-left: 0;\n\t}\n"])),(function(e){return e.theme.colors.textColorLight}),(function(e){return e.isVisible?"block":"none"}));function U(e){var t=e.errorMessage,n=e.editButtonText,r=e.editButtonAriaLabel,i=e.nextStepButtonText,o=e.validatingButtonText,a=e.nextStepButtonAriaLabel,u=e.validatingButtonAriaLabel,s=e.isStepActive,l=e.isStepComplete,c=e.className,d=e.stepNumber,f=e.stepId,p=e.titleContent,m=e.goToThisStep,g=e.goToNextStep,h=e.activeStepContent,v=e.formStatus,y=e.completeStepContent,b=e.onError,__=(0,S.useI18n)().__,E="".concat(f,s?"--visible":"--invisible"),w="".concat(f,s?"--invisible":"--visible");return(0,_.createElement)(I.Z,{errorMessage:t||__("There was an error with this step."),onError:b},(0,_.createElement)($,{className:c},(0,_.createElement)(z,{id:f,stepNumber:d,title:p,isActive:s,isComplete:l,onEdit:v===N.PX.READY&&l&&m&&!s?m:void 0,editButtonText:n||__("Edit"),editButtonAriaLabel:r||__("Edit this step")}),(0,_.createElement)(j,{"data-testid":E,isVisible:s,className:"checkout-steps__step-content"},h,g&&s&&(0,_.createElement)(O.Z,{onClick:g,value:v===N.PX.VALIDATING?o||__("Please wait…"):i||__("Continue"),ariaLabel:v===N.PX.VALIDATING?u||__("Please wait…"):a||__("Continue to next step"),buttonType:"primary",disabled:v!==N.PX.READY,isBusy:v===N.PX.VALIDATING})),l&&y?(0,_.createElement)(B,{"data-testid":w,isVisible:!s,className:"checkout-steps__step-complete-content"},y):null))}U.propTypes={errorMessage:x().string,onError:x().func,editButtonAriaLabel:x().string,editButtonText:x().string,nextStepButtonText:x().string,nextStepButtonAriaLabel:x().string,isStepActive:x().bool.isRequired,isStepComplete:x().bool.isRequired,className:x().string,stepNumber:x().number,stepId:x().string.isRequired,titleContent:x().node.isRequired,goToThisStep:x().func,goToNextStep:x().func,activeStepContent:x().node,formStatus:x().string,completeStepContent:x().node,validatingButtonText:x().string,validatingButtonAriaLabel:x().string};var G=P.Z.span(f||(f=(0,b.Z)(["\n\tcolor: ",";\n\tfont-weight: ",";\n\tmargin-right: ",";\n\tflex: 1;\n\n\t.rtl & {\n\t\tmargin-right: 0;\n\t\tmargin-left: ",";\n\t}\n"])),(function(e){return e.isActive?e.theme.colors.textColorDark:e.theme.colors.textColor}),(function(e){return e.isActive?e.theme.weights.bold:e.theme.weights.normal}),(function(e){return e.fullWidth?"0":"8px"}),(function(e){return e.fullWidth?"0":"8px"})),V=P.Z.h2(p||(p=(0,b.Z)(["\n\tfont-size: 16px;\n\tdisplay: flex;\n\twidth: 100%;\n\talign-items: center;\n\tmargin: 0 0 ",";\n"])),(function(e){return e.isComplete||e.isActive?"8px":"0"})),H=(0,P.Z)(k.Z)(m||(m=(0,b.Z)(["\n\tfont-size: 14px;\n\tpadding-top: 1px;\n"])));function z(e){var t=e.id,n=e.className,r=e.stepNumber,i=e.title,o=e.isActive,a=e.isComplete,u=e.onEdit,s=e.editButtonText,l=e.editButtonAriaLabel,__=(0,S.useI18n)().__,c=!!u;return(0,_.createElement)(V,{isComplete:a,isActive:o,className:(0,C.Z)([n,"checkout-step__header"])},(0,_.createElement)(X,{isComplete:a,isActive:o,id:t},r||null),(0,_.createElement)(G,{fullWidth:!c,isActive:o},i),c&&(0,_.createElement)(H,{className:"checkout-step__edit-button",buttonType:"text-button",onClick:u,"aria-label":l||__("Edit this step")},s||__("Edit")))}var Y=P.Z.div(g||(g=(0,b.Z)(["\n\tposition: relative;\n\twidth: 27px;\n\theight: 27px;\n\tmargin-right: 8px;\n\n\t.rtl & {\n\t\tmargin-right: 0;\n\t\tmargin-left: 8px;\n\t}\n"]))),W=P.Z.div(h||(h=(0,b.Z)(["\n\tposition: relative;\n\ttransform-origin: center center;\n\ttransition: transform 0.3s 0.1s ease-out;\n\ttransform-style: preserve-3d;\n\ttransform: ",";\n"])),(function(e){return e.isComplete?"rotateY(180deg)":"rotateY(0)"})),q=P.Z.div(v||(v=(0,b.Z)(["\n\tbackground: ",";\n\tfont-weight: normal;\n\twidth: 27px;\n\theight: 27px;\n\tline-height: 27px;\n\tbox-sizing: border-box;\n\ttext-align: center;\n\tborder-radius: 50%;\n\tcolor: ",";\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tbackface-visibility: hidden;\n\n\t.rtl & {\n\t\tright: 0;\n\t\tleft: auto;\n\t}\n\n\t// Reason: The IE media query needs to not have spaces within brackets otherwise ie11 doesn't read them\n\t// prettier-ignore\n\t@media all and (-ms-high-contrast:none), (-ms-high-contrast:active) {\n\t\tz-index: ",";\n\t}\n"])),(function(e){var t=e.isComplete,n=e.isActive,r=e.theme;if(n)return r.colors.highlight;if(t)return r.colors.success;return r.colors.upcomingStepBackground}),(function(e){var t=e.isComplete,n=e.isActive,r=e.theme;if(t||n)return r.colors.surface;return r.colors.textColor}),(function(e){return e.isComplete?"0":"1"})),K=(0,P.Z)(q)(y||(y=(0,b.Z)(["\n\tbackground: ",";\n\ttransform: rotateY( 180deg );\n\t// Reason: media query needs to not have spaces within brackets otherwise ie11 doesn't read them\n\t// prettier-ignore\n\t@media all and (-ms-high-contrast:none), (-ms-high-contrast:active) {\n\t\tbackface-visibility: visible;\n\t\tz-index: ",";\n\t}\n\n\tsvg {\n\t\tmargin-top: 4px;\n\t}\n"])),(function(e){return e.theme.colors.success}),(function(e){return e.isComplete?"1":"0"}));function X(e){var t=e.isComplete,n=e.isActive,r=e.className,i=e.children,o=e.id,a=!n&&t;return(0,_.createElement)(Y,{className:(0,C.Z)([r,"checkout-step__stepper"])},(0,_.createElement)(W,{isComplete:a},(0,_.createElement)(q,{isComplete:a,isActive:n},i),(0,_.createElement)(K,null,(0,_.createElement)(Z.nQ,{id:o}))))}z.propTypes={id:x().string,className:x().string,stepNumber:x().number,title:x().node.isRequired,isActive:x().bool,isComplete:x().bool,editButtonText:x().string,editButtonAriaLabel:x().string,onEdit:x().func},X.propTypes={id:x().string,className:x().string,isComplete:x().bool,isActive:x().bool}},5197:function(e,t,n){"use strict";n.d(t,{nQ:function(){return l}});var r,i=n(4059),o=n(3027),a=n(3980),u=n.n(a),s=(n(3804),n(5393));function l(e){var t=e.className,n=e.id;return(0,o.createElement)(c,{width:"20",height:"20",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",className:t},(0,o.createElement)("mask",{id:n+"-check-icon-mask","mask-type":"alpha",maskUnits:"userSpaceOnUse",x:"2",y:"4",width:"16",height:"12"},(0,o.createElement)("path",{d:"M7.32916 13.2292L3.85416 9.75417L2.67083 10.9292L7.32916 15.5875L17.3292 5.58751L16.1542 4.41251L7.32916 13.2292Z"})),(0,o.createElement)("g",{mask:"url(#"+n+"-check-icon-mask)"},(0,o.createElement)("rect",{width:"20",height:"20"})))}l.propTypes={className:u().string,id:u().string};var c=s.Z.svg(r||(r=(0,i.Z)(["\n\tfill: #fff;\n"])))},6654:function(e,t,n){"use strict";function r(e){return e.filter((function(e){return e})).join(" ")}n.d(t,{Z:function(){return r}})},5393:function(e,t,n){"use strict";var r=n(6648);t.Z=r.Z},5777:function(e,t,n){"use strict";n.d(t,{I:function(){return r}});var r={wordpressBlue5:"#BEDAE6",wordpressBlue40:"#187AA2",wordpressBlue50:"#006088",wordpressBlue60:"#004E6E",wordpressBlue80:"#002C40",blue5:"#BBE0FA",blue30:"#399CE3",blue40:"#1689DB",blue50:"#0675C4",blue60:"#055D9C",blue80:"#02395C",gray0:"#F6F7F7",gray5:"#DCDCDE",gray10:"#C3C4C7",gray20:"#A7AAAD",gray30:"#8E9196",gray50:"#646970",gray80:"#2C3338",pink50:"#C9356E",pink60:"#AB235A",pink80:"#700F3B",green50:"#008A20",red50:"#D63638",red0:"#F7EBEC",white:"#FFF",black:"#000"}},7384:function(e,t,n){"use strict";var r=n(5777),i={colors:{background:r.I.gray0,surface:r.I.white,primary:r.I.pink50,primaryBorder:r.I.pink80,primaryOver:r.I.pink60,highlight:r.I.blue50,highlightBorder:r.I.blue80,highlightOver:r.I.blue60,success:r.I.green50,discount:r.I.green50,disabledPaymentButtons:r.I.gray0,disabledPaymentButtonsAccent:r.I.gray5,disabledButtons:r.I.gray20,borderColor:r.I.gray10,borderColorLight:r.I.gray5,borderColorDark:r.I.gray50,upcomingStepBackground:r.I.gray5,textColor:r.I.gray80,textColorLight:r.I.gray50,textColorDark:r.I.black,error:r.I.red50,warningBackground:r.I.red0,outline:r.I.blue30,applePayButtonColor:r.I.black,applePayButtonRollOverColor:r.I.gray80,noticeBackground:r.I.gray80,defaultNoticeIconBackground:r.I.gray30,textColorOnDarkBackground:r.I.white,paypalGold:"#F0C443",paypalGoldHover:"#FFB900",modalBackground:"rgba( 255,255,255,0.9 )",disabledField:r.I.gray0,placeHolderTextColor:r.I.gray30},breakpoints:{desktopUp:"min-width: 960px",tabletUp:"min-width: 700px",bigPhoneUp:"min-width: 480px",smallPhoneUp:"min-width: 400px"},weights:{bold:"600",normal:"400"},fonts:{body:'-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif'},fontSize:{small:"14px"}};t.Z=i},7450:function(e,t,n){"use strict";var r,i,o;n.d(t,{PX:function(){return r}}),function(e){e.LOADING="loading",e.READY="ready",e.SUBMITTING="submitting",e.VALIDATING="validating",e.COMPLETE="complete"}(r||(r={})),function(e){e.SUCCESS="SUCCESS",e.REDIRECT="REDIRECT",e.MANUAL="MANUAL",e.ERROR="ERROR"}(i||(i={})),function(e){e.NOT_STARTED="not-started",e.PENDING="pending",e.COMPLETE="complete",e.REDIRECTING="redirecting",e.ERROR="error"}(o||(o={}))},3600:function(e,t,n){"use strict";n.r(t),n.d(t,{receiveCategories:function(){return r},fetchDomainSuggestions:function(){return i},receiveDomainAvailability:function(){return o},receiveDomainSuggestionsSuccess:function(){return a},receiveDomainSuggestionsError:function(){return u}});var r=function(e){return{type:"RECEIVE_CATEGORIES",categories:e}},i=function(){return{type:"FETCH_DOMAIN_SUGGESTIONS",timeStamp:Date.now()}},o=function(e,t){return{type:"RECEIVE_DOMAIN_AVAILABILITY",domainName:e,availability:t}},a=function(e,t){return{type:"RECEIVE_DOMAIN_SUGGESTIONS_SUCCESS",queryObject:e,suggestions:t,timeStamp:Date.now()}},u=function(e){return{type:"RECEIVE_DOMAIN_SUGGESTIONS_ERROR",errorMessage:e,timeStamp:Date.now()}}},584:function(e,t,n){"use strict";n.d(t,{L:function(){return i},r:function(){return r}});var r,i="automattic/domains/suggestions";!function(e){e.Failure="failure",e.Pending="pending",e.Success="success",e.Uninitialized="uninitialized"}(r||(r={}))},8077:function(e,t,n){"use strict";n.d(t,{z:function(){return d}});var r=n(5707),i=n(3661),o=n(3600),a=n(584),u=n(3717),s=n(2269),l=n(267),c=!1;function d(){return c||(c=!0,(0,r.registerStore)(a.L,{actions:o,controls:i.ai,reducer:u.Z,resolvers:s,selectors:l})),a.L}},3717:function(e,t,n){"use strict";var r=n(1119),i=n(9394),o=n(5707),a=n(584),u=n(4211),s={state:a.r.Uninitialized,data:{},errorMessage:null,lastUpdated:-1/0,pendingSince:void 0},l=(0,o.combineReducers)({categories:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1?arguments[1]:void 0;return"RECEIVE_CATEGORIES"===t.type?t.categories:e},domainSuggestions:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:s,t=arguments.length>1?arguments[1]:void 0;return"FETCH_DOMAIN_SUGGESTIONS"===t.type?(0,i.Z)((0,i.Z)({},e),{},{state:a.r.Pending,errorMessage:null,pendingSince:t.timeStamp}):"RECEIVE_DOMAIN_SUGGESTIONS_SUCCESS"===t.type?(0,i.Z)((0,i.Z)({},e),{},{state:a.r.Success,data:(0,i.Z)((0,i.Z)({},e.data),{},(0,r.Z)({},(0,u.Le)(t.queryObject),t.suggestions)),errorMessage:null,lastUpdated:t.timeStamp,pendingSince:void 0}):"RECEIVE_DOMAIN_SUGGESTIONS_ERROR"===t.type?(0,i.Z)((0,i.Z)({},e),{},{state:a.r.Failure,errorMessage:t.errorMessage,lastUpdated:t.timeStamp,pendingSince:void 0}):e},availability:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;return"RECEIVE_DOMAIN_AVAILABILITY"===t.type?(0,i.Z)((0,i.Z)({},e),{},(0,r.Z)({},t.domainName,t.availability)):e}});t.Z=l},2269:function(e,t,n){"use strict";n.r(t),n.d(t,{isAvailable:function(){return g},getCategories:function(){return h},__internalGetDomainSuggestions:function(){return v}});var r=n(9394),i=n(1481),o=n(9126),a=n(6468),u=n.n(a),s=n(3661),l=n(3600),c=n(4211),d=regeneratorRuntime.mark(h),f=regeneratorRuntime.mark(v);function p(e){return"https://public-api.wordpress.com/rest/v1.3/domains/".concat(encodeURIComponent(e),"/is-available?is_cart_pre_check=true")}function m(e,t){return u().isFQDN(t)&&!e.some((function(e){return e.domain_name.toLowerCase()===t}))}var g=regeneratorRuntime.mark((function e(t){var n,r,i;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=p(t),e.prev=1,e.next=4,(0,s.An)(n);case 4:return r=e.sent,i=r.body,e.abrupt("return",(0,l.receiveDomainAvailability)(t,i));case 9:return e.prev=9,e.t0=e.catch(1),e.abrupt("return",(0,l.receiveDomainAvailability)(t,{domain_name:t,mappable:"unknown",status:"unknown",supports_privacy:!1}));case 12:case"end":return e.stop()}}),e,null,[[1,9]])}));function h(){var e,t;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,(0,s.An)("https://public-api.wordpress.com/wpcom/v2/onboarding/domains/categories");case 2:return e=n.sent,t=e.body,n.abrupt("return",(0,l.receiveCategories)(t));case 5:case"end":return n.stop()}}),d)}function v(e){var t,n,a;return regeneratorRuntime.wrap((function(u){for(;;)switch(u.prev=u.next){case 0:if(e.query){u.next=2;break}return u.abrupt("return",(0,l.receiveDomainSuggestionsError)("Empty query"));case 2:return u.next=4,(0,l.fetchDomainSuggestions)();case 4:return u.prev=4,u.next=7,(0,s._9)({apiVersion:"1.1",path:"/domains/suggestions",query:(0,o.stringify)(e)});case 7:if(t=u.sent,Array.isArray(t)){u.next=10;break}return u.abrupt("return",(0,l.receiveDomainSuggestionsError)((0,i.Iu)("Invalid response from the server")));case 10:return m(t,e.query)&&(n={domain_name:e.query,unavailable:!0,cost:"",raw_price:0,currency_code:""},t.unshift(n)),a=t.map((function(e){return e.unavailable?e:(0,r.Z)((0,r.Z)({},e),e.raw_price&&e.currency_code&&{cost:(0,c._B)(e.raw_price,e.currency_code)})})),u.abrupt("return",(0,l.receiveDomainSuggestionsSuccess)(e,a));case 15:return u.prev=15,u.t0=u.catch(4),u.abrupt("return",(0,l.receiveDomainSuggestionsError)(u.t0.message||(0,i.Iu)("Error while fetching server response")));case 18:case"end":return u.stop()}}),f,null,[[4,15]])}},267:function(e,t,n){"use strict";n.r(t),n.d(t,{getCategories:function(){return u},getDomainSuggestions:function(){return s},getDomainState:function(){return l},getDomainErrorMessage:function(){return c},isLoadingDomainSuggestions:function(){return d},__internalGetDomainSuggestions:function(){return f},isAvailable:function(){return p},getDomainAvailabilities:function(){return m}});var r=n(1766),i=n(5707),o=n(584),a=n(4211),u=function(e){return[].concat((0,r.Z)(e.categories.filter((function(e){return null!==e.tier})).sort((function(e,t){return e>t?1:-1}))),(0,r.Z)(e.categories.filter((function(e){return null===e.tier})).sort((function(e,t){return e.title.localeCompare(t.title)}))))},s=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=(0,a.o0)(t,n);return(0,i.select)(o.L).__internalGetDomainSuggestions(r)},l=function(e){return e.domainSuggestions.state},c=function(e){return e.domainSuggestions.errorMessage},d=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=(0,a.o0)(t,n);return(0,i.select)("core/data").isResolving(o.L,"__internalGetDomainSuggestions",[r])},f=function(e,t){return e.domainSuggestions.data[(0,a.Le)(t)]},p=function(e,t){return e.availability[t]},m=function(e){return e.availability}},4211:function(e,t,n){"use strict";n.d(t,{Le:function(){return a},_B:function(){return u},o0:function(){return s}});var r=n(9394),i=n(1621),o=n(5695),a=n.n(o)();function u(e,t){return(0,i.ZP)(e,t,{stripZeros:!0})}function s(e,t){return(0,r.Z)((0,r.Z)({include_wordpressdotcom:t.only_wordpressdotcom||!1,include_dotblogsubdomain:!1,only_wordpressdotcom:!1,quantity:5,vendor:"variation2_front"},t),{},{query:e.trim().toLocaleLowerCase()})}},6108:function(e,t,n){"use strict";n.r(t),n.d(t,{setSidebarFullscreen:function(){return o},unsetSidebarFullscreen:function(){return a},setStep:function(){return u},setSiteTitle:function(){return s},setDomain:function(){return l},unsetDomain:function(){return c},confirmDomainSelection:function(){return d},setDomainSearch:function(){return f},setPlanProductId:function(){return m},unsetPlanProductId:function(){return g},updatePlan:function(){return h},openSidebar:function(){return v},closeSidebar:function(){return y},openFocusedLaunch:function(){return b},closeFocusedLaunch:function(){return _},enableAnchorFm:function(){return S},showSiteTitleStep:function(){return E},setModalDismissible:function(){return w},unsetModalDismissible:function(){return A},showModalTitle:function(){return x},hideModalTitle:function(){return C},enablePersistentSuccessView:function(){return P},disablePersistentSuccessView:function(){return N}});var r=n(5707),i=n(9149),o=function(){return{type:"SET_SIDEBAR_FULLSCREEN"}},a=function(){return{type:"UNSET_SIDEBAR_FULLSCREEN"}},u=function(e){return{type:"SET_STEP",step:e}},s=function(e){return{type:"SET_SITE_TITLE",title:e}},l=function(e){return{type:"SET_DOMAIN",domain:e}},c=function(){return{type:"UNSET_DOMAIN"}},d=function(){return{type:"CONFIRM_DOMAIN_SELECTION"}},f=function(e){return{type:"SET_DOMAIN_SEARCH",domainSearch:e}},p=function(e){return{type:"SET_PLAN_BILLING_PERIOD",billingPeriod:e}},m=regeneratorRuntime.mark((function e(t){var n,o,a;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if((0,r.select)(i.Fs).isPlanProductFree(t)){e.next=6;break}return o=(0,r.select)(i.Fs).getPlanProductById(t),a=null!==(n=null==o?void 0:o.billingPeriod)&&void 0!==n?n:"ANNUALLY",e.next=6,p(a);case 6:return e.abrupt("return",{type:"SET_PLAN_PRODUCT_ID",planProductId:t});case 7:case"end":return e.stop()}}),e)})),g=function(){return{type:"UNSET_PLAN_PRODUCT_ID"}};function h(e){return m(e)}var v=function(){return{type:"OPEN_SIDEBAR"}},y=function(){return{type:"CLOSE_SIDEBAR"}},b=function(){return{type:"OPEN_FOCUSED_LAUNCH"}},_=function(){return{type:"CLOSE_FOCUSED_LAUNCH"}},S=function(){return{type:"ENABLE_ANCHOR_FM"}},E=function(){return{type:"SHOW_SITE_TITLE_STEP"}},w=function(){return{type:"SET_MODAL_DISMISSIBLE"}},A=function(){return{type:"UNSET_MODAL_DISMISSIBLE"}},x=function(){return{type:"SHOW_MODAL_TITLE"}},C=function(){return{type:"HIDE_MODAL_TITLE"}},P=function(){return{type:"ENABLE_SUCCESS_VIEW"}},N=function(){return{type:"DISABLE_SUCCESS_VIEW"}}},9149:function(e,t,n){"use strict";n.d(t,{Ls:function(){return r},Fs:function(){return i}});var r="automattic/launch",i="automattic/onboard/plans"},3610:function(e,t,n){"use strict";n.d(t,{y:function(){return r},M:function(){return i}});var r={Name:"name",Domain:"domain",Plan:"plan",Final:"final"},i=[r.Name,r.Domain,r.Plan,r.Final]},1635:function(e,t,n){"use strict";n.d(t,{z:function(){return d}});var r=n(5707),i=n(9866),o=n(6108),a=n(9149),u=n(594),s=n(4648),l=n(7092);(0,r.use)(r.plugins.persistence,u.Z);var c=!1;function d(){return c||(c=!0,(0,r.registerStore)(a.Ls,{actions:o,controls:i.controls,reducer:s.Z,selectors:l,persist:["domain","domainSearch","planProductId","planBillingPeriod","confirmedDomainSelection","isAnchorFm","isSiteTitleStepVisible","siteTitle"]})),a.Ls}},594:function(e,t,n){"use strict";var r=n(492);t.Z=(0,r.Z)("WP_LAUNCH")},4648:function(e,t,n){"use strict";var r=n(5707),i=n(3610),o=(0,r.combineReducers)({step:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:i.y.Name,t=arguments.length>1?arguments[1]:void 0;return"SET_STEP"===t.type?t.step:e},siteTitle:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:void 0,t=arguments.length>1?arguments[1]:void 0;return"SET_SITE_TITLE"===t.type?t.title:e},domain:function(e,t){return"SET_DOMAIN"===t.type?t.domain:"UNSET_DOMAIN"!==t.type?e:void 0},confirmedDomainSelection:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"CONFIRM_DOMAIN_SELECTION"===t.type||e},domainSearch:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1?arguments[1]:void 0;return"SET_DOMAIN_SEARCH"===t.type?t.domainSearch:e},planBillingPeriod:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"ANNUALLY",t=arguments.length>1?arguments[1]:void 0;return"SET_PLAN_BILLING_PERIOD"===t.type?t.billingPeriod:e},planProductId:function(e,t){return"SET_PLAN_PRODUCT_ID"===t.type?t.planProductId:"UNSET_PLAN_PRODUCT_ID"!==t.type?e:void 0},isSidebarOpen:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"OPEN_SIDEBAR"===t.type||"CLOSE_SIDEBAR"!==t.type&&e},isSidebarFullscreen:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"SET_SIDEBAR_FULLSCREEN"===t.type||"UNSET_SIDEBAR_FULLSCREEN"!==t.type&&e},isAnchorFm:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"ENABLE_ANCHOR_FM"===t.type||e},isFocusedLaunchOpen:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"OPEN_FOCUSED_LAUNCH"===t.type||"CLOSE_FOCUSED_LAUNCH"!==t.type&&e},isSiteTitleStepVisible:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"SHOW_SITE_TITLE_STEP"===t.type||e},isModalDismissible:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0],t=arguments.length>1?arguments[1]:void 0;return"SET_MODAL_DISMISSIBLE"===t.type||"UNSET_MODAL_DISMISSIBLE"!==t.type&&e},isModalTitleVisible:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0],t=arguments.length>1?arguments[1]:void 0;return"SHOW_MODAL_TITLE"===t.type||"HIDE_MODAL_TITLE"!==t.type&&e}});t.Z=o},7092:function(e,t,n){"use strict";n.r(t),n.d(t,{getLaunchSequence:function(){return a},getLaunchStep:function(){return u},getState:function(){return s},hasPaidDomain:function(){return l},getSelectedDomain:function(){return c},getSelectedPlanProductId:function(){return d},getLastPlanBillingPeriod:function(){return f},isSelectedPlanPaid:function(){return p},hasSelectedDomainOrSubdomain:function(){return m},isStepCompleted:function(){return g},isFlowCompleted:function(){return h},isFlowStarted:function(){return v},getFirstIncompleteStep:function(){return y},getSiteTitle:function(){return b},getCurrentStep:function(){return _},getDomainSearch:function(){return S}});var r=n(5707),i=n(9149),o=n(3610),a=function(){return o.M},u=function(){return o.y},s=function(e){return e},l=function(e){return!!e.domain&&!e.domain.is_free},c=function(e){return e.domain},d=function(e){return e.planProductId},f=function(e){return e.planBillingPeriod},p=function(e){return void 0!==e.planProductId&&!(0,r.select)(i.Fs).isPlanProductFree(e.planProductId)},m=function(e){return!!c(e)||e.confirmedDomainSelection},g=function(e,t){if(t===o.y.Plan)return!!d(e);if(t===o.y.Name){var n=(0,r.select)("core").getEntityRecord("root","site",void 0);return!(null==n||!n.title)}return t===o.y.Domain&&(0,r.select)(i.Ls).hasSelectedDomainOrSubdomain()},h=function(e){return o.M.slice(0,o.M.length-1).every((function(t){return g(e,t)}))},v=function(e){return o.M.some((function(t){return g(e,t)}))},y=function(e){return o.M.find((function(t){return!g(e,t)}))},b=function(e){return null==e?void 0:e.siteTitle},_=function(e){return e.step},S=function(e){return e.domainSearch}},492:function(e,t,n){"use strict";function r(e){var t=e,n=e+"_TS",r={},i={getItem:function(e){return r.hasOwnProperty(e)?r[e]:null},setItem:function(e,t){r[e]=String(t)},removeItem:function(e){delete r[e]}},o=function(){try{return window.localStorage.setItem("WP_ONBOARD_TEST","1"),window.localStorage.removeItem("WP_ONBOARD_TEST"),!0}catch(e){return!1}}()?window.localStorage:i;return{storageKey:t,storage:{getItem:function(e){var r=o.getItem(n);return r&&function(e){var t=Number(e);return Boolean(t)&&t+6048e5>Date.now()}(r)&&!new URLSearchParams(window.location.search).has("fresh")?o.getItem(e):(o.removeItem(t),o.removeItem(n),null)},setItem:function(e,t){o.setItem(n,JSON.stringify(Date.now())),o.setItem(e,t)}}}}n.d(t,{Z:function(){return r}})},9068:function(e,t,n){"use strict";n.r(t),n.d(t,{setFeatures:function(){return r},setFeaturesByType:function(){return i},setPlans:function(){return o},setPlanProducts:function(){return a},resetPlan:function(){return u}});var r=function(e,t){return{type:"SET_FEATURES",features:e,locale:t}},i=function(e,t){return{type:"SET_FEATURES_BY_TYPE",featuresByType:e,locale:t}},o=function(e,t){return{type:"SET_PLANS",plans:e,locale:t}},a=function(e){return{type:"SET_PLAN_PRODUCTS",products:e}},u=function(){return{type:"RESET_PLAN"}}},4703:function(e,t,n){"use strict";n.d(t,{Ls:function(){return r},Ho:function(){return i},TO:function(){return o},YS:function(){return a},Gz:function(){return u},hx:function(){return s},iL:function(){return l},xT:function(){return c},AX:function(){return d},bS:function(){return f},UB:function(){return p},BV:function(){return m},nN:function(){return g}});var r="automattic/onboard/plans",i=1,o="free",a="personal",u="premium",s="business",l="ecommerce",c=[o,a,u,s,l],d=u,f=["personal-bundle","value_bundle","business-bundle","ecommerce-bundle"],p=["personal-bundle-monthly","value_bundle_monthly","business-bundle-monthly","ecommerce-bundle-monthly"],m=["free_plan"].concat(f,p),g=["custom-domain","support-live","priority-support"]},9734:function(e,t,n){"use strict";n.d(t,{z2:function(){return d}});var r=n(5707),i=n(3661),o=n(9068),a=n(4703),u=n(9438),s=n(5261),l=n(7738),c=!1;function d(){return c||(c=!0,(0,r.registerStore)(a.Ls,{resolvers:s,actions:o,controls:i.ai,reducer:u.ZP,selectors:l})),a.Ls}},9438:function(e,t,n){"use strict";var r=n(1119),i=n(9394),o=n(5707),a=(0,o.combineReducers)({features:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"SET_FEATURES":return(0,i.Z)((0,i.Z)({},e),{},(0,r.Z)({},t.locale,t.features));default:return e}},featuresByType:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"SET_FEATURES_BY_TYPE":return(0,i.Z)((0,i.Z)({},e),{},(0,r.Z)({},t.locale,t.featuresByType));default:return e}},planProducts:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"SET_PLAN_PRODUCTS":return t.products;default:return e}},plans:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"SET_PLANS":return(0,i.Z)((0,i.Z)({},e),{},(0,r.Z)({},t.locale,t.plans));default:return e}}});t.ZP=a},5261:function(e,t,n){"use strict";n.r(t),n.d(t,{getSupportedPlans:function(){return g}});var r=n(1621),i=n(9126),o=n(3661),a=n(9068),u=n(4703),s=regeneratorRuntime.mark(g);function l(e){return(0,r.ZP)(12*e.raw_price,e.currency_code,{stripZeros:!0})}function c(e){return(0,r.ZP)(e.raw_price,e.currency_code,{stripZeros:!0})}function d(e){return e.reduce((function(e,t){return e[t.id]={id:t.id,name:t.name,description:t.description,type:"checkbox",requiresAnnuallyBilledPlan:u.nN.indexOf(t.id)>-1},e}),{})}function f(e,t){var n=Object.keys(t).find((function(n){return t[n].name===e}));return!!n&&t[n].requiresAnnuallyBilledPlan}function p(e,t){var n=e.highlighted_features.map((function(e){return{name:e,requiresAnnuallyBilledPlan:f(e,t)}}));return n.sort((function(e,t){return Number(t.requiresAnnuallyBilledPlan)-Number(e.requiresAnnuallyBilledPlan)})),n}function m(e,t){var n=u.BV.reduce((function(n,i){var o=e.find((function(e){return e.product_slug===i}));if(!o)return n;var a,u=t.find((function(e){return e.productIds.indexOf(o.product_id)>-1}));return n.push({productId:o.product_id,billingPeriod:31===o.bill_period?"MONTHLY":"ANNUALLY",periodAgnosticSlug:u.periodAgnosticSlug,storeSlug:o.product_slug,rawPrice:o.raw_price,pathSlug:o.path_slug,price:31===(null==o?void 0:o.bill_period)||0===o.raw_price?c(o):(a=o,(0,r.ZP)(a.raw_price/12,a.currency_code,{stripZeros:!0})),annualPrice:31===(null==o?void 0:o.bill_period)?l(o):c(o)}),n}),[]);return function(e){for(var t=function(t){var n=e.find((function(e){return e.storeSlug===u.bS[t]})),r=e.find((function(e){return e.storeSlug===u.UB[t]}));if(n&&r){var i=12*r.rawPrice,o=n.rawPrice,a=Math.round(100*(1-o/i));n.annualDiscount=a,r.annualDiscount=a}},n=0;n<u.bS.length;n++)t(n)}(n),n}function g(){var e,t,n,r,l,c,f,g=arguments;return regeneratorRuntime.wrap((function(s){for(;;)switch(s.prev=s.next){case 0:return e=g.length>0&&void 0!==g[0]?g[0]:"en",s.next=3,(0,o._9)({path:"/plans",query:(0,i.stringify)({locale:e}),apiVersion:"1.5"});case 3:return t=s.sent,s.next=6,(0,o.An)("https://public-api.wordpress.com/wpcom/v2/plans/details?locale=".concat(encodeURIComponent(e)),{mode:"cors",credentials:"omit"});case 6:return n=s.sent,r=n.body,l=d(r.features),c=r.plans.map((function(e){var t,n=null===(t=e.nonlocalized_short_name)||void 0===t?void 0:t.toLowerCase();return{description:e.tagline,features:p(e,l),storage:e.storage,title:e.short_name,featuresSlugs:e.features.reduce((function(e,t){return e[t]=!0,e}),{}),isFree:n===u.TO,isPopular:n===u.Gz,periodAgnosticSlug:n,productIds:e.products.map((function(e){return e.plan_id}))}})),f=m(t,c),s.next=13,(0,a.setPlans)(c,e);case 13:return s.next=15,(0,a.setPlanProducts)(f);case 15:return s.next=17,(0,a.setFeatures)(l,e);case 17:return s.next=19,(0,a.setFeaturesByType)(r.features_by_type,e);case 19:case"end":return s.stop()}}),s)}},7738:function(e,t,n){"use strict";n.r(t),n.d(t,{getFeatures:function(){return u},getFeaturesByType:function(){return s},getPlanByProductId:function(){return l},getPlanProductById:function(){return c},getPlanByPeriodAgnosticSlug:function(){return d},getDefaultPaidPlan:function(){return f},getDefaultFreePlan:function(){return p},getSupportedPlans:function(){return m},getPlansProducts:function(){return g},getPrices:function(){return h},getPlanByPath:function(){return v},getPlanProduct:function(){return y},isPlanEcommerce:function(){return b},isPlanFree:function(){return _},isPlanProductFree:function(){return S}});var r=n(5707),i=n(3613),o=n.n(i),a=n(4703),u=function(e,t){var n;return null!==(n=e.features[t])&&void 0!==n?n:{}},s=function(e,t){var n;return null!==(n=e.featuresByType[t])&&void 0!==n?n:[]},l=function(e,t,n){if(t)return(0,r.select)(a.Ls).getSupportedPlans(n).find((function(e){return e.productIds.indexOf(t)>-1}))},c=function(e,t){if(t)return(0,r.select)(a.Ls).getPlansProducts().find((function(e){return e.productId===t}))},d=function(e,t,n){if(t)return(0,r.select)(a.Ls).getSupportedPlans(n).find((function(e){return e.periodAgnosticSlug===t}))},f=function(e,t){return(0,r.select)(a.Ls).getSupportedPlans(t).find((function(e){return e.periodAgnosticSlug===a.AX}))},p=function(e,t){return(0,r.select)(a.Ls).getSupportedPlans(t).find((function(e){return e.periodAgnosticSlug===a.TO}))},m=function(e,t){var n;return null!==(n=e.plans[t])&&void 0!==n?n:[]},g=function(e){return e.planProducts},h=function(e,t){return o()("getPrices",{alternative:"getPlanProduct().price"}),(0,r.select)(a.Ls).getPlansProducts().reduce((function(e,t){return e[t.storeSlug]=t.price,e}),{})},v=function(e,t,n){if(t){var i=(0,r.select)(a.Ls).getPlansProducts().find((function(e){return e.pathSlug===t}));if(i)return(0,r.select)(a.Ls).getSupportedPlans(n).find((function(e){return e.periodAgnosticSlug===i.periodAgnosticSlug}))}},y=function(e,t,n){if(t&&n)return(0,r.select)(a.Ls).getPlansProducts().find((function(e){var r=e.periodAgnosticSlug===t,i=t===a.TO||e.billingPeriod===n;return r&&i}))},b=function(e,t){return t===a.iL},_=function(e,t){return t===a.TO},S=function(e,t){return t===a.Ho}},8459:function(e,t,n){"use strict";n.d(t,{d:function(){return u}});var r=n(9394),i=n(4530),o=n(3661),a=n(2699);function u(e){var t=regeneratorRuntime.mark(p),n=regeneratorRuntime.mark(y),u=regeneratorRuntime.mark(b),s=regeneratorRuntime.mark(_),l=regeneratorRuntime.mark(S),c=function(){return{type:"FETCH_NEW_SITE"}},d=function(e){return{type:"RECEIVE_NEW_SITE",response:e}},f=function(e){return{type:"RECEIVE_NEW_SITE_FAILED",error:e}};function p(n){var a,u,s,l,c;return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,{type:"FETCH_NEW_SITE"};case 2:return t.prev=2,a=n.authToken,u=(0,i.Z)(n,["authToken"]),s={client_id:e.client_id,client_secret:e.client_secret,find_available_url:!0,public:-1},l=(0,r.Z)((0,r.Z)((0,r.Z)({},s),u),{},{validate:!1}),t.next=8,(0,o._9)({path:"/sites/new",apiVersion:"1.1",method:"post",body:l,token:a});case 8:return c=t.sent,t.next=11,d(c);case 11:return t.abrupt("return",!0);case 14:return t.prev=14,t.t0=t.catch(2),t.next=18,f(t.t0);case 18:return t.abrupt("return",!1);case 19:case"end":return t.stop()}}),t,null,[[2,14]])}var m=function(e,t){return{type:"RECEIVE_SITE_TITLE",siteId:e,title:t}},g=function(e){return{type:"LAUNCH_SITE_START",siteId:e}},h=function(e){return{type:"LAUNCH_SITE_SUCCESS",siteId:e}},v=function(e,t){return{type:"LAUNCH_SITE_FAILURE",siteId:e,error:t}};function y(e){return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,g(e);case 2:return t.prev=2,t.next=5,(0,o._9)({path:"/sites/".concat(e,"/launch"),apiVersion:"1.1",method:"post"});case 5:return t.next=7,h(e);case 7:t.next=13;break;case 9:return t.prev=9,t.t0=t.catch(2),t.next=13,v(e,a.Hc.INTERNAL);case 13:case"end":return t.stop()}}),n,null,[[2,9]])}function b(e){var t;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,(0,o._9)({path:"/me/shopping-cart/"+e,apiVersion:"1.1",method:"GET"});case 2:return t=n.sent,n.abrupt("return",t);case 4:case"end":return n.stop()}}),u)}function _(e,t){var n;return regeneratorRuntime.wrap((function(r){for(;;)switch(r.prev=r.next){case 0:return r.next=2,(0,o._9)({path:"/me/shopping-cart/"+e,apiVersion:"1.1",method:"POST",body:t});case 2:return n=r.sent,r.abrupt("return",n);case 4:case"end":return r.stop()}}),s)}function S(e,t){return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.prev=0,n.next=3,(0,o._9)({path:"/sites/".concat(encodeURIComponent(e),"/settings"),apiVersion:"1.4",body:{blogname:t},method:"POST"});case 3:return n.next=5,m(e,t);case 5:n.next=9;break;case 7:n.prev=7,n.t0=n.catch(0);case 9:case"end":return n.stop()}}),l,null,[[0,7]])}return{receiveSiteDomains:function(e,t){return{type:"RECEIVE_SITE_DOMAINS",siteId:e,domains:t}},saveSiteTitle:S,receiveSiteTitle:m,fetchNewSite:c,fetchSite:function(){return{type:"FETCH_SITE"}},receiveNewSite:d,receiveNewSiteFailed:f,resetNewSiteFailed:function(){return{type:"RESET_RECEIVE_NEW_SITE_FAILED"}},createSite:p,receiveSite:function(e,t){return{type:"RECEIVE_SITE",siteId:e,response:t}},receiveSiteFailed:function(e,t){return{type:"RECEIVE_SITE_FAILED",siteId:e,response:t}},reset:function(){return{type:"RESET_SITE_STORE"}},launchSite:y,launchSiteStart:g,launchSiteSuccess:h,launchSiteFailure:v,getCart:b,setCart:_}}},2005:function(e,t,n){"use strict";n.d(t,{L:function(){return r}});var r="automattic/site"},2369:function(e,t,n){"use strict";n.d(t,{z2:function(){return d}});var r=n(5707),i=n(3661),o=n(8459),a=n(2005),u=n(2701),s=n(7862),l=n(4309),c=!1;function d(e){return c||(c=!0,(0,r.registerStore)(a.L,{actions:(0,o.d)(e),controls:i.ai,reducer:u.ZP,resolvers:s,selectors:l})),a.L}},2701:function(e,t,n){"use strict";var r=n(4530),i=n(60),o=n(1119),a=n(9394),u=n(5707),s=n(2699),l=(0,u.combineReducers)({data:function(e,t){return"RECEIVE_NEW_SITE"===t.type?t.response.blog_details:"RECEIVE_NEW_SITE_FAILED"!==t.type&&"RESET_SITE_STORE"!==t.type?e:void 0},error:function(e,t){switch(t.type){case"FETCH_NEW_SITE":case"RECEIVE_NEW_SITE":case"RESET_SITE_STORE":case"RESET_RECEIVE_NEW_SITE_FAILED":return;case"RECEIVE_NEW_SITE_FAILED":return{error:t.error.error,status:t.error.status,statusCode:t.error.statusCode,name:t.error.name,message:t.error.message}}return e},isFetching:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"FETCH_NEW_SITE":return!0;case"RECEIVE_NEW_SITE":case"RECEIVE_NEW_SITE_FAILED":case"RESET_SITE_STORE":case"RESET_RECEIVE_NEW_SITE_FAILED":return!1}return e}}),c=(0,u.combineReducers)({isFetchingSiteDetails:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"FETCH_SITE":return!0;case"RECEIVE_SITE":case"RECEIVE_SITE_FAILED":return!1}return e},newSite:l,sites:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;if("RECEIVE_SITE"===t.type)return(0,a.Z)((0,a.Z)({},e),{},(0,o.Z)({},t.siteId,t.response));if("RECEIVE_SITE_FAILED"===t.type){var n=t.siteId,u=(e[n],(0,r.Z)(e,[n].map(i.Z)));return(0,a.Z)({},u)}return"RESET_SITE_STORE"===t.type?{}:"RECEIVE_SITE_TITLE"===t.type?(0,a.Z)((0,a.Z)({},e),{},(0,o.Z)({},t.siteId,(0,a.Z)((0,a.Z)({},e[t.siteId]),{},{name:t.title}))):e},launchStatus:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;return"LAUNCH_SITE_START"===t.type?(0,a.Z)((0,a.Z)({},e),{},(0,o.Z)({},t.siteId,{status:s.uS.IN_PROGRESS,errorCode:void 0})):"LAUNCH_SITE_SUCCESS"===t.type?(0,a.Z)((0,a.Z)({},e),{},(0,o.Z)({},t.siteId,{status:s.uS.SUCCESS,errorCode:void 0})):"LAUNCH_SITE_FAILURE"===t.type?(0,a.Z)((0,a.Z)({},e),{},(0,o.Z)({},t.siteId,{status:s.uS.FAILURE,errorCode:t.error})):e},sitesDomains:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;return"RECEIVE_SITE_DOMAINS"===t.type?(0,a.Z)((0,a.Z)({},e),{},(0,o.Z)({},t.siteId,t.domains)):e}});t.ZP=c},7862:function(e,t,n){"use strict";n.r(t),n.d(t,{getSite:function(){return s},getSiteDomains:function(){return l}});var r=n(5707),i=n(3661),o=n(2005),a=regeneratorRuntime.mark(s),u=regeneratorRuntime.mark(l);function s(e){var t;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,(0,r.dispatch)(o.L).fetchSite();case 2:return n.prev=2,n.next=5,(0,i._9)({path:"/sites/"+encodeURIComponent(e),apiVersion:"1.1"});case 5:return t=n.sent,n.next=8,(0,r.dispatch)(o.L).receiveSite(e,t);case 8:n.next=14;break;case 10:return n.prev=10,n.t0=n.catch(2),n.next=14,(0,r.dispatch)(o.L).receiveSiteFailed(e,void 0);case 14:case"end":return n.stop()}}),a,null,[[2,10]])}function l(e){var t;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.prev=0,n.next=3,(0,i._9)({path:"/sites/"+encodeURIComponent(e)+"/domains",apiVersion:"1.2"});case 3:return t=n.sent,n.next=6,(0,r.dispatch)(o.L).receiveSiteDomains(e,null==t?void 0:t.domains);case 6:n.next=10;break;case 8:n.prev=8,n.t0=n.catch(0);case 10:case"end":return n.stop()}}),u,null,[[0,8]])}},4309:function(e,t,n){"use strict";n.r(t),n.d(t,{getState:function(){return a},getNewSite:function(){return u},getNewSiteError:function(){return s},isFetchingSite:function(){return l},isFetchingSiteDetails:function(){return c},isNewSite:function(){return d},getSite:function(){return f},getSiteTitle:function(){return p},isSiteLaunched:function(){return m},isSiteLaunching:function(){return g},getSiteDomains:function(){return h},getPrimarySiteDomain:function(){return v},getSiteSubdomain:function(){return y}});var r=n(5707),i=n(2005),o=n(2699),a=function(e){return e},u=function(e){return e.newSite.data},s=function(e){return e.newSite.error},l=function(e){return e.newSite.isFetching},c=function(e){return e.isFetchingSiteDetails},d=function(e){return!!e.newSite.data},f=function(e,t){return e.sites[t]},p=function(e,t){var n;return null===(n=(0,r.select)(i.L).getSite(t))||void 0===n?void 0:n.name},m=function(e,t){var n;return(null===(n=e.launchStatus[t])||void 0===n?void 0:n.status)===o.uS.SUCCESS},g=function(e,t){var n;return(null===(n=e.launchStatus[t])||void 0===n?void 0:n.status)===o.uS.IN_PROGRESS},h=function(e,t){return e.sitesDomains[t]},v=function(e,t){var n;return null===(n=(0,r.select)(i.L).getSiteDomains(t))||void 0===n?void 0:n.find((function(e){return e.primary_domain}))},y=function(e,t){var n;return null===(n=(0,r.select)(i.L).getSiteDomains(t))||void 0===n?void 0:n.find((function(e){return e.is_subdomain}))}},2699:function(e,t,n){"use strict";var r,i,o;n.d(t,{Hc:function(){return i},uS:function(){return o}}),function(e){e[e.PublicIndexed=1]="PublicIndexed",e[e.PublicNotIndexed=0]="PublicNotIndexed",e[e.Private=-1]="Private"}(r||(r={})),function(e){e.INTERNAL="internal"}(i||(i={})),function(e){e.UNINITIALIZED="unintialized",e.IN_PROGRESS="in_progress",e.SUCCESS="success",e.FAILURE="failure"}(o||(o={}))},4366:function(e,t,n){"use strict";n.d(t,{L:function(){return r}});var r="automattic/wpcom-features"},2613:function(e,t,n){"use strict";n.d(t,{$:function(){return u}});var r=n(4703),i=r.YS,o=r.Gz,a=r.hx,u={domain:{id:"domain",minSupportedPlan:i},store:{id:"store",minSupportedPlan:r.iL},seo:{id:"seo",minSupportedPlan:a},plugins:{id:"plugins",minSupportedPlan:a},"ad-free":{id:"ad-free",minSupportedPlan:i},"image-storage":{id:"image-storage",minSupportedPlan:o},"video-storage":{id:"video-storage",minSupportedPlan:o},support:{id:"support",minSupportedPlan:a}}},182:function(e,t,n){"use strict";n.d(t,{z:function(){return l}});var r=n(5707),i=n(9866),o=n(4366),a=n(8638),u=n(335),s=!1;function l(){return s||(s=!0,(0,r.registerStore)(o.L,{controls:i.controls,reducer:a.Z,selectors:u})),o.L}},8638:function(e,t,n){"use strict";var r=n(2613);t.Z=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:r.$;return e}},335:function(e,t,n){"use strict";n.r(t),n.d(t,{getAllFeatures:function(){return i},getRecommendedPlanSlug:function(){return o}});var r=n(4703),i=function(e){return e},o=function(e,t){var n=i(e);if(t.length)return t.reduce((function(e,t){var i=n[t].minSupportedPlan;return r.xT.indexOf(i)>r.xT.indexOf(e)?i:e}),n[t[0]].minSupportedPlan)}},3661:function(e,t,n){"use strict";n.d(t,{_9:function(){return a},An:function(){return u},ai:function(){return s}});var r,i=n(6470),o=n(8552),a=function(e){return{type:"WPCOM_REQUEST",request:e}},u=function(e,t){return{type:"FETCH_AND_PARSE",resource:e,options:t}},s={WPCOM_REQUEST:function(e){var t=e.request;return(0,o.ZP)(t)},FETCH_AND_PARSE:(r=(0,i.Z)(regeneratorRuntime.mark((function e(t){var n,r,i;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=t.resource,r=t.options,e.next=3,window.fetch(n,r);case 3:return i=e.sent,e.t0=i.ok,e.next=7,i.json();case 7:return e.t1=e.sent,e.abrupt("return",{ok:e.t0,body:e.t1});case 9:case"end":return e.stop()}}),e)}))),function(_x){return r.apply(this,arguments)}),RELOAD_PROXY:function(){(0,o.sS)()},REQUEST_ALL_BLOGS_ACCESS:function(){return(0,o.Vw)()},WAIT:function(e){var t=e.ms;return new Promise((function(e){return setTimeout(e,t)}))}}},7003:function(e,t,n){"use strict";var r=n(3258),i=n(3027),o=n(7997),a=n(5707),u=n(5869),s=n(3383),l=n(8675),c=n(2779),d=n.n(c),f=(n(3804),n(3300));n(8062);t.Z=function(e){var t=e.onSelect,n=e.selected,__=(0,l.useI18n)().__,c=(0,i.useState)(!1),p=(0,r.Z)(c,2),m=p[0],g=p[1],h=function(e){g(!1),t(e)},v=(0,a.useSelect)((function(e){return e(f.GN).getCategories()})),y=__("All Categories","full-site-editing");return(0,i.createElement)("div",{className:d()("domain-categories",{"is-open":m})},(0,i.createElement)(o.Button,{className:"domain-categories__dropdown-button",onClick:function(){return g(!m)}},(0,i.createElement)("span",null,null!=n?n:y),(0,i.createElement)(u.Z,{icon:s.Z,size:16})),(0,i.createElement)("ul",{className:"domain-categories__item-group"},(0,i.createElement)("li",{className:d()("domain-categories__item",{"is-selected":!n})},(0,i.createElement)(o.Button,{onClick:function(){return h()}},__("View all","full-site-editing"))),v.map((function(e){var t=e.slug,r=e.title;return(0,i.createElement)("li",{key:t,className:d()("domain-categories__item",{"is-selected":t===n})},(0,i.createElement)(o.Button,{onClick:function(){return h(t)}},r))}))))}},6325:function(e,t,n){"use strict";n.d(t,{q:function(){return o}});var r=n(3027),i=n(8675),o=(n(3804),function(){var e=(0,i.useI18n)(),__=e.__,t=e.isRTL;return(0,r.createElement)("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",x:"0px",y:"0px",viewBox:"0 0 300 40",xmlSpace:"preserve",width:"300",style:t()?{transform:"scaleX(-1)"}:void 0},(0,r.createElement)("rect",{x:"0",width:"310",height:"50",rx:"10",fill:"#D8D8D8"}),(0,r.createElement)("rect",{x:"8",y:"8",width:"25",height:"25",rx:"5",fill:"#fff"}),(0,r.createElement)("rect",{x:"40",y:"8",width:"25",height:"25",rx:"5",fill:"#fff"}),(0,r.createElement)("rect",{x:"72",y:"8",width:"300",height:"25",rx:"5",fill:"#fff"}),(0,r.createElement)("text",{x:"80",y:"26",direction:"ltr",textAnchor:t()?"end":"start",transform:t()?"scale(-1,1) translate(-160,0)":void 0},(0,r.createElement)("tspan",{fill:"#999"},(0,r.createElement)("tspan",null,"https://")),(0,r.createElement)("tspan",{fill:"#515151",dx:"4.5"},__("example.com","full-site-editing"))))})},1614:function(e,t,n){"use strict";var r=n(3027),i=n(2779),o=n.n(i);n(3804);t.Z=function(e){var t=e.type;return(0,r.createElement)("div",{className:o()("domain-picker__suggestion-item placeholder","type-".concat(t))},(0,r.createElement)("div",{className:"domain-picker__suggestion-item-name placeholder"}),(0,r.createElement)("div",{className:"domain-picker__price placeholder"}))}},7226:function(e,t,n){"use strict";var r=n(2389),i=n(4530),o=n(3027),a=n(3804),u=n(6461),s=a.forwardRef((function(e,t){var n=e.type,a=e.disabled,s=(0,i.Z)(e,["type","disabled"]);return n===u.ln?(0,o.createElement)("div",s):(0,o.createElement)("button",(0,r.Z)({ref:t,disabled:a},s))}));t.Z=s},6461:function(e,t,n){"use strict";n.d(t,{fe:function(){return y},ln:function(){return b}});var r=n(2389),i=n(3258),o=n(3027),a=n(6115),u=n(849),s=n(7498),l=n(7997),c=n(1417),d=n(3163),f=n(8675),p=n(2779),m=n.n(p),g=n(3804),h=n(413),v=n(7226),y="radio",b="button",_="individual-item",S=function(e){var t=e.isUnavailable,n=e.domain,r=e.isLoading,p=e.cost,S=e.railcarId,E=e.hstsRequired,w=void 0!==E&&E,A=e.isFree,x=void 0!==A&&A,C=e.isExistingSubdomain,P=void 0!==C&&C,N=e.isRecommended,k=void 0!==N&&N,I=e.onSelect,O=e.onRender,Z=e.selected,L=e.type,M=void 0===L?y:L,T=e.buttonRef,D=(0,f.useI18n)(),__=D.__,F=D.hasTranslation,R=(0,u.bU)(),$=(0,s.Iu)(),j=!(0,c.useViewportMatch)("small",">="),B=n.indexOf("."),U=n.slice(0,B),G=n.slice(B),V=g.useState(),H=(0,i.Z)(V,2),z=H[0],Y=H[1],W=g.useState(),q=(0,i.Z)(W,2),K=q[0],X=q[1],J=__("Default","full-site-editing"),Q=__("Free","full-site-editing"),ee=M===_?J:Q,te=__("Included with annual plans","full-site-editing"),ne=__("Included in annual plans","full-site-editing"),re="en"===R||null!=F&&F("Included in annual plans")?ne:te,ie=__("<strong>First year included</strong> in paid plans","full-site-editing"),oe=__("<strong>First year included</strong> in annual plans","full-site-editing"),ae="en"===R||null!=F&&F("<strong>First year included</strong> in annual plans")?oe:ie,ue=j?re:(0,o.createInterpolateElement)(ae,{strong:(0,o.createElement)("strong",null)});g.useEffect((function(){n!==z&&K!==S&&S&&(O(),Y(n),X(S))}),[n,z,K,S,O]);var se=function(){K&&(0,a.Lo)({action:"domain_selected",railcarId:K}),I(n)},le=__("Selected","full-site-editing"),ce=__("Select","full-site-editing");return(0,o.createElement)(v.Z,{ref:T,type:M,key:U,className:m()("domain-picker__suggestion-item",{"is-free":x,"is-selected":Z,"is-unavailable":t},"type-".concat(M)),onClick:M!==b?se:void 0,disabled:t},M===y&&(r?(0,o.createElement)(l.Spinner,null):(0,o.createElement)("span",{className:m()("domain-picker__suggestion-radio-circle",{"is-checked":Z,"is-unavailable":t})})),(0,o.createElement)("div",{className:"domain-picker__suggestion-item-name"},(0,o.createElement)("div",{className:"domain-picker__suggestion-item-name-inner"},(0,o.createElement)("span",{className:m()("domain-picker__domain-wrapper",{"with-margin":!w})},(0,o.createElement)("span",{className:"domain-picker__domain-sub-domain"},U),(0,o.createElement)("span",{className:"domain-picker__domain-tld"},G)),k&&!t&&(0,o.createElement)("div",{className:"domain-picker__badge is-recommended"},__("Recommended","full-site-editing")),w&&(0,o.createElement)(h.Z,{position:j?"bottom center":"middle right",noArrow:!1,className:"domain-picker__info-tooltip"},(0,o.createInterpolateElement)(__("All domains ending with <tld /> require an SSL certificate to host a website. When you host this domain at WordPress.com an SSL certificate is included. <learn_more_link>Learn more</learn_more_link>","full-site-editing"),{tld:(0,o.createElement)("b",null,G),learn_more_link:(0,o.createElement)("a",{target:"_blank",rel:"noreferrer",href:$("https://wordpress.com/support/https-ssl")})}))),P&&M!==_&&(0,o.createElement)("div",{className:"domain-picker__change-subdomain-tip"},__("You can change your free subdomain later under Domain Settings.","full-site-editing"))),(0,o.createElement)("div",{className:m()("domain-picker__price",{"is-paid":!x})},t&&__("Unavailable","full-site-editing"),x&&!t&&ee,!x&&!t&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("span",{className:"domain-picker__price-cost"},(0,d.sprintf)(__("%s/year","full-site-editing"),p)),(0,o.createElement)("span",{className:"domain-picker__price-inclusive"}," ",ue," "),(0,o.createElement)("span",{className:"domain-picker__price-renewal"},(0,d.sprintf)(__("Renews at: %s /year","full-site-editing"),p)))),M===b&&(r?(0,o.createElement)(l.Spinner,null):(0,o.createElement)("div",{className:"domain-picker__action"},(0,o.createElement)(l.Button,{ref:T,isSecondary:!0,className:m()("domain-picker__suggestion-select-button",{"is-selected":Z&&!t}),disabled:t,onClick:se},Z&&!t?le:ce))))};t.ZP=g.forwardRef((function(e,t){return(0,o.createElement)(S,(0,r.Z)({},e,{buttonRef:t}))}))},605:function(e,t,n){"use strict";var r=n(3027),i=n(9211),o=n(8675),a=(n(3804),n(7226));t.Z=function(e){var t=e.onClick,n=(0,o.useI18n)(),__=n.__,_x=n._x;return(0,r.createElement)(a.Z,{type:"button",className:"domain-picker__suggestion-item type-link",onClick:t},(0,r.createElement)("div",{className:"domain-picker__suggestion-item-name"},(0,r.createElement)("span",{className:"domain-picker__domain-wrapper with-margin with-bold-text"},__("Already own a domain?","full-site-editing")),(0,r.createElement)("div",null,(0,r.createElement)("span",{className:"domain-picker__item-tip"},_x("You can use it as your site's address.","Upgrades: Register domain description","full-site-editing")))),(0,r.createElement)(i.b4,{arrow:"right"},_x("Use a domain I own","Domain transfer or mapping suggestion button","full-site-editing")))}},2999:function(e,t,n){"use strict";var r=n(3258),i=n(3027),o=n(6115),a=n(584),u=n(7997),s=n(5869),l=n(7108),c=n(8675),d=n(1205),f=n(3804),p=n.n(f),m=n(3300),g=n(5241),h=n(1045),v=n(1071),y=n(3446),b=n(7003),_=n(6325),S=n(6461),E=n(1614),w=n(605),A=(n(3437),function(e){var t=e.groupItems,n=e.children;return t?(0,i.createElement)("div",{className:"domain-picker__suggestion-item-group"},n):(0,i.createElement)(f.Fragment,null,n)}),x=function(e){var t=e.children;return(0,i.createElement)("p",{className:"domain-picker__suggestion-group-label"},t)};t.ZP=function(e){var t,n=e.header,C=e.showDomainCategories,P=e.onDomainSelect,N=e.onExistingSubdomainSelect,k=e.quantity,I=void 0===k?m.SL:k,O=e.quantityExpanded,Z=void 0===O?m.Mm:O,L=e.onDomainSearchBlur,M=e.analyticsFlowId,T=e.analyticsUiAlgo,D=e.initialDomainSearch,F=void 0===D?"":D,R=e.onSetDomainSearch,$=e.currentDomain,j=e.isCheckingDomainAvailability,B=e.existingSubdomain,U=e.segregateFreeAndPaid,G=void 0!==U&&U,V=e.showSearchField,H=void 0===V||V,z=e.itemType,Y=void 0===z?S.fe:z,W=e.locale,q=e.areDependenciesLoading,K=void 0!==q&&q,X=e.orderSubDomainsLast,J=void 0!==X&&X,Q=e.onUseYourDomainClick,ee=e.vendor,te=void 0===ee?(0,y.iY)():ee,ne=e.showRecommendationLabel,re=void 0===ne||ne,__=(0,c.useI18n)().__,ie=__("Search for a domain","full-site-editing"),oe=(0,f.useState)(!1),ae=(0,r.Z)(oe,2),ue=ae[0],se=ae[1],le=(0,f.useState)(F),ce=(0,r.Z)(le,2),de=ce[0],fe=ce[1],pe=(0,f.useState)(),me=(0,r.Z)(pe,2),ge=me[0],he=me[1],ve=(0,g.O)(de.trim(),Z,ge,W)||{},ye=ve.allDomainSuggestions,be=ve.errorMessage,_e=ve.state,Se=ve.retryRequest,Ee=null==ye?void 0:ye.filter((function(e){return!(B&&e.is_free)})).slice(0,ue?Z-1:I-1),we=null==Ee?void 0:Ee.findIndex((function(e){return!e.is_free&&!e.unavailable})),Ae=(0,h.$)(Ee,B,$);Ae&&(null==Ee||Ee.push(Ae));var xe=(0,v.P)();(0,f.useEffect)((function(){se(!1)}),[de]);var Ce=(0,f.useState)(),Pe=(0,r.Z)(Ce,2),Ne=Pe[0],ke=Pe[1];(0,f.useEffect)((function(){ye&&ke((0,o.k9)("suggestion"))}),[ye,ke]),(0,f.useEffect)((function(){H||fe(F)}),[F,H]);var Ie=p().useRef([]);(0,f.useEffect)((function(){var e,t;ue&&(null===(e=Ie.current[I])||void 0===e||null===(t=e.focus)||void 0===t||t.call(e))}),[ue,I]);var Oe=function(e,t,n,r){var i="/domains/search/".concat(te,"/").concat(M).concat(ge?"/"+ge:"");(0,o.Sn)({uiAlgo:"/".concat(M,"/").concat(T),fetchAlgo:i,query:de,railcarId:t,result:r?e+"#recommended":e,uiPosition:n})},Ze=p().useRef(),Le=_e===a.r.Failure,Me=(null===(t=de.trim)||void 0===t?void 0:t.call(de).length)<=1,Te=!Le&&!Me,De=!Le&&Me,Fe=I;Ae&&(Fe+=1),Q&&(Fe+=1),B&&(Fe-=1);var Re=["professional"];return B&&Re.unshift("sub-domain"),J&&Re.reverse(),(0,i.createElement)("div",{className:"domain-picker"},n&&n,H&&(0,i.createElement)("div",{className:"domain-picker__search"},(0,i.createElement)("form",{action:"",onSubmit:function(e){var t;e.preventDefault(),null==Ze||null===(t=Ze.current)||void 0===t||t.blur()}},(0,i.createElement)("div",{className:"domain-picker__search-icon"},(0,i.createElement)(s.Z,{icon:l.Z})),(0,i.createElement)(u.TextControl,{ref:function(e){Ze.current=e},hideLabelFromVision:!0,name:"search",label:ie,placeholder:ie,onChange:function(e){fe(e),R&&R(e)},onBlur:function(e){L&&L(e.currentTarget.value)},value:de,dir:"ltr"}))),Le&&(0,i.createElement)(u.Notice,{className:"domain-picker__error",status:"error",isDismissible:!1},(0,i.createElement)("p",{className:"domain-picker__error-message"},be||__("An error has occurred, please check your connection and retry.","full-site-editing")),(0,i.createElement)(u.Button,{isPrimary:!0,className:"domain-picker__error-retry-btn",onClick:Se},__("Retry","full-site-editing"))),(Te||K)&&(0,i.createElement)("div",{className:"domain-picker__body"},C&&(0,i.createElement)("div",{className:"domain-picker__aside"},(0,i.createElement)(b.Z,{selected:ge,onSelect:he})),(0,i.createElement)("div",{className:"domain-picker__suggestion-sections"},(0,i.createElement)("div",{className:"domain-picker__sugggested-items-container"},Re.map((function(e){return"sub-domain"===e?(0,i.createElement)(f.Fragment,{key:e},G&&(0,i.createElement)(x,null,__("Keep sub-domain","full-site-editing")),(0,i.createElement)(A,{key:e,groupItems:G},!K&&B&&(0,i.createElement)(S.ZP,{key:null==B?void 0:B.domain_name,domain:null==B?void 0:B.domain_name,cost:"Free",isFree:!0,isExistingSubdomain:!0,railcarId:Ne?"".concat(Ne,0):void 0,onRender:function(){return Oe(null==B?void 0:B.domain_name,"".concat(Ne,0),0,!1)},selected:(null==$?void 0:$.domain_name)===(null==B?void 0:B.domain_name),onSelect:function(){null==N||N(null==B?void 0:B.domain_name)},type:Y})||(0,i.createElement)(E.Z,{type:Y}))):(0,i.createElement)(f.Fragment,{key:e},G&&(0,i.createElement)(x,null,__("Professional domains","full-site-editing")),(0,i.createElement)(A,{key:e,groupItems:G},!K&&(null==Ee?void 0:Ee.map((function(e,t){var n,r=null!=B&&B.domain_name?t+1:t,o=t===we,a=null===(n=xe[null==e?void 0:e.domain_name])||void 0===n?void 0:n.status,u=!a||(null===m.vn||void 0===m.vn?void 0:m.vn.indexOf(a))>-1;return(0,i.createElement)(S.ZP,{ref:function(e){Ie.current[r]=e},key:e.domain_name,domain:e.domain_name,cost:e.cost,isUnavailable:!u||(null==e?void 0:e.unavailable),isLoading:(null==$?void 0:$.domain_name)===e.domain_name&&j,hstsRequired:e.hsts_required,isFree:e.is_free,isRecommended:re&&o,railcarId:Ne?"".concat(Ne).concat(r):void 0,onRender:function(){return Oe(e.domain_name,"".concat(Ne).concat(r),r,o)},onSelect:function(){P(e)},selected:(null==$?void 0:$.domain_name)===e.domain_name,type:Y})})))||(0,d.times)(Fe,(function(e){return(0,i.createElement)(E.Z,{type:Y,key:e})})),Q&&!!Ee&&(0,i.createElement)(w.Z,{onClick:Q})))}))),!ue&&I<Z&&(null==ye?void 0:ye.length)&&(null==ye?void 0:ye.length)>I&&(0,i.createElement)("div",{className:"domain-picker__show-more"},(0,i.createElement)(u.Button,{onClick:function(){return se(!0)},isLink:!0},__("View more results","full-site-editing"))))),De&&!K&&(0,i.createElement)("div",{className:"domain-picker__empty-state"},(0,i.createElement)("p",{className:"domain-picker__empty-state--text"},__("A domain name is the site address people type in their browser to visit your site.","full-site-editing")),(0,i.createElement)("div",null,(0,i.createElement)(_.q,null))))}},413:function(e,t,n){"use strict";var r=n(3258),i=n(3027),o=n(7997),a=n(5614),u=n(2779),s=n.n(u),l=n(3804);n(101);t.Z=function(e){var t=e.children,n=e.className,u=e.id,c=e.position,d=void 0===c?"bottom center":c,f=e.noArrow,p=void 0===f||f,m=(0,l.useState)(!1),g=(0,r.Z)(m,2),h=g[0],v=g[1];return(0,i.createElement)((function(e){return(0,i.createElement)(o.Button,e)}),{icon:a.Z,onClick:function(e){v(!h),e.stopPropagation()},className:"info-tooltip","data-testid":"info-tooltip"},h&&(0,i.createElement)(o.Popover,{id:u,className:s()("info-tooltip__content",n),onClose:function(){v(!1)},position:d,noArrow:p},t))}},3300:function(e,t,n){"use strict";n.d(t,{SL:function(){return i},Mm:function(){return o},F9:function(){return a},dP:function(){return u},GN:function(){return s},vn:function(){return l}});var r=n(8077),i=5,o=10,a=2,u=300,s=r.z(),l=["available","available_premium"]},1071:function(e,t,n){"use strict";n.d(t,{P:function(){return o}});var r=n(5707),i=n(3300);function o(){return(0,r.useSelect)((function(e){return e(i.GN).getDomainAvailabilities()}),[])}},5241:function(e,t,n){"use strict";n.d(t,{O:function(){return s}});var r=n(9394),i=n(3258),o=n(5707),a=n(7127),u=n(3300);function s(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1?arguments[1]:void 0,n=arguments.length>2?arguments[2]:void 0,s=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"en",l=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},c=(0,a.Z)(e,u.dP),d=(0,i.Z)(c,1),f=d[0],p=(0,o.useDispatch)(u.GN),m=p.invalidateResolutionForStoreSelector;return(0,o.useSelect)((function(e){if(f&&!(f.length<u.F9)){var i=e(u.GN),o=i.getDomainSuggestions,a=i.getDomainState,c=i.getDomainErrorMessage;return{allDomainSuggestions:o(f,(0,r.Z)({include_wordpressdotcom:!0,include_dotblogsubdomain:!1,quantity:t+1,locale:s,category_slug:n},l)),state:a(),errorMessage:c(),retryRequest:function(){m("__internalGetDomainSuggestions")}}}}),[f,n,t])}},1045:function(e,t,n){"use strict";n.d(t,{$:function(){return a}});var r=n(1766),i=n(3258),o=n(3804);function a(e,t,n){var a=o.useState(),u=(0,i.Z)(a,2),s=u[0],l=u[1],c=t&&Array.isArray(e)?[t].concat((0,r.Z)(e)):e;if(o.useEffect((function(){var e=null==c?void 0:c.some((function(e){return e.domain_name===(null==n?void 0:n.domain_name)}));null!=c&&c.length&&!e&&l(n)}),[n,c]),!(null==c?void 0:c.some((function(e){return(null==e?void 0:e.domain_name)===(null==s?void 0:s.domain_name)}))))return s}},3446:function(e,t,n){"use strict";function r(e){if(e)return{domain_name:e,relevance:1,supports_privacy:!0,vendor:"",cost:"",product_id:0,product_slug:"",raw_price:0,currency_code:"",unavailable:!1}}function i(e){return void 0!==e.normalize&&!!e.normalize("NFD").replace(/[\u0300-\u036f]/g,"").match(/[a-z0-9-.\s]/i)}function o(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return e.isSignup&&!e.isDomainOnly?"variation4_front":e.isPremium?"variation8_front":"variation2_front"}n.d(t,{nf:function(){return r},Qi:function(){return i},iY:function(){return o}})},3759:function(e,t,n){"use strict";n.d(t,{X:function(){return i}});var r={AED:{symbol:"د.إ.‏",grouping:",",decimal:".",precision:2},AFN:{symbol:"؋",grouping:",",decimal:".",precision:2},ALL:{symbol:"Lek",grouping:".",decimal:",",precision:2},AMD:{symbol:"֏",grouping:",",decimal:".",precision:2},ANG:{symbol:"ƒ",grouping:",",decimal:".",precision:2},AOA:{symbol:"Kz",grouping:",",decimal:".",precision:2},ARS:{symbol:"$",grouping:".",decimal:",",precision:2},AUD:{symbol:"A$",grouping:",",decimal:".",precision:2},AWG:{symbol:"ƒ",grouping:",",decimal:".",precision:2},AZN:{symbol:"₼",grouping:" ",decimal:",",precision:2},BAM:{symbol:"КМ",grouping:".",decimal:",",precision:2},BBD:{symbol:"Bds$",grouping:",",decimal:".",precision:2},BDT:{symbol:"৳",grouping:",",decimal:".",precision:0},BGN:{symbol:"лв.",grouping:" ",decimal:",",precision:2},BHD:{symbol:"د.ب.‏",grouping:",",decimal:".",precision:3},BIF:{symbol:"FBu",grouping:",",decimal:".",precision:0},BMD:{symbol:"$",grouping:",",decimal:".",precision:2},BND:{symbol:"$",grouping:".",decimal:",",precision:0},BOB:{symbol:"Bs",grouping:".",decimal:",",precision:2},BRL:{symbol:"R$",grouping:".",decimal:",",precision:2},BSD:{symbol:"$",grouping:",",decimal:".",precision:2},BTC:{symbol:"Ƀ",grouping:",",decimal:".",precision:2},BTN:{symbol:"Nu.",grouping:",",decimal:".",precision:1},BWP:{symbol:"P",grouping:",",decimal:".",precision:2},BYR:{symbol:"р.",grouping:" ",decimal:",",precision:2},BZD:{symbol:"BZ$",grouping:",",decimal:".",precision:2},CAD:{symbol:"C$",grouping:",",decimal:".",precision:2},CDF:{symbol:"FC",grouping:",",decimal:".",precision:2},CHF:{symbol:"CHF",grouping:"'",decimal:".",precision:2},CLP:{symbol:"$",grouping:".",decimal:",",precision:2},CNY:{symbol:"¥",grouping:",",decimal:".",precision:2},COP:{symbol:"$",grouping:".",decimal:",",precision:2},CRC:{symbol:"₡",grouping:".",decimal:",",precision:2},CUC:{symbol:"CUC",grouping:",",decimal:".",precision:2},CUP:{symbol:"$MN",grouping:",",decimal:".",precision:2},CVE:{symbol:"$",grouping:",",decimal:".",precision:2},CZK:{symbol:"Kč",grouping:" ",decimal:",",precision:2},DJF:{symbol:"Fdj",grouping:",",decimal:".",precision:0},DKK:{symbol:"kr.",grouping:"",decimal:",",precision:2},DOP:{symbol:"RD$",grouping:",",decimal:".",precision:2},DZD:{symbol:"د.ج.‏",grouping:",",decimal:".",precision:2},EGP:{symbol:"ج.م.‏",grouping:",",decimal:".",precision:2},ERN:{symbol:"Nfk",grouping:",",decimal:".",precision:2},ETB:{symbol:"ETB",grouping:",",decimal:".",precision:2},EUR:{symbol:"€",grouping:".",decimal:",",precision:2},FJD:{symbol:"FJ$",grouping:",",decimal:".",precision:2},FKP:{symbol:"£",grouping:",",decimal:".",precision:2},GBP:{symbol:"£",grouping:",",decimal:".",precision:2},GEL:{symbol:"Lari",grouping:" ",decimal:",",precision:2},GHS:{symbol:"₵",grouping:",",decimal:".",precision:2},GIP:{symbol:"£",grouping:",",decimal:".",precision:2},GMD:{symbol:"D",grouping:",",decimal:".",precision:2},GNF:{symbol:"FG",grouping:",",decimal:".",precision:0},GTQ:{symbol:"Q",grouping:",",decimal:".",precision:2},GYD:{symbol:"G$",grouping:",",decimal:".",precision:2},HKD:{symbol:"HK$",grouping:",",decimal:".",precision:2},HNL:{symbol:"L.",grouping:",",decimal:".",precision:2},HRK:{symbol:"kn",grouping:".",decimal:",",precision:2},HTG:{symbol:"G",grouping:",",decimal:".",precision:2},HUF:{symbol:"Ft",grouping:".",decimal:",",precision:0},IDR:{symbol:"Rp",grouping:".",decimal:",",precision:0},ILS:{symbol:"₪",grouping:",",decimal:".",precision:2},INR:{symbol:"₹",grouping:",",decimal:".",precision:2},IQD:{symbol:"د.ع.‏",grouping:",",decimal:".",precision:2},IRR:{symbol:"﷼",grouping:",",decimal:"/",precision:2},ISK:{symbol:"kr.",grouping:".",decimal:",",precision:0},JMD:{symbol:"J$",grouping:",",decimal:".",precision:2},JOD:{symbol:"د.ا.‏",grouping:",",decimal:".",precision:3},JPY:{symbol:"¥",grouping:",",decimal:".",precision:0},KES:{symbol:"S",grouping:",",decimal:".",precision:2},KGS:{symbol:"сом",grouping:" ",decimal:"-",precision:2},KHR:{symbol:"៛",grouping:",",decimal:".",precision:0},KMF:{symbol:"CF",grouping:",",decimal:".",precision:2},KPW:{symbol:"₩",grouping:",",decimal:".",precision:0},KRW:{symbol:"₩",grouping:",",decimal:".",precision:0},KWD:{symbol:"د.ك.‏",grouping:",",decimal:".",precision:3},KYD:{symbol:"$",grouping:",",decimal:".",precision:2},KZT:{symbol:"₸",grouping:" ",decimal:"-",precision:2},LAK:{symbol:"₭",grouping:",",decimal:".",precision:0},LBP:{symbol:"ل.ل.‏",grouping:",",decimal:".",precision:2},LKR:{symbol:"₨",grouping:",",decimal:".",precision:0},LRD:{symbol:"L$",grouping:",",decimal:".",precision:2},LSL:{symbol:"M",grouping:",",decimal:".",precision:2},LYD:{symbol:"د.ل.‏",grouping:",",decimal:".",precision:3},MAD:{symbol:"د.م.‏",grouping:",",decimal:".",precision:2},MDL:{symbol:"lei",grouping:",",decimal:".",precision:2},MGA:{symbol:"Ar",grouping:",",decimal:".",precision:0},MKD:{symbol:"ден.",grouping:".",decimal:",",precision:2},MMK:{symbol:"K",grouping:",",decimal:".",precision:2},MNT:{symbol:"₮",grouping:" ",decimal:",",precision:2},MOP:{symbol:"MOP$",grouping:",",decimal:".",precision:2},MRO:{symbol:"UM",grouping:",",decimal:".",precision:2},MTL:{symbol:"₤",grouping:",",decimal:".",precision:2},MUR:{symbol:"₨",grouping:",",decimal:".",precision:2},MVR:{symbol:"MVR",grouping:",",decimal:".",precision:1},MWK:{symbol:"MK",grouping:",",decimal:".",precision:2},MXN:{symbol:"MX$",grouping:",",decimal:".",precision:2},MYR:{symbol:"RM",grouping:",",decimal:".",precision:2},MZN:{symbol:"MT",grouping:",",decimal:".",precision:0},NAD:{symbol:"N$",grouping:",",decimal:".",precision:2},NGN:{symbol:"₦",grouping:",",decimal:".",precision:2},NIO:{symbol:"C$",grouping:",",decimal:".",precision:2},NOK:{symbol:"kr",grouping:" ",decimal:",",precision:2},NPR:{symbol:"₨",grouping:",",decimal:".",precision:2},NZD:{symbol:"NZ$",grouping:",",decimal:".",precision:2},OMR:{symbol:"﷼",grouping:",",decimal:".",precision:3},PAB:{symbol:"B/.",grouping:",",decimal:".",precision:2},PEN:{symbol:"S/.",grouping:",",decimal:".",precision:2},PGK:{symbol:"K",grouping:",",decimal:".",precision:2},PHP:{symbol:"₱",grouping:",",decimal:".",precision:2},PKR:{symbol:"₨",grouping:",",decimal:".",precision:2},PLN:{symbol:"zł",grouping:" ",decimal:",",precision:2},PYG:{symbol:"₲",grouping:".",decimal:",",precision:2},QAR:{symbol:"﷼",grouping:",",decimal:".",precision:2},RON:{symbol:"lei",grouping:".",decimal:",",precision:2},RSD:{symbol:"Дин.",grouping:".",decimal:",",precision:2},RUB:{symbol:"₽",grouping:" ",decimal:",",precision:2},RWF:{symbol:"RWF",grouping:" ",decimal:",",precision:2},SAR:{symbol:"﷼",grouping:",",decimal:".",precision:2},SBD:{symbol:"S$",grouping:",",decimal:".",precision:2},SCR:{symbol:"₨",grouping:",",decimal:".",precision:2},SDD:{symbol:"LSd",grouping:",",decimal:".",precision:2},SDG:{symbol:"£‏",grouping:",",decimal:".",precision:2},SEK:{symbol:"kr",grouping:",",decimal:".",precision:2},SGD:{symbol:"S$",grouping:",",decimal:".",precision:2},SHP:{symbol:"£",grouping:",",decimal:".",precision:2},SLL:{symbol:"Le",grouping:",",decimal:".",precision:2},SOS:{symbol:"S",grouping:",",decimal:".",precision:2},SRD:{symbol:"$",grouping:",",decimal:".",precision:2},STD:{symbol:"Db",grouping:",",decimal:".",precision:2},SVC:{symbol:"₡",grouping:",",decimal:".",precision:2},SYP:{symbol:"£",grouping:",",decimal:".",precision:2},SZL:{symbol:"E",grouping:",",decimal:".",precision:2},THB:{symbol:"฿",grouping:",",decimal:".",precision:2},TJS:{symbol:"TJS",grouping:" ",decimal:";",precision:2},TMT:{symbol:"m",grouping:" ",decimal:",",precision:0},TND:{symbol:"د.ت.‏",grouping:",",decimal:".",precision:3},TOP:{symbol:"T$",grouping:",",decimal:".",precision:2},TRY:{symbol:"TL",grouping:".",decimal:",",precision:2},TTD:{symbol:"TT$",grouping:",",decimal:".",precision:2},TVD:{symbol:"$T",grouping:",",decimal:".",precision:2},TWD:{symbol:"NT$",grouping:",",decimal:".",precision:2},TZS:{symbol:"TSh",grouping:",",decimal:".",precision:2},UAH:{symbol:"₴",grouping:" ",decimal:",",precision:2},UGX:{symbol:"USh",grouping:",",decimal:".",precision:2},USD:{symbol:"$",grouping:",",decimal:".",precision:2},UYU:{symbol:"$U",grouping:".",decimal:",",precision:2},UZS:{symbol:"сўм",grouping:" ",decimal:",",precision:2},VEB:{symbol:"Bs.",grouping:",",decimal:".",precision:2},VEF:{symbol:"Bs. F.",grouping:".",decimal:",",precision:2},VND:{symbol:"₫",grouping:".",decimal:",",precision:1},VUV:{symbol:"VT",grouping:",",decimal:".",precision:0},WST:{symbol:"WS$",grouping:",",decimal:".",precision:2},XAF:{symbol:"F",grouping:",",decimal:".",precision:2},XCD:{symbol:"$",grouping:",",decimal:".",precision:2},XOF:{symbol:"F",grouping:" ",decimal:",",precision:2},XPF:{symbol:"F",grouping:",",decimal:".",precision:2},YER:{symbol:"﷼",grouping:",",decimal:".",precision:2},ZAR:{symbol:"R",grouping:" ",decimal:",",precision:2},ZMW:{symbol:"ZK",grouping:",",decimal:".",precision:2},WON:{symbol:"₩",grouping:",",decimal:".",precision:2}};function i(e){return r[e]||{symbol:"$",grouping:",",decimal:".",precision:2}}},1621:function(e,t,n){"use strict";n.d(t,{ZP:function(){return a}});var r=n(9394),i=n(1481),o=n(3759);function a(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},a=(0,o.X)(t);if(!a||isNaN(e))return null;var s=(0,r.Z)((0,r.Z)({},a),n),l=s.decimal,c=s.grouping,d=s.precision,f=s.symbol,p=e<0?"-":"",m=(0,i.Y4)(Math.abs(e),{decimals:d,thousandsSep:c,decPoint:l});return n.stripZeros&&(m=u(m,l)),"".concat(p).concat(f).concat(m)}function u(e,t){var n=new RegExp("\\".concat(t,"0+$"));return e.replace(n,"")}},914:function(e,t,n){"use strict";var r=n(1766),i=n(1119),o=n(8049),a=n.n(o),u=n(7010),s=n(9830),l=n(7839),c=n.n(l),d=n(5079),f=n.n(d),p=n(382),m=n(6668),g=n(3),h=a()("i18n-calypso"),v="number_format_decimals",y="number_format_thousands_sep",b="messages",_=[function(e){return e}],S={};function E(){P.throwErrors&&"undefined"!=typeof window&&window.console&&window.console.warn&&window.console.warn.apply(window.console,arguments)}function w(e){return Array.prototype.slice.call(e)}function A(e){var t=e[0];("string"!=typeof t||e.length>3||e.length>2&&"object"==typeof e[1]&&"object"==typeof e[2])&&E("Deprecated Invocation: `translate()` accepts ( string, [string], [object] ). These arguments passed:",w(e),". See https://github.com/Automattic/i18n-calypso#translate-method"),2===e.length&&"string"==typeof t&&"string"==typeof e[1]&&E("Invalid Invocation: `translate()` requires an options object for plural translations, but passed:",w(e));for(var n={},r=0;r<e.length;r++)"object"==typeof e[r]&&(n=e[r]);if("string"==typeof t?n.original=t:"object"==typeof n.original&&(n.plural=n.original.plural,n.count=n.original.count,n.original=n.original.single),"string"==typeof e[1]&&(n.plural=e[1]),void 0===n.original)throw new Error("Translate called without a `string` value as first argument.");return n}function x(e,t){return e.dcnpgettext(b,t.context,t.original,t.plural,t.count)}function C(e,t){for(var n=_.length-1;n>=0;n--){var r=_[n](Object.assign({},t)),i=r.context?r.context+""+r.original:r.original;if(e.state.locale[i])return x(e.state.tannin,r)}return null}function P(){if(!(this instanceof P))return new P;this.defaultLocaleSlug="en",this.defaultPluralForms=function(e){return 1===e?0:1},this.state={numberFormatSettings:{},tannin:void 0,locale:void 0,localeSlug:void 0,localeVariant:void 0,textDirection:void 0,translations:c()({max:100})},this.componentUpdateHooks=[],this.translateHooks=[],this.stateObserver=new p.EventEmitter,this.stateObserver.setMaxListeners(0),this.configure()}P.throwErrors=!1,P.prototype.on=function(){var e;(e=this.stateObserver).on.apply(e,arguments)},P.prototype.off=function(){var e;(e=this.stateObserver).off.apply(e,arguments)},P.prototype.emit=function(){var e;(e=this.stateObserver).emit.apply(e,arguments)},P.prototype.numberFormat=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n="number"==typeof t?t:t.decimals||0,r=t.decPoint||this.state.numberFormatSettings.decimal_point||".",i=t.thousandsSep||this.state.numberFormatSettings.thousands_sep||",";return(0,g.Z)(e,n,r,i)},P.prototype.configure=function(e){Object.assign(this,e||{}),this.setLocale()},P.prototype.setLocale=function(e){var t,n,r;if(e&&e[""]&&e[""]["key-hash"]){var o=e[""]["key-hash"],a=function(e,t){var n=!1===t?"":String(t);if(void 0!==S[n+e])return S[n+e];var r=f()().update(e).digest("hex");return S[n+e]=t?r.substr(0,t):r},u=function(e){return function(t){return t.context?(t.original=a(t.context+String.fromCharCode(4)+t.original,e),delete t.context):t.original=a(t.original,e),t}};if("sha1"===o.substr(0,4))if(4===o.length)_.push(u(!1));else{var l=o.substr(5).indexOf("-");if(l<0){var c=Number(o.substr(5));_.push(u(c))}else for(var d=Number(o.substr(5,l)),p=Number(o.substr(6+l)),m=d;m<=p;m++)_.push(u(m))}}if(e&&e[""].localeSlug)if(e[""].localeSlug===this.state.localeSlug){if(e===this.state.locale)return;Object.assign(this.state.locale,e)}else this.state.locale=Object.assign({},e);else this.state.locale={"":{localeSlug:this.defaultLocaleSlug,plural_forms:this.defaultPluralForms}};this.state.localeSlug=this.state.locale[""].localeSlug,this.state.localeVariant=this.state.locale[""].localeVariant,this.state.textDirection=(null===(t=this.state.locale["text directionltr"])||void 0===t?void 0:t[0])||(null===(n=this.state.locale[""])||void 0===n||null===(r=n.momentjs_locale)||void 0===r?void 0:r.textDirection),this.state.tannin=new s.Z((0,i.Z)({},b,this.state.locale)),this.state.numberFormatSettings.decimal_point=x(this.state.tannin,A([v])),this.state.numberFormatSettings.thousands_sep=x(this.state.tannin,A([y])),this.state.numberFormatSettings.decimal_point===v&&(this.state.numberFormatSettings.decimal_point="."),this.state.numberFormatSettings.thousands_sep===y&&(this.state.numberFormatSettings.thousands_sep=","),this.stateObserver.emit("change")},P.prototype.getLocale=function(){return this.state.locale},P.prototype.getLocaleSlug=function(){return this.state.localeSlug},P.prototype.getLocaleVariant=function(){return this.state.localeVariant},P.prototype.isRtl=function(){return"rtl"===this.state.textDirection},P.prototype.addTranslations=function(e){for(var t in e)""!==t&&(this.state.tannin.data.messages[t]=e[t]);this.stateObserver.emit("change")},P.prototype.hasTranslation=function(){return!!C(this,A(arguments))},P.prototype.translate=function(){var e=A(arguments),t=C(this,e);if(t||(t=x(this.state.tannin,e)),e.args){var n=Array.isArray(e.args)?e.args.slice(0):[e.args];n.unshift(t);try{t=m.Z.apply(void 0,(0,r.Z)(n))}catch(o){if(!window||!window.console)return;var i=this.throwErrors?"error":"warn";"string"!=typeof o?window.console[i](o):window.console[i]("i18n sprintf error:",n)}}return e.components&&(t=(0,u.Z)({mixedString:t,components:e.components,throwErrors:this.throwErrors})),this.translateHooks.forEach((function(n){t=n(t,e)})),t},P.prototype.reRenderTranslations=function(){h("Re-rendering all translations due to external request"),this.stateObserver.emit("change")},P.prototype.registerComponentUpdateHook=function(e){this.componentUpdateHooks.push(e)},P.prototype.registerTranslateHook=function(e){this.translateHooks.push(e)},t.Z=P},1481:function(e,t,n){"use strict";n.d(t,{Y4:function(){return s},Iu:function(){return l}});var r=n(914),i=n(3493),o=n(975),a=n(8373),u=new r.Z,s=u.numberFormat.bind(u),l=u.translate.bind(u),c=(u.configure.bind(u),u.setLocale.bind(u),u.getLocale.bind(u),u.getLocaleSlug.bind(u),u.getLocaleVariant.bind(u),u.isRtl.bind(u),u.addTranslations.bind(u),u.reRenderTranslations.bind(u),u.registerComponentUpdateHook.bind(u),u.registerTranslateHook.bind(u),u.state,u.stateObserver,u.on.bind(u),u.off.bind(u),u.emit.bind(u),(0,i.Z)(u),(0,o.Z)(u),(0,a.Z)(u));c.useRtl,c.withRtl},3493:function(e,t,n){"use strict";n.d(t,{Z:function(){return p}});var r=n(9394),i=n(4659),o=n(4730),a=n(3989),u=n(5663),s=n(9049),l=n(1119),c=n(3027),d=n(3804),f=n.n(d);function p(e){var t={numberFormat:e.numberFormat.bind(e),translate:e.translate.bind(e)};return function(n){var d,p,m=n.displayName||n.name||"";return p=d=function(d){(0,u.Z)(p,d);var f=(0,s.Z)(p);function p(){var e;(0,i.Z)(this,p);for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];return e=f.call.apply(f,[this].concat(n)),(0,l.Z)((0,a.Z)(e),"boundForceUpdate",e.forceUpdate.bind((0,a.Z)(e))),e}return(0,o.Z)(p,[{key:"componentDidMount",value:function(){e.on("change",this.boundForceUpdate)}},{key:"componentWillUnmount",value:function(){e.off("change",this.boundForceUpdate)}},{key:"render",value:function(){var i=(0,r.Z)((0,r.Z)({locale:e.getLocaleSlug()},this.props),t);return(0,c.createElement)(n,i)}}]),p}(f().Component),(0,l.Z)(d,"displayName","Localized("+m+")"),p}}},3:function(e,t,n){"use strict";function r(e,t,n,r){e=(e+"").replace(/[^0-9+\-Ee.]/g,"");var i=isFinite(+e)?+e:0,o=isFinite(+t)?Math.abs(t):0,a=void 0===r?",":r,u=void 0===n?".":n,s="";return(s=(o?
20
  /*
21
  * Exposes number format capability
22
  *
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 r={}.hasOwnProperty;function i(){for(var e=[],t=0;t<arguments.length;t++){var n=arguments[t];if(n){var o=typeof n;if("string"===o||"number"===o)e.push(n);else if(Array.isArray(n)){if(n.length){var a=i.apply(null,n);a&&e.push(a)}}else if("object"===o)if(n.toString===Object.prototype.toString)for(var u in n)r.call(n,u)&&n[u]&&e.push(u);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,r=encodeURIComponent,i=/; */,o=/^[\u0009\u0020-\u007e\u0080-\u00ff]+$/;function a(e,t){try{return t(e)}catch(n){return e}}},50:function(e,t,n){"use strict";n.d(t,{f6:function(){return c}});var r=n(1119),i=n(3804),o=n(3389),a=n(9327);n(3463);function u(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}var s=function(e,t){return"function"==typeof t?t(e):function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?u(n,!0).forEach((function(t){(0,r.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):u(n).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({},e,{},t)},l=(0,a.Z)((function(e){return(0,a.Z)((function(t){return s(e,t)}))})),c=function(e){return(0,i.createElement)(o.Ni.Consumer,null,(function(t){return e.theme!==t&&(t=l(t)(e.theme)),(0,i.createElement)(o.Ni.Provider,{value:t},e.children)}))}},2699:function(e){"use strict";var t,n="object"==typeof Reflect?Reflect:null,r=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 o(){o.init.call(this)}e.exports=o,e.exports.once=function(e,t){return new Promise((function(n,r){function i(){void 0!==o&&e.removeListener("error",o),n([].slice.call(arguments))}var o;"error"!==t&&(o=function(n){e.removeListener(t,i),r(n)},e.once("error",o)),e.once(t,i)}))},o.EventEmitter=o,o.prototype._events=void 0,o.prototype._eventsCount=0,o.prototype._maxListeners=void 0;var a=10;function u(e){if("function"!=typeof e)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof e)}function s(e){return void 0===e._maxListeners?o.defaultMaxListeners:e._maxListeners}function l(e,t,n,r){var i,o,a,l;if(u(n),void 0===(o=e._events)?(o=e._events=Object.create(null),e._eventsCount=0):(void 0!==o.newListener&&(e.emit("newListener",t,n.listener?n.listener:n),o=e._events),a=o[t]),void 0===a)a=o[t]=n,++e._eventsCount;else if("function"==typeof a?a=o[t]=r?[n,a]:[a,n]:r?a.unshift(n):a.push(n),(i=s(e))>0&&a.length>i&&!a.warned){a.warned=!0;var c=new Error("Possible EventEmitter memory leak detected. "+a.length+" "+String(t)+" listeners added. Use emitter.setMaxListeners() to increase limit");c.name="MaxListenersExceededWarning",c.emitter=e,c.type=t,c.count=a.length,l=c,console&&console.warn&&console.warn(l)}return e}function c(){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 r={fired:!1,wrapFn:void 0,target:e,type:t,listener:n},i=c.bind(r);return i.listener=n,r.wrapFn=i,i}function f(e,t,n){var r=e._events;if(void 0===r)return[];var i=r[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),r=0;r<t;++r)n[r]=e[r];return n}Object.defineProperty(o,"defaultMaxListeners",{enumerable:!0,get:function(){return a},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+".");a=e}}),o.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},o.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},o.prototype.getMaxListeners=function(){return s(this)},o.prototype.emit=function(e){for(var t=[],n=1;n<arguments.length;n++)t.push(arguments[n]);var i="error"===e,o=this._events;if(void 0!==o)i=i&&void 0===o.error;else if(!i)return!1;if(i){var a;if(t.length>0&&(a=t[0]),a instanceof Error)throw a;var u=new Error("Unhandled error."+(a?" ("+a.message+")":""));throw u.context=a,u}var s=o[e];if(void 0===s)return!1;if("function"==typeof s)r(s,this,t);else{var l=s.length,c=m(s,l);for(n=0;n<l;++n)r(c[n],this,t)}return!0},o.prototype.addListener=function(e,t){return l(this,e,t,!1)},o.prototype.on=o.prototype.addListener,o.prototype.prependListener=function(e,t){return l(this,e,t,!0)},o.prototype.once=function(e,t){return u(t),this.on(e,d(this,e,t)),this},o.prototype.prependOnceListener=function(e,t){return u(t),this.prependListener(e,d(this,e,t)),this},o.prototype.removeListener=function(e,t){var n,r,i,o,a;if(u(t),void 0===(r=this._events))return this;if(void 0===(n=r[e]))return this;if(n===t||n.listener===t)0==--this._eventsCount?this._events=Object.create(null):(delete r[e],r.removeListener&&this.emit("removeListener",e,n.listener||t));else if("function"!=typeof n){for(i=-1,o=n.length-1;o>=0;o--)if(n[o]===t||n[o].listener===t){a=n[o].listener,i=o;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&&(r[e]=n[0]),void 0!==r.removeListener&&this.emit("removeListener",e,a||t)}return this},o.prototype.off=o.prototype.removeListener,o.prototype.removeAllListeners=function(e){var t,n,r;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,o=Object.keys(n);for(r=0;r<o.length;++r)"removeListener"!==(i=o[r])&&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(r=t.length-1;r>=0;r--)this.removeListener(e,t[r]);return this},o.prototype.listeners=function(e){return f(this,e,!0)},o.prototype.rawListeners=function(e){return f(this,e,!1)},o.listenerCount=function(e,t){return"function"==typeof e.listenerCount?e.listenerCount(t):p.call(e,t)},o.prototype.listenerCount=p,o.prototype.eventNames=function(){return this._eventsCount>0?t(this._events):[]}},5695:function(e){"use strict";e.exports=function(e,t){t||(t={}),"function"==typeof t&&(t={cmp:t});var n,r="boolean"==typeof t.cycles&&t.cycles,i=t.cmp&&(n=t.cmp,function(e){return function(t,r){var i={key:t,value:e[t]},o={key:r,value:e[r]};return n(i,o)}}),o=[];return function e(t){if(t&&t.toJSON&&"function"==typeof t.toJSON&&(t=t.toJSON()),void 0!==t){if("number"==typeof t)return isFinite(t)?""+t:"null";if("object"!=typeof t)return JSON.stringify(t);var n,a;if(Array.isArray(t)){for(a="[",n=0;n<t.length;n++)n&&(a+=","),a+=e(t[n])||"null";return a+"]"}if(null===t)return"null";if(-1!==o.indexOf(t)){if(r)return JSON.stringify("__cycle__");throw new TypeError("Converting circular structure to JSON")}var u=o.push(t)-1,s=Object.keys(t).sort(i&&i(t));for(a="",n=0;n<s.length;n++){var l=s[n],c=e(t[l]);c&&(a&&(a+=","),a+=JSON.stringify(l)+":"+c)}return o.splice(u,1),"{"+a+"}"}}(e)}},7201:function(e){"use strict";function t(e){return function(){return e}}var n=function(){};n.thatReturns=t,n.thatReturnsFalse=t(!1),n.thatReturnsTrue=t(!0),n.thatReturnsNull=t(null),n.thatReturnsThis=function(){return this},n.thatReturnsArgument=function(e){return e},e.exports=n},4983:function(e){"use strict";e.exports=function(e,t,n,r,i,o,a,u){if(!e){var s;if(void 0===t)s=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var l=[n,r,i,o,a,u],c=0;(s=new Error(t.replace(/%s/g,(function(){return l[c++]})))).name="Invariant Violation"}throw s.framesToPop=1,s}}},6590:function(e,t,n){"use strict";var r=n(7201);e.exports=r},4495:function(e,t,n){"use strict";var r=n(212),i=n(9561);function o(){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=o,o.prototype.update=function(e,t){if(e=r.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=r.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},o.prototype.digest=function(e){return this.update(this._pad()),i(null===this.pending),this._digest(e)},o.prototype._pad=function(){var e=this.pendingTotal,t=this._delta8,n=t-(e+this.padLength)%t,r=new Array(n+this.padLength);r[0]=128;for(var i=1;i<n;i++)r[i]=0;if(e<<=3,"big"===this.endian){for(var o=8;o<this.padLength;o++)r[i++]=0;r[i++]=0,r[i++]=0,r[i++]=0,r[i++]=0,r[i++]=e>>>24&255,r[i++]=e>>>16&255,r[i++]=e>>>8&255,r[i++]=255&e}else for(r[i++]=255&e,r[i++]=e>>>8&255,r[i++]=e>>>16&255,r[i++]=e>>>24&255,r[i++]=0,r[i++]=0,r[i++]=0,r[i++]=0,o=8;o<this.padLength;o++)r[i++]=0;return r}},5079:function(e,t,n){"use strict";var r=n(212),i=n(4495),o=n(713),a=r.rotl32,u=r.sum32,s=r.sum32_5,l=o.ft_1,c=i.BlockHash,d=[1518500249,1859775393,2400959708,3395469782];function f(){if(!(this instanceof f))return new f;c.call(this),this.h=[1732584193,4023233417,2562383102,271733878,3285377520],this.W=new Array(80)}r.inherits(f,c),e.exports=f,f.blockSize=512,f.outSize=160,f.hmacStrength=80,f.padLength=64,f.prototype._update=function(e,t){for(var n=this.W,r=0;r<16;r++)n[r]=e[t+r];for(;r<n.length;r++)n[r]=a(n[r-3]^n[r-8]^n[r-14]^n[r-16],1);var i=this.h[0],o=this.h[1],c=this.h[2],f=this.h[3],p=this.h[4];for(r=0;r<n.length;r++){var m=~~(r/20),g=s(a(i,5),l(m,o,c,f),p,n[r],d[m]);p=f,f=c,c=a(o,30),o=i,i=g}this.h[0]=u(this.h[0],i),this.h[1]=u(this.h[1],o),this.h[2]=u(this.h[2],c),this.h[3]=u(this.h[3],f),this.h[4]=u(this.h[4],p)},f.prototype._digest=function(e){return"hex"===e?r.toHex32(this.h,"big"):r.split32(this.h,"big")}},8032:function(e,t,n){"use strict";var r=n(212),i=n(4495),o=n(713),a=n(9561),u=r.sum32,s=r.sum32_4,l=r.sum32_5,c=o.ch32,d=o.maj32,f=o.s0_256,p=o.s1_256,m=o.g0_256,g=o.g1_256,h=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 y(){if(!(this instanceof y))return new y;h.call(this),this.h=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],this.k=v,this.W=new Array(64)}r.inherits(y,h),e.exports=y,y.blockSize=512,y.outSize=256,y.hmacStrength=192,y.padLength=64,y.prototype._update=function(e,t){for(var n=this.W,r=0;r<16;r++)n[r]=e[t+r];for(;r<n.length;r++)n[r]=s(g(n[r-2]),n[r-7],m(n[r-15]),n[r-16]);var i=this.h[0],o=this.h[1],h=this.h[2],v=this.h[3],y=this.h[4],b=this.h[5],_=this.h[6],S=this.h[7];for(a(this.k.length===n.length),r=0;r<n.length;r++){var E=l(S,p(y),c(y,b,_),this.k[r],n[r]),w=u(f(i),d(i,o,h));S=_,_=b,b=y,y=u(v,E),v=h,h=o,o=i,i=u(E,w)}this.h[0]=u(this.h[0],i),this.h[1]=u(this.h[1],o),this.h[2]=u(this.h[2],h),this.h[3]=u(this.h[3],v),this.h[4]=u(this.h[4],y),this.h[5]=u(this.h[5],b),this.h[6]=u(this.h[6],_),this.h[7]=u(this.h[7],S)},y.prototype._digest=function(e){return"hex"===e?r.toHex32(this.h,"big"):r.split32(this.h,"big")}},713:function(e,t,n){"use strict";var r=n(212).rotr32;function i(e,t,n){return e&t^~e&n}function o(e,t,n){return e&t^e&n^t&n}function a(e,t,n){return e^t^n}t.ft_1=function(e,t,n,r){return 0===e?i(t,n,r):1===e||3===e?a(t,n,r):2===e?o(t,n,r):void 0},t.ch32=i,t.maj32=o,t.p32=a,t.s0_256=function(e){return r(e,2)^r(e,13)^r(e,22)},t.s1_256=function(e){return r(e,6)^r(e,11)^r(e,25)},t.g0_256=function(e){return r(e,7)^r(e,18)^e>>>3},t.g1_256=function(e){return r(e,17)^r(e,19)^e>>>10}},212:function(e,t,n){"use strict";var r=n(9561),i=n(1285);function o(e,t){return 55296==(64512&e.charCodeAt(t))&&(!(t<0||t+1>=e.length)&&56320==(64512&e.charCodeAt(t+1)))}function a(e){return(e>>>24|e>>>8&65280|e<<8&16711680|(255&e)<<24)>>>0}function u(e){return 1===e.length?"0"+e:e}function s(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 r=0,i=0;i<e.length;i++){var a=e.charCodeAt(i);a<128?n[r++]=a:a<2048?(n[r++]=a>>6|192,n[r++]=63&a|128):o(e,i)?(a=65536+((1023&a)<<10)+(1023&e.charCodeAt(++i)),n[r++]=a>>18|240,n[r++]=a>>12&63|128,n[r++]=a>>6&63|128,n[r++]=63&a|128):(n[r++]=a>>12|224,n[r++]=a>>6&63|128,n[r++]=63&a|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+=u(e[n].toString(16));return t},t.htonl=a,t.toHex32=function(e,t){for(var n="",r=0;r<e.length;r++){var i=e[r];"little"===t&&(i=a(i)),n+=s(i.toString(16))}return n},t.zero2=u,t.zero8=s,t.join32=function(e,t,n,i){var o=n-t;r(o%4==0);for(var a=new Array(o/4),u=0,s=t;u<a.length;u++,s+=4){var l;l="big"===i?e[s]<<24|e[s+1]<<16|e[s+2]<<8|e[s+3]:e[s+3]<<24|e[s+2]<<16|e[s+1]<<8|e[s],a[u]=l>>>0}return a},t.split32=function(e,t){for(var n=new Array(4*e.length),r=0,i=0;r<e.length;r++,i+=4){var o=e[r];"big"===t?(n[i]=o>>>24,n[i+1]=o>>>16&255,n[i+2]=o>>>8&255,n[i+3]=255&o):(n[i+3]=o>>>24,n[i+2]=o>>>16&255,n[i+1]=o>>>8&255,n[i]=255&o)}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,r){return e+t+n+r>>>0},t.sum32_5=function(e,t,n,r,i){return e+t+n+r+i>>>0},t.sum64=function(e,t,n,r){var i=e[t],o=r+e[t+1]>>>0,a=(o<r?1:0)+n+i;e[t]=a>>>0,e[t+1]=o},t.sum64_hi=function(e,t,n,r){return(t+r>>>0<t?1:0)+e+n>>>0},t.sum64_lo=function(e,t,n,r){return t+r>>>0},t.sum64_4_hi=function(e,t,n,r,i,o,a,u){var s=0,l=t;return s+=(l=l+r>>>0)<t?1:0,s+=(l=l+o>>>0)<o?1:0,e+n+i+a+(s+=(l=l+u>>>0)<u?1:0)>>>0},t.sum64_4_lo=function(e,t,n,r,i,o,a,u){return t+r+o+u>>>0},t.sum64_5_hi=function(e,t,n,r,i,o,a,u,s,l){var c=0,d=t;return c+=(d=d+r>>>0)<t?1:0,c+=(d=d+o>>>0)<o?1:0,c+=(d=d+u>>>0)<u?1:0,e+n+i+a+s+(c+=(d=d+l>>>0)<l?1:0)>>>0},t.sum64_5_lo=function(e,t,n,r,i,o,a,u,s,l){return t+r+o+u+l>>>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}},3463:function(e,t,n){"use strict";var r=n(8570),i={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},o={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},a={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},u={};function s(e){return r.isMemo(e)?a:u[e.$$typeof]||i}u[r.ForwardRef]={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},u[r.Memo]=a;var l=Object.defineProperty,c=Object.getOwnPropertyNames,d=Object.getOwnPropertySymbols,f=Object.getOwnPropertyDescriptor,p=Object.getPrototypeOf,m=Object.prototype;e.exports=function e(t,n,r){if("string"!=typeof n){if(m){var i=p(n);i&&i!==m&&e(t,i,r)}var a=c(n);d&&(a=a.concat(d(n)));for(var u=s(t),g=s(n),h=0;h<a.length;++h){var v=a[h];if(!(o[v]||r&&r[v]||g&&g[v]||u&&u[v])){var y=f(n,v);try{l(t,v,y)}catch(b){}}}}return t}},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}}},7010:function(e,t,n){"use strict";var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i=u(n(3804)),o=u(n(3631)),a=u(n(2586));function u(e){return e&&e.__esModule?e:{default:e}}var s=void 0;function l(e,t){var n,a,u,c,d,f,p,m,g=[],h={};for(f=0;f<e.length;f++)if("string"!==(d=e[f]).type){if(!t.hasOwnProperty(d.value)||void 0===t[d.value])throw new Error("Invalid interpolation, missing component node: `"+d.value+"`");if("object"!==r(t[d.value]))throw new Error("Invalid interpolation, component node must be a ReactElement or null: `"+d.value+"`","\n> "+s);if("componentClose"===d.type)throw new Error("Missing opening component token: `"+d.value+"`");if("componentOpen"===d.type){n=t[d.value],u=f;break}g.push(t[d.value])}else g.push(d.value);return n&&(c=function(e,t){var n,r,i=t[e],o=0;for(r=e+1;r<t.length;r++)if((n=t[r]).value===i.value){if("componentOpen"===n.type){o++;continue}if("componentClose"===n.type){if(0===o)return r;o--}}throw new Error("Missing closing component token `"+i.value+"`")}(u,e),p=l(e.slice(u+1,c),t),a=i.default.cloneElement(n,{},p),g.push(a),c<e.length-1&&(m=l(e.slice(c+1),t),g=g.concat(m))),1===g.length?g[0]:(g.forEach((function(e,t){e&&(h["interpolation-child-"+t]=e)})),(0,o.default)(h))}t.Z=function(e){var t=e.mixedString,n=e.components,i=e.throwErrors;if(s=t,!n)return t;if("object"!==(void 0===n?"undefined":r(n))){if(i)throw new Error("Interpolation Error: unable to process `"+t+"` because components is not an object");return t}var o=(0,a.default)(t);try{return l(o,n)}catch(u){if(i)throw new Error("Interpolation Error: unable to process `"+t+"` because of error `"+u.message+"`");return t}}},2586:function(e){"use strict";function t(e){return e.match(/^\{\{\//)?{type:"componentClose",value:e.replace(/\W/g,"")}:e.match(/\/\}\}$/)?{type:"componentSelfClosing",value:e.replace(/\W/g,"")}:e.match(/^\{\{/)?{type:"componentOpen",value:e.replace(/\W/g,"")}:{type:"string",value:e}}e.exports=function(e){return e.split(/(\{\{\/?\s*\w+\s*\/?\}\})/g).map(t)}},7839:function(e,t,n){var r=n(2699),i=n(1285);function o(e){if(!(this instanceof o))return new o(e);"number"==typeof e&&(e={max:e}),e||(e={}),r.EventEmitter.call(this),this.cache={},this.head=this.tail=null,this.length=0,this.max=e.max||1e3,this.maxAge=e.maxAge||0}e.exports=o,i(o,r.EventEmitter),Object.defineProperty(o.prototype,"keys",{get:function(){return Object.keys(this.cache)}}),o.prototype.clear=function(){this.cache={},this.head=this.tail=null,this.length=0},o.prototype.remove=function(e){if("string"!=typeof e&&(e=""+e),this.cache.hasOwnProperty(e)){var t=this.cache[e];return delete this.cache[e],this._unlink(e,t.prev,t.next),t.value}},o.prototype._unlink=function(e,t,n){this.length--,0===this.length?this.head=this.tail=null:this.head===e?(this.head=t,this.cache[this.head].next=null):this.tail===e?(this.tail=n,this.cache[this.tail].prev=null):(this.cache[t].next=n,this.cache[n].prev=t)},o.prototype.peek=function(e){if(this.cache.hasOwnProperty(e)){var t=this.cache[e];if(this._checkAge(e,t))return t.value}},o.prototype.set=function(e,t){var n;if("string"!=typeof e&&(e=""+e),this.cache.hasOwnProperty(e)){if((n=this.cache[e]).value=t,this.maxAge&&(n.modified=Date.now()),e===this.head)return t;this._unlink(e,n.prev,n.next)}else n={value:t,modified:0,next:null,prev:null},this.maxAge&&(n.modified=Date.now()),this.cache[e]=n,this.length===this.max&&this.evict();return this.length++,n.next=null,n.prev=this.head,this.head&&(this.cache[this.head].next=e),this.head=e,this.tail||(this.tail=e),t},o.prototype._checkAge=function(e,t){return!(this.maxAge&&Date.now()-t.modified>this.maxAge)||(this.remove(e),this.emit("evict",{key:e,value:t.value}),!1)},o.prototype.get=function(e){if("string"!=typeof e&&(e=""+e),this.cache.hasOwnProperty(e)){var t=this.cache[e];if(this._checkAge(e,t))return this.head!==e&&(e===this.tail?(this.tail=t.next,this.cache[this.tail].prev=null):this.cache[t.prev].next=t.next,this.cache[t.next].prev=t.prev,this.cache[this.head].next=e,t.prev=this.head,t.next=null,this.head=e),t.value}},o.prototype.evict=function(){if(this.tail){var e=this.tail,t=this.remove(this.tail);this.emit("evict",{key:e,value:t})}}},1641:function(){},6879:function(){},8560:function(){},9658:function(){},7560:function(){},2272:function(){},5444:function(){},12:function(){},6020:function(){},8062:function(){},101:function(){},3437:function(){},8619:function(){},6472:function(){},1670:function(){},9403:function(){},965:function(){},6233:function(){},5618:function(){},4683:function(){},7470:function(){},8741: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,r=60*n,i=24*r,o=7*i,a=365.25*i;function u(e,t,n,r){var i=t>=1.5*n;return Math.round(e/n)+" "+r+(i?"s":"")}e.exports=function(e,s){s=s||{};var l=typeof e;if("string"===l&&e.length>0)return function(e){if((e=String(e)).length>100)return;var u=/^(-?(?:\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(!u)return;var s=parseFloat(u[1]);switch((u[2]||"ms").toLowerCase()){case"years":case"year":case"yrs":case"yr":case"y":return s*a;case"weeks":case"week":case"w":return s*o;case"days":case"day":case"d":return s*i;case"hours":case"hour":case"hrs":case"hr":case"h":return s*r;case"minutes":case"minute":case"mins":case"min":case"m":return s*n;case"seconds":case"second":case"secs":case"sec":case"s":return s*t;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return s;default:return}}(e);if("number"===l&&isFinite(e))return s.long?function(e){var o=Math.abs(e);if(o>=i)return u(e,o,i,"day");if(o>=r)return u(e,o,r,"hour");if(o>=n)return u(e,o,n,"minute");if(o>=t)return u(e,o,t,"second");return e+" ms"}(e):function(e){var o=Math.abs(e);if(o>=i)return Math.round(e/i)+"d";if(o>=r)return Math.round(e/r)+"h";if(o>=n)return Math.round(e/n)+"m";if(o>=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))}},7320:function(e){"use strict";
7
  /*
8
  object-assign
9
  (c) Sindre Sorhus
16
  *
17
  * This source code is licensed under the MIT license found in the
18
  * LICENSE file in the root directory of this source tree.
19
+ */var n="function"==typeof Symbol&&Symbol.for,r=n?Symbol.for("react.element"):60103,i=n?Symbol.for("react.portal"):60106,o=n?Symbol.for("react.fragment"):60107,a=n?Symbol.for("react.strict_mode"):60108,u=n?Symbol.for("react.profiler"):60114,s=n?Symbol.for("react.provider"):60109,l=n?Symbol.for("react.context"):60110,c=n?Symbol.for("react.async_mode"):60111,d=n?Symbol.for("react.concurrent_mode"):60111,f=n?Symbol.for("react.forward_ref"):60112,p=n?Symbol.for("react.suspense"):60113,m=n?Symbol.for("react.suspense_list"):60120,g=n?Symbol.for("react.memo"):60115,h=n?Symbol.for("react.lazy"):60116,v=n?Symbol.for("react.block"):60121,y=n?Symbol.for("react.fundamental"):60117,b=n?Symbol.for("react.responder"):60118,_=n?Symbol.for("react.scope"):60119;function S(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case r:switch(e=e.type){case c:case d:case o:case u:case a:case p:return e;default:switch(e=e&&e.$$typeof){case l:case f:case h:case g:case s:return e;default:return t}}case i:return t}}}function E(e){return S(e)===d}t.AsyncMode=c,t.ConcurrentMode=d,t.ContextConsumer=l,t.ContextProvider=s,t.Element=r,t.ForwardRef=f,t.Fragment=o,t.Lazy=h,t.Memo=g,t.Portal=i,t.Profiler=u,t.StrictMode=a,t.Suspense=p,t.isAsyncMode=function(e){return E(e)||S(e)===c},t.isConcurrentMode=E,t.isContextConsumer=function(e){return S(e)===l},t.isContextProvider=function(e){return S(e)===s},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===r},t.isForwardRef=function(e){return S(e)===f},t.isFragment=function(e){return S(e)===o},t.isLazy=function(e){return S(e)===h},t.isMemo=function(e){return S(e)===g},t.isPortal=function(e){return S(e)===i},t.isProfiler=function(e){return S(e)===u},t.isStrictMode=function(e){return S(e)===a},t.isSuspense=function(e){return S(e)===p},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===o||e===d||e===u||e===a||e===p||e===m||"object"==typeof e&&null!==e&&(e.$$typeof===h||e.$$typeof===g||e.$$typeof===s||e.$$typeof===l||e.$$typeof===f||e.$$typeof===y||e.$$typeof===b||e.$$typeof===_||e.$$typeof===v)},t.typeOf=S},8570:function(e,t,n){"use strict";e.exports=n(6866)},9830:function(e,t,n){"use strict";n.d(t,{Z:function(){return o}});var r=n(1184),i={contextDelimiter:"",onMissingKey:null};function o(e,t){var n;for(n in this.data=e,this.pluralForms={},this.options={},i)this.options[n]=void 0!==t&&n in t?t[n]:i[n]}o.prototype.getPluralForm=function(e,t){var n,i,o,a=this.pluralForms[e];return a||("function"!=typeof(o=(n=this.data[e][""])["Plural-Forms"]||n["plural-forms"]||n.plural_forms)&&(i=function(e){var t,n,r;for(t=e.split(";"),n=0;n<t.length;n++)if(0===(r=t[n].trim()).indexOf("plural="))return r.substr(7)}(n["Plural-Forms"]||n["plural-forms"]||n.plural_forms),o=(0,r.Z)(i)),a=this.pluralForms[e]=o),a(t)},o.prototype.dcnpgettext=function(e,t,n,r,i){var o,a,u;return o=void 0===i?0:this.getPluralForm(e,i),a=n,t&&(a=t+this.options.contextDelimiter+n),(u=this.data[e][a])&&u[o]?u[o]:(this.options.onMissingKey&&this.options.onMissingKey(n,e),0===o?n:r)}},365:function(e,t,n){"use strict";n.d(t,{y:function(){return r}});var r=function(){try{return window.self!==window.top}catch(e){return!0}};!window||!window._currentSiteType||window._currentSiteType},7989:function(e,t,n){"use strict";var r,i,o=n(3027),a=n(849),u=n(4655),s=n(6357),l=n(5707),c=n(5799),d=n(1200),f=n(3804),p=n.n(f),m=n(365),g=n(1157),h=n(9095),v=n(8318),y=n(8550);r="a8c-editor-site-launch",i={render:function(){var e,t,n=(0,l.useSelect)((function(e){return e(v.sC).getState()})).isSidebarOpen,r=(0,l.useDispatch)(v.sC),i=r.closeSidebar,d=r.setSidebarFullscreen,f=r.unsetSidebarFullscreen;return p().useEffect((function(){window.innerWidth<782?d():f()}),[n,d,f]),p().useEffect((function(){var e="a8c.wpcom-block-editor.toggleInlineHelpButton";(0,c.hasAction)(e)&&(0,c.doAction)(e,{hidden:n})}),[n]),n?(0,o.createElement)(a.Iw,{localeSlug:null!==(e=null===(t=window.wpcomEditorSiteLaunch)||void 0===t?void 0:t.locale)&&void 0!==e?e:u.OP},(0,o.createElement)(s.Z.Provider,{value:{siteId:window._currentSiteId,flow:g.OS,redirectTo:y.gQ,openCheckout:y.Rd,getCurrentLaunchFlowUrl:y.O0,isInIframe:(0,m.y)()}},(0,o.createElement)(h.Z,{onClose:i}))):null}},(0,d.registerPlugin)(r,i)},1157:function(e,t,n){"use strict";n.d(t,{OS:function(){return r},Js:function(){return i},nU:function(){return o}});var r="gutenboarding",i="focused-launch",o="should_launch"},6915:function(e,t,n){"use strict";var r=n(1119),i=n(3027),o=n(5707),a=n(8675),u=(n(3804),n(8318)),s=n(8374);n(1641);t.Z=function(e){var t,n=e.onMenuItemClick,__=(0,a.useI18n)().__,l=(0,o.useSelect)((function(e){var t=e(u.sC);return{currentStep:t.getCurrentStep(),LaunchStep:t.getLaunchStep(),LaunchSequence:t.getLaunchSequence(),isStepCompleted:t.isStepCompleted,isFlowCompleted:t.isFlowCompleted()}})),c=l.currentStep,d=l.LaunchStep,f=l.LaunchSequence,p=l.isStepCompleted,m=l.isFlowCompleted,g=(t={},(0,r.Z)(t,d.Name,__("Name your site","full-site-editing")),(0,r.Z)(t,d.Domain,__("Select a domain","full-site-editing")),(0,r.Z)(t,d.Plan,__("Select a plan","full-site-editing")),(0,r.Z)(t,d.Final,__("Launch your site","full-site-editing")),t),h=(0,o.useDispatch)(u.sC).setStep;return(0,i.createElement)("div",{className:"nux-launch-menu"},(0,i.createElement)("h4",null,__("Site Launch Steps","full-site-editing")),(0,i.createElement)("div",{className:"nux-launch-menu__item-group"},f.map((function(e){return(0,i.createElement)(s.Z,{key:e,title:g[e],isCompleted:p(e),isCurrent:e===c,onClick:function(){return function(e){h(e),n(e)}(e)},isDisabled:e===d.Final&&!m})}))))}},8374:function(e,t,n){"use strict";var r=n(3027),i=n(7997),o=n(5869),a=n(9806),u=n(2779),s=n.n(u),l=(n(3804),(0,r.createElement)(i.SVG,{viewBox:"0 0 24 24"},(0,r.createElement)(i.Circle,{cx:"12",cy:"12",r:"5"})));t.Z=function(e){var t=e.title,n=e.isCompleted,u=e.isCurrent,c=e.isDisabled,d=e.onClick;return(0,r.createElement)(i.Button,{className:s()("nux-launch-menu__item",{"is-current":u,"is-completed":n}),onClick:d,disabled:c,isLink:!0},(0,r.createElement)(o.Z,{icon:n?a.Z:l,size:16}),(0,r.createElement)("span",null,t))}},9095:function(e,t,n){"use strict";var r=n(6470),i=n(3258),o=n(3027),a=n(849),u=n(6357),s=n(3357),l=n(7997),c=n(5707),d=n(3163),f=n(5869),p=n(1742),m=n(8565),g=n(2779),h=n.n(g),v=n(3804),y=n.n(v),b=n(8398),_=n(2526),S=n(2326),E=n(8318),__=(n(6879),d.__);t.Z=function(e){var t=e.onClose,n=e.isLaunchImmediately,d=y().useContext(u.Z).siteId,g=(0,c.useSelect)((function(e){return e(E.sC).getState()})),v=g.step,w=g.isSidebarFullscreen,A=y().useState(!1),x=(0,i.Z)(A,2),C=x[0],P=x[1],N=y().useState(!1),k=(0,i.Z)(N,2),I=k[0],O=k[1],Z=(0,c.useDispatch)(E.j4).launchSite,L=(0,c.useDispatch)("core/editor").savePost,M=(0,a.bU)(),T=(0,c.useDispatch)(E.sC).setPlanProductId,D=(0,c.useSelect)((function(e){return e(E.Fs).getDefaultFreePlan(M)})),F=y().useCallback((function(){Z(d),P(!0)}),[Z,P,d]);return y().useEffect((function(){n&&!C&&P(!0)}),[C,n]),y().useEffect((function(){var e=function(){var e=(0,r.Z)(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,L();case 2:case"end":return e.stop()}}),e)})));return function(){return e.apply(this,arguments)}}();n&&!I&&null!=D&&D.productIds[0]&&(T(null==D?void 0:D.productIds[0]),O(!0),e(),F())}),[n,I,F,L,D,T]),(0,s.X)(),(0,o.createElement)(l.Modal,{open:!0,className:h()("nux-launch-modal","step-".concat(v),w?"is-sidebar-fullscreen":""),overlayClassName:"nux-launch-modal-overlay",bodyOpenClassName:"has-nux-launch-modal",onRequestClose:t,title:""},C?(0,o.createElement)("div",{className:"nux-launch-modal-body__launching"},__("Hooray! Your site will be ready shortly.","full-site-editing")):(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{className:"nux-launch-modal-body"},(0,o.createElement)("div",{className:"nux-launch-modal-header"},(0,o.createElement)("div",{className:"nux-launch-modal-header__wp-logo"},(0,o.createElement)(f.Z,{icon:p.Z,size:36})),(0,o.createElement)(_.Z,null)),(0,o.createElement)(b.Z,{onSubmit:F})),(0,o.createElement)("div",{className:"nux-launch-modal-aside"},(0,o.createElement)(S.Z,null)),(0,o.createElement)(l.Button,{isLink:!0,className:"nux-launch-modal__close-button",onClick:t,"aria-label":__("Close dialog","full-site-editing"),disabled:!t},(0,o.createElement)("span",null,(0,o.createElement)(f.Z,{icon:m.Z,size:24})))))}},2526:function(e,t,n){"use strict";var r=n(3027),i=n(5707),o=n(3163),a=n(8675),u=(n(3804),n(8318));n(8560);t.Z=function(){var __=(0,a.useI18n)().__,e=(0,i.useSelect)((function(e){var t=e(u.sC);return{currentStep:t.getCurrentStep(),LaunchSequence:t.getLaunchSequence()}})),t=e.currentStep,n=e.LaunchSequence,s=n.indexOf(t)+1,l=n.length,c=(0,o.sprintf)(__("%1$d of %2$d","full-site-editing"),s,l);return(0,r.createElement)("div",{className:"nux-launch-progress"},c)}},2326:function(e,t,n){"use strict";var r=n(3027),i=n(5915),o=n(9211),a=n(5707),u=n(3163),s=(n(3804),n(6915)),l=n(8318),__=(n(9658),u.__);t.Z=function(){var e=(0,a.useDispatch)(l.sC),t=e.setStep,n=e.unsetSidebarFullscreen,u=(0,a.useSelect)((function(e){return e(l.sC).getLaunchSequence()}));return(0,r.createElement)("div",{className:"nux-launch-sidebar"},(0,r.createElement)("div",{className:"nux-launch-sidebar__header"},(0,r.createElement)(i.b,null,__("You're almost there!","full-site-editing")),(0,r.createElement)(i.D,null,__("Complete the following steps to launch your site. Your site will remain private until you Launch.","full-site-editing"))),(0,r.createElement)("div",{className:"nux-launch-sidebar__body"},(0,r.createElement)(s.Z,{onMenuItemClick:function(){n()}})),(0,r.createElement)("div",{className:"nux-launch-sidebar__footer"},(0,r.createElement)(o.ZP,{sticky:!0},(0,r.createElement)(o.aW,{onClick:function(){t(u[0]),n()}},__("Get Started","full-site-editing")))))}},381:function(e,t,n){"use strict";var r=n(3027);n(3804),n(7560);t.Z=function(e){var t=e.children;return(0,r.createElement)(r.Fragment,null,t)}},9270:function(e,t,n){"use strict";var r=n(3027),i=n(6115),o=n(2999),a=n(3446),u=n(849),s=n(780),l=n(5144),c=n(6956),d=n(5915),f=n(9211),p=n(5707),m=n(8675),g=(n(3804),n(1157)),h=n(381),v=n(8318);t.Z=function(e){var t=e.onPrevStep,n=e.onNextStep,y=(0,m.useI18n)(),__=y.__,b=y.hasTranslation,_=(0,u.bU)(),S=(0,s.my)(),E=S.onDomainSelect,w=S.onExistingSubdomainSelect,A=S.currentDomain,x=(0,l.j)().siteSubdomain,C=(0,c.f)(),P=C.domainSearch,N=C.setDomainSearch,k=(0,p.useDispatch)(v.sC).confirmDomainSelection,I=function(){k(),null==n||n()},O=__("Free for the first year with any paid plan.","full-site-editing"),Z=__("Free for the first year with any annual plan.","full-site-editing"),L="en"===_||null!=b&&b("Free for the first year with any annual plan.")?Z:O;return(0,r.createElement)(h.Z,null,(0,r.createElement)("div",{className:"nux-launch-step__header"},(0,r.createElement)("div",null,(0,r.createElement)(d.b,null,__("Choose a domain","full-site-editing")),(0,r.createElement)(d.D,null,L)),(0,r.createElement)(f.ZP,{sticky:!1},(0,r.createElement)(f.aW,{onClick:I,disabled:!P}))),(0,r.createElement)("div",{className:"nux-launch-step__body"},(0,r.createElement)(o.ZP,{analyticsFlowId:g.OS,initialDomainSearch:P,onSetDomainSearch:N,onDomainSearchBlur:function(e){(0,i.jN)("calypso_newsite_domain_search_blur",{flow:g.OS,query:e,where:"editor_domain_modal"})},currentDomain:A||(0,a.nf)(null==x?void 0:x.domain),existingSubdomain:(0,a.nf)(null==x?void 0:x.domain),onDomainSelect:E,onExistingSubdomainSelect:w,analyticsUiAlgo:"editor_domain_modal",segregateFreeAndPaid:!0,locale:_})),(0,r.createElement)("div",{className:"nux-launch-step__footer"},(0,r.createElement)(f.ZP,{sticky:!0},(0,r.createElement)(f.xE,{onClick:function(){null==t||t()}}),(0,r.createElement)(f.aW,{onClick:I,disabled:!P}))))}},4502:function(e,t,n){"use strict";var r=n(3258),i=n(3027),o=n(7384),a=n(1806),u=n(7450),s=n(849),l=n(7498),c=n(4557),d=n(5144),f=n(8463),p=n(6956),m=n(5915),g=n(9211),h=n(7997),v=n(5707),y=n(3163),b=n(5869),_=n(9806),S=n(8675),E=n(2779),w=n.n(E),A=n(50),x=(n(3804),n(381)),C=n(8318),P=(n(2272),(0,i.createElement)(b.Z,{icon:_.Z,size:17}));t.Z=function(e){var t=e.onNextStep,n=e.onPrevStep,b=(0,v.useSelect)((function(e){var t=e(C.sC);return{domain:t.getSelectedDomain(),LaunchStep:t.getLaunchStep(),isStepCompleted:t.isStepCompleted,isFlowCompleted:t.isFlowCompleted(),planProductId:t.getSelectedPlanProductId()}})),_=b.domain,E=b.LaunchStep,N=b.isStepCompleted,k=b.isFlowCompleted,I=b.planProductId,O=(0,S.useI18n)(),__=O.__,Z=O.hasTranslation,L=(0,s.bU)(),M=(0,v.useSelect)((function(e){return[e(C.Fs).getPlanByProductId(I,L),e(C.Fs).getPlanProductById(I)]})),T=(0,r.Z)(M,2),D=T[0],F=T[1],R=(0,c.Z)().title,$=(0,d.j)().siteSubdomain,j=(0,f.V)(),B=(0,p.f)().domainSearch,U=(0,v.useDispatch)(C.sC).setStep,G=(0,l.Iu)(),V=(0,i.createElement)("div",{className:"nux-launch__summary-item"},(0,i.createElement)("p",null,__("Site","full-site-editing"),": ",R)),H=(0,i.createElement)("div",{className:"nux-launch__summary-item"},null!=_&&_.domain_name?(0,i.createElement)("p",null,__("Custom domain","full-site-editing"),": ",_.domain_name,"MONTHLY"===(null==F?void 0:F.billingPeriod)&&(0,i.createElement)(i.Fragment,null,(0,i.createElement)("br",null),(0,i.createElement)("span",{className:"nux-launch__summary-item__domain-price"},__("Domain Registration","full-site-editing"),":"," ",(0,y.sprintf)(__("%s/year","full-site-editing"),_.cost)))):(0,i.createElement)(i.Fragment,null,(0,i.createElement)("p",null,__("Free site address","full-site-editing"),": ",null==$?void 0:$.domain),(0,i.createElement)(h.Tip,null,B?(0,i.createInterpolateElement)(__("A custom site address like <DomainName /> (<Link>now available!</Link>) is more unique and can help with your SEO ranking.","full-site-editing"),{DomainName:(0,i.createElement)("span",{className:w()("nux-launch__summary-item__domain-name",{"is-loading":!j})},(null==j?void 0:j.domain_name)||"loading-example.com"),Link:(0,i.createElement)(h.Button,{isLink:!0,onClick:function(){return U(E.Domain)}})}):__("A custom site address is more unique and can help with your SEO ranking.","full-site-editing")))),z=__("billed annually","full-site-editing"),Y=__("per month, billed as %s annually","full-site-editing"),W="en"===L||null!=Z&&Z("per month, billed as %s annually")?(0,y.sprintf)(Y,null==F?void 0:F.annualPrice):z,q=__("per month, billed monthly","full-site-editing"),K=(0,i.createElement)("div",{className:"nux-launch__summary-item"},D&&F&&!D.isFree?(0,i.createElement)(i.Fragment,null,(0,i.createElement)("p",{className:"nux-launch__summary-item__plan-name"},"WordPress.com ",D.title),__("Plan subscription","full-site-editing"),": ",F.price," ","ANNUALLY"===F.billingPeriod?W:q):(0,i.createElement)(i.Fragment,null,(0,i.createElement)("p",{className:"nux-launch__summary-item__plan-name"},"WordPress.com Free"),(0,i.createElement)("p",null,__("Plan subscription: Free forever","full-site-editing")),(0,i.createElement)(h.Tip,null,(0,i.createInterpolateElement)((0,y.sprintf)(__("<Link>Upgrade to Premium</Link> to get access to 13GB storage space, payment collection options, 24/7 Live Chat support, and more. Not sure? Give it a spin—we offer %1$d-day full-refunds, guaranteed.","full-site-editing"),14),{Link:(0,i.createElement)(h.Button,{isLink:!0,onClick:function(){return U(E.Plan)}})}))));return(0,i.createElement)(x.Z,null,(0,i.createElement)("div",{className:"nux-launch-step__header"},(0,i.createElement)("div",null,(0,i.createElement)(m.b,null,__("Launch your site","full-site-editing")),(0,i.createElement)(m.D,null,__("Your site will be made public and ready to share with others.","full-site-editing")))),(0,i.createElement)("div",{className:"nux-launch-step__body"},(0,i.createElement)(A.f6,{theme:o.Z},(0,i.createElement)(a._U,null,N(E.Plan)&&(0,i.createElement)(a.Bb,null,(0,i.createElement)(a.nb,{className:"nux-launch__feature-list"},(0,i.createElement)("h3",{className:"nux-launch__feature-list-title"},__("Included in your plan","full-site-editing")),(0,i.createElement)("ul",{className:"nux-launch__feature-item-group"},null==D?void 0:D.features.filter((function(e){return"ANNUALLY"===(null==F?void 0:F.billingPeriod)||!e.requiresAnnuallyBilledPlan})).map((function(e,t){return(0,i.createElement)("li",{key:t,className:"nux-launch__feature-item"},P," ",e.name)}))),(0,i.createElement)("p",null,__("Questions?","full-site-editing")," ",(0,i.createElement)(h.Button,{isLink:!0,href:G("https://wordpress.com/help/contact",L),target:"_blank",rel:"noopener noreferrer"},__("Ask a Happiness Engineer","full-site-editing"))))),(0,i.createElement)(a.r8,null,(0,i.createElement)(a.V9,{isStepActive:!1,titleContent:__("Your site name","full-site-editing"),isStepComplete:N(E.Name),goToThisStep:function(){return U(E.Name)},completeStepContent:V,stepId:"name",formStatus:u.PX.READY}),(0,i.createElement)(a.V9,{isStepActive:!1,titleContent:__("Your domain","full-site-editing"),isStepComplete:N(E.Domain),goToThisStep:function(){return U(E.Domain)},completeStepContent:H,stepId:"domain",formStatus:u.PX.READY}),(0,i.createElement)(a.V9,{isStepActive:!1,titleContent:__("Your plan","full-site-editing"),isStepComplete:N(E.Plan),goToThisStep:function(){return U(E.Plan)},completeStepContent:K,stepId:"plan",formStatus:u.PX.READY}),(0,i.createElement)(a.ds,null,(0,i.createElement)(h.Button,{isPrimary:!0,disabled:!k,onClick:t,className:"nux-launch__submit-button"},__("Launch your site","full-site-editing"))))))),(0,i.createElement)("div",{className:"nux-launch-step__footer"},(0,i.createElement)(g.ZP,{sticky:!0},(0,i.createElement)(g.xE,{onClick:function(){null==n||n()}}))))}},958:function(e,t,n){"use strict";var r=n(3027),i=n(4557),o=n(5915),a=n(9211),u=n(7997),s=n(3163),l=(n(3804),n(381)),__=(n(5444),s.__);t.Z=function(e){var t=e.onPrevStep,n=e.onNextStep,s=(0,i.Z)(),c=s.title,d=s.updateTitle,f=function(){null==n||n()};return(0,r.createElement)(l.Z,null,(0,r.createElement)("div",{className:"nux-launch-step__header"},(0,r.createElement)("div",null,(0,r.createElement)(o.b,null,__("Name your site","full-site-editing")),(0,r.createElement)(o.D,null,__("Pick a name for your site.","full-site-editing"))),(0,r.createElement)(a.ZP,{sticky:!1},(0,r.createElement)(a.aW,{onClick:f,disabled:!(null!=c&&c.trim())}))),(0,r.createElement)("div",{className:"nux-launch-step__body"},(0,r.createElement)("form",{onSubmit:f},(0,r.createElement)(u.TextControl,{id:"nux-launch-step__input",className:"nux-launch-step__input",onChange:d,value:c||"",spellCheck:!1,autoComplete:"off",placeholder:__("Enter site name","full-site-editing"),autoCorrect:"off"}),(0,r.createElement)("div",{className:"nux-launch-step__input-hint"},(0,r.createElement)(u.Tip,{size:18}),(0,r.createElement)("span",null,__("Don't worry, you can change it later.","full-site-editing"))))),(0,r.createElement)("div",{className:"nux-launch-step__footer"},(0,r.createElement)(a.ZP,{sticky:!0},(0,r.createElement)(a.xE,{onClick:function(){null==t||t()}}),(0,r.createElement)(a.aW,{onClick:f,disabled:!(null!=c&&c.trim())}))))}},4524:function(e,t,n){"use strict";var r=n(3027),i=n(3073),o=n(5915),a=n(9211),u=n(5315),s=n(5707),l=n(3163),c=(n(3804),n(381)),d=n(8318),__=(n(12),l.__);t.Z=function(e){var t,n=e.onPrevStep,f=e.onNextStep,p=(0,s.useSelect)((function(e){var t=e(d.sC);return{domain:t.getSelectedDomain(),LaunchStep:t.getLaunchStep(),selectedPlanProductId:t.getSelectedPlanProductId()}})),m=p.domain,g=p.LaunchStep,h=p.selectedPlanProductId,v=(0,s.useDispatch)(d.sC),y=v.setPlanProductId,b=v.setStep,_=(0,i.W)().selectedFeatures,S=m&&!m.is_free;return(0,r.createElement)(c.Z,null,(0,r.createElement)("div",{className:"nux-launch-step__header"},(0,r.createElement)("div",null,(0,r.createElement)(o.b,null,__("Select a plan","full-site-editing")),(0,r.createElement)(o.D,null,(0,l.sprintf)(__("Pick a plan that’s right for you. Switch plans as your needs change. There’s no risk, you can cancel for a full refund within %1$d days.","full-site-editing"),14)))),(0,r.createElement)("div",{className:"nux-launch-step__body"},(0,r.createElement)(u.Z,{currentPlanProductId:h,currentDomain:m,onPlanSelect:function(e){y(e),null==f||f()},onPickDomainClick:function(){b(g.Domain)},disabledPlans:S?{free:__("Unavailable with domain","full-site-editing")}:void 0,isAccordion:!0,selectedFeatures:_,locale:(null===(t=window.wpcomEditorSiteLaunch)||void 0===t?void 0:t.locale)||"en"})),(0,r.createElement)("div",{className:"nux-launch-step__footer"},(0,r.createElement)(a.ZP,{sticky:!0},(0,r.createElement)(a.xE,{onClick:function(){null==n||n()}}))))}},8398:function(e,t,n){"use strict";var r=n(1119),i=n(3027),o=n(5707),a=n(3804),u=n.n(a),s=n(9270),l=n(4502),c=n(958),d=n(4524),f=n(8318);n(6020);t.Z=function(e){var t,n=e.onSubmit,a=(0,o.useSelect)((function(e){return e(f.sC).getState()})).step,p=(0,o.useSelect)((function(e){return e(f.sC).getLaunchStep()})),m=(0,o.useSelect)((function(e){return e(f.sC).getLaunchSequence()})),g=(0,o.useSelect)((function(e){return e(f.sC).getFirstIncompleteStep()})),h=(0,o.useDispatch)(f.sC),v=h.setStep,y=h.setSidebarFullscreen,b=h.unsetSidebarFullscreen,_=(t={},(0,r.Z)(t,p.Name,c.Z),(0,r.Z)(t,p.Domain,s.Z),(0,r.Z)(t,p.Plan,d.Z),(0,r.Z)(t,p.Final,l.Z),t),S=m.indexOf(a),E=_[a];return u().useEffect((function(){g&&g!==p.Name&&v(g)}),[]),(0,i.createElement)(E,{onPrevStep:function(){var e=S-1;e<0&&(e=0,y()),v(m[e])},onNextStep:function(){var e=S+1;e>m.length-1&&(null==n||n()),b(),v(m[e])}})}},8318:function(e,t,n){"use strict";n.d(t,{j4:function(){return r},sC:function(){return i},Fs:function(){return o}});n(8681);var r="automattic/site",i="automattic/launch",o="automattic/onboard/plans"},8550:function(e,t,n){"use strict";n.d(t,{O0:function(){return s},gQ:function(){return l},Rd:function(){return c}});var r=n(9394),i=n(1119),o=n(5799),a=n(791),u=n(1157),s=function(){var e,t,n;return null!==(e=null===(t=window)||void 0===t||null===(n=t.calypsoifyGutenberg)||void 0===n?void 0:n.currentCalypsoUrl)&&void 0!==e?e:window.location.href},l=function(e){var t="https://wordpress.com";try{var n,r;t=new URL((null===(n=window)||void 0===n||null===(r=n.calypsoifyGutenberg)||void 0===r?void 0:r.currentCalypsoUrl)||"").origin}catch(o){}var i=e.startsWith("/")?e:"/".concat(e);!function(e){window.top.location.href=e}("".concat(t).concat(i))},c=function(){var e,t,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:window._currentSiteId.toString(),c=arguments.length>1&&void 0!==arguments[1]&&arguments[1],d=arguments.length>2?arguments[2]:void 0,f="a8c.wpcom-block-editor.openCheckoutModal",p=(null===(e=window)||void 0===e||null===(t=e.wpcomEditorSiteLaunch)||void 0===t?void 0:t.launchFlow)===u.Js,m=s().split("?")[0];if((0,o.hasAction)(f)&&p&&!c)(0,o.doAction)(f,{checkoutOnSuccessCallback:d,isFocusedLaunch:!0,redirectTo:(0,a.addQueryArgs)(m,(0,i.Z)({},u.nU,!0))});else{var g=(0,a.addQueryArgs)("/checkout/".concat(n),(0,r.Z)({},!c&&{redirect_to:"/home/".concat(n)}));l(g)}}},6115:function(e,t,n){"use strict";n.d(t,{jN:function(){return r.jN},Sn:function(){return i.Sn},Lo:function(){return i.Lo},k9:function(){return i.k9}});n(1694),n(6209),n(9377);var r=n(9792),i=n(3722)},9377:function(e,t,n){"use strict";"undefined"!=typeof window&&window.addEventListener("popstate",(function(){null}))},9792:function(e,t,n){"use strict";n.d(t,{jN:function(){return f}});var r,i=n(9394),o=n(1205),a=(n(3421),n(2699)),u=n(4898),s=(n(6209),n(1694),n(9377),n(9358)),l=["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"];Promise.resolve();function c(e){"undefined"!=typeof window&&(window._tkq=window._tkq||[],window._tkq.push(e))}"undefined"!=typeof document&&(0,u.ve)("//stats.wp.com/w.js?63");var d=new a.EventEmitter;function f(e,t){if(t=t||{},(0,s.Z)('Record event "%s" called with props %o',e,t),e.startsWith("calypso_")||(0,o.includes)(l,e)){if(r){var n=r(t);t=(0,i.Z)((0,i.Z)({},t),n)}t=(0,o.omitBy)(t,(function(e){return void 0===e})),(0,s.Z)('Recording event "%s" with actual props %o',e,t),c(["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.d(t,{Sn:function(){return o},Lo:function(){return a},k9:function(){return u}});var r=n(8767),i=n(9792);function o(e){var t=e.railcarId,n=e.uiAlgo,r=e.uiPosition,o=e.fetchAlgo,a=e.result,u=e.query;(0,i.jN)("calypso_traintracks_render",{railcar:t,ui_algo:n,ui_position:r,fetch_algo:o,rec_result:a,fetch_query:u})}function a(e){var t=e.railcarId,n=e.action;(0,i.jN)("calypso_traintracks_interact",{railcar:t,action:n})}function u(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"recommendation";return"".concat((0,r.Z)().replace(/-/g,""),"-").concat(e)}},6209:function(e,t,n){"use strict";n(4)},9358:function(e,t,n){"use strict";var r=n(8049),i=n.n(r);t.Z=i()("calypso:analytics")},1694:function(e,t,n){"use strict";n(9358)},4:function(e,t,n){"use strict";n(8032)},4790:function(e,t,n){"use strict";var r,i=n(2389),o=n(1766),a=n(4530),u=n(4059),s=n(3027),l=(n(3804),n(6654)),c=(0,n(5393).Z)("button")(r||(r=(0,u.Z)(["\n\tdisplay: block;\n\twidth: ",";\n\tfont-size: 16px;\n\tborder-radius: ",";\n\tpadding: ",";\n\tborder: ",";\n\tbackground: ",";\n\tcolor: ",";\n\tfont-weight: ",";\n\ttext-decoration: ",";\n\n\t:hover {\n\t\tbackground: ",";\n\t\tborder-color: ",";\n\t\ttext-decoration: none;\n\t\tcolor: ",";\n\t\tcursor: ",";\n\t}\n\n\t:active {\n\t\tbackground: ",";\n\t\ttext-decoration: ",";\n\t\tcolor: ",";\n\t}\n\n\tsvg {\n\t\tmargin-bottom: -1px;\n\t\ttransform: translateY( 2px );\n\t\tfilter: ",";\n\t\topacity: ",";\n\t}\n\n\t&.is-busy {\n\t\tanimation: components-button__busy-animation 2500ms infinite linear;\n\t\tbackground-image: linear-gradient(\n\t\t\t-45deg,\n\t\t\t"," 28%,\n\t\t\t"," 28%,\n\t\t\t"," 72%,\n\t\t\t"," 72%\n\t\t);\n\t\tbackground-size: 200px 100%;\n\t\topacity: 1;\n\t}\n\n\t@keyframes components-button__busy-animation {\n\t\t0% {\n\t\t\tbackground-position: 200px 0;\n\t\t}\n\t}\n"])),(function(e){return e.fullWidth?"100%":"auto"}),(function(e){return"paypal"===e.buttonType?"50px":"2px"}),(function(e){return"text-button"===e.buttonType?"0":"10px 15px"}),(function(e){return!e.buttonType||e.disabled?"1px solid "+e.theme.colors.borderColor:"0"}),p,f,(function(e){return e.theme.weights.normal}),g,d,(function(e){return e.buttonType?"inherit":e.theme.colors.borderColorDark}),f,(function(e){return e.disabled?"not-allowed":"pointer"}),d,g,f,(function(e){var t=e.buttonType;return"grayscale( ".concat("primary"===t||"paypal"===t?"0":"100"," ) invert( 0 );")}),(function(e){var t=e.buttonType;return"primary"===t||"paypal"===t?"1":"0.5"}),p,m,m,p);function d(e){var t=e.disabled,n=e.buttonType,r=e.theme.colors;if(t)return r.disabledPaymentButtons;switch(n){case"paypal":return r.paypalGoldHover;case"primary":return r.primaryOver;case"secondary":return r.highlightOver;case"text-button":case"borderless":default:return"none"}}function f(e){var t=e.disabled,n=e.buttonType,r=e.theme.colors;if(t)return r.disabledButtons;switch(n){case"primary":case"secondary":return r.surface;case"text-button":return r.highlight;default:return r.textColor}}function p(e){var t=e.disabled,n=e.buttonType,r=e.theme.colors;if(t)return r.disabledPaymentButtons;switch(n){case"paypal":return r.paypalGold;case"primary":return r.primary;case"secondary":return r.highlight;default:return"none"}}function m(e){var t=e.disabled,n=e.buttonType,r=e.theme.colors;if(t)return r.disabledPaymentButtonsAccent;switch(n){case"paypal":return r.paypalGoldHover;case"primary":return r.primaryOver;case"secondary":return r.highlightOver;case"text-button":case"borderless":default:return"none"}}function g(e){return"text-button"===e.buttonType?"underline":"none"}t.Z=function(e){var t=e.className,n=e.buttonType,r=e.isBusy,u=e.children,d=e.fullWidth,f=(0,a.Z)(e,["className","buttonType","isBusy","children","fullWidth"]),p=(0,l.Z)(["checkout-button"].concat((0,o.Z)(n?["is-status-"+n]:[]),(0,o.Z)(r?["is-busy"]:[]),(0,o.Z)(t?[t]:[])));return(0,s.createElement)(c,(0,i.Z)({fullWidth:d,buttonType:n,className:p},f),u)}},3246:function(e,t,n){"use strict";n.d(t,{Z:function(){return b}});var r,i=n(4659),o=n(4730),a=n(3989),u=n(5663),s=n(9049),l=n(1119),c=n(4059),d=n(3027),f=n(8049),p=n.n(f),m=n(3804),g=n.n(m),h=n(5393),v=p()("composite-checkout:checkout-error-boundary"),y=h.Z.div(r||(r=(0,c.Z)(["\n\tmargin: 2em;\n\ttext-align: center;\n"]))),b=function(e){(0,u.Z)(n,e);var t=(0,s.Z)(n);function n(e){var r;return(0,i.Z)(this,n),r=t.call(this,e),(0,l.Z)((0,a.Z)(r),"state",{hasError:!1}),r}return(0,o.Z)(n,[{key:"componentDidCatch",value:function(e,t){if(this.props.onError){var n="".concat(e.message,"; Stack: ").concat(e.stack,"; Component Stack: ").concat(t.componentStack);v("reporting the error",n),this.props.onError(n)}}},{key:"render",value:function(){return this.state.hasError?(0,d.createElement)(_,{errorMessage:this.props.errorMessage}):this.props.children}}],[{key:"getDerivedStateFromError",value:function(){return{hasError:!0}}}]),n}(g().Component);function _(e){var t=e.errorMessage;return(0,d.createElement)(y,null,t)}},7984:function(e,t,n){"use strict";var r=n(2389),i=n(4530),o=n(3027),a=(n(3804),n(4790));t.Z=function(e){var t=e.value,n=e.onClick,u=e.ariaLabel,s=(0,i.Z)(e,["value","onClick","ariaLabel"]);return(0,o.createElement)(a.Z,(0,r.Z)({onClick:n,buttonType:"primary","aria-label":u},s),t)}},1806:function(e,t,n){"use strict";n.d(t,{_U:function(){return L},Bb:function(){return T},nb:function(){return D},r8:function(){return F},ds:function(){return R},V9:function(){return U}});var r,i,o,a,u,s,l,c,d,f,p,m,g,h,v,y,b=n(4059),_=n(3027),S=n(8675),E=n(8049),w=n.n(E),A=n(3980),x=n.n(A),C=(n(3804),n(6654)),P=n(5393),N=n(7450),k=n(4790),I=n(3246),O=n(7984),Z=n(5197),L=(w()("composite-checkout:checkout"),P.Z.div(r||(r=(0,b.Z)(["\n\t*:focus {\n\t\toutline: "," solid 2px;\n\t}\n"])),(function(e){return e.theme.colors.outline})),P.Z.div(i||(i=(0,b.Z)(["\n\tdisplay: flex;\n\tflex-direction: column;\n\twidth: 100%;\n\n\t@media ( "," ) {\n\t\tmargin: 0 auto 32px;\n\t}\n\n\t@media ( "," ) {\n\t\talign-items: flex-start;\n\t\tflex-direction: row;\n\t\tjustify-content: center;\n\t\tmax-width: none;\n\t}\n"])),(function(e){return e.theme.breakpoints.tabletUp}),(function(e){return e.theme.breakpoints.desktopUp}))),M=P.Z.div(o||(o=(0,b.Z)(["\n\tbox-sizing: border-box;\n\tmargin: 0 auto;\n\twidth: 100%;\n\n\t@media ( "," ) {\n\t\tmax-width: 556px;\n\t}\n\n\t@media ( "," ) {\n\t\tmargin-right: 0;\n\t\tmargin-left: 24px;\n\t\torder: 2;\n\t\twidth: 328px;\n\n\t\t.rtl & {\n\t\t\tmargin-right: 24px;\n\t\t\tmargin-left: 0;\n\t\t}\n\t}\n"])),(function(e){return e.theme.breakpoints.tabletUp}),(function(e){return e.theme.breakpoints.desktopUp})),T=function(e){var t=e.children,n=e.className;return(0,_.createElement)(M,{className:(0,C.Z)([n,"checkout__summary-area"])},t)},D=P.Z.div(a||(a=(0,b.Z)(["\n\tbackground: ",";\n\tborder-bottom: 1px solid ",";\n\n\t@media ( "," ) {\n\t\tborder: 1px solid ",";\n\t\tborder-bottom: none 0;\n\t}\n\n\t@media ( "," ) {\n\t\tborder: 1px solid ",";\n\t}\n"])),(function(e){return e.theme.colors.surface}),(function(e){return e.theme.colors.borderColorLight}),(function(e){return e.theme.breakpoints.smallPhoneUp}),(function(e){return e.theme.colors.borderColorLight}),(function(e){return e.theme.breakpoints.desktopUp}),(function(e){return e.theme.colors.borderColorLight}));var F=P.Z.div(u||(u=(0,b.Z)(["\n\tbackground: ",";\n\tbox-sizing: border-box;\n\tmargin: 0 auto;\n\twidth: 100%;\n\n\t&.checkout__step-wrapper--last-step {\n\t\tmargin-bottom: 100px;\n\t}\n\n\t@media ( "," ) {\n\t\tborder: 1px solid ",";\n\t}\n\n\t@media ( "," ) {\n\t\tmax-width: 556px;\n\t}\n\n\t@media ( "," ) {\n\t\tmargin: 0;\n\t\torder: 1;\n\t\twidth: 556px;\n\t}\n"])),(function(e){return e.theme.colors.surface}),(function(e){return e.theme.breakpoints.smallPhoneUp}),(function(e){return e.theme.colors.borderColorLight}),(function(e){return e.theme.breakpoints.tabletUp}),(function(e){return e.theme.breakpoints.desktopUp})),R=P.Z.div(s||(s=(0,b.Z)(["\n\tbackground: ",";\n\tpadding: 24px;\n\tbottom: 0;\n\tleft: 0;\n\tbox-sizing: border-box;\n\twidth: 100%;\n\tz-index: 10;\n\tborder-top-width: 0;\n\tborder-top-style: solid;\n\tborder-top-color: ",";\n\n\t.checkout__step-wrapper--last-step & {\n\t\tborder-top-width: 1px;\n\t\tposition: fixed;\n\t}\n\n\t.rtl & {\n\t\tright: 0;\n\t\tleft: auto;\n\t}\n\n\t.checkout-button {\n\t\twidth: calc( 100% - 60px );\n\t}\n\n\t@media ( "," ) {\n\t\t.checkout-button {\n\t\t\twidth: 100%;\n\t\t}\n\n\t\t.checkout__step-wrapper--last-step & {\n\t\t\tposition: relative;\n\t\t\tborder: 0;\n\t\t}\n\t}\n"])),(function(e){return e.theme.colors.background}),(function(e){return e.theme.colors.borderColorLight}),(function(e){return e.theme.breakpoints.tabletUp}));var $=P.Z.div(l||(l=(0,b.Z)(["\n\tposition: relative;\n\tborder-bottom: 1px solid ",";\n\tpadding: 16px;\n\n\t&.checkout-step {\n\t\tbackground: ",";\n\t}\n\n\t&.checkout-step.is-active,\n\t&.checkout-step.is-complete {\n\t\tbackground: ",";\n\t}\n\n\t@media ( "," ) {\n\t\tpadding: 24px;\n\t}\n"])),(function(e){return e.theme.colors.borderColorLight}),(function(e){return e.theme.colors.background}),(function(e){return e.theme.colors.surface}),(function(e){return e.theme.breakpoints.tabletUp})),j=P.Z.div(c||(c=(0,b.Z)(["\n\tcolor: ",";\n\tdisplay: ",";\n\tpadding-left: 35px;\n\n\t.rtl & {\n\t\tpadding-right: 35px;\n\t\tpadding-left: 0;\n\t}\n"])),(function(e){return e.theme.colors.textColor}),(function(e){return e.isVisible?"block":"none"})),B=P.Z.div(d||(d=(0,b.Z)(["\n\tcolor: ",";\n\tfont-size: 14px;\n\tdisplay: ",";\n\tpadding-left: 35px;\n\n\t.rtl & {\n\t\tpadding-right: 35px;\n\t\tpadding-left: 0;\n\t}\n"])),(function(e){return e.theme.colors.textColorLight}),(function(e){return e.isVisible?"block":"none"}));function U(e){var t=e.errorMessage,n=e.editButtonText,r=e.editButtonAriaLabel,i=e.nextStepButtonText,o=e.validatingButtonText,a=e.nextStepButtonAriaLabel,u=e.validatingButtonAriaLabel,s=e.isStepActive,l=e.isStepComplete,c=e.className,d=e.stepNumber,f=e.stepId,p=e.titleContent,m=e.goToThisStep,g=e.goToNextStep,h=e.activeStepContent,v=e.formStatus,y=e.completeStepContent,b=e.onError,__=(0,S.useI18n)().__,E="".concat(f,s?"--visible":"--invisible"),w="".concat(f,s?"--invisible":"--visible");return(0,_.createElement)(I.Z,{errorMessage:t||__("There was an error with this step."),onError:b},(0,_.createElement)($,{className:c},(0,_.createElement)(z,{id:f,stepNumber:d,title:p,isActive:s,isComplete:l,onEdit:v===N.PX.READY&&l&&m&&!s?m:void 0,editButtonText:n||__("Edit"),editButtonAriaLabel:r||__("Edit this step")}),(0,_.createElement)(j,{"data-testid":E,isVisible:s,className:"checkout-steps__step-content"},h,g&&s&&(0,_.createElement)(O.Z,{onClick:g,value:v===N.PX.VALIDATING?o||__("Please wait…"):i||__("Continue"),ariaLabel:v===N.PX.VALIDATING?u||__("Please wait…"):a||__("Continue to next step"),buttonType:"primary",disabled:v!==N.PX.READY,isBusy:v===N.PX.VALIDATING})),l&&y?(0,_.createElement)(B,{"data-testid":w,isVisible:!s,className:"checkout-steps__step-complete-content"},y):null))}U.propTypes={errorMessage:x().string,onError:x().func,editButtonAriaLabel:x().string,editButtonText:x().string,nextStepButtonText:x().string,nextStepButtonAriaLabel:x().string,isStepActive:x().bool.isRequired,isStepComplete:x().bool.isRequired,className:x().string,stepNumber:x().number,stepId:x().string.isRequired,titleContent:x().node.isRequired,goToThisStep:x().func,goToNextStep:x().func,activeStepContent:x().node,formStatus:x().string,completeStepContent:x().node,validatingButtonText:x().string,validatingButtonAriaLabel:x().string};var G=P.Z.span(f||(f=(0,b.Z)(["\n\tcolor: ",";\n\tfont-weight: ",";\n\tmargin-right: ",";\n\tflex: 1;\n\n\t.rtl & {\n\t\tmargin-right: 0;\n\t\tmargin-left: ",";\n\t}\n"])),(function(e){return e.isActive?e.theme.colors.textColorDark:e.theme.colors.textColor}),(function(e){return e.isActive?e.theme.weights.bold:e.theme.weights.normal}),(function(e){return e.fullWidth?"0":"8px"}),(function(e){return e.fullWidth?"0":"8px"})),V=P.Z.h2(p||(p=(0,b.Z)(["\n\tfont-size: 16px;\n\tdisplay: flex;\n\twidth: 100%;\n\talign-items: center;\n\tmargin: 0 0 ",";\n"])),(function(e){return e.isComplete||e.isActive?"8px":"0"})),H=(0,P.Z)(k.Z)(m||(m=(0,b.Z)(["\n\tfont-size: 14px;\n\tpadding-top: 1px;\n"])));function z(e){var t=e.id,n=e.className,r=e.stepNumber,i=e.title,o=e.isActive,a=e.isComplete,u=e.onEdit,s=e.editButtonText,l=e.editButtonAriaLabel,__=(0,S.useI18n)().__,c=!!u;return(0,_.createElement)(V,{isComplete:a,isActive:o,className:(0,C.Z)([n,"checkout-step__header"])},(0,_.createElement)(X,{isComplete:a,isActive:o,id:t},r||null),(0,_.createElement)(G,{fullWidth:!c,isActive:o},i),c&&(0,_.createElement)(H,{className:"checkout-step__edit-button",buttonType:"text-button",onClick:u,"aria-label":l||__("Edit this step")},s||__("Edit")))}var Y=P.Z.div(g||(g=(0,b.Z)(["\n\tposition: relative;\n\twidth: 27px;\n\theight: 27px;\n\tmargin-right: 8px;\n\n\t.rtl & {\n\t\tmargin-right: 0;\n\t\tmargin-left: 8px;\n\t}\n"]))),W=P.Z.div(h||(h=(0,b.Z)(["\n\tposition: relative;\n\ttransform-origin: center center;\n\ttransition: transform 0.3s 0.1s ease-out;\n\ttransform-style: preserve-3d;\n\ttransform: ",";\n"])),(function(e){return e.isComplete?"rotateY(180deg)":"rotateY(0)"})),q=P.Z.div(v||(v=(0,b.Z)(["\n\tbackground: ",";\n\tfont-weight: normal;\n\twidth: 27px;\n\theight: 27px;\n\tline-height: 27px;\n\tbox-sizing: border-box;\n\ttext-align: center;\n\tborder-radius: 50%;\n\tcolor: ",";\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tbackface-visibility: hidden;\n\n\t.rtl & {\n\t\tright: 0;\n\t\tleft: auto;\n\t}\n\n\t// Reason: The IE media query needs to not have spaces within brackets otherwise ie11 doesn't read them\n\t// prettier-ignore\n\t@media all and (-ms-high-contrast:none), (-ms-high-contrast:active) {\n\t\tz-index: ",";\n\t}\n"])),(function(e){var t=e.isComplete,n=e.isActive,r=e.theme;if(n)return r.colors.highlight;if(t)return r.colors.success;return r.colors.upcomingStepBackground}),(function(e){var t=e.isComplete,n=e.isActive,r=e.theme;if(t||n)return r.colors.surface;return r.colors.textColor}),(function(e){return e.isComplete?"0":"1"})),K=(0,P.Z)(q)(y||(y=(0,b.Z)(["\n\tbackground: ",";\n\ttransform: rotateY( 180deg );\n\t// Reason: media query needs to not have spaces within brackets otherwise ie11 doesn't read them\n\t// prettier-ignore\n\t@media all and (-ms-high-contrast:none), (-ms-high-contrast:active) {\n\t\tbackface-visibility: visible;\n\t\tz-index: ",";\n\t}\n\n\tsvg {\n\t\tmargin-top: 4px;\n\t}\n"])),(function(e){return e.theme.colors.success}),(function(e){return e.isComplete?"1":"0"}));function X(e){var t=e.isComplete,n=e.isActive,r=e.className,i=e.children,o=e.id,a=!n&&t;return(0,_.createElement)(Y,{className:(0,C.Z)([r,"checkout-step__stepper"])},(0,_.createElement)(W,{isComplete:a},(0,_.createElement)(q,{isComplete:a,isActive:n},i),(0,_.createElement)(K,null,(0,_.createElement)(Z.nQ,{id:o}))))}z.propTypes={id:x().string,className:x().string,stepNumber:x().number,title:x().node.isRequired,isActive:x().bool,isComplete:x().bool,editButtonText:x().string,editButtonAriaLabel:x().string,onEdit:x().func},X.propTypes={id:x().string,className:x().string,isComplete:x().bool,isActive:x().bool}},5197:function(e,t,n){"use strict";n.d(t,{nQ:function(){return l}});var r,i=n(4059),o=n(3027),a=n(3980),u=n.n(a),s=(n(3804),n(5393));function l(e){var t=e.className,n=e.id;return(0,o.createElement)(c,{width:"20",height:"20",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",className:t},(0,o.createElement)("mask",{id:n+"-check-icon-mask","mask-type":"alpha",maskUnits:"userSpaceOnUse",x:"2",y:"4",width:"16",height:"12"},(0,o.createElement)("path",{d:"M7.32916 13.2292L3.85416 9.75417L2.67083 10.9292L7.32916 15.5875L17.3292 5.58751L16.1542 4.41251L7.32916 13.2292Z"})),(0,o.createElement)("g",{mask:"url(#"+n+"-check-icon-mask)"},(0,o.createElement)("rect",{width:"20",height:"20"})))}l.propTypes={className:u().string,id:u().string};var c=s.Z.svg(r||(r=(0,i.Z)(["\n\tfill: #fff;\n"])))},6654:function(e,t,n){"use strict";function r(e){return e.filter((function(e){return e})).join(" ")}n.d(t,{Z:function(){return r}})},5393:function(e,t,n){"use strict";var r=n(6648);t.Z=r.Z},5777:function(e,t,n){"use strict";n.d(t,{I:function(){return r}});var r={wordpressBlue5:"#BEDAE6",wordpressBlue40:"#187AA2",wordpressBlue50:"#006088",wordpressBlue60:"#004E6E",wordpressBlue80:"#002C40",blue5:"#BBE0FA",blue30:"#399CE3",blue40:"#1689DB",blue50:"#0675C4",blue60:"#055D9C",blue80:"#02395C",gray0:"#F6F7F7",gray5:"#DCDCDE",gray10:"#C3C4C7",gray20:"#A7AAAD",gray30:"#8E9196",gray50:"#646970",gray80:"#2C3338",pink50:"#C9356E",pink60:"#AB235A",pink80:"#700F3B",green50:"#008A20",red50:"#D63638",red0:"#F7EBEC",white:"#FFF",black:"#000"}},7384:function(e,t,n){"use strict";var r=n(5777),i={colors:{background:r.I.gray0,surface:r.I.white,primary:r.I.pink50,primaryBorder:r.I.pink80,primaryOver:r.I.pink60,highlight:r.I.blue50,highlightBorder:r.I.blue80,highlightOver:r.I.blue60,success:r.I.green50,discount:r.I.green50,disabledPaymentButtons:r.I.gray0,disabledPaymentButtonsAccent:r.I.gray5,disabledButtons:r.I.gray20,borderColor:r.I.gray10,borderColorLight:r.I.gray5,borderColorDark:r.I.gray50,upcomingStepBackground:r.I.gray5,textColor:r.I.gray80,textColorLight:r.I.gray50,textColorDark:r.I.black,error:r.I.red50,warningBackground:r.I.red0,outline:r.I.blue30,applePayButtonColor:r.I.black,applePayButtonRollOverColor:r.I.gray80,noticeBackground:r.I.gray80,defaultNoticeIconBackground:r.I.gray30,textColorOnDarkBackground:r.I.white,paypalGold:"#F0C443",paypalGoldHover:"#FFB900",modalBackground:"rgba( 255,255,255,0.9 )",disabledField:r.I.gray0,placeHolderTextColor:r.I.gray30},breakpoints:{desktopUp:"min-width: 960px",tabletUp:"min-width: 700px",bigPhoneUp:"min-width: 480px",smallPhoneUp:"min-width: 400px"},weights:{bold:"600",normal:"400"},fonts:{body:'-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif'},fontSize:{small:"14px"}};t.Z=i},7450:function(e,t,n){"use strict";var r,i,o;n.d(t,{PX:function(){return r}}),function(e){e.LOADING="loading",e.READY="ready",e.SUBMITTING="submitting",e.VALIDATING="validating",e.COMPLETE="complete"}(r||(r={})),function(e){e.SUCCESS="SUCCESS",e.REDIRECT="REDIRECT",e.MANUAL="MANUAL",e.ERROR="ERROR"}(i||(i={})),function(e){e.NOT_STARTED="not-started",e.PENDING="pending",e.COMPLETE="complete",e.REDIRECTING="redirecting",e.ERROR="error"}(o||(o={}))},3600:function(e,t,n){"use strict";n.r(t),n.d(t,{receiveCategories:function(){return r},fetchDomainSuggestions:function(){return i},receiveDomainAvailability:function(){return o},receiveDomainSuggestionsSuccess:function(){return a},receiveDomainSuggestionsError:function(){return u}});var r=function(e){return{type:"RECEIVE_CATEGORIES",categories:e}},i=function(){return{type:"FETCH_DOMAIN_SUGGESTIONS",timeStamp:Date.now()}},o=function(e,t){return{type:"RECEIVE_DOMAIN_AVAILABILITY",domainName:e,availability:t}},a=function(e,t){return{type:"RECEIVE_DOMAIN_SUGGESTIONS_SUCCESS",queryObject:e,suggestions:t,timeStamp:Date.now()}},u=function(e){return{type:"RECEIVE_DOMAIN_SUGGESTIONS_ERROR",errorMessage:e,timeStamp:Date.now()}}},584:function(e,t,n){"use strict";n.d(t,{L:function(){return i},r:function(){return r}});var r,i="automattic/domains/suggestions";!function(e){e.Failure="failure",e.Pending="pending",e.Success="success",e.Uninitialized="uninitialized"}(r||(r={}))},8077:function(e,t,n){"use strict";n.d(t,{z:function(){return d}});var r=n(5707),i=n(3661),o=n(3600),a=n(584),u=n(3717),s=n(2269),l=n(267),c=!1;function d(){return c||(c=!0,(0,r.registerStore)(a.L,{actions:o,controls:i.ai,reducer:u.Z,resolvers:s,selectors:l})),a.L}},3717:function(e,t,n){"use strict";var r=n(1119),i=n(9394),o=n(5707),a=n(584),u=n(4211),s={state:a.r.Uninitialized,data:{},errorMessage:null,lastUpdated:-1/0,pendingSince:void 0},l=(0,o.combineReducers)({categories:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1?arguments[1]:void 0;return"RECEIVE_CATEGORIES"===t.type?t.categories:e},domainSuggestions:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:s,t=arguments.length>1?arguments[1]:void 0;return"FETCH_DOMAIN_SUGGESTIONS"===t.type?(0,i.Z)((0,i.Z)({},e),{},{state:a.r.Pending,errorMessage:null,pendingSince:t.timeStamp}):"RECEIVE_DOMAIN_SUGGESTIONS_SUCCESS"===t.type?(0,i.Z)((0,i.Z)({},e),{},{state:a.r.Success,data:(0,i.Z)((0,i.Z)({},e.data),{},(0,r.Z)({},(0,u.Le)(t.queryObject),t.suggestions)),errorMessage:null,lastUpdated:t.timeStamp,pendingSince:void 0}):"RECEIVE_DOMAIN_SUGGESTIONS_ERROR"===t.type?(0,i.Z)((0,i.Z)({},e),{},{state:a.r.Failure,errorMessage:t.errorMessage,lastUpdated:t.timeStamp,pendingSince:void 0}):e},availability:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;return"RECEIVE_DOMAIN_AVAILABILITY"===t.type?(0,i.Z)((0,i.Z)({},e),{},(0,r.Z)({},t.domainName,t.availability)):e}});t.Z=l},2269:function(e,t,n){"use strict";n.r(t),n.d(t,{isAvailable:function(){return g},getCategories:function(){return h},__internalGetDomainSuggestions:function(){return v}});var r=n(9394),i=n(1481),o=n(9126),a=n(6468),u=n.n(a),s=n(3661),l=n(3600),c=n(4211),d=regeneratorRuntime.mark(h),f=regeneratorRuntime.mark(v);function p(e){return"https://public-api.wordpress.com/rest/v1.3/domains/".concat(encodeURIComponent(e),"/is-available?is_cart_pre_check=true")}function m(e,t){return u().isFQDN(t)&&!e.some((function(e){return e.domain_name.toLowerCase()===t}))}var g=regeneratorRuntime.mark((function e(t){var n,r,i;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=p(t),e.prev=1,e.next=4,(0,s.An)(n);case 4:return r=e.sent,i=r.body,e.abrupt("return",(0,l.receiveDomainAvailability)(t,i));case 9:return e.prev=9,e.t0=e.catch(1),e.abrupt("return",(0,l.receiveDomainAvailability)(t,{domain_name:t,mappable:"unknown",status:"unknown",supports_privacy:!1}));case 12:case"end":return e.stop()}}),e,null,[[1,9]])}));function h(){var e,t;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,(0,s.An)("https://public-api.wordpress.com/wpcom/v2/onboarding/domains/categories");case 2:return e=n.sent,t=e.body,n.abrupt("return",(0,l.receiveCategories)(t));case 5:case"end":return n.stop()}}),d)}function v(e){var t,n,a;return regeneratorRuntime.wrap((function(u){for(;;)switch(u.prev=u.next){case 0:if(e.query){u.next=2;break}return u.abrupt("return",(0,l.receiveDomainSuggestionsError)("Empty query"));case 2:return u.next=4,(0,l.fetchDomainSuggestions)();case 4:return u.prev=4,u.next=7,(0,s._9)({apiVersion:"1.1",path:"/domains/suggestions",query:(0,o.stringify)(e)});case 7:if(t=u.sent,Array.isArray(t)){u.next=10;break}return u.abrupt("return",(0,l.receiveDomainSuggestionsError)((0,i.Iu)("Invalid response from the server")));case 10:return m(t,e.query)&&(n={domain_name:e.query,unavailable:!0,cost:"",raw_price:0,currency_code:""},t.unshift(n)),a=t.map((function(e){return e.unavailable?e:(0,r.Z)((0,r.Z)({},e),e.raw_price&&e.currency_code&&{cost:(0,c._B)(e.raw_price,e.currency_code)})})),u.abrupt("return",(0,l.receiveDomainSuggestionsSuccess)(e,a));case 15:return u.prev=15,u.t0=u.catch(4),u.abrupt("return",(0,l.receiveDomainSuggestionsError)(u.t0.message||(0,i.Iu)("Error while fetching server response")));case 18:case"end":return u.stop()}}),f,null,[[4,15]])}},267:function(e,t,n){"use strict";n.r(t),n.d(t,{getCategories:function(){return u},getDomainSuggestions:function(){return s},getDomainState:function(){return l},getDomainErrorMessage:function(){return c},isLoadingDomainSuggestions:function(){return d},__internalGetDomainSuggestions:function(){return f},isAvailable:function(){return p},getDomainAvailabilities:function(){return m}});var r=n(1766),i=n(5707),o=n(584),a=n(4211),u=function(e){return[].concat((0,r.Z)(e.categories.filter((function(e){return null!==e.tier})).sort((function(e,t){return e>t?1:-1}))),(0,r.Z)(e.categories.filter((function(e){return null===e.tier})).sort((function(e,t){return e.title.localeCompare(t.title)}))))},s=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=(0,a.o0)(t,n);return(0,i.select)(o.L).__internalGetDomainSuggestions(r)},l=function(e){return e.domainSuggestions.state},c=function(e){return e.domainSuggestions.errorMessage},d=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=(0,a.o0)(t,n);return(0,i.select)("core/data").isResolving(o.L,"__internalGetDomainSuggestions",[r])},f=function(e,t){return e.domainSuggestions.data[(0,a.Le)(t)]},p=function(e,t){return e.availability[t]},m=function(e){return e.availability}},4211:function(e,t,n){"use strict";n.d(t,{Le:function(){return a},_B:function(){return u},o0:function(){return s}});var r=n(9394),i=n(1621),o=n(5695),a=n.n(o)();function u(e,t){return(0,i.ZP)(e,t,{stripZeros:!0})}function s(e,t){return(0,r.Z)((0,r.Z)({include_wordpressdotcom:t.only_wordpressdotcom||!1,include_dotblogsubdomain:!1,only_wordpressdotcom:!1,quantity:5,vendor:"variation2_front"},t),{},{query:e.trim().toLocaleLowerCase()})}},6108:function(e,t,n){"use strict";n.r(t),n.d(t,{setSidebarFullscreen:function(){return o},unsetSidebarFullscreen:function(){return a},setStep:function(){return u},setSiteTitle:function(){return s},setDomain:function(){return l},unsetDomain:function(){return c},confirmDomainSelection:function(){return d},setDomainSearch:function(){return f},setPlanProductId:function(){return m},unsetPlanProductId:function(){return g},updatePlan:function(){return h},openSidebar:function(){return v},closeSidebar:function(){return y},openFocusedLaunch:function(){return b},closeFocusedLaunch:function(){return _},enableAnchorFm:function(){return S},showSiteTitleStep:function(){return E},setModalDismissible:function(){return w},unsetModalDismissible:function(){return A},showModalTitle:function(){return x},hideModalTitle:function(){return C},enablePersistentSuccessView:function(){return P},disablePersistentSuccessView:function(){return N}});var r=n(5707),i=n(9149),o=function(){return{type:"SET_SIDEBAR_FULLSCREEN"}},a=function(){return{type:"UNSET_SIDEBAR_FULLSCREEN"}},u=function(e){return{type:"SET_STEP",step:e}},s=function(e){return{type:"SET_SITE_TITLE",title:e}},l=function(e){return{type:"SET_DOMAIN",domain:e}},c=function(){return{type:"UNSET_DOMAIN"}},d=function(){return{type:"CONFIRM_DOMAIN_SELECTION"}},f=function(e){return{type:"SET_DOMAIN_SEARCH",domainSearch:e}},p=function(e){return{type:"SET_PLAN_BILLING_PERIOD",billingPeriod:e}},m=regeneratorRuntime.mark((function e(t){var n,o,a;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if((0,r.select)(i.Fs).isPlanProductFree(t)){e.next=6;break}return o=(0,r.select)(i.Fs).getPlanProductById(t),a=null!==(n=null==o?void 0:o.billingPeriod)&&void 0!==n?n:"ANNUALLY",e.next=6,p(a);case 6:return e.abrupt("return",{type:"SET_PLAN_PRODUCT_ID",planProductId:t});case 7:case"end":return e.stop()}}),e)})),g=function(){return{type:"UNSET_PLAN_PRODUCT_ID"}};function h(e){return m(e)}var v=function(){return{type:"OPEN_SIDEBAR"}},y=function(){return{type:"CLOSE_SIDEBAR"}},b=function(){return{type:"OPEN_FOCUSED_LAUNCH"}},_=function(){return{type:"CLOSE_FOCUSED_LAUNCH"}},S=function(){return{type:"ENABLE_ANCHOR_FM"}},E=function(){return{type:"SHOW_SITE_TITLE_STEP"}},w=function(){return{type:"SET_MODAL_DISMISSIBLE"}},A=function(){return{type:"UNSET_MODAL_DISMISSIBLE"}},x=function(){return{type:"SHOW_MODAL_TITLE"}},C=function(){return{type:"HIDE_MODAL_TITLE"}},P=function(){return{type:"ENABLE_SUCCESS_VIEW"}},N=function(){return{type:"DISABLE_SUCCESS_VIEW"}}},9149:function(e,t,n){"use strict";n.d(t,{Ls:function(){return r},Fs:function(){return i}});var r="automattic/launch",i="automattic/onboard/plans"},3610:function(e,t,n){"use strict";n.d(t,{y:function(){return r},M:function(){return i}});var r={Name:"name",Domain:"domain",Plan:"plan",Final:"final"},i=[r.Name,r.Domain,r.Plan,r.Final]},1635:function(e,t,n){"use strict";n.d(t,{z:function(){return d}});var r=n(5707),i=n(9866),o=n(6108),a=n(9149),u=n(594),s=n(4648),l=n(7092);(0,r.use)(r.plugins.persistence,u.Z);var c=!1;function d(){return c||(c=!0,(0,r.registerStore)(a.Ls,{actions:o,controls:i.controls,reducer:s.Z,selectors:l,persist:["domain","domainSearch","planProductId","planBillingPeriod","confirmedDomainSelection","isAnchorFm","isSiteTitleStepVisible","siteTitle"]})),a.Ls}},594:function(e,t,n){"use strict";var r=n(492);t.Z=(0,r.Z)("WP_LAUNCH")},4648:function(e,t,n){"use strict";var r=n(5707),i=n(3610),o=(0,r.combineReducers)({step:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:i.y.Name,t=arguments.length>1?arguments[1]:void 0;return"SET_STEP"===t.type?t.step:e},siteTitle:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:void 0,t=arguments.length>1?arguments[1]:void 0;return"SET_SITE_TITLE"===t.type?t.title:e},domain:function(e,t){return"SET_DOMAIN"===t.type?t.domain:"UNSET_DOMAIN"!==t.type?e:void 0},confirmedDomainSelection:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"CONFIRM_DOMAIN_SELECTION"===t.type||e},domainSearch:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1?arguments[1]:void 0;return"SET_DOMAIN_SEARCH"===t.type?t.domainSearch:e},planBillingPeriod:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"ANNUALLY",t=arguments.length>1?arguments[1]:void 0;return"SET_PLAN_BILLING_PERIOD"===t.type?t.billingPeriod:e},planProductId:function(e,t){return"SET_PLAN_PRODUCT_ID"===t.type?t.planProductId:"UNSET_PLAN_PRODUCT_ID"!==t.type?e:void 0},isSidebarOpen:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"OPEN_SIDEBAR"===t.type||"CLOSE_SIDEBAR"!==t.type&&e},isSidebarFullscreen:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"SET_SIDEBAR_FULLSCREEN"===t.type||"UNSET_SIDEBAR_FULLSCREEN"!==t.type&&e},isAnchorFm:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"ENABLE_ANCHOR_FM"===t.type||e},isFocusedLaunchOpen:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"OPEN_FOCUSED_LAUNCH"===t.type||"CLOSE_FOCUSED_LAUNCH"!==t.type&&e},isSiteTitleStepVisible:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;return"SHOW_SITE_TITLE_STEP"===t.type||e},isModalDismissible:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0],t=arguments.length>1?arguments[1]:void 0;return"SET_MODAL_DISMISSIBLE"===t.type||"UNSET_MODAL_DISMISSIBLE"!==t.type&&e},isModalTitleVisible:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0],t=arguments.length>1?arguments[1]:void 0;return"SHOW_MODAL_TITLE"===t.type||"HIDE_MODAL_TITLE"!==t.type&&e}});t.Z=o},7092:function(e,t,n){"use strict";n.r(t),n.d(t,{getLaunchSequence:function(){return a},getLaunchStep:function(){return u},getState:function(){return s},hasPaidDomain:function(){return l},getSelectedDomain:function(){return c},getSelectedPlanProductId:function(){return d},getLastPlanBillingPeriod:function(){return f},isSelectedPlanPaid:function(){return p},hasSelectedDomainOrSubdomain:function(){return m},isStepCompleted:function(){return g},isFlowCompleted:function(){return h},isFlowStarted:function(){return v},getFirstIncompleteStep:function(){return y},getSiteTitle:function(){return b},getCurrentStep:function(){return _},getDomainSearch:function(){return S}});var r=n(5707),i=n(9149),o=n(3610),a=function(){return o.M},u=function(){return o.y},s=function(e){return e},l=function(e){return!!e.domain&&!e.domain.is_free},c=function(e){return e.domain},d=function(e){return e.planProductId},f=function(e){return e.planBillingPeriod},p=function(e){return void 0!==e.planProductId&&!(0,r.select)(i.Fs).isPlanProductFree(e.planProductId)},m=function(e){return!!c(e)||e.confirmedDomainSelection},g=function(e,t){if(t===o.y.Plan)return!!d(e);if(t===o.y.Name){var n=(0,r.select)("core").getEntityRecord("root","site",void 0);return!(null==n||!n.title)}return t===o.y.Domain&&(0,r.select)(i.Ls).hasSelectedDomainOrSubdomain()},h=function(e){return o.M.slice(0,o.M.length-1).every((function(t){return g(e,t)}))},v=function(e){return o.M.some((function(t){return g(e,t)}))},y=function(e){return o.M.find((function(t){return!g(e,t)}))},b=function(e){return null==e?void 0:e.siteTitle},_=function(e){return e.step},S=function(e){return e.domainSearch}},492:function(e,t,n){"use strict";function r(e){var t=e,n=e+"_TS",r={},i={getItem:function(e){return r.hasOwnProperty(e)?r[e]:null},setItem:function(e,t){r[e]=String(t)},removeItem:function(e){delete r[e]}},o=function(){try{return window.localStorage.setItem("WP_ONBOARD_TEST","1"),window.localStorage.removeItem("WP_ONBOARD_TEST"),!0}catch(e){return!1}}()?window.localStorage:i;return{storageKey:t,storage:{getItem:function(e){var r=o.getItem(n);return r&&function(e){var t=Number(e);return Boolean(t)&&t+6048e5>Date.now()}(r)&&!new URLSearchParams(window.location.search).has("fresh")?o.getItem(e):(o.removeItem(t),o.removeItem(n),null)},setItem:function(e,t){o.setItem(n,JSON.stringify(Date.now())),o.setItem(e,t)}}}}n.d(t,{Z:function(){return r}})},9068:function(e,t,n){"use strict";n.r(t),n.d(t,{setFeatures:function(){return r},setFeaturesByType:function(){return i},setPlans:function(){return o},setPlanProducts:function(){return a},resetPlan:function(){return u}});var r=function(e,t){return{type:"SET_FEATURES",features:e,locale:t}},i=function(e,t){return{type:"SET_FEATURES_BY_TYPE",featuresByType:e,locale:t}},o=function(e,t){return{type:"SET_PLANS",plans:e,locale:t}},a=function(e){return{type:"SET_PLAN_PRODUCTS",products:e}},u=function(){return{type:"RESET_PLAN"}}},4703:function(e,t,n){"use strict";n.d(t,{Ls:function(){return r},Ho:function(){return i},TO:function(){return o},YS:function(){return a},Gz:function(){return u},hx:function(){return s},iL:function(){return l},xT:function(){return c},AX:function(){return d},bS:function(){return f},UB:function(){return p},BV:function(){return m},nN:function(){return g}});var r="automattic/onboard/plans",i=1,o="free",a="personal",u="premium",s="business",l="ecommerce",c=[o,a,u,s,l],d=u,f=["personal-bundle","value_bundle","business-bundle","ecommerce-bundle"],p=["personal-bundle-monthly","value_bundle_monthly","business-bundle-monthly","ecommerce-bundle-monthly"],m=["free_plan"].concat(f,p),g=["custom-domain","support-live","priority-support"]},9734:function(e,t,n){"use strict";n.d(t,{z2:function(){return d}});var r=n(5707),i=n(3661),o=n(9068),a=n(4703),u=n(9438),s=n(5261),l=n(7738),c=!1;function d(){return c||(c=!0,(0,r.registerStore)(a.Ls,{resolvers:s,actions:o,controls:i.ai,reducer:u.ZP,selectors:l})),a.Ls}},9438:function(e,t,n){"use strict";var r=n(1119),i=n(9394),o=n(5707),a=(0,o.combineReducers)({features:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"SET_FEATURES":return(0,i.Z)((0,i.Z)({},e),{},(0,r.Z)({},t.locale,t.features));default:return e}},featuresByType:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"SET_FEATURES_BY_TYPE":return(0,i.Z)((0,i.Z)({},e),{},(0,r.Z)({},t.locale,t.featuresByType));default:return e}},planProducts:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"SET_PLAN_PRODUCTS":return t.products;default:return e}},plans:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"SET_PLANS":return(0,i.Z)((0,i.Z)({},e),{},(0,r.Z)({},t.locale,t.plans));default:return e}}});t.ZP=a},5261:function(e,t,n){"use strict";n.r(t),n.d(t,{getSupportedPlans:function(){return g}});var r=n(1621),i=n(9126),o=n(3661),a=n(9068),u=n(4703),s=regeneratorRuntime.mark(g);function l(e){return(0,r.ZP)(12*e.raw_price,e.currency_code,{stripZeros:!0})}function c(e){return(0,r.ZP)(e.raw_price,e.currency_code,{stripZeros:!0})}function d(e){return e.reduce((function(e,t){return e[t.id]={id:t.id,name:t.name,description:t.description,type:"checkbox",requiresAnnuallyBilledPlan:u.nN.indexOf(t.id)>-1},e}),{})}function f(e,t){var n=Object.keys(t).find((function(n){return t[n].name===e}));return!!n&&t[n].requiresAnnuallyBilledPlan}function p(e,t){var n=e.highlighted_features.map((function(e){return{name:e,requiresAnnuallyBilledPlan:f(e,t)}}));return n.sort((function(e,t){return Number(t.requiresAnnuallyBilledPlan)-Number(e.requiresAnnuallyBilledPlan)})),n}function m(e,t){var n=u.BV.reduce((function(n,i){var o=e.find((function(e){return e.product_slug===i}));if(!o)return n;var a,u=t.find((function(e){return e.productIds.indexOf(o.product_id)>-1}));return n.push({productId:o.product_id,billingPeriod:31===o.bill_period?"MONTHLY":"ANNUALLY",periodAgnosticSlug:u.periodAgnosticSlug,storeSlug:o.product_slug,rawPrice:o.raw_price,pathSlug:o.path_slug,price:31===(null==o?void 0:o.bill_period)||0===o.raw_price?c(o):(a=o,(0,r.ZP)(a.raw_price/12,a.currency_code,{stripZeros:!0})),annualPrice:31===(null==o?void 0:o.bill_period)?l(o):c(o)}),n}),[]);return function(e){for(var t=function(t){var n=e.find((function(e){return e.storeSlug===u.bS[t]})),r=e.find((function(e){return e.storeSlug===u.UB[t]}));if(n&&r){var i=12*r.rawPrice,o=n.rawPrice,a=Math.round(100*(1-o/i));n.annualDiscount=a,r.annualDiscount=a}},n=0;n<u.bS.length;n++)t(n)}(n),n}function g(){var e,t,n,r,l,c,f,g=arguments;return regeneratorRuntime.wrap((function(s){for(;;)switch(s.prev=s.next){case 0:return e=g.length>0&&void 0!==g[0]?g[0]:"en",s.next=3,(0,o._9)({path:"/plans",query:(0,i.stringify)({locale:e}),apiVersion:"1.5"});case 3:return t=s.sent,s.next=6,(0,o.An)("https://public-api.wordpress.com/wpcom/v2/plans/details?locale=".concat(encodeURIComponent(e)),{mode:"cors",credentials:"omit"});case 6:return n=s.sent,r=n.body,l=d(r.features),c=r.plans.map((function(e){var t,n=null===(t=e.nonlocalized_short_name)||void 0===t?void 0:t.toLowerCase();return{description:e.tagline,features:p(e,l),storage:e.storage,title:e.short_name,featuresSlugs:e.features.reduce((function(e,t){return e[t]=!0,e}),{}),isFree:n===u.TO,isPopular:n===u.Gz,periodAgnosticSlug:n,productIds:e.products.map((function(e){return e.plan_id}))}})),f=m(t,c),s.next=13,(0,a.setPlans)(c,e);case 13:return s.next=15,(0,a.setPlanProducts)(f);case 15:return s.next=17,(0,a.setFeatures)(l,e);case 17:return s.next=19,(0,a.setFeaturesByType)(r.features_by_type,e);case 19:case"end":return s.stop()}}),s)}},7738:function(e,t,n){"use strict";n.r(t),n.d(t,{getFeatures:function(){return u},getFeaturesByType:function(){return s},getPlanByProductId:function(){return l},getPlanProductById:function(){return c},getPlanByPeriodAgnosticSlug:function(){return d},getDefaultPaidPlan:function(){return f},getDefaultFreePlan:function(){return p},getSupportedPlans:function(){return m},getPlansProducts:function(){return g},getPrices:function(){return h},getPlanByPath:function(){return v},getPlanProduct:function(){return y},isPlanEcommerce:function(){return b},isPlanFree:function(){return _},isPlanProductFree:function(){return S}});var r=n(5707),i=n(3613),o=n.n(i),a=n(4703),u=function(e,t){var n;return null!==(n=e.features[t])&&void 0!==n?n:{}},s=function(e,t){var n;return null!==(n=e.featuresByType[t])&&void 0!==n?n:[]},l=function(e,t,n){if(t)return(0,r.select)(a.Ls).getSupportedPlans(n).find((function(e){return e.productIds.indexOf(t)>-1}))},c=function(e,t){if(t)return(0,r.select)(a.Ls).getPlansProducts().find((function(e){return e.productId===t}))},d=function(e,t,n){if(t)return(0,r.select)(a.Ls).getSupportedPlans(n).find((function(e){return e.periodAgnosticSlug===t}))},f=function(e,t){return(0,r.select)(a.Ls).getSupportedPlans(t).find((function(e){return e.periodAgnosticSlug===a.AX}))},p=function(e,t){return(0,r.select)(a.Ls).getSupportedPlans(t).find((function(e){return e.periodAgnosticSlug===a.TO}))},m=function(e,t){var n;return null!==(n=e.plans[t])&&void 0!==n?n:[]},g=function(e){return e.planProducts},h=function(e,t){return o()("getPrices",{alternative:"getPlanProduct().price"}),(0,r.select)(a.Ls).getPlansProducts().reduce((function(e,t){return e[t.storeSlug]=t.price,e}),{})},v=function(e,t,n){if(t){var i=(0,r.select)(a.Ls).getPlansProducts().find((function(e){return e.pathSlug===t}));if(i)return(0,r.select)(a.Ls).getSupportedPlans(n).find((function(e){return e.periodAgnosticSlug===i.periodAgnosticSlug}))}},y=function(e,t,n){if(t&&n)return(0,r.select)(a.Ls).getPlansProducts().find((function(e){var r=e.periodAgnosticSlug===t,i=t===a.TO||e.billingPeriod===n;return r&&i}))},b=function(e,t){return t===a.iL},_=function(e,t){return t===a.TO},S=function(e,t){return t===a.Ho}},8459:function(e,t,n){"use strict";n.d(t,{d:function(){return u}});var r=n(9394),i=n(4530),o=n(3661),a=n(9639);function u(e){var t=regeneratorRuntime.mark(p),n=regeneratorRuntime.mark(y),u=regeneratorRuntime.mark(b),s=regeneratorRuntime.mark(_),l=regeneratorRuntime.mark(S),c=function(){return{type:"FETCH_NEW_SITE"}},d=function(e){return{type:"RECEIVE_NEW_SITE",response:e}},f=function(e){return{type:"RECEIVE_NEW_SITE_FAILED",error:e}};function p(n){var a,u,s,l,c;return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,{type:"FETCH_NEW_SITE"};case 2:return t.prev=2,a=n.authToken,u=(0,i.Z)(n,["authToken"]),s={client_id:e.client_id,client_secret:e.client_secret,find_available_url:!0,public:-1},l=(0,r.Z)((0,r.Z)((0,r.Z)({},s),u),{},{validate:!1}),t.next=8,(0,o._9)({path:"/sites/new",apiVersion:"1.1",method:"post",body:l,token:a});case 8:return c=t.sent,t.next=11,d(c);case 11:return t.abrupt("return",!0);case 14:return t.prev=14,t.t0=t.catch(2),t.next=18,f(t.t0);case 18:return t.abrupt("return",!1);case 19:case"end":return t.stop()}}),t,null,[[2,14]])}var m=function(e,t){return{type:"RECEIVE_SITE_TITLE",siteId:e,title:t}},g=function(e){return{type:"LAUNCH_SITE_START",siteId:e}},h=function(e){return{type:"LAUNCH_SITE_SUCCESS",siteId:e}},v=function(e,t){return{type:"LAUNCH_SITE_FAILURE",siteId:e,error:t}};function y(e){return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,g(e);case 2:return t.prev=2,t.next=5,(0,o._9)({path:"/sites/".concat(e,"/launch"),apiVersion:"1.1",method:"post"});case 5:return t.next=7,h(e);case 7:t.next=13;break;case 9:return t.prev=9,t.t0=t.catch(2),t.next=13,v(e,a.Hc.INTERNAL);case 13:case"end":return t.stop()}}),n,null,[[2,9]])}function b(e){var t;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,(0,o._9)({path:"/me/shopping-cart/"+e,apiVersion:"1.1",method:"GET"});case 2:return t=n.sent,n.abrupt("return",t);case 4:case"end":return n.stop()}}),u)}function _(e,t){var n;return regeneratorRuntime.wrap((function(r){for(;;)switch(r.prev=r.next){case 0:return r.next=2,(0,o._9)({path:"/me/shopping-cart/"+e,apiVersion:"1.1",method:"POST",body:t});case 2:return n=r.sent,r.abrupt("return",n);case 4:case"end":return r.stop()}}),s)}function S(e,t){return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.prev=0,n.next=3,(0,o._9)({path:"/sites/".concat(encodeURIComponent(e),"/settings"),apiVersion:"1.4",body:{blogname:t},method:"POST"});case 3:return n.next=5,m(e,t);case 5:n.next=9;break;case 7:n.prev=7,n.t0=n.catch(0);case 9:case"end":return n.stop()}}),l,null,[[0,7]])}return{receiveSiteDomains:function(e,t){return{type:"RECEIVE_SITE_DOMAINS",siteId:e,domains:t}},saveSiteTitle:S,receiveSiteTitle:m,fetchNewSite:c,fetchSite:function(){return{type:"FETCH_SITE"}},receiveNewSite:d,receiveNewSiteFailed:f,resetNewSiteFailed:function(){return{type:"RESET_RECEIVE_NEW_SITE_FAILED"}},createSite:p,receiveSite:function(e,t){return{type:"RECEIVE_SITE",siteId:e,response:t}},receiveSiteFailed:function(e,t){return{type:"RECEIVE_SITE_FAILED",siteId:e,response:t}},reset:function(){return{type:"RESET_SITE_STORE"}},launchSite:y,launchSiteStart:g,launchSiteSuccess:h,launchSiteFailure:v,getCart:b,setCart:_}}},2005:function(e,t,n){"use strict";n.d(t,{L:function(){return r}});var r="automattic/site"},2369:function(e,t,n){"use strict";n.d(t,{z2:function(){return d}});var r=n(5707),i=n(3661),o=n(8459),a=n(2005),u=n(2701),s=n(7862),l=n(4309),c=!1;function d(e){return c||(c=!0,(0,r.registerStore)(a.L,{actions:(0,o.d)(e),controls:i.ai,reducer:u.ZP,resolvers:s,selectors:l})),a.L}},2701:function(e,t,n){"use strict";var r=n(4530),i=n(60),o=n(1119),a=n(9394),u=n(5707),s=n(9639),l=(0,u.combineReducers)({data:function(e,t){return"RECEIVE_NEW_SITE"===t.type?t.response.blog_details:"RECEIVE_NEW_SITE_FAILED"!==t.type&&"RESET_SITE_STORE"!==t.type?e:void 0},error:function(e,t){switch(t.type){case"FETCH_NEW_SITE":case"RECEIVE_NEW_SITE":case"RESET_SITE_STORE":case"RESET_RECEIVE_NEW_SITE_FAILED":return;case"RECEIVE_NEW_SITE_FAILED":return{error:t.error.error,status:t.error.status,statusCode:t.error.statusCode,name:t.error.name,message:t.error.message}}return e},isFetching:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"FETCH_NEW_SITE":return!0;case"RECEIVE_NEW_SITE":case"RECEIVE_NEW_SITE_FAILED":case"RESET_SITE_STORE":case"RESET_RECEIVE_NEW_SITE_FAILED":return!1}return e}}),c=(0,u.combineReducers)({isFetchingSiteDetails:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"FETCH_SITE":return!0;case"RECEIVE_SITE":case"RECEIVE_SITE_FAILED":return!1}return e},newSite:l,sites:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;if("RECEIVE_SITE"===t.type)return(0,a.Z)((0,a.Z)({},e),{},(0,o.Z)({},t.siteId,t.response));if("RECEIVE_SITE_FAILED"===t.type){var n=t.siteId,u=(e[n],(0,r.Z)(e,[n].map(i.Z)));return(0,a.Z)({},u)}return"RESET_SITE_STORE"===t.type?{}:"RECEIVE_SITE_TITLE"===t.type?(0,a.Z)((0,a.Z)({},e),{},(0,o.Z)({},t.siteId,(0,a.Z)((0,a.Z)({},e[t.siteId]),{},{name:t.title}))):e},launchStatus:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;return"LAUNCH_SITE_START"===t.type?(0,a.Z)((0,a.Z)({},e),{},(0,o.Z)({},t.siteId,{status:s.uS.IN_PROGRESS,errorCode:void 0})):"LAUNCH_SITE_SUCCESS"===t.type?(0,a.Z)((0,a.Z)({},e),{},(0,o.Z)({},t.siteId,{status:s.uS.SUCCESS,errorCode:void 0})):"LAUNCH_SITE_FAILURE"===t.type?(0,a.Z)((0,a.Z)({},e),{},(0,o.Z)({},t.siteId,{status:s.uS.FAILURE,errorCode:t.error})):e},sitesDomains:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;return"RECEIVE_SITE_DOMAINS"===t.type?(0,a.Z)((0,a.Z)({},e),{},(0,o.Z)({},t.siteId,t.domains)):e}});t.ZP=c},7862:function(e,t,n){"use strict";n.r(t),n.d(t,{getSite:function(){return s},getSiteDomains:function(){return l}});var r=n(5707),i=n(3661),o=n(2005),a=regeneratorRuntime.mark(s),u=regeneratorRuntime.mark(l);function s(e){var t;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,(0,r.dispatch)(o.L).fetchSite();case 2:return n.prev=2,n.next=5,(0,i._9)({path:"/sites/"+encodeURIComponent(e),apiVersion:"1.1"});case 5:return t=n.sent,n.next=8,(0,r.dispatch)(o.L).receiveSite(e,t);case 8:n.next=14;break;case 10:return n.prev=10,n.t0=n.catch(2),n.next=14,(0,r.dispatch)(o.L).receiveSiteFailed(e,void 0);case 14:case"end":return n.stop()}}),a,null,[[2,10]])}function l(e){var t;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.prev=0,n.next=3,(0,i._9)({path:"/sites/"+encodeURIComponent(e)+"/domains",apiVersion:"1.2"});case 3:return t=n.sent,n.next=6,(0,r.dispatch)(o.L).receiveSiteDomains(e,null==t?void 0:t.domains);case 6:n.next=10;break;case 8:n.prev=8,n.t0=n.catch(0);case 10:case"end":return n.stop()}}),u,null,[[0,8]])}},4309:function(e,t,n){"use strict";n.r(t),n.d(t,{getState:function(){return a},getNewSite:function(){return u},getNewSiteError:function(){return s},isFetchingSite:function(){return l},isFetchingSiteDetails:function(){return c},isNewSite:function(){return d},getSite:function(){return f},getSiteTitle:function(){return p},isSiteLaunched:function(){return m},isSiteLaunching:function(){return g},getSiteDomains:function(){return h},getPrimarySiteDomain:function(){return v},getSiteSubdomain:function(){return y}});var r=n(5707),i=n(2005),o=n(9639),a=function(e){return e},u=function(e){return e.newSite.data},s=function(e){return e.newSite.error},l=function(e){return e.newSite.isFetching},c=function(e){return e.isFetchingSiteDetails},d=function(e){return!!e.newSite.data},f=function(e,t){return e.sites[t]},p=function(e,t){var n;return null===(n=(0,r.select)(i.L).getSite(t))||void 0===n?void 0:n.name},m=function(e,t){var n;return(null===(n=e.launchStatus[t])||void 0===n?void 0:n.status)===o.uS.SUCCESS},g=function(e,t){var n;return(null===(n=e.launchStatus[t])||void 0===n?void 0:n.status)===o.uS.IN_PROGRESS},h=function(e,t){return e.sitesDomains[t]},v=function(e,t){var n;return null===(n=(0,r.select)(i.L).getSiteDomains(t))||void 0===n?void 0:n.find((function(e){return e.primary_domain}))},y=function(e,t){var n;return null===(n=(0,r.select)(i.L).getSiteDomains(t))||void 0===n?void 0:n.find((function(e){return e.is_subdomain}))}},9639:function(e,t,n){"use strict";var r,i,o;n.d(t,{Hc:function(){return i},uS:function(){return o}}),function(e){e[e.PublicIndexed=1]="PublicIndexed",e[e.PublicNotIndexed=0]="PublicNotIndexed",e[e.Private=-1]="Private"}(r||(r={})),function(e){e.INTERNAL="internal"}(i||(i={})),function(e){e.UNINITIALIZED="unintialized",e.IN_PROGRESS="in_progress",e.SUCCESS="success",e.FAILURE="failure"}(o||(o={}))},4366:function(e,t,n){"use strict";n.d(t,{L:function(){return r}});var r="automattic/wpcom-features"},2613:function(e,t,n){"use strict";n.d(t,{$:function(){return u}});var r=n(4703),i=r.YS,o=r.Gz,a=r.hx,u={domain:{id:"domain",minSupportedPlan:i},store:{id:"store",minSupportedPlan:r.iL},seo:{id:"seo",minSupportedPlan:a},plugins:{id:"plugins",minSupportedPlan:a},"ad-free":{id:"ad-free",minSupportedPlan:i},"image-storage":{id:"image-storage",minSupportedPlan:o},"video-storage":{id:"video-storage",minSupportedPlan:o},support:{id:"support",minSupportedPlan:a}}},182:function(e,t,n){"use strict";n.d(t,{z:function(){return l}});var r=n(5707),i=n(9866),o=n(4366),a=n(8638),u=n(335),s=!1;function l(){return s||(s=!0,(0,r.registerStore)(o.L,{controls:i.controls,reducer:a.Z,selectors:u})),o.L}},8638:function(e,t,n){"use strict";var r=n(2613);t.Z=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:r.$;return e}},335:function(e,t,n){"use strict";n.r(t),n.d(t,{getAllFeatures:function(){return i},getRecommendedPlanSlug:function(){return o}});var r=n(4703),i=function(e){return e},o=function(e,t){var n=i(e);if(t.length)return t.reduce((function(e,t){var i=n[t].minSupportedPlan;return r.xT.indexOf(i)>r.xT.indexOf(e)?i:e}),n[t[0]].minSupportedPlan)}},3661:function(e,t,n){"use strict";n.d(t,{_9:function(){return a},An:function(){return u},ai:function(){return s}});var r,i=n(6470),o=n(8552),a=function(e){return{type:"WPCOM_REQUEST",request:e}},u=function(e,t){return{type:"FETCH_AND_PARSE",resource:e,options:t}},s={WPCOM_REQUEST:function(e){var t=e.request;return(0,o.ZP)(t)},FETCH_AND_PARSE:(r=(0,i.Z)(regeneratorRuntime.mark((function e(t){var n,r,i;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=t.resource,r=t.options,e.next=3,window.fetch(n,r);case 3:return i=e.sent,e.t0=i.ok,e.next=7,i.json();case 7:return e.t1=e.sent,e.abrupt("return",{ok:e.t0,body:e.t1});case 9:case"end":return e.stop()}}),e)}))),function(_x){return r.apply(this,arguments)}),RELOAD_PROXY:function(){(0,o.sS)()},REQUEST_ALL_BLOGS_ACCESS:function(){return(0,o.Vw)()},WAIT:function(e){var t=e.ms;return new Promise((function(e){return setTimeout(e,t)}))}}},7003:function(e,t,n){"use strict";var r=n(3258),i=n(3027),o=n(7997),a=n(5707),u=n(5869),s=n(3383),l=n(8675),c=n(2779),d=n.n(c),f=(n(3804),n(3300));n(8062);t.Z=function(e){var t=e.onSelect,n=e.selected,__=(0,l.useI18n)().__,c=(0,i.useState)(!1),p=(0,r.Z)(c,2),m=p[0],g=p[1],h=function(e){g(!1),t(e)},v=(0,a.useSelect)((function(e){return e(f.GN).getCategories()})),y=__("All Categories","full-site-editing");return(0,i.createElement)("div",{className:d()("domain-categories",{"is-open":m})},(0,i.createElement)(o.Button,{className:"domain-categories__dropdown-button",onClick:function(){return g(!m)}},(0,i.createElement)("span",null,null!=n?n:y),(0,i.createElement)(u.Z,{icon:s.Z,size:16})),(0,i.createElement)("ul",{className:"domain-categories__item-group"},(0,i.createElement)("li",{className:d()("domain-categories__item",{"is-selected":!n})},(0,i.createElement)(o.Button,{onClick:function(){return h()}},__("View all","full-site-editing"))),v.map((function(e){var t=e.slug,r=e.title;return(0,i.createElement)("li",{key:t,className:d()("domain-categories__item",{"is-selected":t===n})},(0,i.createElement)(o.Button,{onClick:function(){return h(t)}},r))}))))}},6325:function(e,t,n){"use strict";n.d(t,{q:function(){return o}});var r=n(3027),i=n(8675),o=(n(3804),function(){var e=(0,i.useI18n)(),__=e.__,t=e.isRTL;return(0,r.createElement)("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",x:"0px",y:"0px",viewBox:"0 0 300 40",xmlSpace:"preserve",width:"300",style:t()?{transform:"scaleX(-1)"}:void 0},(0,r.createElement)("rect",{x:"0",width:"310",height:"50",rx:"10",fill:"#D8D8D8"}),(0,r.createElement)("rect",{x:"8",y:"8",width:"25",height:"25",rx:"5",fill:"#fff"}),(0,r.createElement)("rect",{x:"40",y:"8",width:"25",height:"25",rx:"5",fill:"#fff"}),(0,r.createElement)("rect",{x:"72",y:"8",width:"300",height:"25",rx:"5",fill:"#fff"}),(0,r.createElement)("text",{x:"80",y:"26",direction:"ltr",textAnchor:t()?"end":"start",transform:t()?"scale(-1,1) translate(-160,0)":void 0},(0,r.createElement)("tspan",{fill:"#999"},(0,r.createElement)("tspan",null,"https://")),(0,r.createElement)("tspan",{fill:"#515151",dx:"4.5"},__("example.com","full-site-editing"))))})},1614:function(e,t,n){"use strict";var r=n(3027),i=n(2779),o=n.n(i);n(3804);t.Z=function(e){var t=e.type;return(0,r.createElement)("div",{className:o()("domain-picker__suggestion-item placeholder","type-".concat(t))},(0,r.createElement)("div",{className:"domain-picker__suggestion-item-name placeholder"}),(0,r.createElement)("div",{className:"domain-picker__price placeholder"}))}},7226:function(e,t,n){"use strict";var r=n(2389),i=n(4530),o=n(3027),a=n(3804),u=n(6461),s=a.forwardRef((function(e,t){var n=e.type,a=e.disabled,s=(0,i.Z)(e,["type","disabled"]);return n===u.ln?(0,o.createElement)("div",s):(0,o.createElement)("button",(0,r.Z)({ref:t,disabled:a},s))}));t.Z=s},6461:function(e,t,n){"use strict";n.d(t,{fe:function(){return y},ln:function(){return b}});var r=n(2389),i=n(3258),o=n(3027),a=n(6115),u=n(849),s=n(7498),l=n(7997),c=n(1417),d=n(3163),f=n(8675),p=n(2779),m=n.n(p),g=n(3804),h=n(413),v=n(7226),y="radio",b="button",_="individual-item",S=function(e){var t=e.isUnavailable,n=e.domain,r=e.isLoading,p=e.cost,S=e.railcarId,E=e.hstsRequired,w=void 0!==E&&E,A=e.isFree,x=void 0!==A&&A,C=e.isExistingSubdomain,P=void 0!==C&&C,N=e.isRecommended,k=void 0!==N&&N,I=e.onSelect,O=e.onRender,Z=e.selected,L=e.type,M=void 0===L?y:L,T=e.buttonRef,D=(0,f.useI18n)(),__=D.__,F=D.hasTranslation,R=(0,u.bU)(),$=(0,s.Iu)(),j=!(0,c.useViewportMatch)("small",">="),B=n.indexOf("."),U=n.slice(0,B),G=n.slice(B),V=g.useState(),H=(0,i.Z)(V,2),z=H[0],Y=H[1],W=g.useState(),q=(0,i.Z)(W,2),K=q[0],X=q[1],J=__("Default","full-site-editing"),Q=__("Free","full-site-editing"),ee=M===_?J:Q,te=__("Included with annual plans","full-site-editing"),ne=__("Included in annual plans","full-site-editing"),re="en"===R||null!=F&&F("Included in annual plans")?ne:te,ie=__("<strong>First year included</strong> in paid plans","full-site-editing"),oe=__("<strong>First year included</strong> in annual plans","full-site-editing"),ae="en"===R||null!=F&&F("<strong>First year included</strong> in annual plans")?oe:ie,ue=j?re:(0,o.createInterpolateElement)(ae,{strong:(0,o.createElement)("strong",null)});g.useEffect((function(){n!==z&&K!==S&&S&&(O(),Y(n),X(S))}),[n,z,K,S,O]);var se=function(){K&&(0,a.Lo)({action:"domain_selected",railcarId:K}),I(n)},le=__("Selected","full-site-editing"),ce=__("Select","full-site-editing");return(0,o.createElement)(v.Z,{ref:T,type:M,key:U,className:m()("domain-picker__suggestion-item",{"is-free":x,"is-selected":Z,"is-unavailable":t},"type-".concat(M)),onClick:M!==b?se:void 0,disabled:t},M===y&&(r?(0,o.createElement)(l.Spinner,null):(0,o.createElement)("span",{className:m()("domain-picker__suggestion-radio-circle",{"is-checked":Z,"is-unavailable":t})})),(0,o.createElement)("div",{className:"domain-picker__suggestion-item-name"},(0,o.createElement)("div",{className:"domain-picker__suggestion-item-name-inner"},(0,o.createElement)("span",{className:m()("domain-picker__domain-wrapper",{"with-margin":!w})},(0,o.createElement)("span",{className:"domain-picker__domain-sub-domain"},U),(0,o.createElement)("span",{className:"domain-picker__domain-tld"},G)),k&&!t&&(0,o.createElement)("div",{className:"domain-picker__badge is-recommended"},__("Recommended","full-site-editing")),w&&(0,o.createElement)(h.Z,{position:j?"bottom center":"middle right",noArrow:!1,className:"domain-picker__info-tooltip"},(0,o.createInterpolateElement)(__("All domains ending with <tld /> require an SSL certificate to host a website. When you host this domain at WordPress.com an SSL certificate is included. <learn_more_link>Learn more</learn_more_link>","full-site-editing"),{tld:(0,o.createElement)("b",null,G),learn_more_link:(0,o.createElement)("a",{target:"_blank",rel:"noreferrer",href:$("https://wordpress.com/support/https-ssl")})}))),P&&M!==_&&(0,o.createElement)("div",{className:"domain-picker__change-subdomain-tip"},__("You can change your free subdomain later under Domain Settings.","full-site-editing"))),(0,o.createElement)("div",{className:m()("domain-picker__price",{"is-paid":!x})},t&&__("Unavailable","full-site-editing"),x&&!t&&ee,!x&&!t&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("span",{className:"domain-picker__price-cost"},(0,d.sprintf)(__("%s/year","full-site-editing"),p)),(0,o.createElement)("span",{className:"domain-picker__price-inclusive"}," ",ue," "),(0,o.createElement)("span",{className:"domain-picker__price-renewal"},(0,d.sprintf)(__("Renews at: %s /year","full-site-editing"),p)))),M===b&&(r?(0,o.createElement)(l.Spinner,null):(0,o.createElement)("div",{className:"domain-picker__action"},(0,o.createElement)(l.Button,{ref:T,isSecondary:!0,className:m()("domain-picker__suggestion-select-button",{"is-selected":Z&&!t}),disabled:t,onClick:se},Z&&!t?le:ce))))};t.ZP=g.forwardRef((function(e,t){return(0,o.createElement)(S,(0,r.Z)({},e,{buttonRef:t}))}))},605:function(e,t,n){"use strict";var r=n(3027),i=n(9211),o=n(8675),a=(n(3804),n(7226));t.Z=function(e){var t=e.onClick,n=(0,o.useI18n)(),__=n.__,_x=n._x;return(0,r.createElement)(a.Z,{type:"button",className:"domain-picker__suggestion-item type-link",onClick:t},(0,r.createElement)("div",{className:"domain-picker__suggestion-item-name"},(0,r.createElement)("span",{className:"domain-picker__domain-wrapper with-margin with-bold-text"},__("Already own a domain?","full-site-editing")),(0,r.createElement)("div",null,(0,r.createElement)("span",{className:"domain-picker__item-tip"},_x("You can use it as your site's address.","Upgrades: Register domain description","full-site-editing")))),(0,r.createElement)(i.b4,{arrow:"right"},_x("Use a domain I own","Domain transfer or mapping suggestion button","full-site-editing")))}},2999:function(e,t,n){"use strict";var r=n(3258),i=n(3027),o=n(6115),a=n(584),u=n(7997),s=n(5869),l=n(7108),c=n(8675),d=n(1205),f=n(3804),p=n.n(f),m=n(3300),g=n(5241),h=n(1045),v=n(1071),y=n(3446),b=n(7003),_=n(6325),S=n(6461),E=n(1614),w=n(605),A=(n(3437),function(e){var t=e.groupItems,n=e.children;return t?(0,i.createElement)("div",{className:"domain-picker__suggestion-item-group"},n):(0,i.createElement)(f.Fragment,null,n)}),x=function(e){var t=e.children;return(0,i.createElement)("p",{className:"domain-picker__suggestion-group-label"},t)};t.ZP=function(e){var t,n=e.header,C=e.showDomainCategories,P=e.onDomainSelect,N=e.onExistingSubdomainSelect,k=e.quantity,I=void 0===k?m.SL:k,O=e.quantityExpanded,Z=void 0===O?m.Mm:O,L=e.onDomainSearchBlur,M=e.analyticsFlowId,T=e.analyticsUiAlgo,D=e.initialDomainSearch,F=void 0===D?"":D,R=e.onSetDomainSearch,$=e.currentDomain,j=e.isCheckingDomainAvailability,B=e.existingSubdomain,U=e.segregateFreeAndPaid,G=void 0!==U&&U,V=e.showSearchField,H=void 0===V||V,z=e.itemType,Y=void 0===z?S.fe:z,W=e.locale,q=e.areDependenciesLoading,K=void 0!==q&&q,X=e.orderSubDomainsLast,J=void 0!==X&&X,Q=e.onUseYourDomainClick,ee=e.vendor,te=void 0===ee?(0,y.iY)():ee,ne=e.showRecommendationLabel,re=void 0===ne||ne,__=(0,c.useI18n)().__,ie=__("Search for a domain","full-site-editing"),oe=(0,f.useState)(!1),ae=(0,r.Z)(oe,2),ue=ae[0],se=ae[1],le=(0,f.useState)(F),ce=(0,r.Z)(le,2),de=ce[0],fe=ce[1],pe=(0,f.useState)(),me=(0,r.Z)(pe,2),ge=me[0],he=me[1],ve=(0,g.O)(de.trim(),Z,ge,W)||{},ye=ve.allDomainSuggestions,be=ve.errorMessage,_e=ve.state,Se=ve.retryRequest,Ee=null==ye?void 0:ye.filter((function(e){return!(B&&e.is_free)})).slice(0,ue?Z-1:I-1),we=null==Ee?void 0:Ee.findIndex((function(e){return!e.is_free&&!e.unavailable})),Ae=(0,h.$)(Ee,B,$);Ae&&(null==Ee||Ee.push(Ae));var xe=(0,v.P)();(0,f.useEffect)((function(){se(!1)}),[de]);var Ce=(0,f.useState)(),Pe=(0,r.Z)(Ce,2),Ne=Pe[0],ke=Pe[1];(0,f.useEffect)((function(){ye&&ke((0,o.k9)("suggestion"))}),[ye,ke]),(0,f.useEffect)((function(){H||fe(F)}),[F,H]);var Ie=p().useRef([]);(0,f.useEffect)((function(){var e,t;ue&&(null===(e=Ie.current[I])||void 0===e||null===(t=e.focus)||void 0===t||t.call(e))}),[ue,I]);var Oe=function(e,t,n,r){var i="/domains/search/".concat(te,"/").concat(M).concat(ge?"/"+ge:"");(0,o.Sn)({uiAlgo:"/".concat(M,"/").concat(T),fetchAlgo:i,query:de,railcarId:t,result:r?e+"#recommended":e,uiPosition:n})},Ze=p().useRef(),Le=_e===a.r.Failure,Me=(null===(t=de.trim)||void 0===t?void 0:t.call(de).length)<=1,Te=!Le&&!Me,De=!Le&&Me,Fe=I;Ae&&(Fe+=1),Q&&(Fe+=1),B&&(Fe-=1);var Re=["professional"];return B&&Re.unshift("sub-domain"),J&&Re.reverse(),(0,i.createElement)("div",{className:"domain-picker"},n&&n,H&&(0,i.createElement)("div",{className:"domain-picker__search"},(0,i.createElement)("form",{action:"",onSubmit:function(e){var t;e.preventDefault(),null==Ze||null===(t=Ze.current)||void 0===t||t.blur()}},(0,i.createElement)("div",{className:"domain-picker__search-icon"},(0,i.createElement)(s.Z,{icon:l.Z})),(0,i.createElement)(u.TextControl,{ref:function(e){Ze.current=e},hideLabelFromVision:!0,name:"search",label:ie,placeholder:ie,onChange:function(e){fe(e),R&&R(e)},onBlur:function(e){L&&L(e.currentTarget.value)},value:de,dir:"ltr"}))),Le&&(0,i.createElement)(u.Notice,{className:"domain-picker__error",status:"error",isDismissible:!1},(0,i.createElement)("p",{className:"domain-picker__error-message"},be||__("An error has occurred, please check your connection and retry.","full-site-editing")),(0,i.createElement)(u.Button,{isPrimary:!0,className:"domain-picker__error-retry-btn",onClick:Se},__("Retry","full-site-editing"))),(Te||K)&&(0,i.createElement)("div",{className:"domain-picker__body"},C&&(0,i.createElement)("div",{className:"domain-picker__aside"},(0,i.createElement)(b.Z,{selected:ge,onSelect:he})),(0,i.createElement)("div",{className:"domain-picker__suggestion-sections"},(0,i.createElement)("div",{className:"domain-picker__sugggested-items-container"},Re.map((function(e){return"sub-domain"===e?(0,i.createElement)(f.Fragment,{key:e},G&&(0,i.createElement)(x,null,__("Keep sub-domain","full-site-editing")),(0,i.createElement)(A,{key:e,groupItems:G},!K&&B&&(0,i.createElement)(S.ZP,{key:null==B?void 0:B.domain_name,domain:null==B?void 0:B.domain_name,cost:"Free",isFree:!0,isExistingSubdomain:!0,railcarId:Ne?"".concat(Ne,0):void 0,onRender:function(){return Oe(null==B?void 0:B.domain_name,"".concat(Ne,0),0,!1)},selected:(null==$?void 0:$.domain_name)===(null==B?void 0:B.domain_name),onSelect:function(){null==N||N(null==B?void 0:B.domain_name)},type:Y})||(0,i.createElement)(E.Z,{type:Y}))):(0,i.createElement)(f.Fragment,{key:e},G&&(0,i.createElement)(x,null,__("Professional domains","full-site-editing")),(0,i.createElement)(A,{key:e,groupItems:G},!K&&(null==Ee?void 0:Ee.map((function(e,t){var n,r=null!=B&&B.domain_name?t+1:t,o=t===we,a=null===(n=xe[null==e?void 0:e.domain_name])||void 0===n?void 0:n.status,u=!a||(null===m.vn||void 0===m.vn?void 0:m.vn.indexOf(a))>-1;return(0,i.createElement)(S.ZP,{ref:function(e){Ie.current[r]=e},key:e.domain_name,domain:e.domain_name,cost:e.cost,isUnavailable:!u||(null==e?void 0:e.unavailable),isLoading:(null==$?void 0:$.domain_name)===e.domain_name&&j,hstsRequired:e.hsts_required,isFree:e.is_free,isRecommended:re&&o,railcarId:Ne?"".concat(Ne).concat(r):void 0,onRender:function(){return Oe(e.domain_name,"".concat(Ne).concat(r),r,o)},onSelect:function(){P(e)},selected:(null==$?void 0:$.domain_name)===e.domain_name,type:Y})})))||(0,d.times)(Fe,(function(e){return(0,i.createElement)(E.Z,{type:Y,key:e})})),Q&&!!Ee&&(0,i.createElement)(w.Z,{onClick:Q})))}))),!ue&&I<Z&&(null==ye?void 0:ye.length)&&(null==ye?void 0:ye.length)>I&&(0,i.createElement)("div",{className:"domain-picker__show-more"},(0,i.createElement)(u.Button,{onClick:function(){return se(!0)},isLink:!0},__("View more results","full-site-editing"))))),De&&!K&&(0,i.createElement)("div",{className:"domain-picker__empty-state"},(0,i.createElement)("p",{className:"domain-picker__empty-state--text"},__("A domain name is the site address people type in their browser to visit your site.","full-site-editing")),(0,i.createElement)("div",null,(0,i.createElement)(_.q,null))))}},413:function(e,t,n){"use strict";var r=n(3258),i=n(3027),o=n(7997),a=n(5614),u=n(2779),s=n.n(u),l=n(3804);n(101);t.Z=function(e){var t=e.children,n=e.className,u=e.id,c=e.position,d=void 0===c?"bottom center":c,f=e.noArrow,p=void 0===f||f,m=(0,l.useState)(!1),g=(0,r.Z)(m,2),h=g[0],v=g[1];return(0,i.createElement)((function(e){return(0,i.createElement)(o.Button,e)}),{icon:a.Z,onClick:function(e){v(!h),e.stopPropagation()},className:"info-tooltip","data-testid":"info-tooltip"},h&&(0,i.createElement)(o.Popover,{id:u,className:s()("info-tooltip__content",n),onClose:function(){v(!1)},position:d,noArrow:p},t))}},3300:function(e,t,n){"use strict";n.d(t,{SL:function(){return i},Mm:function(){return o},F9:function(){return a},dP:function(){return u},GN:function(){return s},vn:function(){return l}});var r=n(8077),i=5,o=10,a=2,u=300,s=r.z(),l=["available","available_premium"]},1071:function(e,t,n){"use strict";n.d(t,{P:function(){return o}});var r=n(5707),i=n(3300);function o(){return(0,r.useSelect)((function(e){return e(i.GN).getDomainAvailabilities()}),[])}},5241:function(e,t,n){"use strict";n.d(t,{O:function(){return s}});var r=n(9394),i=n(3258),o=n(5707),a=n(7127),u=n(3300);function s(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1?arguments[1]:void 0,n=arguments.length>2?arguments[2]:void 0,s=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"en",l=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},c=(0,a.Z)(e,u.dP),d=(0,i.Z)(c,1),f=d[0],p=(0,o.useDispatch)(u.GN),m=p.invalidateResolutionForStoreSelector;return(0,o.useSelect)((function(e){if(f&&!(f.length<u.F9)){var i=e(u.GN),o=i.getDomainSuggestions,a=i.getDomainState,c=i.getDomainErrorMessage;return{allDomainSuggestions:o(f,(0,r.Z)({include_wordpressdotcom:!0,include_dotblogsubdomain:!1,quantity:t+1,locale:s,category_slug:n},l)),state:a(),errorMessage:c(),retryRequest:function(){m("__internalGetDomainSuggestions")}}}}),[f,n,t])}},1045:function(e,t,n){"use strict";n.d(t,{$:function(){return a}});var r=n(1766),i=n(3258),o=n(3804);function a(e,t,n){var a=o.useState(),u=(0,i.Z)(a,2),s=u[0],l=u[1],c=t&&Array.isArray(e)?[t].concat((0,r.Z)(e)):e;if(o.useEffect((function(){var e=null==c?void 0:c.some((function(e){return e.domain_name===(null==n?void 0:n.domain_name)}));null!=c&&c.length&&!e&&l(n)}),[n,c]),!(null==c?void 0:c.some((function(e){return(null==e?void 0:e.domain_name)===(null==s?void 0:s.domain_name)}))))return s}},3446:function(e,t,n){"use strict";function r(e){if(e)return{domain_name:e,relevance:1,supports_privacy:!0,vendor:"",cost:"",product_id:0,product_slug:"",raw_price:0,currency_code:"",unavailable:!1}}function i(e){return void 0!==e.normalize&&!!e.normalize("NFD").replace(/[\u0300-\u036f]/g,"").match(/[a-z0-9-.\s]/i)}function o(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return e.isSignup&&!e.isDomainOnly?"variation4_front":e.isPremium?"variation8_front":"variation2_front"}n.d(t,{nf:function(){return r},Qi:function(){return i},iY:function(){return o}})},3759:function(e,t,n){"use strict";n.d(t,{X:function(){return i}});var r={AED:{symbol:"د.إ.‏",grouping:",",decimal:".",precision:2},AFN:{symbol:"؋",grouping:",",decimal:".",precision:2},ALL:{symbol:"Lek",grouping:".",decimal:",",precision:2},AMD:{symbol:"֏",grouping:",",decimal:".",precision:2},ANG:{symbol:"ƒ",grouping:",",decimal:".",precision:2},AOA:{symbol:"Kz",grouping:",",decimal:".",precision:2},ARS:{symbol:"$",grouping:".",decimal:",",precision:2},AUD:{symbol:"A$",grouping:",",decimal:".",precision:2},AWG:{symbol:"ƒ",grouping:",",decimal:".",precision:2},AZN:{symbol:"₼",grouping:" ",decimal:",",precision:2},BAM:{symbol:"КМ",grouping:".",decimal:",",precision:2},BBD:{symbol:"Bds$",grouping:",",decimal:".",precision:2},BDT:{symbol:"৳",grouping:",",decimal:".",precision:0},BGN:{symbol:"лв.",grouping:" ",decimal:",",precision:2},BHD:{symbol:"د.ب.‏",grouping:",",decimal:".",precision:3},BIF:{symbol:"FBu",grouping:",",decimal:".",precision:0},BMD:{symbol:"$",grouping:",",decimal:".",precision:2},BND:{symbol:"$",grouping:".",decimal:",",precision:0},BOB:{symbol:"Bs",grouping:".",decimal:",",precision:2},BRL:{symbol:"R$",grouping:".",decimal:",",precision:2},BSD:{symbol:"$",grouping:",",decimal:".",precision:2},BTC:{symbol:"Ƀ",grouping:",",decimal:".",precision:2},BTN:{symbol:"Nu.",grouping:",",decimal:".",precision:1},BWP:{symbol:"P",grouping:",",decimal:".",precision:2},BYR:{symbol:"р.",grouping:" ",decimal:",",precision:2},BZD:{symbol:"BZ$",grouping:",",decimal:".",precision:2},CAD:{symbol:"C$",grouping:",",decimal:".",precision:2},CDF:{symbol:"FC",grouping:",",decimal:".",precision:2},CHF:{symbol:"CHF",grouping:"'",decimal:".",precision:2},CLP:{symbol:"$",grouping:".",decimal:",",precision:2},CNY:{symbol:"¥",grouping:",",decimal:".",precision:2},COP:{symbol:"$",grouping:".",decimal:",",precision:2},CRC:{symbol:"₡",grouping:".",decimal:",",precision:2},CUC:{symbol:"CUC",grouping:",",decimal:".",precision:2},CUP:{symbol:"$MN",grouping:",",decimal:".",precision:2},CVE:{symbol:"$",grouping:",",decimal:".",precision:2},CZK:{symbol:"Kč",grouping:" ",decimal:",",precision:2},DJF:{symbol:"Fdj",grouping:",",decimal:".",precision:0},DKK:{symbol:"kr.",grouping:"",decimal:",",precision:2},DOP:{symbol:"RD$",grouping:",",decimal:".",precision:2},DZD:{symbol:"د.ج.‏",grouping:",",decimal:".",precision:2},EGP:{symbol:"ج.م.‏",grouping:",",decimal:".",precision:2},ERN:{symbol:"Nfk",grouping:",",decimal:".",precision:2},ETB:{symbol:"ETB",grouping:",",decimal:".",precision:2},EUR:{symbol:"€",grouping:".",decimal:",",precision:2},FJD:{symbol:"FJ$",grouping:",",decimal:".",precision:2},FKP:{symbol:"£",grouping:",",decimal:".",precision:2},GBP:{symbol:"£",grouping:",",decimal:".",precision:2},GEL:{symbol:"Lari",grouping:" ",decimal:",",precision:2},GHS:{symbol:"₵",grouping:",",decimal:".",precision:2},GIP:{symbol:"£",grouping:",",decimal:".",precision:2},GMD:{symbol:"D",grouping:",",decimal:".",precision:2},GNF:{symbol:"FG",grouping:",",decimal:".",precision:0},GTQ:{symbol:"Q",grouping:",",decimal:".",precision:2},GYD:{symbol:"G$",grouping:",",decimal:".",precision:2},HKD:{symbol:"HK$",grouping:",",decimal:".",precision:2},HNL:{symbol:"L.",grouping:",",decimal:".",precision:2},HRK:{symbol:"kn",grouping:".",decimal:",",precision:2},HTG:{symbol:"G",grouping:",",decimal:".",precision:2},HUF:{symbol:"Ft",grouping:".",decimal:",",precision:0},IDR:{symbol:"Rp",grouping:".",decimal:",",precision:0},ILS:{symbol:"₪",grouping:",",decimal:".",precision:2},INR:{symbol:"₹",grouping:",",decimal:".",precision:2},IQD:{symbol:"د.ع.‏",grouping:",",decimal:".",precision:2},IRR:{symbol:"﷼",grouping:",",decimal:"/",precision:2},ISK:{symbol:"kr.",grouping:".",decimal:",",precision:0},JMD:{symbol:"J$",grouping:",",decimal:".",precision:2},JOD:{symbol:"د.ا.‏",grouping:",",decimal:".",precision:3},JPY:{symbol:"¥",grouping:",",decimal:".",precision:0},KES:{symbol:"S",grouping:",",decimal:".",precision:2},KGS:{symbol:"сом",grouping:" ",decimal:"-",precision:2},KHR:{symbol:"៛",grouping:",",decimal:".",precision:0},KMF:{symbol:"CF",grouping:",",decimal:".",precision:2},KPW:{symbol:"₩",grouping:",",decimal:".",precision:0},KRW:{symbol:"₩",grouping:",",decimal:".",precision:0},KWD:{symbol:"د.ك.‏",grouping:",",decimal:".",precision:3},KYD:{symbol:"$",grouping:",",decimal:".",precision:2},KZT:{symbol:"₸",grouping:" ",decimal:"-",precision:2},LAK:{symbol:"₭",grouping:",",decimal:".",precision:0},LBP:{symbol:"ل.ل.‏",grouping:",",decimal:".",precision:2},LKR:{symbol:"₨",grouping:",",decimal:".",precision:0},LRD:{symbol:"L$",grouping:",",decimal:".",precision:2},LSL:{symbol:"M",grouping:",",decimal:".",precision:2},LYD:{symbol:"د.ل.‏",grouping:",",decimal:".",precision:3},MAD:{symbol:"د.م.‏",grouping:",",decimal:".",precision:2},MDL:{symbol:"lei",grouping:",",decimal:".",precision:2},MGA:{symbol:"Ar",grouping:",",decimal:".",precision:0},MKD:{symbol:"ден.",grouping:".",decimal:",",precision:2},MMK:{symbol:"K",grouping:",",decimal:".",precision:2},MNT:{symbol:"₮",grouping:" ",decimal:",",precision:2},MOP:{symbol:"MOP$",grouping:",",decimal:".",precision:2},MRO:{symbol:"UM",grouping:",",decimal:".",precision:2},MTL:{symbol:"₤",grouping:",",decimal:".",precision:2},MUR:{symbol:"₨",grouping:",",decimal:".",precision:2},MVR:{symbol:"MVR",grouping:",",decimal:".",precision:1},MWK:{symbol:"MK",grouping:",",decimal:".",precision:2},MXN:{symbol:"MX$",grouping:",",decimal:".",precision:2},MYR:{symbol:"RM",grouping:",",decimal:".",precision:2},MZN:{symbol:"MT",grouping:",",decimal:".",precision:0},NAD:{symbol:"N$",grouping:",",decimal:".",precision:2},NGN:{symbol:"₦",grouping:",",decimal:".",precision:2},NIO:{symbol:"C$",grouping:",",decimal:".",precision:2},NOK:{symbol:"kr",grouping:" ",decimal:",",precision:2},NPR:{symbol:"₨",grouping:",",decimal:".",precision:2},NZD:{symbol:"NZ$",grouping:",",decimal:".",precision:2},OMR:{symbol:"﷼",grouping:",",decimal:".",precision:3},PAB:{symbol:"B/.",grouping:",",decimal:".",precision:2},PEN:{symbol:"S/.",grouping:",",decimal:".",precision:2},PGK:{symbol:"K",grouping:",",decimal:".",precision:2},PHP:{symbol:"₱",grouping:",",decimal:".",precision:2},PKR:{symbol:"₨",grouping:",",decimal:".",precision:2},PLN:{symbol:"zł",grouping:" ",decimal:",",precision:2},PYG:{symbol:"₲",grouping:".",decimal:",",precision:2},QAR:{symbol:"﷼",grouping:",",decimal:".",precision:2},RON:{symbol:"lei",grouping:".",decimal:",",precision:2},RSD:{symbol:"Дин.",grouping:".",decimal:",",precision:2},RUB:{symbol:"₽",grouping:" ",decimal:",",precision:2},RWF:{symbol:"RWF",grouping:" ",decimal:",",precision:2},SAR:{symbol:"﷼",grouping:",",decimal:".",precision:2},SBD:{symbol:"S$",grouping:",",decimal:".",precision:2},SCR:{symbol:"₨",grouping:",",decimal:".",precision:2},SDD:{symbol:"LSd",grouping:",",decimal:".",precision:2},SDG:{symbol:"£‏",grouping:",",decimal:".",precision:2},SEK:{symbol:"kr",grouping:",",decimal:".",precision:2},SGD:{symbol:"S$",grouping:",",decimal:".",precision:2},SHP:{symbol:"£",grouping:",",decimal:".",precision:2},SLL:{symbol:"Le",grouping:",",decimal:".",precision:2},SOS:{symbol:"S",grouping:",",decimal:".",precision:2},SRD:{symbol:"$",grouping:",",decimal:".",precision:2},STD:{symbol:"Db",grouping:",",decimal:".",precision:2},SVC:{symbol:"₡",grouping:",",decimal:".",precision:2},SYP:{symbol:"£",grouping:",",decimal:".",precision:2},SZL:{symbol:"E",grouping:",",decimal:".",precision:2},THB:{symbol:"฿",grouping:",",decimal:".",precision:2},TJS:{symbol:"TJS",grouping:" ",decimal:";",precision:2},TMT:{symbol:"m",grouping:" ",decimal:",",precision:0},TND:{symbol:"د.ت.‏",grouping:",",decimal:".",precision:3},TOP:{symbol:"T$",grouping:",",decimal:".",precision:2},TRY:{symbol:"TL",grouping:".",decimal:",",precision:2},TTD:{symbol:"TT$",grouping:",",decimal:".",precision:2},TVD:{symbol:"$T",grouping:",",decimal:".",precision:2},TWD:{symbol:"NT$",grouping:",",decimal:".",precision:2},TZS:{symbol:"TSh",grouping:",",decimal:".",precision:2},UAH:{symbol:"₴",grouping:" ",decimal:",",precision:2},UGX:{symbol:"USh",grouping:",",decimal:".",precision:2},USD:{symbol:"$",grouping:",",decimal:".",precision:2},UYU:{symbol:"$U",grouping:".",decimal:",",precision:2},UZS:{symbol:"сўм",grouping:" ",decimal:",",precision:2},VEB:{symbol:"Bs.",grouping:",",decimal:".",precision:2},VEF:{symbol:"Bs. F.",grouping:".",decimal:",",precision:2},VND:{symbol:"₫",grouping:".",decimal:",",precision:1},VUV:{symbol:"VT",grouping:",",decimal:".",precision:0},WST:{symbol:"WS$",grouping:",",decimal:".",precision:2},XAF:{symbol:"F",grouping:",",decimal:".",precision:2},XCD:{symbol:"$",grouping:",",decimal:".",precision:2},XOF:{symbol:"F",grouping:" ",decimal:",",precision:2},XPF:{symbol:"F",grouping:",",decimal:".",precision:2},YER:{symbol:"﷼",grouping:",",decimal:".",precision:2},ZAR:{symbol:"R",grouping:" ",decimal:",",precision:2},ZMW:{symbol:"ZK",grouping:",",decimal:".",precision:2},WON:{symbol:"₩",grouping:",",decimal:".",precision:2}};function i(e){return r[e]||{symbol:"$",grouping:",",decimal:".",precision:2}}},1621:function(e,t,n){"use strict";n.d(t,{ZP:function(){return a}});var r=n(9394),i=n(1481),o=n(3759);function a(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},a=(0,o.X)(t);if(!a||isNaN(e))return null;var s=(0,r.Z)((0,r.Z)({},a),n),l=s.decimal,c=s.grouping,d=s.precision,f=s.symbol,p=e<0?"-":"",m=(0,i.Y4)(Math.abs(e),{decimals:d,thousandsSep:c,decPoint:l});return n.stripZeros&&(m=u(m,l)),"".concat(p).concat(f).concat(m)}function u(e,t){var n=new RegExp("\\".concat(t,"0+$"));return e.replace(n,"")}},914:function(e,t,n){"use strict";var r=n(1766),i=n(1119),o=n(8049),a=n.n(o),u=n(7010),s=n(9830),l=n(7839),c=n.n(l),d=n(5079),f=n.n(d),p=n(2699),m=n(6668),g=n(3),h=a()("i18n-calypso"),v="number_format_decimals",y="number_format_thousands_sep",b="messages",_=[function(e){return e}],S={};function E(){P.throwErrors&&"undefined"!=typeof window&&window.console&&window.console.warn&&window.console.warn.apply(window.console,arguments)}function w(e){return Array.prototype.slice.call(e)}function A(e){var t=e[0];("string"!=typeof t||e.length>3||e.length>2&&"object"==typeof e[1]&&"object"==typeof e[2])&&E("Deprecated Invocation: `translate()` accepts ( string, [string], [object] ). These arguments passed:",w(e),". See https://github.com/Automattic/i18n-calypso#translate-method"),2===e.length&&"string"==typeof t&&"string"==typeof e[1]&&E("Invalid Invocation: `translate()` requires an options object for plural translations, but passed:",w(e));for(var n={},r=0;r<e.length;r++)"object"==typeof e[r]&&(n=e[r]);if("string"==typeof t?n.original=t:"object"==typeof n.original&&(n.plural=n.original.plural,n.count=n.original.count,n.original=n.original.single),"string"==typeof e[1]&&(n.plural=e[1]),void 0===n.original)throw new Error("Translate called without a `string` value as first argument.");return n}function x(e,t){return e.dcnpgettext(b,t.context,t.original,t.plural,t.count)}function C(e,t){for(var n=_.length-1;n>=0;n--){var r=_[n](Object.assign({},t)),i=r.context?r.context+""+r.original:r.original;if(e.state.locale[i])return x(e.state.tannin,r)}return null}function P(){if(!(this instanceof P))return new P;this.defaultLocaleSlug="en",this.defaultPluralForms=function(e){return 1===e?0:1},this.state={numberFormatSettings:{},tannin:void 0,locale:void 0,localeSlug:void 0,localeVariant:void 0,textDirection:void 0,translations:c()({max:100})},this.componentUpdateHooks=[],this.translateHooks=[],this.stateObserver=new p.EventEmitter,this.stateObserver.setMaxListeners(0),this.configure()}P.throwErrors=!1,P.prototype.on=function(){var e;(e=this.stateObserver).on.apply(e,arguments)},P.prototype.off=function(){var e;(e=this.stateObserver).off.apply(e,arguments)},P.prototype.emit=function(){var e;(e=this.stateObserver).emit.apply(e,arguments)},P.prototype.numberFormat=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n="number"==typeof t?t:t.decimals||0,r=t.decPoint||this.state.numberFormatSettings.decimal_point||".",i=t.thousandsSep||this.state.numberFormatSettings.thousands_sep||",";return(0,g.Z)(e,n,r,i)},P.prototype.configure=function(e){Object.assign(this,e||{}),this.setLocale()},P.prototype.setLocale=function(e){var t,n,r;if(e&&e[""]&&e[""]["key-hash"]){var o=e[""]["key-hash"],a=function(e,t){var n=!1===t?"":String(t);if(void 0!==S[n+e])return S[n+e];var r=f()().update(e).digest("hex");return S[n+e]=t?r.substr(0,t):r},u=function(e){return function(t){return t.context?(t.original=a(t.context+String.fromCharCode(4)+t.original,e),delete t.context):t.original=a(t.original,e),t}};if("sha1"===o.substr(0,4))if(4===o.length)_.push(u(!1));else{var l=o.substr(5).indexOf("-");if(l<0){var c=Number(o.substr(5));_.push(u(c))}else for(var d=Number(o.substr(5,l)),p=Number(o.substr(6+l)),m=d;m<=p;m++)_.push(u(m))}}if(e&&e[""].localeSlug)if(e[""].localeSlug===this.state.localeSlug){if(e===this.state.locale)return;Object.assign(this.state.locale,e)}else this.state.locale=Object.assign({},e);else this.state.locale={"":{localeSlug:this.defaultLocaleSlug,plural_forms:this.defaultPluralForms}};this.state.localeSlug=this.state.locale[""].localeSlug,this.state.localeVariant=this.state.locale[""].localeVariant,this.state.textDirection=(null===(t=this.state.locale["text directionltr"])||void 0===t?void 0:t[0])||(null===(n=this.state.locale[""])||void 0===n||null===(r=n.momentjs_locale)||void 0===r?void 0:r.textDirection),this.state.tannin=new s.Z((0,i.Z)({},b,this.state.locale)),this.state.numberFormatSettings.decimal_point=x(this.state.tannin,A([v])),this.state.numberFormatSettings.thousands_sep=x(this.state.tannin,A([y])),this.state.numberFormatSettings.decimal_point===v&&(this.state.numberFormatSettings.decimal_point="."),this.state.numberFormatSettings.thousands_sep===y&&(this.state.numberFormatSettings.thousands_sep=","),this.stateObserver.emit("change")},P.prototype.getLocale=function(){return this.state.locale},P.prototype.getLocaleSlug=function(){return this.state.localeSlug},P.prototype.getLocaleVariant=function(){return this.state.localeVariant},P.prototype.isRtl=function(){return"rtl"===this.state.textDirection},P.prototype.addTranslations=function(e){for(var t in e)""!==t&&(this.state.tannin.data.messages[t]=e[t]);this.stateObserver.emit("change")},P.prototype.hasTranslation=function(){return!!C(this,A(arguments))},P.prototype.translate=function(){var e=A(arguments),t=C(this,e);if(t||(t=x(this.state.tannin,e)),e.args){var n=Array.isArray(e.args)?e.args.slice(0):[e.args];n.unshift(t);try{t=m.Z.apply(void 0,(0,r.Z)(n))}catch(o){if(!window||!window.console)return;var i=this.throwErrors?"error":"warn";"string"!=typeof o?window.console[i](o):window.console[i]("i18n sprintf error:",n)}}return e.components&&(t=(0,u.Z)({mixedString:t,components:e.components,throwErrors:this.throwErrors})),this.translateHooks.forEach((function(n){t=n(t,e)})),t},P.prototype.reRenderTranslations=function(){h("Re-rendering all translations due to external request"),this.stateObserver.emit("change")},P.prototype.registerComponentUpdateHook=function(e){this.componentUpdateHooks.push(e)},P.prototype.registerTranslateHook=function(e){this.translateHooks.push(e)},t.Z=P},1481:function(e,t,n){"use strict";n.d(t,{Y4:function(){return s},Iu:function(){return l}});var r=n(914),i=n(3493),o=n(975),a=n(8373),u=new r.Z,s=u.numberFormat.bind(u),l=u.translate.bind(u),c=(u.configure.bind(u),u.setLocale.bind(u),u.getLocale.bind(u),u.getLocaleSlug.bind(u),u.getLocaleVariant.bind(u),u.isRtl.bind(u),u.addTranslations.bind(u),u.reRenderTranslations.bind(u),u.registerComponentUpdateHook.bind(u),u.registerTranslateHook.bind(u),u.state,u.stateObserver,u.on.bind(u),u.off.bind(u),u.emit.bind(u),(0,i.Z)(u),(0,o.Z)(u),(0,a.Z)(u));c.useRtl,c.withRtl},3493:function(e,t,n){"use strict";n.d(t,{Z:function(){return p}});var r=n(9394),i=n(4659),o=n(4730),a=n(3989),u=n(5663),s=n(9049),l=n(1119),c=n(3027),d=n(3804),f=n.n(d);function p(e){var t={numberFormat:e.numberFormat.bind(e),translate:e.translate.bind(e)};return function(n){var d,p,m=n.displayName||n.name||"";return p=d=function(d){(0,u.Z)(p,d);var f=(0,s.Z)(p);function p(){var e;(0,i.Z)(this,p);for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];return e=f.call.apply(f,[this].concat(n)),(0,l.Z)((0,a.Z)(e),"boundForceUpdate",e.forceUpdate.bind((0,a.Z)(e))),e}return(0,o.Z)(p,[{key:"componentDidMount",value:function(){e.on("change",this.boundForceUpdate)}},{key:"componentWillUnmount",value:function(){e.off("change",this.boundForceUpdate)}},{key:"render",value:function(){var i=(0,r.Z)((0,r.Z)({locale:e.getLocaleSlug()},this.props),t);return(0,c.createElement)(n,i)}}]),p}(f().Component),(0,l.Z)(d,"displayName","Localized("+m+")"),p}}},3:function(e,t,n){"use strict";function r(e,t,n,r){e=(e+"").replace(/[^0-9+\-Ee.]/g,"");var i=isFinite(+e)?+e:0,o=isFinite(+t)?Math.abs(t):0,a=void 0===r?",":r,u=void 0===n?".":n,s="";return(s=(o?
20
  /*
21
  * Exposes number format capability
22
  *
editor-site-launch/dist/gutenboarding-launch.rtl.css CHANGED
@@ -1 +1 @@
1
- .nux-launch-step__header{margin:48px 0 38.4px;display:flex;justify-content:space-between;align-items:center}@media(min-width:600px){.nux-launch-step__header{margin:64px 0 51.2px}}@media(min-width:782px){.nux-launch-step__header{margin:80px 0 64px}}.nux-launch-step__header .action-buttons{display:none}@media(min-width:782px){.nux-launch-step__header .action-buttons{display:block}}.nux-launch-step__body{margin:0 0 48px}@media(min-width:600px){.nux-launch-step__body{margin:0 0 64px}}@media(min-width:782px){.nux-launch-step__body{margin:0 0 80px}}.nux-launch-step__footer{margin-right:-24px;margin-left:-24px;position:sticky;bottom:0}@media(min-width:600px){.nux-launch-step__footer{margin-right:-48px;margin-left:-48px}}@media(min-width:782px){.nux-launch-step__footer{margin-right:-96px;margin-left:-96px}}.nux-launch-step__footer .action-buttons{position:relative}@media(min-width:782px){.nux-launch-step__footer{display:none}}.nux-launch-step__input{position:relative;margin-bottom:20px}.nux-launch-step__input input[type=text].components-text-control__input{padding:6px 16px 6px 40px;height:38px;background:#f0f0f0;border:none}.nux-launch-step__input input[type=text].components-text-control__input::placeholder{color:var(--studio-black)}.nux-launch-step__input input[type=text].components-text-control__input:focus{box-shadow:0 0 0 2px var(--studio-blue-30);background:var(--studio-white)}.nux-launch-step__input svg{position:absolute;top:6px;left:8px}.nux-launch-step__input-hint{display:flex;align-items:center;color:var(--studio-gray-50);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:14px;line-height:14px}.nux-launch-step__input-hint>.components-tip svg{margin-left:10px}.onboarding-title{font-family:Recoleta,"Noto Serif",Georgia,Times New Roman,Times,serif;font-weight:400;letter-spacing:-.4px;font-size:32px;line-height:40px;color:var(--mainColor);margin:0}@media(min-width:480px){.onboarding-title{font-family:Recoleta,"Noto Serif",Georgia,Times New Roman,Times,serif;font-weight:400;letter-spacing:-.4px;font-size:36px;line-height:40px}}@media(min-width:1080px){.onboarding-title{font-family:Recoleta,"Noto Serif",Georgia,Times New Roman,Times,serif;font-weight:400;letter-spacing:-.4px;font-size:42px;line-height:57px}}.onboarding-subtitle{font-size:16px;line-height:24px;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:400;letter-spacing:.2px;color:var(--studio-gray-60);margin:5px 0 0}@media(min-width:600px){.onboarding-subtitle{margin-top:0}}.action-buttons{padding:0 20px;border-top:1px solid #e0e0e0;background-color:#fff;position:fixed;bottom:0;left:0;right:0;height:60px;justify-content:space-between;display:flex;align-items:center;z-index:30}@media(min-width:600px){.action-buttons:not(.is-sticky){padding:0;margin-right:20px;position:static;border:none}.action-buttons:not(.is-sticky) .action_buttons__button{margin-right:20px}.action-buttons:not(.is-sticky) .action_buttons__button:first-child{margin-right:0}}.action-buttons.no-sticky{padding:0;margin-right:20px;position:static;border:none}.action-buttons.no-sticky .action_buttons__button{margin-right:20px}.action-buttons.no-sticky .action_buttons__button:first-child{margin-right:0}button.action_buttons__button.components-button{font-size:.875rem;line-height:17px;height:42px;min-width:120px;justify-content:center}button.action_buttons__button.components-button:active,button.action_buttons__button.components-button:focus,button.action_buttons__button.components-button:hover{outline-color:transparent}button.action_buttons__button.components-button:disabled{opacity:.5}button.action_buttons__button.components-button.action-buttons__back{color:var(--studio-gray-50);white-space:nowrap;min-width:0;height:auto}button.action_buttons__button.components-button.action-buttons__next{color:var(--studio-white);box-shadow:0 0 0 1px var(--studio-blue-40)}button.action_buttons__button.components-button.action-buttons__skip{color:var(--studio-gray-50);box-shadow:inset 0 0 0 1px var(--studio-gray-50)}button.action_buttons__button.components-button.action-buttons__skip:active,button.action_buttons__button.components-button.action-buttons__skip:hover{color:var(--studio-gray-60);box-shadow:inset 0 0 0 1px var(--studio-gray-60)}button.action_buttons__button.components-button.action-buttons__skip:focus{color:var(--studio-gray-60);box-shadow:inset 0 0 0 1px #fff,0 0 0 1.5px var(--highlightColor)}button.action_buttons__button.components-button.action-buttons__arrow{justify-content:flex-start;text-decoration:underline;font-weight:500;color:var(--mainColor);padding:0;margin-left:0}@media(min-width:782px){button.action_buttons__button.components-button.action-buttons__arrow{justify-content:flex-end}}button.action_buttons__button.components-button.action-buttons__arrow svg{margin:0 -5px -4px}@media(min-width:600px){button.action_buttons__button.components-button{min-width:160px}}: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;--midnight-blue-0:#e1eef5;--midnight-blue-5:#b3ddf5;--midnight-blue-10:#6bbff2;--midnight-blue-20:#30a2f0;--midnight-blue-30:#007fde;--midnight-blue-40:#006ac0;--midnight-blue-50:#00549d;--midnight-blue-60:#00417d;--midnight-blue-70:#003567;--midnight-blue-80:#00284f;--midnight-blue-90:#001a33;--midnight-blue-100:#000e1c;--midnight-blue:#00549d;--midnight-blue-0-rgb:225,238,245;--midnight-blue-5-rgb:179,221,245;--midnight-blue-10-rgb:107,191,242;--midnight-blue-20-rgb:48,162,240;--midnight-blue-30-rgb:0,127,222;--midnight-blue-40-rgb:0,106,192;--midnight-blue-50-rgb:0,84,157;--midnight-blue-60-rgb:0,65,125;--midnight-blue-70-rgb:0,53,103;--midnight-blue-80-rgb:0,40,79;--midnight-blue-90-rgb:0,26,51;--midnight-blue-100-rgb:0,14,28;--midnight-blue-rgb:0,84,157;--color-primary:var(--theme-highlight-color);--color-primary-rgb:var(--theme-highlight-color-rgb);--color-primary-dark:var(--midnight-blue-70);--color-primary-dark-rgb:var(--midnight-blue-70-rgb);--color-primary-light:var(--midnight-blue-30);--color-primary-light-rgb:var(--midnight-blue-30-rgb);--color-primary-0:var(--midnight-blue-0);--color-primary-0-rgb:var(--midnight-blue-0-rgb);--color-primary-5:var(--midnight-blue-5);--color-primary-5-rgb:var(--midnight-blue-5-rgb);--color-primary-10:var(--midnight-blue-10);--color-primary-10-rgb:var(--midnight-blue-10-rgb);--color-primary-20:var(--midnight-blue-20);--color-primary-20-rgb:var(--midnight-blue-20-rgb);--color-primary-30:var(--midnight-blue-30);--color-primary-30-rgb:var(--midnight-blue-30-rgb);--color-primary-40:var(--midnight-blue-40);--color-primary-40-rgb:var(--midnight-blue-40-rgb);--color-primary-50:var(--midnight-blue-50);--color-primary-50-rgb:var(--midnight-blue-50-rgb);--color-primary-60:var(--midnight-blue-60);--color-primary-60-rgb:var(--midnight-blue-60-rgb);--color-primary-70:var(--midnight-blue-70);--color-primary-70-rgb:var(--midnight-blue-70-rgb);--color-primary-80:var(--midnight-blue-80);--color-primary-80-rgb:var(--midnight-blue-80-rgb);--color-primary-90:var(--midnight-blue-90);--color-primary-90-rgb:var(--midnight-blue-90-rgb);--color-primary-100:var(--midnight-blue-100);--color-primary-100-rgb:var(--midnight-blue-100-rgb);--color-accent:var(--theme-highlight-color);--color-accent-rgb:var(--theme-highlight-color-rgb);--color-accent-dark:var(--midnight-blue-70);--color-accent-dark-rgb:var(--midnight-blue-70-rgb);--color-accent-light:var(--midnight-blue-30);--color-accent-light-rgb:var(--midnight-blue-30-rgb);--color-accent-0:var(--midnight-blue-0);--color-accent-0-rgb:var(--midnight-blue-0-rgb);--color-accent-5:var(--midnight-blue-5);--color-accent-5-rgb:var(--midnight-blue-5-rgb);--color-accent-10:var(--midnight-blue-10);--color-accent-10-rgb:var(--midnight-blue-10-rgb);--color-accent-20:var(--midnight-blue-20);--color-accent-20-rgb:var(--midnight-blue-20-rgb);--color-accent-30:var(--midnight-blue-30);--color-accent-30-rgb:var(--midnight-blue-30-rgb);--color-accent-40:var(--midnight-blue-40);--color-accent-40-rgb:var(--midnight-blue-40-rgb);--color-accent-50:var(--midnight-blue-50);--color-accent-50-rgb:var(--midnight-blue-50-rgb);--color-accent-60:var(--midnight-blue-60);--color-accent-60-rgb:var(--midnight-blue-60-rgb);--color-accent-70:var(--midnight-blue-70);--color-accent-70-rgb:var(--midnight-blue-70-rgb);--color-accent-80:var(--midnight-blue-80);--color-accent-80-rgb:var(--midnight-blue-80-rgb);--color-accent-90:var(--midnight-blue-90);--color-accent-90-rgb:var(--midnight-blue-90-rgb);--color-accent-100:var(--midnight-blue-100);--color-accent-100-rgb:var(--midnight-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: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-jetpack-green-50);--color-sidebar-menu-selected-text-rgb:var(--studio-jetpack-green-50-rgb);--color-sidebar-menu-selected-background:var(--studio-jetpack-green-5);--color-sidebar-menu-selected-background-rgb:var(--studio-jetpack-green-5-rgb);--color-sidebar-menu-hover-text:var(--studio-gray-90);--color-sidebar-menu-hover-background:var(--studio-gray-5);--color-sidebar-menu-hover-background-rgb:var(--studio-gray-5-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)}.domain-picker__empty-state{display:flex;justify-content:center;flex-direction:column}.domain-picker__empty-state--text{max-width:320px;font-size:.875rem;margin:10px 0;color:#757575}@media(min-width:480px){.domain-picker__empty-state{flex-direction:row;align-items:center}.domain-picker__empty-state--text{margin:15px 10px}}.domain-picker__show-more{margin-top:20px;text-align:center}.domain-picker__search{position:relative;margin-bottom:20px}.domain-picker__search input[type=text].components-text-control__input{padding:6px 16px 6px 40px;height:38px;background:#f0f0f0;border:none}.domain-picker__search input[type=text].components-text-control__input::placeholder{color:var(--studio-black)}.domain-picker__search input[type=text].components-text-control__input:focus{box-shadow:0 0 0 2px var(--studio-blue-30);background:var(--studio-white)}.domain-picker__search svg{position:absolute;top:6px;left:8px}.domain-picker__suggestion-item-group{flex-grow:1}.domain-picker__suggestion-sections{flex:1}.domain-picker__suggestion-group-label{margin:1.5em 0 .5em;text-transform:uppercase;color:var(--studio-gray-40);font-size:.75rem;letter-spacing:1px;font-weight:700}.domain-picker__suggestion-item{font-size:.875rem;line-height:17px;display:flex;justify-content:space-between;align-items:center;width:100%;min-height:58px;background:var(--studio-white);border:1px solid var(--studio-gray-5);padding:10px 14px;position:relative;text-align:right;cursor:pointer;outline-color:#117ac9}.domain-picker__suggestion-item.type-radio{outline:none}.domain-picker__suggestion-item.type-individual-item{min-height:64px;border-width:2px}.domain-picker__suggestion-item.type-individual-item.is-selected,.domain-picker__suggestion-item.type-individual-item:hover{border-color:#117ac9}.domain-picker__suggestion-item.type-link{display:flex;flex-direction:column;align-items:flex-start}@media(min-width:782px){.domain-picker__suggestion-item.type-link{flex-direction:row;align-items:center}}.domain-picker__suggestion-item.placeholder{cursor:default}.domain-picker__sugggested-items-container .domain-picker__suggestion-item.type-individual-item,.domain-picker__sugggested-items-container .domain-picker__suggestion-item:first-child{border-top-right-radius:5px;border-top-left-radius:5px}.domain-picker__sugggested-items-container .domain-picker__suggestion-item.type-individual-item,.domain-picker__sugggested-items-container .domain-picker__suggestion-item:last-child{border-bottom-right-radius:5px;border-bottom-left-radius:5px}.domain-picker__suggestion-item+.domain-picker__suggestion-item{margin-top:-1px}.domain-picker__suggestion-item+.domain-picker__suggestion-item.type-individual-item{margin-top:12px}.domain-picker__suggestion-item.is-unavailable{color:var(--studio-gray-40);cursor:default}.domain-picker__suggestion-item:nth-child(8){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:40ms}.domain-picker__suggestion-item:nth-child(9){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:80ms}.domain-picker__suggestion-item:nth-child(10){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:.12s}.domain-picker__suggestion-item:nth-child(11){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:.16s}.domain-picker__suggestion-item:nth-child(12){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:.2s}.domain-picker__suggestion-item:nth-child(13){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:.24s}.domain-picker__suggestion-item:nth-child(14){transform:translateY(20px);opacity:0;animation:domain-picker-item-slide-up .1s ease-in forwards;animation-delay:.28s}@keyframes domain-picker-item-slide-up{to{transform:translateY(0);opacity:1}}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;box-shadow:0 0 0 transparent;transition:box-shadow .1s linear;border-radius:2px;font-size:16px;line-height:normal;border:1px solid #1e1e1e;transition:none;border-radius:50%;width:24px;height:24px;width:16px;height:16px;min-width:16px;padding:0;margin:1px 0 0 12px;vertical-align:middle;position:relative}@media(prefers-reduced-motion:reduce){.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle{transition-duration:0s;transition-delay:0s}}@media(min-width:600px){.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle{font-size:13px;line-height:normal}}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color)}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle:-ms-input-placeholder{color:rgba(30,30,30,.62)}.is-dark-theme .domain-picker__suggestion-item .domain-picker__suggestion-radio-circle::-webkit-input-placeholder{color:hsla(0,0%,100%,.65)}.is-dark-theme .domain-picker__suggestion-item .domain-picker__suggestion-radio-circle::-moz-placeholder{opacity:1;color:hsla(0,0%,100%,.65)}.is-dark-theme .domain-picker__suggestion-item .domain-picker__suggestion-radio-circle:-ms-input-placeholder{color:hsla(0,0%,100%,.65)}@media(min-width:600px){.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle{height:20px;width:20px}}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle:checked:before{box-sizing:inherit;width:8px;height:8px;transform:translate(-7px,7px);margin:0;background-color:#fff;border:4px solid #fff}@media(min-width:600px){.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle:checked:before{transform:translate(-5px,5px)}}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle:focus{box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle.is-checked{border-color:var(--studio-blue-30);background-color:var(--studio-blue-30)}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle.is-checked:before{display:none}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle.is-checked:after{content:"";width:100%;height:100%;border:2px solid #fff;border-radius:50%;position:absolute;margin:0;background:transparent}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle.is-checked:focus,.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle:not(.is-unavailable):focus,.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle:not(.is-unavailable):hover{border-color:var(--studio-blue-30);box-shadow:0 0 0 1px var(--studio-blue-30)}.domain-picker__suggestion-item .domain-picker__suggestion-radio-circle.is-unavailable{border-color:var(--studio-gray-40)}.domain-picker__suggestion-item:focus .domain-picker__suggestion-radio-circle{border-color:var(--studio-blue-30);box-shadow:0 0 0 1px var(--studio-blue-30)}.domain-picker__suggestion-item .components-spinner{margin:1px 0 0 10px}.domain-picker__suggestion-item-name{flex-grow:1;flex-basis:2px;letter-spacing:.4px;margin-left:10px;word-break:break-all}@media(min-width:782px){.domain-picker__suggestion-item-name{margin-left:24px}}.domain-picker__suggestion-item-name .domain-picker__suggestion-item-name-inner{display:flex;align-items:center;flex-wrap:wrap}.domain-picker__suggestion-item-name .domain-picker__sub-domain{word-break:break-word}.domain-picker__suggestion-item-name.placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;max-width:30%;margin-left:auto}.domain-picker__suggestion-item-name.placeholder:after{content:" "}.domain-picker__suggestion-item.type-individual-item.is-selected .domain-picker__suggestion-item-name{color:#117ac9}.domain-picker__domain-tld{color:var(--studio-blue-40);word-break:keep-all;margin-left:5px}.domain-picker__suggestion-item.is-unavailable .domain-picker__domain-tld{color:var(--studio-gray-40)}.domain-picker__domain-wrapper{direction:rtl}.domain-picker__domain-wrapper.with-margin{margin-left:10px}.domain-picker__domain-wrapper.with-bold-text{font-weight:500}.domain-picker__suggestion-item.type-individual-item .domain-picker__domain-tld{font-weight:500;color:unset}.domain-picker__info-tooltip{margin-left:10px;cursor:pointer;z-index:100001}.domain-picker__badge{display:inline-flex;border-radius:2px;padding:0 2%;white-space:nowrap;line-height:20px;height:20px;align-items:center;font-size:10px;text-transform:uppercase;vertical-align:middle;background-color:var(--studio-blue-50);color:var(--color-text-inverted);margin:2px 0}.domain-picker__suggestion-item.type-individual-item .domain-picker__badge{color:var(--studio-green-80);background-color:var(--studio-green-5);border-radius:4px;text-transform:unset;font-size:.75rem}.domain-picker__suggestion-item.type-individual-item.is-selected .domain-picker__badge{color:#0f6cb3;background-color:#ddebf8}.domain-picker__price{color:var(--studio-gray-40);text-align:left;flex-basis:0;flex-grow:1;transition:opacity .2s ease-in-out}.domain-picker__price:not(.is-paid){display:none}.domain-picker__price:not(:last-child){text-align:right}@media(min-width:600px){.domain-picker__price{flex-basis:1px}.domain-picker__price:not(.is-paid){display:inline}}.domain-picker__price.placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;min-width:64px}.domain-picker__price.placeholder:after{content:" "}.domain-picker__suggestion-item.is-free .domain-picker__price{flex-grow:.1}.domain-picker__suggestion-item.type-individual-item .domain-picker__price{display:flex;flex-direction:column-reverse}.domain-picker__suggestion-item.type-individual-item .domain-picker__price:not(.is-paid){display:block}@media(min-width:782px){.domain-picker__suggestion-item.type-individual-item .domain-picker__price{display:block}}.domain-picker__price-inclusive{color:var(--studio-green-40);display:none}@media(min-width:600px){.domain-picker__price-inclusive{display:inline}}.domain-picker__price-inclusive strong{font-weight:700}.domain-picker__price-renewal{display:none;font-size:.75rem}.domain-picker__suggestion-item.type-individual-item .domain-picker__price-inclusive{display:block;line-height:20px}.domain-picker__suggestion-item.type-individual-item .domain-picker__price-inclusive strong{font-weight:500}.domain-picker__suggestion-item.type-individual-item.is-selected .domain-picker__price-inclusive{color:#117ac9}.domain-picker__price-cost{text-decoration:line-through}.domain-picker__suggestion-item.type-individual-item.is-selected .domain-picker__price-cost{color:#117ac9;opacity:.68}.domain-picker__suggestion-item.type-button{flex-direction:column;align-items:flex-start}.domain-picker__suggestion-item.type-button .domain-picker__price.is-paid{display:flex;flex-wrap:wrap}.domain-picker__suggestion-item.type-button .domain-picker__price-inclusive{display:inline}.domain-picker__suggestion-item.type-button .domain-picker__price-inclusive:before{content:" "}.domain-picker__suggestion-item.type-button .domain-picker__price-renewal{display:inline;width:100%}@media(min-width:782px){.domain-picker__suggestion-item.type-button{flex-direction:row;align-items:center}.domain-picker__suggestion-item.type-button .domain-picker__price-inclusive{order:-1}.domain-picker__suggestion-item.type-button .domain-picker__price-inclusive:before{content:none}.domain-picker__suggestion-item.type-button .domain-picker__price-inclusive:after{content:" "}}.domain-picker__body{display:flex}@media(max-width:480px){.domain-picker__body{display:block}.domain-picker__body .domain-picker__aside{width:100%;padding:0}}.domain-picker__aside{width:220px;padding-left:30px}.domain-picker__change-subdomain-tip,.domain-picker__item-tip{font-size:.75rem;color:var(--studio-gray-40);word-break:normal}.domain-picker__error.components-notice{margin:0}.domain-picker__error .domain-picker__error-message{font-size:.875rem;line-height:17px}.domain-picker__error .domain-picker__error-retry-btn{margin-top:16px}.domain-picker__suggestion-select-button.components-button.is-secondary{justify-content:center;width:100%;min-width:140px;box-shadow:inset 0 0 0 1px var(--studio-gray-10);color:var(--mainColor)}.domain-picker__suggestion-select-button.components-button.is-secondary.is-selected,.domain-picker__suggestion-select-button.components-button.is-secondary:focus,.domain-picker__suggestion-select-button.components-button.is-secondary:hover{box-shadow:inset 0 0 0 1px var(--wp-admin-theme-color-darker-10);color:var(--wp-admin-theme-color-darker-10)}@media(min-width:782px){.domain-picker__suggestion-select-button.components-button.is-secondary{width:auto}}.domain-picker__action{margin-top:1rem;width:100%}@media(min-width:782px){.domain-picker__action{margin-top:0;width:auto}}.info-tooltip.components-button.has-icon.has-text svg{margin-left:0}.info-tooltip .components-popover__content>div{color:var(--color-neutral-50);font-size:.875rem;padding:16px;text-align:right}.info-tooltip .components-popover__content>div a{color:var(--studio-blue-40)}@media(max-width:480px){.domain-categories{margin-bottom:20px}.domain-categories .domain-categories__dropdown-button.components-button{display:block;margin-bottom:0}.domain-categories .domain-categories__item-group{display:none}.domain-categories.is-open .domain-categories__item-group{display:block}}.domain-categories__dropdown-button.components-button{width:100%;text-align:center;margin-bottom:8px;height:40px;border:1px solid var(--studio-gray-5);display:none}.domain-categories__dropdown-button.components-button>*{vertical-align:middle}.domain-categories__dropdown-button.components-button svg{margin-right:5px}@media(max-width:480px){.domain-categories__item-group{text-align:center;border:1px solid var(--studio-gray-5);margin-top:-1px}}.domain-categories__item .components-button{color:var(--studio-gray-100);width:100%;text-align:right}.domain-categories__item .components-button:focus,.domain-categories__item .components-button:hover{color:var(--studio-gray-100);box-shadow:none;font-weight:600;text-decoration:underline}.domain-categories__item.is-selected .components-button{font-weight:600;text-decoration:underline}@media(max-width:480px){.domain-categories__item .components-button{display:block;text-align:center}}html:not(.accessible-focus) .domain-categories__item .components-button:focus{box-shadow:none}.nux-launch-modal.step-plan .nux-launch-step__body,.nux-launch-modal.step-plan .plans-grid{margin-bottom:0}.nux-launch-modal.step-plan .plans-grid__details-container{position:relative;margin-right:-24px;margin-left:-24px;width:auto}@media(min-width:600px){.nux-launch-modal.step-plan .plans-grid__details-container{margin-right:-48px;margin-left:-48px}}@media(min-width:782px){.nux-launch-modal.step-plan .plans-grid__details-container{margin-right:-96px;margin-left:-96px}}@media(min-width:1440px){.nux-launch-modal.step-plan .plans-grid__details-container{margin-right:0;margin-left:0}}.plans-grid{margin-bottom:85px}@media(min-width:600px){.plans-grid{margin-bottom:0}}.plans-grid__header{margin:48px 0 38.4px;display:flex;justify-content:space-between;align-items:center}@media(min-width:600px){.plans-grid__header{margin:64px 0 51.2px}}@media(min-width:782px){.plans-grid__header{margin:80px 0 64px}}.plans-grid__toggle{margin:-24px 0 32px}@media(min-width:782px){.plans-grid__toggle{margin-bottom:40px}}.plans-grid__details{margin-top:70px}.plans-grid__details-container{padding-bottom:120px}@media(max-width:1439px){.plans-grid__details-container{overflow-x:auto;width:100%;position:absolute;right:0}}.plans-grid__details-heading .plans-ui-title{color:var(--studio-black);margin-bottom:40px;font-size:32px;line-height:40px;letter-spacing:.2px}.plans-interval-toggle{display:flex;justify-content:center}.plans-interval-toggle .segmented-control{-webkit-tap-highlight-color:transparent;background-color:#f2f2f2;border-radius:6px;height:auto;overflow:hidden}.plans-interval-toggle--monthly .segmented-control{margin-bottom:60px}@media(min-width:782px){.plans-interval-toggle--monthly .segmented-control{margin-bottom:0}}.plans-interval-toggle .segmented-control__item .segmented-control__link,.plans-interval-toggle .segmented-control__item:first-of-type .segmented-control__link,.plans-interval-toggle .segmented-control__item:last-of-type .segmented-control__link{border-radius:5px;margin:2px;padding:0}.plans-interval-toggle .segmented-control__item{margin:0}.plans-interval-toggle .segmented-control__item.segmented-control__item:not(.is-selected) .segmented-control__link{background-color:transparent;border:.5px solid transparent;box-shadow:none}.plans-interval-toggle .segmented-control__item.is-selected .segmented-control__link{background-color:var(--studio-white);border:.5px solid #f5f5f5;box-shadow:0 3px 8px rgba(0,0,0,.12),0 3px 1px rgba(0,0,0,.04)}.plans-interval-toggle .segmented-control__item.is-selected .segmented-control__link:focus,.plans-interval-toggle .segmented-control__item.is-selected .segmented-control__link:hover,.plans-interval-toggle .segmented-control__item:not(.is-selected) .segmented-control__link:focus,.plans-interval-toggle .segmented-control__item:not(.is-selected) .segmented-control__link:hover{border-color:var(--studio-gray-10)}.plans-interval-toggle .segmented-control__text{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:.875rem;font-weight:500;letter-spacing:.16px;color:var(--studio-gray-90)}.plans-interval-toggle__label{display:inline-flex;align-items:center;justify-content:center;height:32px;min-width:102px;padding:0 16px}.components-popover.plans-interval-toggle__popover--mobile{display:block}@media(min-width:782px){.components-popover.plans-interval-toggle__popover--mobile{display:none}}.components-popover.plans-interval-toggle__popover--desktop[data-y-axis=middle]{display:none}@media(min-width:782px){.components-popover.plans-interval-toggle__popover--desktop[data-y-axis=middle]{display:flex}}.components-popover.plans-interval-toggle__popover .components-popover__content{padding:8px 10px;min-width:auto;width:232px;box-sizing:border-box;background-color:var(--studio-gray-100);border-color:var(--studio-gray-100);color:var(--studio-white);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:.75rem;font-weight:400;text-align:right;white-space:normal}.components-popover.plans-interval-toggle__popover:not(.is-without-arrow):after,.components-popover.plans-interval-toggle__popover:not(.is-without-arrow):before{border-color:var(--studio-gray-100)}.components-popover.plans-interval-toggle__popover:not(.is-without-arrow)[data-y-axis=bottom]:after,.components-popover.plans-interval-toggle__popover:not(.is-without-arrow)[data-y-axis=bottom]:before,.components-popover.plans-interval-toggle__popover:not(.is-without-arrow)[data-y-axis=top]:after,.components-popover.plans-interval-toggle__popover:not(.is-without-arrow)[data-y-axis=top]:before{border-right-color:transparent;border-left-color:transparent}.components-popover.plans-interval-toggle__popover:not(.is-without-arrow)[data-y-axis=middle]:after,.components-popover.plans-interval-toggle__popover:not(.is-without-arrow)[data-y-axis=middle]:before{border-bottom-color:transparent;border-top-color:transparent}.segmented-control{display:flex;margin:0;border-radius:2px;background-color:var(--color-surface);list-style:none}.segmented-control__item{flex:1 1 auto;cursor:pointer}.segmented-control__item:first-of-type .segmented-control__link{border-top-right-radius:2px;border-bottom-right-radius:2px}.segmented-control__item:last-of-type .segmented-control__link{border-left:1px solid var(--color-neutral-10);border-top-left-radius:2px;border-bottom-left-radius:2px}.segmented-control__item.is-selected+.segmented-control__item .segmented-control__link{border-right-color:var(--color-neutral-70)}.segmented-control__link{display:block;padding:8px 12px;border:1px solid var(--color-neutral-10);border-left:none;font-size:.875rem;line-height:18px;color:var(--color-text-subtle);text-align:center;transition:color .1s linear,background-color .1s linear}.segmented-control__link:focus{color:var(--color-neutral-70);outline:none;background-color:var(--color-neutral-0)}.segmented-control__item.is-selected .segmented-control__link{border-color:var(--color-neutral-70);color:var(--color-neutral-70)}.notouch .segmented-control__link:hover{color:var(--color-neutral-70);background-color:var(--color-neutral-0)}.segmented-control__text{display:block;max-width:100%;color:inherit;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.segmented-control.is-compact .segmented-control__link{font-size:.875rem;padding:4px 8px}.segmented-control.is-primary .segmented-control__item.is-selected .segmented-control__link{border-color:var(--color-primary);background-color:var(--color-primary);color:var(--color-text-inverted)}.segmented-control.is-primary .segmented-control__item.is-selected .segmented-control__link:focus{background-color:var(--color-primary-dark);border-color:var(--color-primary-dark)}.segmented-control.is-primary .segmented-control__item.is-selected+.segmented-control__item .segmented-control__link{border-right-color:var(--color-primary)}.notouch .segmented-control.is-primary .segmented-control__link:hover,.segmented-control.is-primary .segmented-control__link:focus{background-color:var(--color-neutral-0)}.notouch .segmented-control.is-primary .segmented-control__item.is-selected .segmented-control__link:hover{background-color:var(--color-primary-light)}.plans-accordion__actions{text-align:center}.plans-accordion__plan-item-group{width:100%;display:flex;flex-direction:column}.plans-accordion__toggle-all-button.components-button.is-link{margin:22px auto;color:#757575}@media(min-width:782px){.plans-accordion__toggle-all-button.components-button.is-link{margin:32px auto}}.plans-accordion__recommend-hint{color:var(--studio-gray-40);font-size:.875rem;text-align:left;margin-bottom:16px}.plans-accordion__recommend-hint svg{fill:var(--studio-yellow-30);margin-left:8px;position:relative;top:2px}.plans-accordion__placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;display:inline-block;width:64px}.plans-accordion__placeholder:after{content:" "}.plans-accordion__placeholder--narrow{width:32px}.plans-accordion__placeholder--wide{width:96px}.plans-accordion-item{display:block;flex-grow:1;flex-basis:0;flex-direction:column}.plans-accordion-item.is-disabled{background-color:var(--studio-gray-5)}.plans-accordion-item__viewport{width:100%;height:100%;padding:20px;border:1px solid var(--studio-gray-5)}.plans-accordion-item+.plans-accordion-item .plans-accordion-item__viewport{border-top:0}@media(min-width:600px){.plans-accordion-item__viewport{padding:32px}}.plans-accordion-item:first-of-type .plans-accordion-item__viewport{border-top-right-radius:5px;border-top-left-radius:5px}.plans-accordion-item:last-of-type .plans-accordion-item__viewport{border-bottom-right-radius:5px;border-bottom-left-radius:5px}.plans-accordion-item.has-badge .plans-accordion-item__viewport{border-top-width:0;border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:5px;border-bottom-left-radius:5px}@media(min-width:600px){.plans-accordion-item.has-badge .plans-accordion-item__viewport{border-top-width:1px;border-top-right-radius:5px;border-top-left-radius:5px}}.plans-accordion-item:not(.is-open) .plans-accordion-item__viewport{padding:0}.plans-accordion-item__name{display:inline-block;font-size:1rem;line-height:1.2}@media(min-width:600px){.plans-accordion-item__name{font-size:1.5rem}}.plans-accordion-item:not(.is-open) .plans-accordion-item__name{font-size:.875rem}@media(min-width:600px){.plans-accordion-item:not(.is-open) .plans-accordion-item__name{font-size:.875rem}}.plans-accordion-item.is-primary .plans-accordion-item__name{font-size:1.25rem}@media(min-width:600px){.plans-accordion-item.is-primary .plans-accordion-item__name{font-size:1.5rem}}.plans-accordion-item__description{font-size:.875rem;color:var(--studio-gray-50);margin-top:4px;display:none}.plans-accordion-item:not(.is-open) .plans-accordion-item__description{display:none}@media(min-width:600px){.plans-accordion-item__description{display:block}}.plans-accordion-item__domain-name{font-size:.875rem}ul.plans-accordion-item__feature-item-group{margin:0;column-count:1}@media(min-width:600px){ul.plans-accordion-item__feature-item-group{column-count:2}}@media(min-width:960px){ul.plans-accordion-item__feature-item-group{column-count:3}}.plans-accordion-item__badge{border-top-right-radius:5px;border-top-left-radius:5px;margin-bottom:-1px}.plans-accordion-item__badge>span{display:block;height:24px;line-height:24px;padding:0 14px;background:#000;color:#fff;font-size:.75rem;font-weight:600;letter-spacing:.5px;text-align:center;text-transform:uppercase}@media(min-width:600px){.plans-accordion-item__badge{position:relative;top:-12px;height:0;overflow:visible;text-align:center;border-radius:0}.plans-accordion-item__badge>span{display:inline-block;border-radius:2px}}.plans-accordion-item__price-amount{font-size:1.5rem}@media(min-width:600px){.plans-accordion-item__price-amount{text-align:left;font-size:2rem}}.plans-accordion-item__price-amount.is-loading{max-width:60px;animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent}@media(min-width:600px){.plans-accordion-item__price-amount.is-loading{max-width:none}}.plans-accordion-item__price-amount.is-loading:after{content:" "}.plans-accordion-item__price-amount>span{display:none;font-size:1rem;line-height:1.2;color:var(--studio-gray-40);position:relative;top:-1px;margin-right:1px}@media(min-width:600px){.plans-accordion-item__price-amount>span{display:inline-block}}.plans-accordion-item:not(.is-open) .plans-accordion-item__price-amount{font-size:.875rem;line-height:1.2}.plans-accordion-item:not(.is-open) .plans-accordion-item__price-amount>span{display:none}.plans-accordion-item__header{display:block;width:100%;cursor:pointer}.plans-accordion-item:not(.is-open) .plans-accordion-item__header{display:flex;align-items:baseline;padding:16px 12px}@media(min-width:600px){.plans-accordion-item:not(.is-open) .plans-accordion-item__header{padding:16px 24px}}.plans-accordion-item.is-primary .plans-accordion-item__header{cursor:default}@media(min-width:600px){.plans-accordion-item__header{display:flex}}.plans-accordion-item__price{margin-top:12px}.plans-accordion-item:not(.is-open) .plans-accordion-item__price{margin-top:0;margin-right:8px;color:var(--studio-gray-40)}@media(min-width:600px){.plans-accordion-item__price{margin-top:0;margin-right:auto}}.plans-accordion-item__disabled-label{margin-right:8px;color:var(--studio-gray-40)}.plans-accordion-item__price-note{display:block;font-size:.75rem;line-height:1.5;color:var(--studio-gray-40);margin-bottom:8px}.plans-accordion-item:not(.is-open) .plans-accordion-item__price-note{display:none}@media(min-width:600px){.plans-accordion-item__price-note{margin-bottom:12px;text-align:left}}.plans-accordion-item__price-discount{display:block;font-size:.75rem;font-weight:600;line-height:1.3;letter-spacing:.2px;text-transform:uppercase;color:var(--studio-green-60)}.plans-accordion-item__price-discount--disabled{color:var(--studio-gray-40);text-decoration:line-through}.plans-accordion-item:not(.is-open) .plans-accordion-item__price-discount{display:none}@media(min-width:600px){.plans-accordion-item__price-discount{text-align:left;margin-right:auto;max-width:170px}}@media(min-width:960px){.plans-accordion-item__price-discount{max-width:none}}.plans-accordion-item__actions{margin-top:16px}@media(min-width:600px){.plans-accordion-item__actions{margin-top:24px}}.plans-accordion-item__actions--paid-plan-margin{margin-top:20px}@media(min-width:782px){.plans-accordion-item__actions--paid-plan-margin{margin-top:-10px}}.plans-accordion-item__dropdown-chevron{flex:1;text-align:left;position:relative;top:-2px}@media(min-width:600px){.plans-accordion-item__dropdown-chevron{left:-8px}}.plans-accordion-item.is-open .plans-accordion-item__dropdown-chevron{display:none}.plans-accordion-item__placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;display:inline-block;width:64px}.plans-accordion-item__placeholder:after{content:" "}.plans-accordion-item__placeholder--narrow{width:32px}.plans-accordion-item__placeholder--wide{width:96px}.plans-feature-list{margin-top:16px}@media(min-width:600px){.plans-feature-list{margin-top:24px}}.plans-accordion .plans-feature-list{margin-top:24px}@media(min-width:600px){.plans-accordion .plans-feature-list{margin-top:36px}}ul.plans-feature-list__item-group{margin:0}ul.plans-feature-list__item-group--columns{display:flex;flex-wrap:wrap}@media(min-width:480px){@supports(display:grid){ul.plans-feature-list__item-group--columns{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr))}}}.plans-feature-list__item{flex:300px 0 1;margin:4px 0}.plans-feature-list__item+.plans-feature-list__item--requires-annual-disabled,.plans-feature-list__item+.plans-feature-list__item--requires-annual-enabled{margin-top:8px}.plans-feature-list__item-group--columns .plans-feature-list__item{margin-left:10px;align-self:flex-end}@media(min-width:480px){@supports(display:grid){.plans-feature-list__item-group--columns .plans-feature-list__item{align-self:end}}}.plans-feature-list__item-content-wrapper,.plans-feature-list__item-content-wrapper.components-button.is-link{display:flex;align-items:flex-end;padding:0;text-decoration:none}.plans-feature-list__item-content-wrapper.components-button.is-link.plans-feature-list__item-content-wrapper--domain-button,.plans-feature-list__item-content-wrapper.plans-feature-list__item-content-wrapper--domain-button{cursor:pointer}.plans-feature-list__item-bullet-icon{flex-grow:0;flex-shrink:0;margin-left:6px;color:var(--studio-gray-100)}.plans-accordion .plans-feature-list__item-bullet-icon{color:var(--studio-green-60)}.plans-feature-list__item--disabled-message .plans-feature-list__item-bullet-icon,.plans-feature-list__item--requires-annual-disabled .plans-feature-list__item-bullet-icon,.plans-feature-list__item-content-wrapper--domain-button.is-unavailable .plans-feature-list__item-bullet-icon{color:var(--studio-orange-40)}.plans-feature-list__item-bullet-icon,.plans-feature-list__item-bullet-icon path{fill:currentColor;stroke:currentColor}.plans-feature-list__item-text{flex:1;max-width:100%;margin-bottom:1px}.plans-feature-list__item-annual-nudge{display:block;text-transform:uppercase;font-size:10px;font-weight:700;letter-spacing:.02em;line-height:1;margin-bottom:6px}.plans-feature-list__item--requires-annual-enabled .plans-feature-list__item-annual-nudge{color:var(--studio-green-60)}.plans-feature-list__item--requires-annual-disabled .plans-feature-list__item-annual-nudge{color:var(--studio-orange-40)}.plans-feature-list__item-description{font-size:.875rem;line-height:1.2;letter-spacing:.2px;font-weight:400;color:var(--studio-gray-70)}.plans-feature-list__item--disabled-message .plans-feature-list__item-description,.plans-feature-list__item-content-wrapper--domain-button .plans-feature-list__item-description{font-weight:700}.plans-feature-list__item-content-wrapper--domain-button:not(.is-unavailable) .plans-feature-list__item-description{color:var(--studio-blue-40)}.plans-feature-list__item-content-wrapper--domain-button:not(.is-unavailable) .plans-feature-list__item-description:focus,.plans-feature-list__item-content-wrapper--domain-button:not(.is-unavailable) .plans-feature-list__item-description:hover{color:var(--studio-blue-30)}.plans-accordion .plans-feature-list__item-content-wrapper--domain-button:not(.is-unavailable) .plans-feature-list__item-description{color:var(--studio-gray-70)}.plans-accordion .plans-feature-list__item-content-wrapper--domain-button:not(.is-unavailable) .plans-feature-list__item-description.is-cta{color:var(--studio-gray-100)}.plans-accordion .plans-feature-list__item-content-wrapper--domain-button:not(.is-unavailable) .plans-feature-list__item-description:focus,.plans-accordion .plans-feature-list__item-content-wrapper--domain-button:not(.is-unavailable) .plans-feature-list__item-description:hover{color:var(--studio-gray-50)}.plans-feature-list__item--disabled-message .plans-feature-list__item-description,.plans-feature-list__item-content-wrapper--domain-button.is-unavailable .plans-feature-list__item-description{color:var(--studio-orange-40)}.plans-feature-list__item-content-wrapper--domain-button.is-unavailable .plans-feature-list__item-description:focus,.plans-feature-list__item-content-wrapper--domain-button.is-unavailable .plans-feature-list__item-description:hover{color:var(--studio-orange-30)}.plans-feature-list__item-content-wrapper--domain-button.is-cta .plans-feature-list__item-description{text-decoration:underline}.plans-feature-list__item--disabled-message .plans-feature-list__item-content-wrapper--domain-button.is-cta .plans-feature-list__item-description,.plans-feature-list__item--disabled-message .plans-feature-list__item-description,.plans-feature-list__item--requires-annual-disabled .plans-feature-list__item-content-wrapper--domain-button.is-cta .plans-feature-list__item-description,.plans-feature-list__item--requires-annual-disabled .plans-feature-list__item-description,.plans-feature-list__item-content-wrapper--domain-button.is-unavailable .plans-feature-list__item-description{text-decoration:line-through}.plans-feature-list__item-url{word-break:break-all}.plans-feature-list__placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;display:inline-block;width:200px}.plans-feature-list__placeholder:after{content:" "}.plans-table{width:100%;display:flex;flex-wrap:wrap}.plan-item{display:inline-flex;min-width:250px;flex-grow:1;flex-basis:0;flex-direction:column;margin-top:30px}.plan-item.badge-next-to-name{color:var(--studio-gray-100)}@media(min-width:480px){.plan-item+.plan-item{margin-right:-1px}}@media(max-width:480px){.plan-item:not(.is-popular){margin-top:-1px}.plan-item.is-open:not(.is-popular){margin-bottom:30px}}.plan-item__viewport{width:100%;height:100%;flex:1;border:1px solid #999;padding:20px}.plan-item:not(.is-popular) .plan-item__heading{display:flex;align-items:center}@media(max-width:480px){.plan-item:not(.is-popular) .plan-item__heading{font-size:1em}}.plan-item__heading.badge-next-to-name{display:flex;justify-content:space-between}.plan-item__name{font-weight:700;font-size:18px;line-height:24px;display:inline-block}@media(max-width:480px){.plan-item__name{font-size:14px}}.plan-item__badge-next-to-name{height:20px;background:rgba(184,230,191,.64);border-radius:4px;color:var(--studio-green-80);padding:2px 5px;font-size:.75rem}.plan-item__tagline{color:var(--studio-gray-80);font-size:.875rem;margin:4px 0}@media(max-width:480px){.plan-item:not(.is-popular) .plan-item__name{font-weight:400}}.plan-item__mobile-expand-all-plans.components-button.is-link{margin:20px auto;color:#757575}.plan-item__badge{position:relative;display:block;background:#000;text-align:center;text-transform:uppercase;color:#fff;padding:0 5px;font-size:.75rem;margin:-24px 0 0;height:24px;line-height:24px}.plan-item__price-amount{font-weight:600;font-size:32px;line-height:24px}.plan-item__price-amount.is-loading{max-width:60px;animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent}.plan-item__price-amount.is-loading:after{content:" "}@media(max-width:480px){.plan-item:not(.is-open) .plan-item__price-amount{font-weight:400;font-size:1em}}.plan-item__summary{width:100%}.plan-item__summary::-webkit-details-marker{display:none}@media(min-width:480px){.plan-item.is-popular .plan-item__summary,.plan-item__summary{pointer-events:none}}@media(max-width:480px){.plan-item:not(.is-open) .plan-item__summary{display:flex}}.plan-item__price-note{font-size:12px;line-height:19px;letter-spacing:-.4px;color:var(--studio-gray-40);margin-top:8px;margin-bottom:10px}.plan-item__details .plan-item__summary .plan-item__price{margin-top:16px;margin-bottom:8px}.plan-item:not(.is-open) .plan-item__summary .plan-item__price{margin-top:0;margin-bottom:0;margin-right:10px;color:#757575}.plan-item__actions{margin-bottom:16px}.plan-item__dropdown-chevron{flex:1;text-align:left}.plan-item.is-open .plan-item__dropdown-chevron{display:none}@media(max-width:480px){.plan-item.is-popular{order:-3}}.plan-item__select-button.components-button{justify-content:center;height:40px;margin-top:15px;padding:0 24px;font-size:.875rem;color:var(--studio-gray-90);border-radius:4px;border:1px solid var(--studio-gray-10)}.plan-item__select-button.components-button:active,.plan-item__select-button.components-button:hover{background:inherit;color:inherit}.plan-item__select-button.components-button:focus{border-color:inherit;box-shadow:0 0 0 1.5px #117ac9}.plan-item__select-button.components-button:disabled{border-color:var(--studio-gray-5);text-decoration:line-through;opacity:.5}.plan-item__select-button.components-button.is-popular,.plan-item__select-button.components-button.is-primary{background:#117ac9;border-color:#117ac9;color:var(--studio-white)}.plan-item__select-button.components-button.is-popular:active:not(:disabled),.plan-item__select-button.components-button.is-popular:hover,.plan-item__select-button.components-button.is-primary:active:not(:disabled),.plan-item__select-button.components-button.is-primary:hover{background:#117ac9;border-color:inherit}.plan-item__select-button.components-button.is-popular:focus,.plan-item__select-button.components-button.is-primary:focus{box-shadow:0 0 0 1.5px #117ac9}.plan-item__select-button.components-button.is-popular:not(.full-width) svg,.plan-item__select-button.components-button.is-primary:not(.full-width) svg{margin-right:-8px;margin-left:10px}.plan-item__select-button.components-button.is-selected{border-color:#117ac9;color:#117ac9;background:#fafcfe}.plan-item__select-button.components-button.is-selected svg{fill:currentColor;stroke:currentColor;transform:translateY(-1px);vertical-align:middle;margin-left:4px}.plan-item__select-button.components-button.full-width{width:100%}.plan-item__price-discount{display:block;font-size:.75rem;font-weight:600;line-height:1.3;letter-spacing:.2px;text-transform:uppercase;color:var(--studio-green-60);margin-bottom:8px}.plan-item__price-discount--disabled{color:var(--studio-gray-40);text-decoration:line-through}.plan-item__price-discount--hidden{visibility:hidden}.plan-item:not(.is-open) .plan-item__price-discount{display:none}.plans-grid__details-heading{margin-bottom:20px}.plans-details__table{padding-right:24px;padding-left:24px;width:100%;border-spacing:0}@media(min-width:600px){.plans-details__table{padding-right:48px;padding-left:48px}}@media(min-width:782px){.plans-details__table{padding-right:96px;padding-left:96px}}@media(min-width:1440px){.plans-details__table{padding-right:0;padding-left:0}}.plans-details__table td,.plans-details__table th{padding:13px 24px}.plans-details__table td:first-child,.plans-details__table th:first-child{padding-right:0;width:20%}@media(min-width:480px){.plans-details__table td:first-child,.plans-details__table th:first-child{width:40%}}.plans-details__table td:not(:first-child),.plans-details__table th:not(:first-child){white-space:nowrap}.plans-details__table .hidden{display:none}.plans-details__header-row th{font-weight:600;font-size:.875rem;line-height:20px;text-transform:uppercase;color:var(--studio-gray-20);padding-top:5px;padding-bottom:5px;border-bottom:1px solid #eaeaeb;text-align:right}thead .plans-details__header-row th:not(:first-child){text-align:center}.plans-details__feature-row td,.plans-details__feature-row th{font-size:.875rem;font-weight:400;line-height:17px;letter-spacing:.2px;border-bottom:1px solid #eaeaeb;vertical-align:middle}.plans-details__feature-row th{text-align:right}.plans-details__feature-row td{text-align:center}.plans-details__placeholder{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent;display:inline-block;width:64px}.plans-details__placeholder:after{content:" "}.plans-details__placeholder--narrow{width:32px}.plans-details__placeholder--wide{width:96px}.plans-details__select-button.components-button{height:36px;padding:0 18px}@media(min-width:600px){.plans-details__select-button.components-button{height:40px;padding:0 24px}}.plans-details__feature-annual-nudge{display:block;text-transform:uppercase;font-size:10px;font-weight:700;letter-spacing:.02em;line-height:1;margin-bottom:6px}.plans-details__feature-row--enabled .plans-details__feature-annual-nudge{color:var(--studio-green-60)}.plans-details__feature-row--disabled .plans-details__feature-annual-nudge{color:var(--studio-orange-40)}.plans-details__feature-row--disabled .plans-details__feature-annual-nudge+span{text-decoration:line-through}.nux-launch__feature-list{padding:20px}.nux-launch__feature-list p{margin:10px 0 0}.nux-launch__feature-list-title{margin:0 0 10px;color:#555d66;font-weight:400}ul.nux-launch__feature-item-group{margin:0}.nux-launch__feature-item{font-size:.875rem;line-height:20px;letter-spacing:.2px;margin:4px 0;vertical-align:middle;color:#555d66;display:flex;align-items:flex-start}.nux-launch__feature-item svg{display:block;margin-left:6px;margin-top:2px;flex-shrink:0}.nux-launch__feature-item svg path{fill:var(--studio-green-40);stroke:var(--studio-green-40)}.nux-launch__submit-button.components-button.is-primary{background:var(--color-accent);border:1px solid var(--color-accent-dark);width:100%;justify-content:center}.nux-launch__submit-button.components-button.is-primary:active,.nux-launch__submit-button.components-button.is-primary:hover{background:var(--color-accent-dark)}.nux-launch__submit-button.components-button.is-primary:disabled{color:#fff;opacity:.5}.nux-launch__submit-button.components-button.is-primary:disabled:hover{background:var(--color-accent)}.nux-launch__summary-item p{margin:0;word-break:break-word}.nux-launch__summary-item .components-tip{margin-top:10px}.nux-launch__summary-item .components-tip svg{align-self:flex-start}.nux-launch__summary-item__plan-name{color:var(--color-text)}.nux-launch__summary-item__domain-name{font-weight:600}.nux-launch__summary-item__domain-name.is-loading{animation:onboarding-loading-pulse 1.6s ease-in-out infinite;background:#f0f0f0;color:transparent}.nux-launch__summary-item__domain-name.is-loading:after{content:" "}.nux-launch__summary-item__domain-price{font-size:.875rem}.nux-launch-menu h4{text-transform:uppercase;margin-bottom:16px}.nux-launch-menu__item-group{margin:0 -12px}.nux-launch-menu__item.components-button.is-link{font-size:.875rem;line-height:17px;display:flex;color:var(--studio-gray-30);width:100%;text-align:right;text-decoration:none;padding:16px 14px}.nux-launch-menu__item.components-button.is-link:hover{color:initial}.nux-launch-menu__item.components-button.is-link:focus{box-shadow:none}.nux-launch-menu__item.components-button.is-link svg{margin-left:10px;color:var(--studio-gray-10);position:relative;top:1px;right:-1px}@media(min-width:782px){.nux-launch-menu__item.components-button.is-link.is-current{background:var(--studio-blue-0);color:initial}.nux-launch-menu__item.components-button.is-link.is-current svg{color:initial}}.nux-launch-menu__item.components-button.is-link.is-completed svg{color:var(--studio-green-40);top:0;right:0}.nux-launch-sidebar{margin-right:24px;margin-left:24px;display:flex;flex-direction:column;height:100%;background:var(--studio-white);padding-top:60px}@media(min-width:600px){.nux-launch-sidebar{margin-right:48px;margin-left:48px}}@media(min-width:782px){.nux-launch-sidebar{margin-right:96px;margin-left:96px;display:block;height:auto;margin:0 24px;padding-top:0}}@media(min-width:782px){.nux-launch-sidebar h1.onboarding-title{font-size:1.5rem}.nux-launch-sidebar h2.onboarding-subtitle{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:400;font-size:.875rem;line-height:1.5;color:var(--studio-gray-60)}}.nux-launch-sidebar__header{margin:48px 0 38.4px}@media(min-width:600px){.nux-launch-sidebar__header{margin:64px 0 51.2px}}@media(min-width:782px){.nux-launch-sidebar__header{margin:80px 0 64px}}.nux-launch-sidebar__body{flex-grow:1;margin:0 0 48px}@media(min-width:600px){.nux-launch-sidebar__body{margin:0 0 64px}}@media(min-width:782px){.nux-launch-sidebar__body{margin:0 0 80px}}.nux-launch-sidebar__footer{margin-right:-24px;margin-left:-24px;position:sticky;bottom:0}@media(min-width:600px){.nux-launch-sidebar__footer{margin-right:-48px;margin-left:-48px}}@media(min-width:782px){.nux-launch-sidebar__footer{margin-right:-96px;margin-left:-96px}}.nux-launch-sidebar__footer .action-buttons{position:relative;justify-content:flex-end}@media(min-width:782px){.nux-launch-sidebar__footer{display:none}}.nux-launch-progress{display:flex;align-items:center;font-weight:600}@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}}body.has-nux-launch-modal{overflow:hidden}.nux-launch-modal.components-modal__frame{transform:none}.nux-launch-modal .components-modal__header{display:none}.nux-launch-modal .components-modal__content{right:0;height:100%;padding:0;overflow:auto}.nux-launch-modal-header,.nux-launch-modal .components-modal__content{position:fixed;top:0;display:flex;background:var(--studio-white);width:100%}.nux-launch-modal-header{margin-right:-24px;margin-left:-24px;height:60px;border-bottom:1px solid #e0e0e0;z-index:10}@media(min-width:600px){.nux-launch-modal-header{margin-right:-48px;margin-left:-48px}}@media(min-width:782px){.nux-launch-modal-header{margin-right:-96px;margin-left:-96px;position:relative;border-bottom:none}}.nux-launch-modal-header .nux-launch-progress{height:60px}@media(min-width:782px){.nux-launch-modal-header .nux-launch-progress{display:none}}.nux-launch-modal-header__wp-logo{display:flex;align-items:center;justify-content:center;width:60px;height:60px}.nux-launch-modal-body{position:relative;flex-grow:1;min-width:0;display:flex;flex-direction:column;margin-right:24px;margin-left:24px;padding-top:60px}@media(min-width:600px){.nux-launch-modal-body{margin-right:48px;margin-left:48px}}@media(min-width:782px){.nux-launch-modal-body{margin-right:96px;margin-left:96px}}.nux-launch-modal-body .nux-launch-step__body{flex-grow:1}.is-sidebar-fullscreen .nux-launch-modal-body{overflow:hidden}@media(min-width:782px){.nux-launch-modal-body{padding-top:0}}.nux-launch-modal-aside{position:absolute;top:0;right:-200%;width:100%;height:100%;background:var(--studio-white);z-index:12}@media(max-width:782px){.is-sidebar-fullscreen .nux-launch-modal-aside{right:0}}@media(min-width:782px){.nux-launch-modal-aside{position:sticky;top:0;right:auto;width:280px;min-width:280px;max-width:280px;border-right:1px solid var(--studio-gray-5)}}.nux-launch-modal__close-button.components-button.is-link{position:sticky;top:0;z-index:13;width:0;height:0;overflow:visible;display:flex;align-items:flex-start;color:var(--studio-gray-50)}.nux-launch-modal__close-button.components-button.is-link:hover{color:var(--studio-gray-40)}.nux-launch-modal__close-button.components-button.is-link>span{position:relative;left:60px;padding:0 18px;height:60px;display:flex;align-items:center}.nux-launch-modal-body__launching{position:absolute;top:0;right:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center;font-size:1rem}
1
+ .nux-launch-step__header{margin:48px 0 38.4px;display:flex;justify-content:space-between;align-items:center}@media(min-width:600px){.nux-launch-step__header{margin:64px 0 51.2px}}@media(min-width:782px){.nux-launch-step__header{margin:80px 0 64px}}.nux-launch-step__header .action-buttons{display:none}@media(min-width:782px){.nux-launch-step__header .action-buttons{display:block}}.nux-launch-step__body{margin:0 0 48px}@media(min-width:600px){.nux-launch-step__body{margin:0 0 64px}}@media(min-width:782px){.nux-launch-step__body{margin:0 0 80px}}.nux-launch-step__footer{margin-right:-24px;margin-left:-24px;position:sticky;bottom:0}@media(min-width:600px){.nux-launch-step__footer{margin-right:-48px;margin-left:-48px}}@media(min-width:782px){.nux-launch-step__footer{margin-right:-96px;margin-left:-96px}}.nux-launch-step__footer .action-buttons{position:relative}@media(min-width:782px){.nux-launch-step__footer{display:none}}.onboarding-title{font-family:Recoleta,"Noto Serif",Georgia,Times New Roman,Times,serif;font-weight:400;letter-spacing:-.4px;font-size:32px;line-height:40px;color:var(--mainColor);margin:0}@media(min-width:480px){.onboarding-title{font-family:Recoleta,"Noto Serif",Georgia,Times New Roman,Times,serif;font-weight:400;letter-spacing:-.4px;font-size:36px;line-height:40px}}@media(min-width:1080px){.onboarding-title{font-family:Recoleta,"Noto Serif",Georgia,Times New Roman,Times,serif;font-weight:400;letter-spacing:-.4px;font-size:42px;line-height:57px}}.onboarding-subtitle{font-size:16px;line-height:24px;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:400;letter-spacing:.2px;color:var(--studio-gray-60);margin:5px 0 0}@media(min-width:600px){.onboarding-subtitle{margin-top:0}}.action-buttons{padding:0 20px;border-top:1px solid #e0e0e0;background-color:#fff;position:fixed;bottom:0;left:0;right:0;height:60px;justify-content:space-between;display:flex;align-items:center;z-index:30}@media(min-width:600px){.action-buttons:not(.is-sticky){padding:0;margin-right:20px;position:static;border:none}.action-buttons:not(.is-sticky) .action_buttons__button{margin-right:20px}.action-buttons:not(.is-sticky) .action_buttons__button:first-child{margin-right:0}}.action-buttons.no-sticky{padding:0;margin-right:20px;position:static;border:none}.action-buttons.no-sticky .action_buttons__button{margin-right:20px}.action-buttons.no-sticky .action_buttons__button:first-child{margin-right:0}button.action_buttons__button.components-button{font-size:.875rem;line-height:17px;height:42px;min-width:120px;justify-content:center}button.action_buttons__button.components-button:active,button.action_buttons__button.components-button:focus,button.action_buttons__button.components-button:hover{outline-color:transparent}button.action_buttons__button.components-button:disabled{opacity:.5}button.action_buttons__button.components-button.action-buttons__back{color:var(--studio-gray-50);white-space:nowrap;min-width:0;height:auto}button.action_buttons__button.components-button.action-buttons__next{color:var(--studio-white);box-shadow:0 0 0 1px var(--studio-blue-40)}button.action_buttons__button.components-button.action-buttons__skip{color:var(--studio-gray-50);box-shadow:inset 0 0 0 1px var(--studio-gray-50)}button.action_buttons__button.components-button.action-buttons__skip:active,button.action_buttons__button.components-button.action-buttons__skip:hover{color:var(--studio-gray-60);box-shadow:inset 0 0 0 1px var(--studio-gray-60)}button.action_buttons__button.components-button.action-buttons__skip:focus{color:var(--studio-gray-60);box-shadow:inset 0 0 0 1px #fff,0 0 0 1.5px var(--highlightColor)}button.action_buttons__button.components-button.action-buttons__arrow{justify-content:flex-start;text-decoration:underline;font-weight:500;color:var(--mainColor);padding:0;margin-left:0}@media(min-width:782px){button.action_buttons__button.components-button.action-buttons__arrow{justify-content:flex-end}}button.action_buttons__button.components-button.action-buttons__arrow svg{margin:0 -5px -4px}@media(min-width:600px){button.action_buttons__button.components-button{min-width:160px}}: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