Full Site Editing - Version 3.43812

Version Description

Download this release

Release Info

Developer ebuccelli
Plugin Icon wp plugin Full Site Editing
Version 3.43812
Comparing to
See all releases

Code changes from version 3.43445 to 3.43812

build_meta.txt CHANGED
@@ -1,3 +1,3 @@
1
- commit_hash=10ab90650ef9a902813acf700b25440d49ac49d4
2
- commit_url=https://github.com/Automattic/wp-calypso/commit/10ab90650ef9a902813acf700b25440d49ac49d4
3
- build_number=3.43445
1
+ commit_hash=26b3f99988bb0561cb7b88cf972519cbdfe59a0c
2
+ commit_url=https://github.com/Automattic/wp-calypso/commit/26b3f99988bb0561cb7b88cf972519cbdfe59a0c
3
+ build_number=3.43812
editor-site-launch/src/launch-steps/name-step/styles.scss CHANGED
@@ -32,6 +32,7 @@
32
  align-items: center;
33
  color: var(--studio-gray-50);
34
  font-family: $default-font;
 
35
  font-size: 14px;
36
  line-height: 14px;
37
 
32
  align-items: center;
33
  color: var(--studio-gray-50);
34
  font-family: $default-font;
35
+ /* stylelint-disable-next-line declaration-property-unit-allowed-list */
36
  font-size: 14px;
37
  line-height: 14px;
38
 
event-countdown-block/blocks/src/style.scss CHANGED
@@ -5,6 +5,7 @@
5
 
6
  .event-countdown__counter {
7
  text-transform: uppercase;
 
8
  font-size: 16px;
9
  font-weight: 600;
10
  }
@@ -42,6 +43,7 @@
42
  .event-countdown__counter.event-countdown__counter-stopped p,
43
  .event-countdown__counter.event-countdown__counter-stopped span,
44
  .event-countdown__counter.event-countdown__counter-stopped strong {
 
45
  font-size: 100%;
46
  display: inline;
47
  }
@@ -57,14 +59,17 @@
57
  // Base font sizes.
58
  .wp-block-jetpack-event-countdown {
59
  .event-countdown__counter span strong {
 
60
  font-size: 24px;
61
  }
62
 
63
  .event-countdown__day {
 
64
  font-size: 56px;
65
  }
66
 
67
  .event-countdown__event-title {
 
68
  font-size: 36px;
69
  }
70
  }
@@ -73,14 +78,17 @@
73
  @media only screen and ( min-width: 600px ) {
74
  .wp-block-jetpack-event-countdown {
75
  .event-countdown__counter span strong {
 
76
  font-size: 36px;
77
  }
78
 
79
  .event-countdown__day {
 
80
  font-size: 96px;
81
  }
82
 
83
  .event-countdown__event-title {
 
84
  font-size: 48px;
85
  }
86
  }
@@ -118,6 +126,7 @@ $ecf_color6: #b82806;
118
  top: 0;
119
  width: 4px;
120
  height: 4px;
 
121
  border-radius: 50%;
122
  animation: 1s event_countdown_bang ease-out infinite backwards, 1s event_countdown_gravity ease-in infinite backwards, 5s event_countdown_position linear infinite backwards;
123
  mix-blend-mode: overlay;
5
 
6
  .event-countdown__counter {
7
  text-transform: uppercase;
8
+ /* stylelint-disable-next-line declaration-property-unit-allowed-list */
9
  font-size: 16px;
10
  font-weight: 600;
11
  }
43
  .event-countdown__counter.event-countdown__counter-stopped p,
44
  .event-countdown__counter.event-countdown__counter-stopped span,
45
  .event-countdown__counter.event-countdown__counter-stopped strong {
46
+ /* stylelint-disable-next-line declaration-property-unit-allowed-list */
47
  font-size: 100%;
48
  display: inline;
49
  }
59
  // Base font sizes.
60
  .wp-block-jetpack-event-countdown {
61
  .event-countdown__counter span strong {
62
+ /* stylelint-disable-next-line declaration-property-unit-allowed-list */
63
  font-size: 24px;
64
  }
65
 
66
  .event-countdown__day {
67
+ /* stylelint-disable-next-line declaration-property-unit-allowed-list */
68
  font-size: 56px;
69
  }
70
 
71
  .event-countdown__event-title {
72
+ /* stylelint-disable-next-line declaration-property-unit-allowed-list */
73
  font-size: 36px;
74
  }
75
  }
78
  @media only screen and ( min-width: 600px ) {
79
  .wp-block-jetpack-event-countdown {
80
  .event-countdown__counter span strong {
81
+ /* stylelint-disable-next-line declaration-property-unit-allowed-list */
82
  font-size: 36px;
83
  }
84
 
85
  .event-countdown__day {
86
+ /* stylelint-disable-next-line declaration-property-unit-allowed-list */
87
  font-size: 96px;
88
  }
89
 
90
  .event-countdown__event-title {
91
+ /* stylelint-disable-next-line declaration-property-unit-allowed-list */
92
  font-size: 48px;
93
  }
94
  }
126
  top: 0;
127
  width: 4px;
128
  height: 4px;
129
+ /* stylelint-disable-next-line declaration-property-unit-allowed-list */
130
  border-radius: 50%;
131
  animation: 1s event_countdown_bang ease-out infinite backwards, 1s event_countdown_gravity ease-in infinite backwards, 5s event_countdown_position linear infinite backwards;
132
  mix-blend-mode: overlay;
full-site-editing-plugin.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Plugin Name: WordPress.com Editing Toolkit
4
  * Description: Enhances your page creation workflow within the Block Editor.
5
- * Version: 3.43445
6
  * Author: Automattic
7
  * Author URI: https://automattic.com/wordpress-plugins/
8
  * License: GPLv2 or later
@@ -42,7 +42,7 @@ namespace A8C\FSE;
42
  *
43
  * @var string
44
  */
45
- define( 'A8C_ETK_PLUGIN_VERSION', '3.43445' );
46
 
47
  // Always include these helper files for dotcom FSE.
48
  require_once __DIR__ . '/dotcom-fse/helpers.php';
2
  /**
3
  * Plugin Name: WordPress.com Editing Toolkit
4
  * Description: Enhances your page creation workflow within the Block Editor.
5
+ * Version: 3.43812
6
  * Author: Automattic
7
  * Author URI: https://automattic.com/wordpress-plugins/
8
  * License: GPLv2 or later
42
  *
43
  * @var string
44
  */
45
+ define( 'A8C_ETK_PLUGIN_VERSION', '3.43812' );
46
 
47
  // Always include these helper files for dotcom FSE.
48
  require_once __DIR__ . '/dotcom-fse/helpers.php';
global-styles/src/global-styles-sidebar.scss CHANGED
@@ -2,6 +2,7 @@
2
  // Make the font dropdown a bit more spacy.
3
  .components-select-control__input {
4
  line-height: 1;
 
5
  font-size: 18px;
6
  height: 36px;
7
  }
2
  // Make the font dropdown a bit more spacy.
3
  .components-select-control__input {
4
  line-height: 1;
5
+ /* stylelint-disable-next-line declaration-property-unit-allowed-list */
6
  font-size: 18px;
7
  height: 36px;
8
  }
help-center/dist/help-center.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('lodash', 'moment', 'react', 'react-dom', 'wp-a11y', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-data', 'wp-data-controls', 'wp-deprecated', 'wp-dom', 'wp-element', 'wp-i18n', 'wp-is-shallow-equal', 'wp-keycodes', 'wp-plugins', 'wp-polyfill', 'wp-preferences', 'wp-primitives', 'wp-warning'), 'version' => '9b3c4c2721f579311783');
1
+ <?php return array('dependencies' => array('lodash', 'moment', 'react', 'react-dom', 'wp-a11y', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-data', 'wp-data-controls', 'wp-deprecated', 'wp-dom', 'wp-element', 'wp-i18n', 'wp-is-shallow-equal', 'wp-keycodes', 'wp-plugins', 'wp-polyfill', 'wp-preferences', 'wp-primitives', 'wp-warning'), 'version' => '78bd9cd0e7ca08b1a31a');
help-center/dist/help-center.css CHANGED
@@ -1,11 +1,11 @@
1
  .help-center.entry-point-button.is-active{background:#1e1e1e}.help-center.entry-point-button.is-active svg{fill:#fff}.a8c-faux-inline-help__button{display:none}.help-center__container.is-mobile.is-minimized{margin-top:0}
2
  .directly-rtm:not(.is-minimized){top:76px;right:16px;width:410px;max-width:410px;height:80vh;position:absolute;padding:0}.directly-rtm.is-minimized{display:none}
3
- @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{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ca] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=cs] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=da] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=de] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=en] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=es] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=eu] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=fi] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=fr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=gl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=hr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=hu] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=id] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=is] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=it] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=lv] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=mt] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=nb] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=nl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=pl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=pt] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ro] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ru] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sk] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sq] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sv] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sw] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=tr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=uz] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}.help-center .components-card.help-center__container{position:absolute;background-color:#fff;color:#000;z-index:9999;cursor:default;transition:max-height .5s}.help-center .components-card.help-center__container button.button-primary,.help-center .components-card.help-center__container button.button-secondary{font-size:1.25rem}.help-center .components-card.help-center__container .button{font-size:.875rem}.help-center .components-card.help-center__container>div{display:flex;flex-direction:column}.help-center .components-card.help-center__container button.components-button:focus{box-shadow:none;outline:none}.help-center .components-card.help-center__container .help-center__container-header{height:50px;padding:16px 8px 16px 16px}.help-center .components-card.help-center__container .help-center__container-header .help-center-header__minimize svg{transform:scale(0.7, 1);transform-origin:center}.help-center .components-card.help-center__container .help-center__container-header .help-center-header__text{max-width:300px;font-size:.875rem;font-weight:500;display:flex;align-items:center}.help-center .components-card.help-center__container .help-center__container-header .help-center-header__text svg{margin-right:3px}.help-center .components-card.help-center__container .help-center__container-header .help-center-header__text .help-center-header__article-title{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;max-width:200px}.help-center .components-card.help-center__container .help-center__container-content{overflow-y:auto;padding:16px}.help-center .components-card.help-center__container .help-center__container-footer{height:auto;padding:16px}.help-center .components-card.help-center__container .help-center__container-footer:empty{display:none}.help-center .components-card.help-center__container.is-desktop{top:calc(60px + 16px);right:16px;width:410px;height:80vh;max-height:800px;box-shadow:0 0 3px 0 rgba(0,0,0,.25)}.help-center .components-card.help-center__container.is-desktop .help-center__container-header{cursor:move}.help-center .components-card.help-center__container.is-desktop .help-center__container-content{flex-grow:1;height:calc(80vh - 50px * 2);position:relative}.help-center .components-card.help-center__container.is-desktop.is-minimized{min-height:50px}.help-center .components-card.help-center__container.is-mobile{top:45px;bottom:0;left:0;right:0;max-height:100%}.help-center .components-card.help-center__container.is-mobile .help-center__container-content{flex:auto}.help-center .components-card.help-center__container.is-mobile .help-center__container-footer{margin-bottom:0}.help-center .components-card.help-center__container.is-mobile.is-minimized{min-height:50px;top:calc(100vh - 50px)}.help-center .components-card.help-center__container .components-button:hover{box-shadow:none;color:inherit}.help-center .components-card.help-center__container.is-mobile.is-minimized,.help-center .components-card.help-center__container.is-desktop.is-minimized{max-height:50px}.help-center .components-card.help-center__container .help-center-header__unread-count{display:inline-block;margin-left:8px;padding:2px 8px;background:var(--studio-pink-50);border-radius:50%;font-size:.75rem;color:#fff}.help-center .components-card.help-center__container .help-center-header__a8c-only-badge{display:inline-block;margin-left:8px;padding:2px 6px;background:#d3d3d3;border-radius:4px;font-size:.75rem;color:var(--studio-gray-50);text-transform:uppercase}.help-center .ticket-success-screen__help-center{text-align:center}.help-center .ticket-success-screen__help-center .ticket-success-screen__help-center-heading{font-size:1.25rem;color:#101517;margin:16px;font-weight:400}.help-center .ticket-success-screen__help-center .ticket-success-screen__help-center-message{font-size:.875rem;color:#646970;margin:0}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.help-center button.button.back-button__help-center.is-borderless{display:flex;align-items:center;color:#000;font-size:.875rem;padding-right:5px}.help-center button.button.back-button__help-center.is-borderless:focus{color:#043959;box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8);outline:1px solid transparent;border-color:inherit}.help-center .help-center__container-content{padding:0 !important}.help-center .help-center__container-content>*:not(iframe){padding:16px}.help-center .help-center-sibyl-articles__list{list-style:none;box-sizing:border-box;padding:0;margin:0}.help-center .help-center-sibyl-articles__list>li{padding:0}.help-center .help-center-sibyl-articles__list>li>a{display:flex;align-items:center;text-decoration:none;color:var(--studio-gray-100);margin-bottom:16px;font-size:.875rem}.help-center .help-center-sibyl-articles__list>li>a:hover{background:var(--color-neutral-0)}.help-center .help-center-sibyl-articles__list svg{margin-right:15px;border-radius:2px;display:block;padding:8px;background:var(--studio-gray-0);fill:var(--studio-blue-50);flex-shrink:0}.help-center .help-center-search-results__title,.help-center .help-center__section-title{font-size:.875rem;font-weight:500;color:var(--studio-gray-100);margin:1em 0}.help-center .help-center-sibyl-articles__container{padding-top:0}.help-center .help-center-container__loading,.help-center .help-center-contact-page__loading{display:flex;align-items:center;justify-content:center;height:100%}.help-center .help-center-container__loading .spinner__outer,.help-center .help-center-contact-page__loading .spinner__outer{border-top-color:var(--wp-admin-theme-color)}.help-center .help-center-container__loading .spinner__inner,.help-center .help-center-contact-page__loading .spinner__inner{border-top-color:var(--wp-admin-theme-color);border-right-color:var(--wp-admin-theme-color)}.help-center body[class*=is-section-] .help-center button,.help-center body[class*=is-section-] .help-center input,.help-center body[class*=is-section-] .help-center textarea,.help-center body[class*=is-section-] .help-center select,.help-center body[class^=is-section-] .help-center button,.help-center body[class^=is-section-] .help-center input,.help-center body[class^=is-section-] .help-center textarea,.help-center body[class^=is-section-] .help-center select{box-sizing:border-box}.help-center body[class*=is-section-] .help-center h1,.help-center body[class^=is-section-] .help-center h1{font-weight:600;margin:.67em 0}.help-center body[class*=is-section-] .help-center h1.site-picker__site-title,.help-center body[class^=is-section-] .help-center h1.site-picker__site-title{font-weight:400;margin:0}.help-center body[class*=is-section-] .help-center h2,.help-center body[class*=is-section-] .help-center h3,.help-center body[class^=is-section-] .help-center h2,.help-center body[class^=is-section-] .help-center h3{color:#1d2327;margin:1em 0}.help-center body[class*=is-section-] .help-center label,.help-center body[class^=is-section-] .help-center label{cursor:pointer}.help-center body[class*=is-section-] .help-center .help-center__container.is-desktop,.help-center body[class^=is-section-] .help-center .help-center__container.is-desktop{position:fixed;top:calc(var(--masterbar-height) + 16px)}.help-center body[class*=is-section-] .help-center .search-card .search,.help-center body[class^=is-section-] .help-center .search-card .search{border:none}.help-center .help-center-contact-form .button:not(.back-button__help-center){line-height:2.71428571;min-height:40px;margin-bottom:4px;vertical-align:middle}.help-center .help-center-contact-form__label,.help-center .site-picker__label{font-size:.875rem}.help-center .help-center-header__text{margin:1em 0}.help-center .wp-block-embed__wrapper{position:relative}.help-center .wp-block-embed__wrapper::before{content:"";display:block;padding-top:56.25%}.help-center .wp-block-embed__wrapper iframe{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.help-center .components-base-control__label{color:var(--studio-gray-60)}
4
- .help-center-contact-form__site-picker-hes-tray{margin-top:16px;display:flex;align-items:center}.help-center-contact-form__site-picker-hes-tray .happiness-engineers-tray{margin:0;flex-wrap:nowrap}.help-center-contact-form__site-picker-hes-tray img{width:32px;height:32px;border:2px solid #fff;border-radius:50%}.help-center-contact-form__site-picker-hes-tray img+img{margin-left:-16px}.help-center-contact-form__site-picker-hes-tray .help-center-contact-form__site-picker-hes-tray-text{font-size:.75rem;color:var(--studio-gray-60);margin:0;margin-left:8px}.site-picker__site-item{padding:12px 8px}.help-center-contact-form section{margin-top:16px}.help-center-contact-form div.components-base-control__field input.components-text-control__input,.help-center-contact-form div.components-base-control__field textarea.components-text-control__input{padding:15.5px !important;border:1px solid var(--studio-gray-10) !important;border-radius:4px !important;box-sizing:border-box}.help-center-contact-form .site-picker__site-item{padding:12px 8px}.help-center-contact-form .popover.is-top-left{z-index:9999}.help-center-contact-form .popover.is-top-left .popover__arrow{z-index:1}.help-center-contact-form .popover.is-top-left .popover__inner span{display:block;padding:16px}.help-center-contact-form__message,.help-center-contact-form__subject input.components-text-control__input{padding:15.5px;border:1px solid var(--studio-gray-10);border-radius:4px;width:100%;display:block;box-sizing:border-box}.help-center-contact-form__message:focus,.help-center-contact-form__subject input.components-text-control__input:focus{box-shadow:none;outline:none;border-color:var(--studio-gray-10)}section.contact-form-submit{position:sticky;bottom:0;left:0;width:100%;box-sizing:border-box;background:#fff;padding:16px}section.contact-form-submit::before{content:" ";display:block;height:1px;background:rgba(0,0,0,.1);position:absolute;left:-16px;top:0;width:calc(100% + 32px)}section.contact-form-submit .button.help-center-contact-form__site-picker-cta.is-primary{background-color:var(--color-accent);border-color:var(--color-accent);color:var(--color-text-inverted)}section.contact-form-submit .button.help-center-contact-form__site-picker-cta.is-primary:hover,section.contact-form-submit .button.help-center-contact-form__site-picker-cta.is-primary:focus{color:var(--color-text-inverted);background-color:var(--color-accent-60);border-color:var(--color-accent-60)}section.contact-form-submit .button.help-center-contact-form__site-picker-cta.is-primary:focus{border:none;box-shadow:none;outline:solid 2px var(--color-accent-60);outline-offset:2px}section.contact-form-submit .button.help-center-contact-form__site-picker-cta.is-primary:disabled{background-color:var(--color-surface) !important;border-color:var(--color-neutral-5) !important;color:var(--color-neutral-20) !important}.help-center .help-center-contact-form .site-picker__site-item-site-logo svg{fill:var(--studio-gray-30)}.help-center-contact-form__site-picker-title{font-size:16px;color:var(--studio-gray-100);margin-top:20px}.help-center-contact-form__site-picker-form-warning,.help-center-contact-form__site-picker-form-subtitle{color:var(--studio-gray-60)}.help-center-contact-form__site-picker-cta{width:100%;padding:5px 16px !important}.help-center-contact-form__label{color:var(--studio-gray-60);margin-bottom:8px;display:block}.help-center-notice__positive-feedback{font-size:.75rem;color:var(--studio-gray-60);max-width:100%;overflow:hidden;text-overflow:ellipsis;margin:0}.help-center-notice__container{background-color:var(--studio-gray-0);border-radius:4px;color:#2c3338;padding:16px 21px;font-size:.875rem;display:flex;margin-top:16px}.help-center-notice__container p{margin:0;margin-left:16px}.help-center-notice__container .dashicon{display:block;color:var(--studio-orange-40);margin-top:2px}.help-center-notice__container .components-external-link__icon{display:none}.help-center-contact-form__domain-sharing .components-checkbox-control{display:flex}.help-center-contact-form__domain-sharing .components-checkbox-control .components-base-control__help{margin:0;padding-left:8px}.help-center-contact-form__domain-sharing .components-checkbox-control .components-base-control__help svg{fill:var(--studio-gray-50)}.form-input-validation{line-height:1.5}.form-input-validation .gridicon{fill:currentColor}
5
- @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{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ca] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=cs] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=da] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=de] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=en] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=es] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=eu] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=fi] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=fr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=gl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=hr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=hu] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=id] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=is] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=it] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=lv] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=mt] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=nb] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=nl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=pl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=pt] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ro] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ru] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sk] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sq] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sv] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sw] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=tr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=uz] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}.site-picker-title{font-size:16px;color:#101517;margin-top:20px}.site-picker__site-dropdown{margin-bottom:16px;border:1px solid #c3c4c7;border-radius:4px}.site-picker__site-dropdown.open{border-bottom:none;border-bottom-right-radius:none;border-bottom-left-radius:none}.site-picker__site-drawer{width:100%;width:calc(100% - 34px);box-shadow:2px 2px 6px -4px rgba(66,68,90,.5);max-height:300px;overflow-y:auto;position:absolute;background:#fff;transform-origin:0 0;margin:0;border:1px solid #c3c4c7;border-radius:4px;margin-left:-1px;margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0;border-top:none}.site-picker__site-item{display:flex;text-align:left;padding:17px 9px;background:transparent;border:none;width:100%;border-radius:4px;align-items:center}.site-picker__site-item.enabled{cursor:pointer}.site-picker__site-item.selected{background:#f6f7f7}.site-picker__site-item.enabled:not(.main-item):hover{background-color:#f6f7f7}.site-picker__site-info{flex:1}.site-picker__site-title{font-weight:400;font-size:.875rem;line-height:20px;margin:0}.site-picker__site-domain{font-weight:400;font-size:.75rem;line-height:.875rem;color:#646970;margin:0;margin-top:2px}.site-picker__site-picker{display:block;width:100%}.site-picker__site-item-site-logo{background-color:#f6f7f7;display:flex;align-items:center;margin-right:10px;width:34px;height:34px;justify-content:center}.site-picker__site-item-site-logo svg{width:24px;fill:#646970}.site-picker__label{color:#50575e;margin-bottom:8px;display:block}
 
6
  .button{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif;background:transparent;border-style:solid;border-width:1px;cursor:pointer;display:inline-block;margin:0;outline:0;overflow:hidden;text-align:center;text-overflow:ellipsis;text-decoration:none;vertical-align:top;box-sizing:border-box;font-size:14px;line-height:22px;border-radius:2px;padding:8px 14px;-webkit-appearance:none;appearance:none;background-color:var(--color-surface);color:var(--color-neutral-70);border-color:var(--color-neutral-10)}.rtl .button{font-family:Tahoma,-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif}.button.hidden{display:none}.button .gridicon{position:relative;top:4px;margin-top:-2px;width:18px;height:18px}.button .gridicon:not(:last-child){margin-right:4px}.button:active,.button.is-active{border-width:1px}.button:hover{border-color:var(--color-neutral-20);color:var(--color-neutral-70)}.button:visited{color:var(--color-neutral-70)}.button[disabled],.button:disabled,.button.disabled{color:var(--color-neutral-20);background-color:var(--color-surface);border-color:var(--color-neutral-5);cursor:default}.button[disabled]:active,.button[disabled].is-active,.button:disabled:active,.button:disabled.is-active,.button.disabled:active,.button.disabled.is-active{border-width:1px}.accessible-focus .button:focus{border-color:var(--color-primary);box-shadow:0 0 0 2px var(--color-primary-light)}.button.is-compact{padding:7px;color:var(--color-text-subtle);font-size:12px;line-height:1}.button.is-compact:disabled{color:var(--color-neutral-20)}.button.is-compact .gridicon{top:5px;margin-top:-8px}.button.is-compact .gridicons-plus-small{margin-left:-4px}.button.is-compact .gridicons-plus-small:last-of-type{margin-left:0}.button.is-compact .gridicons-plus-small+.gridicon{margin-left:-4px}.button.is-busy{pointer-events:none;animation:button__busy-animation 3000ms infinite linear;background-size:120px 100%;background-image:linear-gradient(-45deg, var(--color-neutral-0) 28%, var(--color-surface) 28%, var(--color-surface) 72%, var(--color-neutral-0) 72%)}.button.is-primary{background-color:var(--color-accent);border-color:var(--color-accent);color:var(--color-text-inverted)}.button.is-primary:hover,.button.is-primary:focus{background-color:var(--color-accent-60);border-color:var(--color-accent-60);color:var(--color-text-inverted)}.accessible-focus .button.is-primary:focus{box-shadow:0 0 0 2px var(--color-accent-light)}.button.is-primary.is-compact{color:var(--color-text-inverted)}.button.is-primary[disabled],.button.is-primary:disabled,.button.is-primary.disabled{color:var(--color-neutral-20);background-color:var(--color-surface);border-color:var(--color-neutral-5)}.button.is-primary.is-busy{background-image:linear-gradient(-45deg, var(--color-accent) 28%, var(--color-accent-60) 28%, var(--color-accent-60) 72%, var(--color-accent) 72%)}.button.is-scary{color:var(--color-error)}.button.is-scary:hover,.button.is-scary:focus{border-color:var(--color-error)}.accessible-focus .button.is-scary:focus{box-shadow:0 0 0 2px var(--color-error-light)}.button.is-scary[disabled],.button.is-scary:disabled{color:var(--color-neutral-20);background-color:var(--color-surface);border-color:var(--color-neutral-5)}.button.is-primary.is-scary{background-color:var(--color-error);border-color:var(--color-error);color:var(--color-text-inverted)}.button.is-primary.is-scary:hover,.button.is-primary.is-scary:focus{background-color:var(--color-error-60);border-color:var(--color-error-60)}.button.is-primary.is-scary[disabled],.button.is-primary.is-scary:disabled{color:var(--color-neutral-20);background-color:var(--color-surface);border-color:var(--color-neutral-5)}.button.is-primary.is-scary.is-busy{background-image:linear-gradient(-45deg, var(--color-error) 28%, var(--color-error-60) 28%, var(--color-error-60) 72%, var(--color-error) 72%)}.button.is-borderless{border:none;background:none;color:var(--color-text-subtle);padding-left:0;padding-right:0}.button.is-borderless:hover,.button.is-borderless:focus{background:none;color:var(--color-neutral-70)}.button.is-borderless .gridicon{width:24px;height:24px;top:6px}.button.is-borderless[disabled],.button.is-borderless:disabled{color:var(--color-neutral-20);cursor:default}.button.is-borderless[disabled]:active,.button.is-borderless[disabled].is-active,.button.is-borderless:disabled:active,.button.is-borderless:disabled.is-active{border-width:0}.button.is-borderless.is-scary{color:var(--color-error)}.button.is-borderless.is-scary:hover,.button.is-borderless.is-scary:focus{color:var(--color-error-60)}.button.is-borderless.is-scary[disabled]{color:var(--color-error-20)}.button.is-borderless.is-primary{color:var(--color-accent)}.button.is-borderless.is-primary:focus,.button.is-borderless.is-primary:hover,.button.is-borderless.is-primary:active,.button.is-borderless.is-primary.is-active{color:var(--color-accent-dark)}.button.is-borderless.is-primary:focus{box-shadow:0 0 0 2px var(--color-accent-light)}.button.is-borderless.is-primary[disabled]{color:var(--color-neutral-20)}.button.is-borderless.is-compact .gridicon{width:18px;height:18px;top:5px}.button.is-borderless.is-compact .gridicons-arrow-left{top:4px;margin-right:4px}.button.is-borderless.is-compact .gridicons-arrow-right{top:4px;margin-left:4px}.button-plain{-webkit-appearance:none;appearance:none;background:transparent;color:inherit;border:none;font-size:inherit;font-weight:inherit;outline:0;padding:0;vertical-align:baseline}.button.is-transparent{background:transparent;border-color:currentcolor;border-color:var(--transparent-button-text-color, currentcolor);display:flex;justify-content:center}.button.is-transparent,.button.is-transparent:visited{color:currentcolor;color:var(--transparent-button-text-color, currentcolor)}.button.is-transparent:hover{border-color:var(--color-accent);border-color:var(--transparent-button-text-color-hover, var(--color-accent));color:var(--color-accent);color:var(--transparent-button-text-color-hover, var(--color-accent));background:transparent}.button.is-link{background:transparent;border:none;border-radius:0;padding:0;color:var(--color-link);font-weight:400;font-size:inherit;line-height:1.65}.button.is-link:hover,.button.is-link:focus,.button.is-link:active,.button.is-link.is-active{color:var(--color-link-dark);box-shadow:none}@keyframes button__busy-animation{0%{background-position:240px 0}}
7
- @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{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ca] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=cs] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=da] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=de] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=en] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=es] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=eu] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=fi] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=fr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=gl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=hr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=hu] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=id] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=is] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=it] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=lv] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=mt] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=nb] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=nl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=pl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=pt] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ro] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ru] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sk] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sq] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sv] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sw] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=tr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=uz] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}.popover{font-size:.75rem;z-index:z-index("root", ".popover");position:absolute;top:0;left:0 /*rtl:ignore*/;right:auto /*rtl:ignore*/}.popover .popover__inner{background-color:var(--color-surface);border:1px solid var(--color-neutral-10);border-radius:2px;box-shadow:0 2px 5px rgba(0,0,0,.1),0 0 56px rgba(0,0,0,.075);text-align:center;position:relative}.popover .popover__arrow{border:10px dashed var(--color-neutral-10);height:0;line-height:0;position:absolute;width:0;z-index:z-index(".popover", ".popover .popover__arrow")}.popover.fade{transition:opacity 100ms}.popover.is-top .popover__arrow,.popover.is-top-left .popover__arrow,.popover.is-top-right .popover__arrow{bottom:0 /*rtl:ignore*/;left:50% /*rtl:ignore*/;margin-left:-10px /*rtl:ignore*/;border-top-style:solid/*rtl:ignore*/;border-bottom:none/*rtl:ignore*/;border-left-color:transparent/*rtl:ignore*/;border-right-color:transparent/*rtl:ignore*/}.popover.is-top .popover__arrow::before,.popover.is-top-left .popover__arrow::before,.popover.is-top-right .popover__arrow::before{bottom:2px /*rtl:ignore*/;border:10px solid var(--color-border-inverted);content:" ";position:absolute;left:50% /*rtl:ignore*/;margin-left:-10px /*rtl:ignore*/;border-top-style:solid/*rtl:ignore*/;border-bottom:none/*rtl:ignore*/;border-left-color:transparent/*rtl:ignore*/;border-right-color:transparent/*rtl:ignore*/}.popover.is-bottom .popover__arrow,.popover.is-bottom-left .popover__arrow,.popover.is-bottom-right .popover__arrow{top:0 /*rtl:ignore*/;left:50% /*rtl:ignore*/;margin-left:-10px /*rtl:ignore*/;border-bottom-style:solid/*rtl:ignore*/;border-top:none/*rtl:ignore*/;border-left-color:transparent/*rtl:ignore*/;border-right-color:transparent/*rtl:ignore*/}.popover.is-bottom .popover__arrow::before,.popover.is-bottom-left .popover__arrow::before,.popover.is-bottom-right .popover__arrow::before{top:2px /*rtl:ignore*/;border:10px solid var(--color-border-inverted);content:" ";position:absolute;left:50% /*rtl:ignore*/;margin-left:-10px /*rtl:ignore*/;border-bottom-style:solid/*rtl:ignore*/;border-top:none/*rtl:ignore*/;border-left-color:transparent/*rtl:ignore*/;border-right-color:transparent/*rtl:ignore*/}.popover.is-left .popover__arrow,.popover.is-left-top .popover__arrow,.popover.is-left-bottom .popover__arrow{right:0 /*rtl:ignore*/;top:50% /*rtl:ignore*/;margin-top:-10px /*rtl:ignore*/;border-left-style:solid/*rtl:ignore*/;border-right:none/*rtl:ignore*/;border-top-color:transparent/*rtl:ignore*/;border-bottom-color:transparent/*rtl:ignore*/}.popover.is-left .popover__arrow::before,.popover.is-left-top .popover__arrow::before,.popover.is-left-bottom .popover__arrow::before{right:2px /*rtl:ignore*/;border:10px solid var(--color-border-inverted);content:" ";position:absolute;top:50% /*rtl:ignore*/;margin-top:-10px /*rtl:ignore*/;border-left-style:solid/*rtl:ignore*/;border-right:none/*rtl:ignore*/;border-top-color:transparent/*rtl:ignore*/;border-bottom-color:transparent/*rtl:ignore*/}.popover.is-right .popover__arrow,.popover.is-right-top .popover__arrow,.popover.is-right-bottom .popover__arrow{left:0 /*rtl:ignore*/;top:50% /*rtl:ignore*/;margin-top:-10px /*rtl:ignore*/;border-right-style:solid/*rtl:ignore*/;border-left:none/*rtl:ignore*/;border-top-color:transparent/*rtl:ignore*/;border-bottom-color:transparent/*rtl:ignore*/}.popover.is-right .popover__arrow::before,.popover.is-right-top .popover__arrow::before,.popover.is-right-bottom .popover__arrow::before{left:2px /*rtl:ignore*/;border:10px solid var(--color-border-inverted);content:" ";position:absolute;top:50% /*rtl:ignore*/;margin-top:-10px /*rtl:ignore*/;border-right-style:solid/*rtl:ignore*/;border-left:none/*rtl:ignore*/;border-top-color:transparent/*rtl:ignore*/;border-bottom-color:transparent/*rtl:ignore*/}.popover.is-top-left,.popover.is-bottom-left,.popover.is-top-right,.popover.is-bottom-right{padding-right:0;padding-left:0}.popover.is-top-left .popover__arrow,.popover.is-bottom-left .popover__arrow{left:auto /*rtl:ignore*/;right:5px /*rtl:ignore*/}.popover.is-top-right .popover__arrow,.popover.is-bottom-right .popover__arrow{left:15px /*rtl:ignore*/}.popover.is-top .popover__inner,.popover.is-top-left .popover__inner,.popover.is-top-right .popover__inner{top:-10px /*rtl:ignore*/}.popover.is-left .popover__inner,.popover.is-top-right .popover__inner,.popover.is-bottom-right .popover__inner{left:-10px /*rtl:ignore*/}.popover.is-bottom .popover__inner,.popover.is-bottom-left .popover__inner,.popover.is-bottom-right .popover__inner{top:10px /*rtl:ignore*/}.popover.is-right .popover__inner,.popover.is-top-left .popover__inner,.popover.is-bottom-left .popover__inner{left:10px /*rtl:ignore*/}.popover.is-dialog-visible{z-index:z-index("root", "popover.is-dialog-visible")}
8
- @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{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ca] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=cs] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=da] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=de] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=en] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=es] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=eu] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=fi] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=fr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=gl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=hr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=hu] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=id] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=is] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=it] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=lv] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=mt] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=nb] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=nl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=pl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=pt] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ro] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ru] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sk] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sq] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sv] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sw] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=tr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=uz] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}.form-input-validation{color:var(--color-success);position:relative;padding:6px 24px 11px 34px;border-radius:2px;box-sizing:border-box;font-size:.875rem;animation:appear .3s ease-in-out;font-weight:400}.form-input-validation.is-error{color:var(--color-error)}.form-input-validation.is-warning{color:var(--color-warning)}.form-input-validation.is-hidden{animation:none;visibility:hidden}.form-input-validation .gridicon,.form-input-validation svg{fill:currentcolor;float:left;margin-left:-34px}
9
  input[type=text].form-text-input,input[type=url].form-text-input,input[type=password].form-text-input,input[type=email].form-text-input,input[type=tel].form-text-input,input[type=number].form-text-input,input[type=search].form-text-input{margin:0;padding:7px 14px;width:100%;color:var(--color-neutral-70);font-size:1rem;line-height:1.5;border:1px solid var(--color-neutral-10);border-radius:2px;background-color:var(--color-surface);transition:all .15s ease-in-out;box-sizing:border-box}input[type=text].form-text-input::placeholder,input[type=url].form-text-input::placeholder,input[type=password].form-text-input::placeholder,input[type=email].form-text-input::placeholder,input[type=tel].form-text-input::placeholder,input[type=number].form-text-input::placeholder,input[type=search].form-text-input::placeholder{color:var(--color-neutral-50)}input[type=text].form-text-input:hover,input[type=url].form-text-input:hover,input[type=password].form-text-input:hover,input[type=email].form-text-input:hover,input[type=tel].form-text-input:hover,input[type=number].form-text-input:hover,input[type=search].form-text-input:hover{border-color:var(--color-neutral-20)}input[type=text].form-text-input:focus,input[type=url].form-text-input:focus,input[type=password].form-text-input:focus,input[type=email].form-text-input:focus,input[type=tel].form-text-input:focus,input[type=number].form-text-input:focus,input[type=search].form-text-input:focus{border-color:var(--color-primary);outline:none;box-shadow:0 0 0 2px var(--color-primary-10)}input[type=text].form-text-input:focus:hover,input[type=url].form-text-input:focus:hover,input[type=password].form-text-input:focus:hover,input[type=email].form-text-input:focus:hover,input[type=tel].form-text-input:focus:hover,input[type=number].form-text-input:focus:hover,input[type=search].form-text-input:focus:hover{box-shadow:0 0 0 2px var(--color-primary-20)}input[type=text].form-text-input:focus::-ms-clear,input[type=url].form-text-input:focus::-ms-clear,input[type=password].form-text-input:focus::-ms-clear,input[type=email].form-text-input:focus::-ms-clear,input[type=tel].form-text-input:focus::-ms-clear,input[type=number].form-text-input:focus::-ms-clear,input[type=search].form-text-input:focus::-ms-clear{display:none}input[type=text].form-text-input:disabled,input[type=url].form-text-input:disabled,input[type=password].form-text-input:disabled,input[type=email].form-text-input:disabled,input[type=tel].form-text-input:disabled,input[type=number].form-text-input:disabled,input[type=search].form-text-input:disabled{background:var(--color-neutral-0);border-color:var(--color-neutral-0);color:var(--color-neutral-20);opacity:1;-webkit-text-fill-color:var(--color-neutral-20)}input[type=text].form-text-input:disabled:hover,input[type=url].form-text-input:disabled:hover,input[type=password].form-text-input:disabled:hover,input[type=email].form-text-input:disabled:hover,input[type=tel].form-text-input:disabled:hover,input[type=number].form-text-input:disabled:hover,input[type=search].form-text-input:disabled:hover{cursor:default}input[type=text].form-text-input:disabled::placeholder,input[type=url].form-text-input:disabled::placeholder,input[type=password].form-text-input:disabled::placeholder,input[type=email].form-text-input:disabled::placeholder,input[type=tel].form-text-input:disabled::placeholder,input[type=number].form-text-input:disabled::placeholder,input[type=search].form-text-input:disabled::placeholder{color:var(--color-neutral-20)}input.is-valid[type=text].form-text-input,input.is-valid[type=url].form-text-input,input.is-valid[type=password].form-text-input,input.is-valid[type=email].form-text-input,input.is-valid[type=tel].form-text-input,input.is-valid[type=number].form-text-input,input.is-valid[type=search].form-text-input{border-color:var(--color-success)}input.is-valid[type=text].form-text-input:hover,input.is-valid[type=url].form-text-input:hover,input.is-valid[type=password].form-text-input:hover,input.is-valid[type=email].form-text-input:hover,input.is-valid[type=tel].form-text-input:hover,input.is-valid[type=number].form-text-input:hover,input.is-valid[type=search].form-text-input:hover{border-color:var(--color-success-dark)}input.is-error[type=text].form-text-input,input.is-error[type=url].form-text-input,input.is-error[type=password].form-text-input,input.is-error[type=email].form-text-input,input.is-error[type=tel].form-text-input,input.is-error[type=number].form-text-input,input.is-error[type=search].form-text-input{border-color:var(--color-error)}input.is-error[type=text].form-text-input:hover,input.is-error[type=url].form-text-input:hover,input.is-error[type=password].form-text-input:hover,input.is-error[type=email].form-text-input:hover,input.is-error[type=tel].form-text-input:hover,input.is-error[type=number].form-text-input:hover,input.is-error[type=search].form-text-input:hover{border-color:var(--color-error-dark)}input[type=text].form-text-input:focus.is-valid,input[type=url].form-text-input:focus.is-valid,input[type=password].form-text-input:focus.is-valid,input[type=email].form-text-input:focus.is-valid,input[type=tel].form-text-input:focus.is-valid,input[type=number].form-text-input:focus.is-valid,input[type=search].form-text-input:focus.is-valid{box-shadow:0 0 0 2px var(--color-success-10)}input[type=text].form-text-input:focus.is-valid:hover,input[type=url].form-text-input:focus.is-valid:hover,input[type=password].form-text-input:focus.is-valid:hover,input[type=email].form-text-input:focus.is-valid:hover,input[type=tel].form-text-input:focus.is-valid:hover,input[type=number].form-text-input:focus.is-valid:hover,input[type=search].form-text-input:focus.is-valid:hover{box-shadow:0 0 0 2px var(--color-success-20)}input[type=text].form-text-input:focus.is-error,input[type=url].form-text-input:focus.is-error,input[type=password].form-text-input:focus.is-error,input[type=email].form-text-input:focus.is-error,input[type=tel].form-text-input:focus.is-error,input[type=number].form-text-input:focus.is-error,input[type=search].form-text-input:focus.is-error{box-shadow:0 0 0 2px var(--color-error-10)}input[type=text].form-text-input:focus.is-error:hover,input[type=url].form-text-input:focus.is-error:hover,input[type=password].form-text-input:focus.is-error:hover,input[type=email].form-text-input:focus.is-error:hover,input[type=tel].form-text-input:focus.is-error:hover,input[type=number].form-text-input:focus.is-error:hover,input[type=search].form-text-input:focus.is-error:hover{box-shadow:0 0 0 2px var(--color-error-20)}input[type=url].form-text-input,input[type=password].form-text-input,input[type=email].form-text-input{text-align:left;/*!rtl:ignore*/direction:ltr}input[type=url].form-text-input,input[type=search].form-text-input{-webkit-appearance:none;appearance:none}input[type=search].form-text-input::-webkit-search-decoration{display:none}
10
  .is-section-purchases .search{z-index:z-index("root", ".is-section-purchases .search")}.search{border-radius:2px;display:flex;flex:1 1 auto;margin-bottom:24px;width:60px;height:51px;position:relative;align-items:center;z-index:z-index("root", ".search");transition:all .15s ease-in-out}.search .search__icon-navigation{flex:0 0 auto;display:flex;align-items:center;background-color:var(--color-surface);height:100%}.accessible-focus .search .search__icon-navigation:focus{box-shadow:inset 0 0 0 2px var(--color-primary-light);position:relative;z-index:9999}.search .search__open-icon,.search .search__close-icon{flex:0 0 auto;width:50px;z-index:z-index(".search", ".search .search__open-icon");color:var(--color-primary);cursor:pointer}.search .search__open-icon:hover{color:var(--color-neutral-60)}.search .search__close-icon{color:var(--color-neutral-60);opacity:0;transition:opacity .2s ease-in}.search.is-open.has-focus{border-color:var(--color-primary);box-shadow:0 0 0 1px var(--color-primary),0 0 0 4px var(--color-primary-10)}.search.is-open.has-focus:hover{box-shadow:0 0 0 1px var(--color-primary),0 0 0 4px var(--color-primary-20)}.search.is-compact{height:36px}.search.is-compact .search__input{height:36px;font-size:.75rem}.search.is-compact .search__open-icon{margin:0 4px 0 8px;width:18px}.search.is-compact .search__close-icon{width:18px;margin-right:8px}.search.is-expanded-to-container{margin-bottom:0;position:absolute;display:flex;height:100%;width:50px;top:0;right:0}.search.is-expanded-to-container .search__input-fade{position:relative;flex:1 1 auto;display:flex}.search.is-expanded-to-container .search__input[type=search]{flex:1 1 auto;display:flex}.search__input.form-text-input[type=search]{flex:1 1 auto;display:none;z-index:z-index(".search", ".search__input");top:0;border:none;height:100%;background:var(--color-surface);appearance:none;border-radius:0;box-sizing:border-box;padding:0;-webkit-appearance:none}.search__input.form-text-input[type=search]::-webkit-search-cancel-button{-webkit-appearance:none}.search__input.form-text-input[type=search]:disabled{background:var(--color-surface)}.search__input.form-text-input[type=search]:focus{box-shadow:none;border:none}.search__input.form-text-input[type=search]:focus:hover{border:none;box-shadow:none}.search.is-open{width:100%}.search.is-open .search__open-icon{color:var(--color-neutral-60)}.search.is-open .search__close-icon{display:inline-block}.search.is-open .search__input,.search.is-open .search__close-icon{opacity:1}.search.is-open .search__input{display:block}.search.is-open .search__input-fade{border-radius:0;flex:1 1 auto;height:100%;position:relative;font-size:1rem;padding-left:8px}.search.is-open .search__input-fade::before{content:"";display:block;position:absolute;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none;pointer-events:none;z-index:z-index(".search", ".search__input")2;background:overflow-gradient(var(--color-surface-rgb));top:0;bottom:0;right:0;left:auto;width:32px;height:auto;border-radius:inherit}.search.is-open .search__input-fade.ltr{/*!rtl:ignore*/}.search.is-open .search__input-fade.ltr::before{content:"";display:block;position:absolute;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none;pointer-events:none;z-index:z-index(".search", ".search__input")2;background:overflow-gradient(var(--color-surface-rgb));top:0;bottom:0;right:0;left:auto;width:32px;height:auto;border-radius:inherit}.search.has-open-icon .search__input-fade{padding-left:0}.search__input-fade .search__text-overlay{color:transparent;position:absolute;pointer-events:none;white-space:nowrap;display:flex;align-items:center;flex:1 1 auto;overflow:hidden;font-size:inherit;font-family:inherit;width:100%;height:100%;top:1px;left:0;z-index:z-index(".search", ".search__input")1}.search .spinner{display:none}.search.is-searching .search__open-icon{display:none}.search.is-searching .spinner{flex:0 0 auto;display:flex;width:50px;height:100%;background-color:var(--color-surface);z-index:z-index(".search", ".search.is-searching .spinner")}.animating.search-opening .search input{opacity:1}
11
  @keyframes rotate-spinner{100%{transform:rotate(360deg)}}.spinner{display:flex;align-items:center}.spinner__outer,.spinner__inner{margin:auto;box-sizing:border-box;border:.1em solid transparent;border-radius:50%;animation:3s linear infinite;animation-name:rotate-spinner}.spinner__outer{border-top-color:var(--color-accent)}.spinner__inner{width:100%;height:100%;border-top-color:var(--color-accent);border-right-color:var(--color-accent);opacity:.4}
@@ -13,7 +13,7 @@ input[type=text].form-text-input,input[type=url].form-text-input,input[type=pass
13
  .card{display:block;position:relative;margin:0 auto 10px;padding:16px;box-sizing:border-box;background:var(--color-surface);box-shadow:0 0 0 1px var(--color-border-subtle)}.card::after{content:".";display:block;height:0;width:0;clear:both;visibility:hidden;overflow:hidden}@media(min-width: 480px){.card{margin-bottom:16px;padding:24px}}.card.is-compact{margin-bottom:1px}@media(min-width: 480px){.card.is-compact{margin-bottom:1px;padding:16px 24px}}.card.is-card-link{padding-right:48px}.card.is-card-link:not(a){color:var(--color-primary);font-size:100%;line-height:1.5;text-align:left;width:100%}.card.is-card-link:not(a):active,.card.is-card-link:not(a):focus,.card.is-card-link:not(a):hover{color:var(--color-link-dark)}.card.is-clickable{cursor:pointer}.card.is-highlight{padding-left:21px}.card.is-error{border-left:3px solid var(--color-error-20)}.card.is-info{border-left:3px solid var(--color-primary-20)}.card.is-success{border-left:3px solid var(--color-success-20)}.card.is-warning{border-left:3px solid var(--color-warning-20)}.card__link-indicator{color:var(--color-text-subtle);display:block;height:100%;position:absolute;top:0;right:16px}html[dir=rtl] .card__link-indicator.gridicons-chevron-right{transform:scaleX(-1)}a.card:hover .card__link-indicator,.is-card-link.card:hover .card__link-indicator{color:var(--color-text)}a.card:focus .card__link-indicator,.is-card-link.card:focus .card__link-indicator{color:var(--color-link-dark)}
14
  .help-center .help-center__container-content{scroll-behavior:smooth}.help-center .help-center__container-content svg{box-sizing:content-box}.help-center .help-center__container-content .inline-help__search .card.search-card{border:1px solid var(--studio-gray-10);border-radius:2px;box-shadow:none;margin-bottom:30px}.help-center .help-center__container-content .inline-help__search .card.search-card .is-open.has-focus{border:1px var(--studio-gray-50);box-shadow:none}.help-center .help-center__container-content .inline-help__search .card.search-card .search{height:40px}.help-center .help-center__container-content .inline-help__search .card.search-card input.search__input{font-size:.875rem}.help-center .help-center__container-content .inline-help__search .help-center-search-results__empty-results{padding:8px 16px 0;margin:1em 0;font-size:.875rem;color:var(--color-text-subtle);font-style:italic;text-align:left}@media screen and (min-width: 661px){.help-center .help-center__container-content .inline-help__search .help-center-search-results__empty-results{font-size:1rem}}.help-center .help-center__container-content .inline-help__search .help-center-search-results__cell{width:100%}.help-center .help-center__container-content .inline-help__search .help-center-search-results__cell svg{overflow:visible}.help-center .help-center__container-content .inline-help__search .help-center-search-results__results li:last-child{margin-bottom:40px}.help-center .help-center__container-content .inline-help__search .help-center-search-results__results .help-center-search-results__title{font-weight:500;line-height:1.4;display:block;font-size:.875rem;text-align:left}.help-center .help-center__container-content .inline-help__search .help-center-search-results__results .help-center-search-results__title::after{content:":"}.help-center .help-center__container-content .inline-help__search .help-center-search-results__results .help-center-search-results__item{margin:0 0 16px 0;font-size:.875rem}@media screen and (min-width: 661px){.help-center .help-center__container-content .inline-help__search .help-center-search-results__results .help-center-search-results__item{font-size:1.25rem;line-height:1.3}}.help-center .help-center__container-content .inline-help__search .help-center-search-results__results .help-center-search-results__item a{text-decoration:underline;font-weight:normal;line-height:1.4;display:flex}.help-center .help-center__container-content .inline-help__search .help-center-search-results__results .help-center-search-results__item a span{flex-grow:2}.help-center .help-center__container-content .inline-help__search .help-center-search-results__results .help-center-search-results__item a .gridicon{align-self:baseline;color:var(--color-neutral-light);flex-shrink:0;margin-right:8px;position:relative;top:2px}.help-center .help-center__container-content .inline-help__search .help-center-search-results__results .help-center-search-results__item a:hover{cursor:pointer;background:var(--color-neutral-0)}.help-center .help-center__container-content .inline-help__search .help-center-search-results__results .help-center-search-results__item a:hover .gridicon{color:var(--color-neutral)}.help-center .help-center__container-content .inline-help__search .help-center-search-results__results .help-center-search-results__item a:focus{color:var(--color-text-inverted)}.help-center .help-center__container-content .inline-help__search .help-center-search-results__results .help-center-search-results__item a:focus .gridicon{color:var(--color-text-inverted)}.help-center .help-center__container-content .inline-help__search .help-center-search-results__results .help-center-search-results__item .help-center-search-results__cell a{display:flex;text-decoration:none;color:var(--studio-gray-100);font-size:.875rem}.help-center .help-center__container-content .inline-help__search .help-center-search-results__results .help-center-search-results__item .help-center-search-results__cell a svg{margin-right:15px;display:block;background:var(--studio-gray-0);fill:var(--studio-blue-50);padding:8px}.help-center .help-center__container-content .inline-help__search .help-center-search-results__results .help-center-search-results__item .help-center-search-results__cell a span{display:block;align-self:center}.help-center .help-center__container-content .inline-help__more-resources,.help-center .help-center__container-content .help-center-search-results__list{list-style:none;text-align:left;margin:0;padding:0}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item,.help-center .help-center__container-content .inline-help__more-resources .help-center-search-results__item,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item,.help-center .help-center__container-content .help-center-search-results__list .help-center-search-results__item{margin:0;margin-bottom:.6em;font-size:.875rem}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell,.help-center .help-center__container-content .inline-help__more-resources .help-center-search-results__item .inline-help__resource-cell,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell,.help-center .help-center__container-content .help-center-search-results__list .help-center-search-results__item .inline-help__resource-cell{width:100%}@media screen and (max-width: 660px){.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item,.help-center .help-center__container-content .inline-help__more-resources .help-center-search-results__item,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item,.help-center .help-center__container-content .help-center-search-results__list .help-center-search-results__item{line-height:1.3}}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item a,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item button,.help-center .help-center__container-content .inline-help__more-resources .help-center-search-results__item a,.help-center .help-center__container-content .inline-help__more-resources .help-center-search-results__item button,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item a,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item button,.help-center .help-center__container-content .help-center-search-results__list .help-center-search-results__item a,.help-center .help-center__container-content .help-center-search-results__list .help-center-search-results__item button{color:#000;text-decoration:none;font-weight:normal;line-height:1.4;display:flex;align-items:center}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item a span,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item button span,.help-center .help-center__container-content .inline-help__more-resources .help-center-search-results__item a span,.help-center .help-center__container-content .inline-help__more-resources .help-center-search-results__item button span,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item a span,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item button span,.help-center .help-center__container-content .help-center-search-results__list .help-center-search-results__item a span,.help-center .help-center__container-content .help-center-search-results__list .help-center-search-results__item button span{flex-grow:2}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item a .gridicon,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item button .gridicon,.help-center .help-center__container-content .inline-help__more-resources .help-center-search-results__item a .gridicon,.help-center .help-center__container-content .inline-help__more-resources .help-center-search-results__item button .gridicon,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item a .gridicon,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item button .gridicon,.help-center .help-center__container-content .help-center-search-results__list .help-center-search-results__item a .gridicon,.help-center .help-center__container-content .help-center-search-results__list .help-center-search-results__item button .gridicon{align-self:baseline;background:var(--color-neutral-0);color:var(--color-neutral-light);flex-shrink:0;margin-right:8px;padding:10px;position:relative}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item a:hover,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item button:hover,.help-center .help-center__container-content .inline-help__more-resources .help-center-search-results__item a:hover,.help-center .help-center__container-content .inline-help__more-resources .help-center-search-results__item button:hover,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item a:hover,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item button:hover,.help-center .help-center__container-content .help-center-search-results__list .help-center-search-results__item a:hover,.help-center .help-center__container-content .help-center-search-results__list .help-center-search-results__item button:hover{cursor:pointer;background:var(--color-neutral-0)}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item a:hover .gridicon,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item button:hover .gridicon,.help-center .help-center__container-content .inline-help__more-resources .help-center-search-results__item a:hover .gridicon,.help-center .help-center__container-content .inline-help__more-resources .help-center-search-results__item button:hover .gridicon,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item a:hover .gridicon,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item button:hover .gridicon,.help-center .help-center__container-content .help-center-search-results__list .help-center-search-results__item a:hover .gridicon,.help-center .help-center__container-content .help-center-search-results__list .help-center-search-results__item button:hover .gridicon{color:var(--color-neutral)}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item{margin-bottom:16px}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell a,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell button,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell a,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell button{display:flex}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell a svg:first-of-type,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell button svg:first-of-type,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell a svg:first-of-type,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell button svg:first-of-type{margin-right:15px;display:block;padding:8px;background:var(--studio-gray-0)}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell a span,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell button span,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell a span,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell button span{display:block;align-self:center}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell a.inline-help__video svg,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell button.inline-help__video svg,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell a.inline-help__video svg,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell button.inline-help__video svg{fill:var(--studio-pink-50)}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell a.inline-help__capture-video svg,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell button.inline-help__capture-video svg,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell a.inline-help__capture-video svg,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell button.inline-help__capture-video svg{fill:var(--studio-orange-30)}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell a.inline-help__desktop svg,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell button.inline-help__desktop svg,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell a.inline-help__desktop svg,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell button.inline-help__desktop svg{fill:var(--studio-celadon-30)}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell a.inline-help__format-list-numbered svg,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell button.inline-help__format-list-numbered svg,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell a.inline-help__format-list-numbered svg,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell button.inline-help__format-list-numbered svg{fill:var(--studio-purple-40)}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell a.inline-help__new-releases,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell button.inline-help__new-releases,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell a.inline-help__new-releases,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell button.inline-help__new-releases{padding:0;font-size:.875rem !important;color:var(--studio-gray-100);text-decoration:none !important;width:100%}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell a.inline-help__new-releases>:first-child,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell button.inline-help__new-releases>:first-child,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell a.inline-help__new-releases>:first-child,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell button.inline-help__new-releases>:first-child{fill:var(--studio-blue-70)}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell a.inline-help__new-releases span,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell button.inline-help__new-releases span,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell a.inline-help__new-releases span,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell button.inline-help__new-releases span{text-decoration:none;color:var(--studio-gray-100)}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell a.inline-help__new-releases .inline-help__new-releases_dot,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell button.inline-help__new-releases .inline-help__new-releases_dot,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell a.inline-help__new-releases .inline-help__new-releases_dot,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell button.inline-help__new-releases .inline-help__new-releases_dot{align-self:auto;background:none;color:var(--color-masterbar-unread-dot-background);padding-left:8px}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell a.inline-help__new-releases:active,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell a.inline-help__new-releases:focus,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell button.inline-help__new-releases:active,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell button.inline-help__new-releases:focus,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell a.inline-help__new-releases:active,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell a.inline-help__new-releases:focus,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell button.inline-help__new-releases:active,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell button.inline-help__new-releases:focus{box-shadow:0 0 0 1px var(--studio-blue-30),0 0 2px 1px rgba(79,148,212,.8);outline:1px solid transparent}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell a>svg:last-child,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell button>svg:last-child,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell a>svg:last-child,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell button>svg:last-child{fill:unset;margin-left:auto}.help-center .help-center__container-content .inline-help__secondary-view.inline-help__richresult button.button.is-borderless,.help-center .help-center__container-content .inline-help__secondary-view.inline-help__contact button.button.is-borderless{display:flex;align-items:center;font-size:.875rem;color:var(--studio-gray-100)}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__content{margin-bottom:40px}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__content h3{font-size:1rem;font-weight:500;margin:1em 0}.help-center .help-center__container-content .help-center-contact-page .help-center-notice__container{margin:0 0 16px}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes{display:flex;flex-direction:column;justify-content:space-between}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes a{text-decoration:none;color:#1d2327}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes.is-reversed{flex-direction:column-reverse}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box{display:flex;flex-direction:row;border:1px solid var(--studio-gray-5);overflow:hidden;border-radius:2px;cursor:pointer;margin-bottom:16px}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box .help-center-contact-page__box-icon{border-radius:2px 0 0 2px;display:flex;background-color:var(--studio-blue-70);width:56px}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box .help-center-contact-page__box-icon svg{fill:#fff;display:block;margin:auto}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box h2{font-size:.875rem !important}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box p{font-size:.75rem !important;color:var(--studio-gray-60)}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box.chat .help-center-contact-page__box-icon{background-color:var(--color-accent)}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box.chat.is-disabled{cursor:auto}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box.chat.is-disabled .help-center-contact-page__box-icon{background-color:var(--studio-gray-0)}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box.chat.is-disabled .help-center-contact-page__box-icon svg{fill:var(--studio-gray-20)}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box.chat.is-disabled h2,.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box.chat.is-disabled p{color:var(--studio-gray-60)}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box :not(.help-center-contact-page__box-icon){padding:0 15px;margin:16px 0}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box :not(.help-center-contact-page__box-icon)>*{padding:0;margin:0}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box :not(.help-center-contact-page__box-icon) p{margin-top:2px}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box :not(.help-center-contact-page__box-icon) h2{font-weight:500;font-size:1rem}.help-center .help-center__container-content .help-center-contact-page .inline-help__results h3{margin-bottom:16px}.help-center .help-center__container-content .help-center-contact-page .inline-help__results h3#inline-search--admin_section{margin-top:40px}.help-center .help-center__container-content .help-center-contact-page .inline-help__results .help-center-search-results__item{margin-bottom:16px}.help-center .help-center__container-content .help-center-contact-page .inline-help__results .help-center-search-results__item .help-center-search-results__cell a{display:flex}.help-center .help-center__container-content .help-center-contact-page .inline-help__results .help-center-search-results__item .help-center-search-results__cell a svg{margin-right:15px;border-radius:2px;display:block;background:var(--studio-gray-0);fill:var(--studio-blue-50)}.help-center .help-center__container-content .help-center-contact-page .inline-help__results .help-center-search-results__item .help-center-search-results__cell a span{display:block;align-self:center}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story{padding:0 20px 20px}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story h1.support-article-dialog__header-title>a{text-decoration:none;clear:none;color:var(--color-neutral-70);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5rem;font-weight:600;line-height:32px;margin:56px 0 0;max-width:750px}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story h2{font-size:1.25rem}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story h3,.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story h4{font-size:1rem}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story h5{font-size:.875rem}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story h2,.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story h3,.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story h4,.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story h5{font-weight:600;color:var(--color-neutral-100);margin:8px 0}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story button.button.is-borderless:focus,.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story a.button.is-borderless:focus{color:#043959;box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8);outline:1px solid transparent;border-color:inherit}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story a:not(.support-article-dialog__header-title-link){text-decoration:none}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story a[name=toc] span{color:var(--color-neutral-80);font-size:1rem}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story p.toc-jump{display:none}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .clipboard-button{display:none}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .wp-block-a8c-support-table-of-contents{background-color:var(--studio-blue-0);padding:16px}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .wp-block-a8c-support-table-of-contents ol{list-style-type:none;margin:0}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .wp-block-a8c-support-table-of-contents li{margin-bottom:0}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .wp-block-a8c-support-table-of-contents li a{font-size:.875rem}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .wp-block-a8c-support-table-of-contents li ol{margin-left:2em}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .help-center-embed-result__external-button{display:flex;align-items:center}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story p{font-size:.875rem;color:var(--color-neutral-80)}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story ul{font-size:.875rem;color:var(--color-neutral-80);list-style-type:circle;list-style-position:inside}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story span.noticon.noticon-star{color:var(--studio-yellow-20)}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .support-article-dialog__header{margin-bottom:0}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .wp-block-quote{background-color:var(--color-neutral-0);border-left:none;padding:16px;color:var(--color-neutral-80)}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .wp-block-separator{margin:auto;border-bottom:1px solid var(--color-neutral-10);border-top:0;width:100%}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .wp-block-group__inner-container{background-color:var(--color-neutral-0);padding:16px 0}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story :where(.wp-block-group.has-background){padding:0}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .wp-block-button{width:100%}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .wp-block-button .wp-block-button__link{background-color:var(--color-surface);border:1px solid var(--color-neutral-10);border-radius:2px;color:var(--color-neutral-70);font-size:.875rem;padding:8px 14px;width:100%}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .button-primary{background-color:var(--wp-admin-theme-color);border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--color-text-inverted);font-size:.875rem;padding:4px 14px;width:100%}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .callout .wp-block-column{background-color:var(--color-neutral-0)}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .callout .wp-block-column .wp-block-quote{margin:0}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .wp-block-image figure figcaption{display:block}.help-center__container-footer .button.help-center-contact-page__button{background-color:transparent;border:1px solid var(--studio-gray-10);padding:5px;width:100%;display:flex;align-items:center;justify-content:center;margin-bottom:0;line-height:2.15}.help-center__container-footer .button.help-center-contact-page__button:hover{border-color:var(--color-neutral-20);box-shadow:none;outline:none}.help-center__container-footer .button.help-center-contact-page__button:focus{color:#043959;box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8);outline:1px solid transparent;border-color:inherit}.help-center__container-footer .button.help-center-contact-page__button svg{margin-right:10px;vertical-align:middle}.help-center__container-footer .button.help-center-contact-page__button span{color:var(--studio-gray-100)}
15
  .placeholder-lines__help-center{margin:16px;min-height:120px}.placeholder-lines__help-center-item{height:16px;margin:16px 0;border-radius:16px;background-color:var(--color-neutral-0);color:transparent;animation:placeholder-lines__help-center-loading 2s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;animation-delay:0s}.placeholder-lines__help-center-item:nth-child(1){animation-delay:-1.3s}.placeholder-lines__help-center-item:nth-child(2){animation-delay:-2.5s}.placeholder-lines__help-center-item:nth-child(3){animation-delay:-3.8s}.placeholder-lines__help-center-item::after{content:" "}@keyframes placeholder-lines__help-center-loading{0%{opacity:.3;width:65%}25%{opacity:.6;width:90%}50%{opacity:.5;width:18%}75%{opacity:.8;width:75%}100%{opacity:.3;width:65%}}
16
- @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{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ca] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=cs] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=da] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=de] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=en] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=es] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=eu] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=fi] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=fr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=gl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=hr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=hu] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=id] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=is] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=it] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=lv] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=mt] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=nb] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=nl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=pl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=pt] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ro] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ru] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sk] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sq] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sv] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sw] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=tr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=uz] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}@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{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ca] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=cs] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=da] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=de] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=en] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=es] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=eu] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=fi] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=fr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=gl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=hr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=hu] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=id] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=is] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=it] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=lv] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=mt] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=nb] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=nl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=pl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=pt] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ro] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ru] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sk] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sq] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sv] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sw] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=tr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=uz] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}@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{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ca] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=cs] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=da] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=de] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=en] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=es] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=eu] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=fi] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=fr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=gl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=hr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=hu] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=id] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=is] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=it] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=lv] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=mt] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=nb] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=nl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=pl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=pt] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ro] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ru] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sk] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sq] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sv] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sw] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=tr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[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}100%{opacity:.5}}: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}:root{--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}: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: #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: 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-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{--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-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-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{--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-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{--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{--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 .masterbar__item-notifications .gridicon{fill:#000}.color-scheme.is-midnight{--theme-text-color: #fff;--theme-text-color-rgb: 255, 255, 255;--theme-base-color: #363b3f;--theme-base-color-rgb: 54, 59, 63;--theme-submenu-text-color: #c3c4c5;--theme-submenu-background-color: #26292c;--theme-icon-color: #ece6f6;--theme-highlight-color: #e14d43;--theme-highlight-color-rgb: 225, 77, 67;--theme-notification-color: #69a8bb;--color-primary: var(--theme-highlight-color);--color-primary-rgb: var(--theme-highlight-color-rgb);--color-primary-dark: var(--studio-red-70);--color-primary-dark-rgb: var(--studio-red-70-rgb);--color-primary-light: var(--studio-red-30);--color-primary-light-rgb: var(--studio-red-30-rgb);--color-primary-0: var(--studio-red-0);--color-primary-0-rgb: var(--studio-red-0-rgb);--color-primary-5: var(--studio-red-5);--color-primary-5-rgb: var(--studio-red-5-rgb);--color-primary-10: var(--studio-red-10);--color-primary-10-rgb: var(--studio-red-10-rgb);--color-primary-20: var(--studio-red-20);--color-primary-20-rgb: var(--studio-red-20-rgb);--color-primary-30: var(--studio-red-30);--color-primary-30-rgb: var(--studio-red-30-rgb);--color-primary-40: var(--studio-red-40);--color-primary-40-rgb: var(--studio-red-40-rgb);--color-primary-50: var(--studio-red-50);--color-primary-50-rgb: var(--studio-red-50-rgb);--color-primary-60: var(--studio-red-60);--color-primary-60-rgb: var(--studio-red-60-rgb);--color-primary-70: var(--studio-red-70);--color-primary-70-rgb: var(--studio-red-70-rgb);--color-primary-80: var(--studio-red-80);--color-primary-80-rgb: var(--studio-red-80-rgb);--color-primary-90: var(--studio-red-90);--color-primary-90-rgb: var(--studio-red-90-rgb);--color-primary-100: var(--studio-red-100);--color-primary-100-rgb: var(--studio-red-100-rgb);--color-accent: var(--theme-highlight-color);--color-accent-rgb: var(--theme-highlight-color-rgb);--color-accent-dark: var(--studio-red-70);--color-accent-dark-rgb: var(--studio-red-70-rgb);--color-accent-light: var(--studio-red-30);--color-accent-light-rgb: var(--studio-red-30-rgb);--color-accent-0: var(--studio-red-0);--color-accent-0-rgb: var(--studio-red-0-rgb);--color-accent-5: var(--studio-red-5);--color-accent-5-rgb: var(--studio-red-5-rgb);--color-accent-10: var(--studio-red-10);--color-accent-10-rgb: var(--studio-red-10-rgb);--color-accent-20: var(--studio-red-20);--color-accent-20-rgb: var(--studio-red-20-rgb);--color-accent-30: var(--studio-red-30);--color-accent-30-rgb: var(--studio-red-30-rgb);--color-accent-40: var(--studio-red-40);--color-accent-40-rgb: var(--studio-red-40-rgb);--color-accent-50: var(--studio-red-50);--color-accent-50-rgb: var(--studio-red-50-rgb);--color-accent-60: var(--studio-red-60);--color-accent-60-rgb: var(--studio-red-60-rgb);--color-accent-70: var(--studio-red-70);--color-accent-70-rgb: var(--studio-red-70-rgb);--color-accent-80: var(--studio-red-80);--color-accent-80-rgb: var(--studio-red-80-rgb);--color-accent-90: var(--studio-red-90);--color-accent-90-rgb: var(--studio-red-90-rgb);--color-accent-100: var(--studio-red-100);--color-accent-100-rgb: var(--studio-red-100-rgb);--color-masterbar-background: var(--theme-base-color);--color-masterbar-border: var(--theme-submenu-background-color);--color-masterbar-text: var(--studio-white);--color-masterbar-unread-dot-background: var(--theme-notification-color);--color-masterbar-item-hover-background: var(--theme-submenu-background-color);--color-masterbar-item-active-background: var(--theme-submenu-background-color);--color-masterbar-item-new-editor-background: var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background: var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-background: var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background: var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border: var(--studio-gray-10);--color-sidebar-background: var(--theme-base-color);--color-sidebar-background-rgb: var(--theme-base-color-rgb);--color-sidebar-border: var(--theme-submenu-background-color);--color-sidebar-text: var(--theme-text-color);--color-sidebar-text-rgb: var(--theme-text-color-rgb);--color-sidebar-text-alternative: var(--theme-text-color);--color-sidebar-gridicon-fill: var(--theme-icon-color);--color-sidebar-menu-selected-background: var(--theme-highlight-color);--color-sidebar-menu-selected-background-rgb: var(--theme-highlight-color-rgb);--color-sidebar-menu-selected-text: var(--theme-text-color);--color-sidebar-menu-selected-text-rgb: var(--theme-text-color-rgb);--color-sidebar-menu-hover-background: var(--theme-highlight-color);--color-sidebar-menu-hover-background-rgb: var(--theme-highlight-color-rgb);--color-sidebar-menu-hover-text: var(--theme-text-color);--color-sidebar-submenu-background: var(--theme-submenu-background-color);--color-sidebar-submenu-text: var(--theme-submenu-text-color);--color-sidebar-submenu-hover-background: transparent;--color-sidebar-submenu-hover-text: var(--theme-highlight-color)}.color-scheme.is-modern{--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-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{--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-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-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{--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-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)}.theme-jetpack-cloud,.color-scheme.is-jetpack-cloud{--color-primary: var(--studio-black);--color-primary-rgb: var(--studio-black-rgb);--color-primary-dark: var(--studio-gray-70);--color-primary-dark-rgb: var(--studio-gray-70-rgb);--color-primary-light: var(--studio-gray-30);--color-primary-light-rgb: var(--studio-gray-30-rgb);--color-primary-0: var(--studio-gray-0);--color-primary-0-rgb: var(--studio-gray-0-rgb);--color-primary-5: var(--studio-gray-5);--color-primary-5-rgb: var(--studio-gray-5-rgb);--color-primary-10: var(--studio-gray-10);--color-primary-10-rgb: var(--studio-gray-10-rgb);--color-primary-20: var(--studio-gray-20);--color-primary-20-rgb: var(--studio-gray-20-rgb);--color-primary-30: var(--studio-gray-30);--color-primary-30-rgb: var(--studio-gray-30-rgb);--color-primary-40: var(--studio-gray-40);--color-primary-40-rgb: var(--studio-gray-40-rgb);--color-primary-50: var(--studio-gray-50);--color-primary-50-rgb: var(--studio-gray-rgb);--color-primary-60: var(--studio-gray-60);--color-primary-60-rgb: var(--studio-gray-60-rgb);--color-primary-70: var(--studio-gray-70);--color-primary-70-rgb: var(--studio-gray-70-rgb);--color-primary-80: var(--studio-gray-80);--color-primary-80-rgb: var(--studio-gray-80-rgb);--color-primary-90: var(--studio-gray-90);--color-primary-90-rgb: var(--studio-gray-90-rgb);--color-primary-100: var(--studio-gray-100);--color-primary-100-rgb: var(--studio-gray-100-rgb);--color-accent: var(--studio-black);--color-accent-rgb: var(--studio-black-rgb);--color-accent-dark: var(--studio-gray-70);--color-accent-dark-rgb: var(--studio-gray-70-rgb);--color-accent-light: var(--studio-gray-30);--color-accent-light-rgb: var(--studio-gray-30-rgb);--color-accent-0: var(--studio-gray-0);--color-accent-0-rgb: var(--studio-gray-0-rgb);--color-accent-5: var(--studio-gray-5);--color-accent-5-rgb: var(--studio-gray-5-rgb);--color-accent-10: var(--studio-gray-10);--color-accent-10-rgb: var(--studio-gray-10-rgb);--color-accent-20: var(--studio-gray-20);--color-accent-20-rgb: var(--studio-gray-20-rgb);--color-accent-30: var(--studio-gray-30);--color-accent-30-rgb: var(--studio-gray-30-rgb);--color-accent-40: var(--studio-gray-40);--color-accent-40-rgb: var(--studio-gray-40-rgb);--color-accent-50: var(--studio-gray-50);--color-accent-50-rgb: var(--studio-gray-50-rgb);--color-accent-60: var(--studio-gray-60);--color-accent-60-rgb: var(--studio-gray-60-rgb);--color-accent-70: var(--studio-gray-70);--color-accent-70-rgb: var(--studio-gray-70-rgb);--color-accent-80: var(--studio-gray-80);--color-accent-80-rgb: var(--studio-gray-80-rgb);--color-accent-90: var(--studio-gray-90);--color-accent-90-rgb: var(--studio-gray-90-rgb);--color-accent-100: var(--studio-gray-100);--color-accent-100-rgb: var(--studio-gray-100-rgb);--color-link: var(--studio-jetpack-green-50);--color-link-rgb: var(--studio-jetpack-green-50-rgb);--color-link-dark: var(--studio-jetpack-green-70);--color-link-dark-rgb: var(--studio-jetpack-green-70-rgb);--color-link-light: var(--studio-jetpack-green-30);--color-link-light-rgb: var(--studio-jetpack-green-30-rgb);--color-link-0: var(--studio-jetpack-green-0);--color-link-0-rgb: var(--studio-jetpack-green-0-rgb);--color-link-5: var(--studio-jetpack-green-5);--color-link-5-rgb: var(--studio-jetpack-green-5-rgb);--color-link-10: var(--studio-jetpack-green-10);--color-link-10-rgb: var(--studio-jetpack-green-10-rgb);--color-link-20: var(--studio-jetpack-green-20);--color-link-20-rgb: var(--studio-jetpack-green-20-rgb);--color-link-30: var(--studio-jetpack-green-30);--color-link-30-rgb: var(--studio-jetpack-green-30-rgb);--color-link-40: var(--studio-jetpack-green-40);--color-link-40-rgb: var(--studio-jetpack-green-40-rgb);--color-link-50: var(--studio-gray-50);--color-link-50-rgb: var(--studio-gray-50-rgb);--color-link-60: var(--studio-jetpack-green-60);--color-link-60-rgb: var(--studio-jetpack-green-60-rgb);--color-link-70: var(--studio-jetpack-green-70);--color-link-70-rgb: var(--studio-jetpack-green-70-rgb);--color-link-80: var(--studio-jetpack-green-80);--color-link-80-rgb: var(--studio-jetpack-green-80-rgb);--color-link-90: var(--studio-jetpack-green-90);--color-link-90-rgb: var(--studio-jetpack-green-90-rgb);--color-link-100: var(--studio-jetpack-green-100);--color-link-100-rgb: var(--studio-jetpack-green-100-rgb);--color-masterbar-background: var(--studio-white);--color-masterbar-border: var(--studio-gray-5);--color-masterbar-text: var(--studio-gray-50);--color-masterbar-item-hover-background: var(--studio-white);--color-masterbar-item-active-background: var(--studio-white);--color-masterbar-item-new-editor-background: var(--studio-white);--color-masterbar-item-new-editor-hover-background: var(--studio-white);--color-masterbar-unread-dot-background: var(--color-accent-30);--color-masterbar-toggle-drafts-editor-background: var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background: var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border: var(--studio-gray-10);--color-sidebar-background: var(--studio-white);--color-sidebar-background-rgb: var(--studio-white-rgb);--color-sidebar-border: var(--studio-gray-5);--color-sidebar-text: var(--studio-gray-60);--color-sidebar-text-rgb: var(--studio-gray-60-rgb);--color-sidebar-text-alternative: var(--studio-gray-60);--color-sidebar-gridicon-fill: var(--studio-gray-60);--color-sidebar-menu-selected-text: var(--studio-gray-90);--color-sidebar-menu-selected-text-rgb: var(--studio-gray-90-rgb);--color-sidebar-menu-selected-background: var(--studio-gray-0);--color-sidebar-menu-selected-background-rgb: var(--studio-gray-0-rgb);--color-sidebar-menu-selected-gridicon-fill: var(--studio-jetpack-green-50);--color-sidebar-menu-hover-text: var(--studio-gray-90);--color-sidebar-menu-hover-background: var(--studio-gray-0);--color-sidebar-menu-hover-background-rgb: var(--studio-gray-0-rgb);--color-scary-0: var(--studio-red-0);--color-scary-5: var(--studio-red-5);--color-scary-40: var(--studio-red-40);--color-scary-50: var(--studio-red-50);--color-scary-60: var(--studio-red-60);--color-scary-70: var(--studio-red-70)}.whats-new-guide__main.components-guide-overlay{background-color:rgba(0,0,0,.45)}.whats-new-guide__main.components-modal__frame{top:calc(17.5vh - 47px);border-radius:4px;overflow:auto;max-height:80vh}@media(max-width: 660px){.whats-new-guide__main.components-modal__frame{width:90vw;min-width:90vw;left:5vw;right:5vw;height:520px}}@media(min-width: 660px){.whats-new-guide__main.components-modal__frame{width:744px;min-height:400px;height:-moz-fit-content;height:fit-content;top:calc(50% - 47px)}}.whats-new-guide__main .components-modal__header{height:0}.whats-new-guide__main .components-modal__header .components-button{color:#fff;color:var(--studio-white)}.whats-new-guide__main .guide__container{display:flex;flex-direction:column;height:100%}.whats-new-guide__main .guide__footer{width:100%;margin-top:auto;display:flex;justify-content:space-between;align-items:center;background:#fff;background:var(--studio-white);border-top:none;box-sizing:border-box}@media(min-width: 660px){.whats-new-guide__main .guide__footer{position:absolute;width:372px;height:auto;bottom:0;left:0;padding:32px}}@media(max-width: 660px){.whats-new-guide__main .guide__footer{padding:16px}}.whats-new-guide__main .guide__footer .guide__buttons .components-button{background-color:#fff;background-color:var(--color-surface);color:#3c434a;color:var(--color-neutral-70);border-color:#c3c4c7;border-color:var(--color-neutral-10);border-radius:2px;border-style:solid;border-width:1px;box-sizing:border-box;font-weight:400;line-height:22px;padding:6px 16px;text-decoration:none;vertical-align:top}.whats-new-guide__main .guide__footer .guide__buttons .guide__forward-button{background-color:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color);color:#fff;color:var(--color-text-inverted);font-size:.875rem}.whats-new-guide__main .guide__footer .guide__buttons .guide__forward-button:focus{border:none}.whats-new-guide__main .guide__footer .guide__buttons .guide__back-button{margin-right:20px}.whats-new-guide__main .guide__page{width:100%;justify-content:start;overflow:auto}.whats-new-guide__main .pagination-control li button{background-color:#c3c4c7;background-color:var(--studio-gray-10)}.whats-new-guide__main .pagination-control li button.is-current{background-color:#2c3338;background-color:var(--studio-gray-80)}.whats-new-page__container{display:flex;flex-direction:column-reverse;justify-content:flex-end;background:#fff;background:var(--studio-white);width:100%}@media(min-width: 660px){.whats-new-page__container{flex-direction:row;justify-content:flex-start;position:relative;height:100%;min-height:400px;bottom:0}}.whats-new-page__text,.whats-new-page__visual{box-sizing:border-box}@media(min-width: 660px){.whats-new-page__text,.whats-new-page__visual{flex:1 auto;min-width:372px}}.whats-new-page__text{padding:16px 16px 0;min-height:222px;height:-moz-fit-content;height:fit-content}@media(min-width: 660px){.whats-new-page__text{overflow:auto;padding:32px 32px 0;margin-bottom:94px}}.whats-new-page__visual{height:50%;max-height:230px;padding:32px 52px 0;background:#0675c4;background:var(--studio-blue-50);text-align:center;display:flex;flex-direction:column;flex:1;overflow:hidden;position:relative}@media(min-width: 660px){.whats-new-page__visual{height:auto;max-height:initial;width:372px}.whats-new-page__visual .whats-new-page__image-container{position:absolute;top:74px;left:52px;right:52px}}@media(max-width: 660px){.whats-new-page__visual{max-height:33.3333333333vh}}@media(max-height: 480px){.whats-new-page__visual{max-height:25vh}}.whats-new-page__heading{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif;font-weight:400;letter-spacing:-0.4px;color:#1d2327;color:var(--studio-gray-90);font-size:1.5rem;line-height:1;margin:0}@media(min-width: 660px){.whats-new-page__heading{font-size:2rem}}body.locale-de .whats-new-page__heading{font-size:2.25rem}@media(min-width: 660px){body.locale-de .whats-new-page__heading{font-size:1.5rem}}.whats-new-page__description p{font-size:.875rem;line-height:22px;margin:10px 0 0;color:#2c3338;color:var(--studio-gray-80)}@media(min-width: 660px){.whats-new-page__description p{margin:10px 0;font-size:1rem;line-height:24px}}.whats-new-page__link{font-size:.875rem}.whats-new-page__link.is-tertiary:not(:disabled){color:#0675c4;color:var(--studio-blue-50)}.whats-new-page__link.is-tertiary:not(:disabled):hover{box-shadow:none}@media(min-width: 660px){.whats-new-page__link{font-size:1rem;line-height:24px}}.whats-new-page__image{max-width:100%;height:auto;margin-top:auto;align-self:center;max-height:100%}@media(min-width: 660px){.whats-new-page__image{max-height:none}}
17
  :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}:root{--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}: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: #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: 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-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{--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-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-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{--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-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{--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{--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 .masterbar__item-notifications .gridicon{fill:#000}.color-scheme.is-midnight{--theme-text-color: #fff;--theme-text-color-rgb: 255, 255, 255;--theme-base-color: #363b3f;--theme-base-color-rgb: 54, 59, 63;--theme-submenu-text-color: #c3c4c5;--theme-submenu-background-color: #26292c;--theme-icon-color: #ece6f6;--theme-highlight-color: #e14d43;--theme-highlight-color-rgb: 225, 77, 67;--theme-notification-color: #69a8bb;--color-primary: var(--theme-highlight-color);--color-primary-rgb: var(--theme-highlight-color-rgb);--color-primary-dark: var(--studio-red-70);--color-primary-dark-rgb: var(--studio-red-70-rgb);--color-primary-light: var(--studio-red-30);--color-primary-light-rgb: var(--studio-red-30-rgb);--color-primary-0: var(--studio-red-0);--color-primary-0-rgb: var(--studio-red-0-rgb);--color-primary-5: var(--studio-red-5);--color-primary-5-rgb: var(--studio-red-5-rgb);--color-primary-10: var(--studio-red-10);--color-primary-10-rgb: var(--studio-red-10-rgb);--color-primary-20: var(--studio-red-20);--color-primary-20-rgb: var(--studio-red-20-rgb);--color-primary-30: var(--studio-red-30);--color-primary-30-rgb: var(--studio-red-30-rgb);--color-primary-40: var(--studio-red-40);--color-primary-40-rgb: var(--studio-red-40-rgb);--color-primary-50: var(--studio-red-50);--color-primary-50-rgb: var(--studio-red-50-rgb);--color-primary-60: var(--studio-red-60);--color-primary-60-rgb: var(--studio-red-60-rgb);--color-primary-70: var(--studio-red-70);--color-primary-70-rgb: var(--studio-red-70-rgb);--color-primary-80: var(--studio-red-80);--color-primary-80-rgb: var(--studio-red-80-rgb);--color-primary-90: var(--studio-red-90);--color-primary-90-rgb: var(--studio-red-90-rgb);--color-primary-100: var(--studio-red-100);--color-primary-100-rgb: var(--studio-red-100-rgb);--color-accent: var(--theme-highlight-color);--color-accent-rgb: var(--theme-highlight-color-rgb);--color-accent-dark: var(--studio-red-70);--color-accent-dark-rgb: var(--studio-red-70-rgb);--color-accent-light: var(--studio-red-30);--color-accent-light-rgb: var(--studio-red-30-rgb);--color-accent-0: var(--studio-red-0);--color-accent-0-rgb: var(--studio-red-0-rgb);--color-accent-5: var(--studio-red-5);--color-accent-5-rgb: var(--studio-red-5-rgb);--color-accent-10: var(--studio-red-10);--color-accent-10-rgb: var(--studio-red-10-rgb);--color-accent-20: var(--studio-red-20);--color-accent-20-rgb: var(--studio-red-20-rgb);--color-accent-30: var(--studio-red-30);--color-accent-30-rgb: var(--studio-red-30-rgb);--color-accent-40: var(--studio-red-40);--color-accent-40-rgb: var(--studio-red-40-rgb);--color-accent-50: var(--studio-red-50);--color-accent-50-rgb: var(--studio-red-50-rgb);--color-accent-60: var(--studio-red-60);--color-accent-60-rgb: var(--studio-red-60-rgb);--color-accent-70: var(--studio-red-70);--color-accent-70-rgb: var(--studio-red-70-rgb);--color-accent-80: var(--studio-red-80);--color-accent-80-rgb: var(--studio-red-80-rgb);--color-accent-90: var(--studio-red-90);--color-accent-90-rgb: var(--studio-red-90-rgb);--color-accent-100: var(--studio-red-100);--color-accent-100-rgb: var(--studio-red-100-rgb);--color-masterbar-background: var(--theme-base-color);--color-masterbar-border: var(--theme-submenu-background-color);--color-masterbar-text: var(--studio-white);--color-masterbar-unread-dot-background: var(--theme-notification-color);--color-masterbar-item-hover-background: var(--theme-submenu-background-color);--color-masterbar-item-active-background: var(--theme-submenu-background-color);--color-masterbar-item-new-editor-background: var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background: var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-background: var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background: var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border: var(--studio-gray-10);--color-sidebar-background: var(--theme-base-color);--color-sidebar-background-rgb: var(--theme-base-color-rgb);--color-sidebar-border: var(--theme-submenu-background-color);--color-sidebar-text: var(--theme-text-color);--color-sidebar-text-rgb: var(--theme-text-color-rgb);--color-sidebar-text-alternative: var(--theme-text-color);--color-sidebar-gridicon-fill: var(--theme-icon-color);--color-sidebar-menu-selected-background: var(--theme-highlight-color);--color-sidebar-menu-selected-background-rgb: var(--theme-highlight-color-rgb);--color-sidebar-menu-selected-text: var(--theme-text-color);--color-sidebar-menu-selected-text-rgb: var(--theme-text-color-rgb);--color-sidebar-menu-hover-background: var(--theme-highlight-color);--color-sidebar-menu-hover-background-rgb: var(--theme-highlight-color-rgb);--color-sidebar-menu-hover-text: var(--theme-text-color);--color-sidebar-submenu-background: var(--theme-submenu-background-color);--color-sidebar-submenu-text: var(--theme-submenu-text-color);--color-sidebar-submenu-hover-background: transparent;--color-sidebar-submenu-hover-text: var(--theme-highlight-color)}.color-scheme.is-modern{--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-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{--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-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-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{--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-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)}.theme-jetpack-cloud,.color-scheme.is-jetpack-cloud{--color-primary: var(--studio-black);--color-primary-rgb: var(--studio-black-rgb);--color-primary-dark: var(--studio-gray-70);--color-primary-dark-rgb: var(--studio-gray-70-rgb);--color-primary-light: var(--studio-gray-30);--color-primary-light-rgb: var(--studio-gray-30-rgb);--color-primary-0: var(--studio-gray-0);--color-primary-0-rgb: var(--studio-gray-0-rgb);--color-primary-5: var(--studio-gray-5);--color-primary-5-rgb: var(--studio-gray-5-rgb);--color-primary-10: var(--studio-gray-10);--color-primary-10-rgb: var(--studio-gray-10-rgb);--color-primary-20: var(--studio-gray-20);--color-primary-20-rgb: var(--studio-gray-20-rgb);--color-primary-30: var(--studio-gray-30);--color-primary-30-rgb: var(--studio-gray-30-rgb);--color-primary-40: var(--studio-gray-40);--color-primary-40-rgb: var(--studio-gray-40-rgb);--color-primary-50: var(--studio-gray-50);--color-primary-50-rgb: var(--studio-gray-rgb);--color-primary-60: var(--studio-gray-60);--color-primary-60-rgb: var(--studio-gray-60-rgb);--color-primary-70: var(--studio-gray-70);--color-primary-70-rgb: var(--studio-gray-70-rgb);--color-primary-80: var(--studio-gray-80);--color-primary-80-rgb: var(--studio-gray-80-rgb);--color-primary-90: var(--studio-gray-90);--color-primary-90-rgb: var(--studio-gray-90-rgb);--color-primary-100: var(--studio-gray-100);--color-primary-100-rgb: var(--studio-gray-100-rgb);--color-accent: var(--studio-black);--color-accent-rgb: var(--studio-black-rgb);--color-accent-dark: var(--studio-gray-70);--color-accent-dark-rgb: var(--studio-gray-70-rgb);--color-accent-light: var(--studio-gray-30);--color-accent-light-rgb: var(--studio-gray-30-rgb);--color-accent-0: var(--studio-gray-0);--color-accent-0-rgb: var(--studio-gray-0-rgb);--color-accent-5: var(--studio-gray-5);--color-accent-5-rgb: var(--studio-gray-5-rgb);--color-accent-10: var(--studio-gray-10);--color-accent-10-rgb: var(--studio-gray-10-rgb);--color-accent-20: var(--studio-gray-20);--color-accent-20-rgb: var(--studio-gray-20-rgb);--color-accent-30: var(--studio-gray-30);--color-accent-30-rgb: var(--studio-gray-30-rgb);--color-accent-40: var(--studio-gray-40);--color-accent-40-rgb: var(--studio-gray-40-rgb);--color-accent-50: var(--studio-gray-50);--color-accent-50-rgb: var(--studio-gray-50-rgb);--color-accent-60: var(--studio-gray-60);--color-accent-60-rgb: var(--studio-gray-60-rgb);--color-accent-70: var(--studio-gray-70);--color-accent-70-rgb: var(--studio-gray-70-rgb);--color-accent-80: var(--studio-gray-80);--color-accent-80-rgb: var(--studio-gray-80-rgb);--color-accent-90: var(--studio-gray-90);--color-accent-90-rgb: var(--studio-gray-90-rgb);--color-accent-100: var(--studio-gray-100);--color-accent-100-rgb: var(--studio-gray-100-rgb);--color-link: var(--studio-jetpack-green-50);--color-link-rgb: var(--studio-jetpack-green-50-rgb);--color-link-dark: var(--studio-jetpack-green-70);--color-link-dark-rgb: var(--studio-jetpack-green-70-rgb);--color-link-light: var(--studio-jetpack-green-30);--color-link-light-rgb: var(--studio-jetpack-green-30-rgb);--color-link-0: var(--studio-jetpack-green-0);--color-link-0-rgb: var(--studio-jetpack-green-0-rgb);--color-link-5: var(--studio-jetpack-green-5);--color-link-5-rgb: var(--studio-jetpack-green-5-rgb);--color-link-10: var(--studio-jetpack-green-10);--color-link-10-rgb: var(--studio-jetpack-green-10-rgb);--color-link-20: var(--studio-jetpack-green-20);--color-link-20-rgb: var(--studio-jetpack-green-20-rgb);--color-link-30: var(--studio-jetpack-green-30);--color-link-30-rgb: var(--studio-jetpack-green-30-rgb);--color-link-40: var(--studio-jetpack-green-40);--color-link-40-rgb: var(--studio-jetpack-green-40-rgb);--color-link-50: var(--studio-gray-50);--color-link-50-rgb: var(--studio-gray-50-rgb);--color-link-60: var(--studio-jetpack-green-60);--color-link-60-rgb: var(--studio-jetpack-green-60-rgb);--color-link-70: var(--studio-jetpack-green-70);--color-link-70-rgb: var(--studio-jetpack-green-70-rgb);--color-link-80: var(--studio-jetpack-green-80);--color-link-80-rgb: var(--studio-jetpack-green-80-rgb);--color-link-90: var(--studio-jetpack-green-90);--color-link-90-rgb: var(--studio-jetpack-green-90-rgb);--color-link-100: var(--studio-jetpack-green-100);--color-link-100-rgb: var(--studio-jetpack-green-100-rgb);--color-masterbar-background: var(--studio-white);--color-masterbar-border: var(--studio-gray-5);--color-masterbar-text: var(--studio-gray-50);--color-masterbar-item-hover-background: var(--studio-white);--color-masterbar-item-active-background: var(--studio-white);--color-masterbar-item-new-editor-background: var(--studio-white);--color-masterbar-item-new-editor-hover-background: var(--studio-white);--color-masterbar-unread-dot-background: var(--color-accent-30);--color-masterbar-toggle-drafts-editor-background: var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background: var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border: var(--studio-gray-10);--color-sidebar-background: var(--studio-white);--color-sidebar-background-rgb: var(--studio-white-rgb);--color-sidebar-border: var(--studio-gray-5);--color-sidebar-text: var(--studio-gray-60);--color-sidebar-text-rgb: var(--studio-gray-60-rgb);--color-sidebar-text-alternative: var(--studio-gray-60);--color-sidebar-gridicon-fill: var(--studio-gray-60);--color-sidebar-menu-selected-text: var(--studio-gray-90);--color-sidebar-menu-selected-text-rgb: var(--studio-gray-90-rgb);--color-sidebar-menu-selected-background: var(--studio-gray-0);--color-sidebar-menu-selected-background-rgb: var(--studio-gray-0-rgb);--color-sidebar-menu-selected-gridicon-fill: var(--studio-jetpack-green-50);--color-sidebar-menu-hover-text: var(--studio-gray-90);--color-sidebar-menu-hover-background: var(--studio-gray-0);--color-sidebar-menu-hover-background-rgb: var(--studio-gray-0-rgb);--color-scary-0: var(--studio-red-0);--color-scary-5: var(--studio-red-5);--color-scary-40: var(--studio-red-40);--color-scary-50: var(--studio-red-50);--color-scary-60: var(--studio-red-60);--color-scary-70: var(--studio-red-70)}.pagination-control{margin:0;display:flex;justify-content:center;width:100%}.pagination-control li{display:inline-flex;margin:auto 4px;height:18px;align-items:center;border:none}.pagination-control li.pagination-control__last-item{margin-left:auto;height:32px}.pagination-control button.pagination-control__page{border:none;padding:0;width:6px;height:6px;border-radius:50%;cursor:pointer;transition:all .2s ease-in-out;background-color:#c3c4c7;background-color:var(--color-neutral-10)}.pagination-control button.pagination-control__page:hover{background-color:#787c82;background-color:var(--color-neutral-40)}.pagination-control button.pagination-control__page:disabled{cursor:default}.pagination-control button.pagination-control__page.is-current{background-color:var(--wp-admin-theme-color)}
18
  .external-link .gridicons-external{color:currentColor;margin-left:3px;margin-right:0;top:2px;position:relative}.external-link:hover{cursor:pointer}.icon-first .gridicons-external{margin-left:0;margin-right:3px}
19
  .screen-reader-text{clip:rect(1px, 1px, 1px, 1px);position:absolute !important}.screen-reader-text:hover,.screen-reader-text:active,.screen-reader-text:focus{background-color:#f1f1f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto !important;color:#21759b;display:block;font-size:14px;font-weight:bold;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:z-index("screen-reader-text-parent", ".screen-reader-text:focus")}
1
  .help-center.entry-point-button.is-active{background:#1e1e1e}.help-center.entry-point-button.is-active svg{fill:#fff}.a8c-faux-inline-help__button{display:none}.help-center__container.is-mobile.is-minimized{margin-top:0}
2
  .directly-rtm:not(.is-minimized){top:76px;right:16px;width:410px;max-width:410px;height:80vh;position:absolute;padding:0}.directly-rtm.is-minimized{display:none}
3
+ @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{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ca] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=cs] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=da] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=de] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=en] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=es] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=eu] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=fi] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=fr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=gl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=hr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=hu] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=id] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=is] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=it] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=lv] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=mt] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=nb] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=nl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=pl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=pt] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ro] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ru] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sk] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sq] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sv] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sw] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=tr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=uz] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}.help-center .components-card.help-center__container{position:absolute;background-color:#fff;color:#000;z-index:9999;cursor:default;transition:max-height .5s}.help-center .components-card.help-center__container button.button-primary,.help-center .components-card.help-center__container button.button-secondary{font-size:1.25rem}.help-center .components-card.help-center__container .button{font-size:.875rem}.help-center .components-card.help-center__container>div{display:flex;flex-direction:column}.help-center .components-card.help-center__container button.components-button:focus{box-shadow:none;outline:none}.help-center .components-card.help-center__container .help-center__container-header{height:50px;padding:16px 8px 16px 16px}.help-center .components-card.help-center__container .help-center__container-header .help-center-header__minimize svg{transform:scale(0.7, 1);transform-origin:center}.help-center .components-card.help-center__container .help-center__container-header .help-center-header__text{max-width:300px;font-size:.875rem;font-weight:500;display:flex;align-items:center}.help-center .components-card.help-center__container .help-center__container-header .help-center-header__text svg{margin-right:3px}.help-center .components-card.help-center__container .help-center__container-header .help-center-header__text .help-center-header__article-title{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;max-width:200px}.help-center .components-card.help-center__container .help-center__container-content{overflow-y:auto;padding:16px}.help-center .components-card.help-center__container .help-center__container-footer{height:auto;padding:16px}.help-center .components-card.help-center__container .help-center__container-footer:empty{display:none}.help-center .components-card.help-center__container.is-desktop{top:calc(60px + 16px);right:16px;width:410px;height:80vh;max-height:800px;box-shadow:0 0 3px 0 rgba(0,0,0,.25)}.help-center .components-card.help-center__container.is-desktop .help-center__container-header{cursor:move}.help-center .components-card.help-center__container.is-desktop .help-center__container-content{flex-grow:1;height:calc(80vh - 50px * 2);position:relative}.help-center .components-card.help-center__container.is-desktop.is-minimized{min-height:50px}.help-center .components-card.help-center__container.is-mobile{top:45px;bottom:0;left:0;right:0;max-height:100%}.help-center .components-card.help-center__container.is-mobile .help-center__container-content{flex:auto}.help-center .components-card.help-center__container.is-mobile .help-center__container-footer{margin-bottom:0}.help-center .components-card.help-center__container.is-mobile.is-minimized{min-height:50px;top:calc(100vh - 50px)}.help-center .components-card.help-center__container .components-button:hover{box-shadow:none;color:inherit}.help-center .components-card.help-center__container.is-mobile.is-minimized,.help-center .components-card.help-center__container.is-desktop.is-minimized{max-height:50px}.help-center .components-card.help-center__container .help-center-header__unread-count{display:inline-block;margin-left:8px;padding:2px 8px;background:var(--studio-pink-50);border-radius:50%;font-size:.75rem;color:#fff}.help-center .components-card.help-center__container .help-center-header__a8c-only-badge{display:inline-block;margin-left:8px;padding:2px 6px;background:#d3d3d3;border-radius:4px;font-size:.75rem;color:var(--studio-gray-50);text-transform:uppercase}.help-center .ticket-success-screen__help-center{text-align:center}.help-center .ticket-success-screen__help-center .ticket-success-screen__help-center-heading{font-size:1.25rem;color:#101517;margin:16px;font-weight:400}.help-center .ticket-success-screen__help-center .ticket-success-screen__help-center-message{font-size:.875rem;color:#646970;margin:0}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.help-center button.button.back-button__help-center.is-borderless{display:flex;align-items:center;color:#000;font-size:.875rem;padding-right:5px}.help-center button.button.back-button__help-center.is-borderless:focus{color:#043959;box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8);outline:1px solid transparent;border-color:inherit}.help-center .help-center__container-content{padding:0 !important}.help-center .help-center__container-content>*:not(iframe){padding:16px}.help-center .help-center-sibyl-articles__list{list-style:none;box-sizing:border-box;padding:0;margin:0}.help-center .help-center-sibyl-articles__list>li{padding:0}.help-center .help-center-sibyl-articles__list>li>a{display:flex;align-items:center;text-decoration:none;color:var(--studio-gray-100);margin-bottom:16px;font-size:.875rem}.help-center .help-center-sibyl-articles__list>li>a:hover{background:var(--color-neutral-0)}.help-center .help-center-sibyl-articles__list svg{margin-right:15px;border-radius:2px;display:block;padding:8px;background:var(--studio-gray-0);fill:var(--studio-blue-50);flex-shrink:0}.help-center .help-center-search-results__title,.help-center .help-center__section-title{font-size:.875rem;font-weight:500;color:var(--studio-gray-100);margin:1em 0}.help-center .help-center-sibyl-articles__container{padding-top:0}.help-center .help-center-container__loading,.help-center .help-center-contact-page__loading{display:flex;align-items:center;justify-content:center;height:100%}.help-center .help-center-container__loading .spinner__outer,.help-center .help-center-contact-page__loading .spinner__outer{border-top-color:var(--wp-admin-theme-color)}.help-center .help-center-container__loading .spinner__inner,.help-center .help-center-contact-page__loading .spinner__inner{border-top-color:var(--wp-admin-theme-color);border-right-color:var(--wp-admin-theme-color)}.help-center body[class*=is-section-] .help-center button,.help-center body[class*=is-section-] .help-center input,.help-center body[class*=is-section-] .help-center textarea,.help-center body[class*=is-section-] .help-center select,.help-center body[class^=is-section-] .help-center button,.help-center body[class^=is-section-] .help-center input,.help-center body[class^=is-section-] .help-center textarea,.help-center body[class^=is-section-] .help-center select{box-sizing:border-box}.help-center body[class*=is-section-] .help-center h1,.help-center body[class^=is-section-] .help-center h1{font-weight:600;margin:.67em 0}.help-center body[class*=is-section-] .help-center h1.site-picker__site-title,.help-center body[class^=is-section-] .help-center h1.site-picker__site-title{font-weight:400;margin:0}.help-center body[class*=is-section-] .help-center h2,.help-center body[class*=is-section-] .help-center h3,.help-center body[class^=is-section-] .help-center h2,.help-center body[class^=is-section-] .help-center h3{color:#1d2327;margin:1em 0}.help-center body[class*=is-section-] .help-center label,.help-center body[class^=is-section-] .help-center label{cursor:pointer}.help-center body[class*=is-section-] .help-center .help-center__container.is-desktop,.help-center body[class^=is-section-] .help-center .help-center__container.is-desktop{position:fixed;top:calc(var(--masterbar-height) + 16px)}.help-center body[class*=is-section-] .help-center .search-card .search,.help-center body[class^=is-section-] .help-center .search-card .search{border:none}.help-center .help-center-contact-form .button:not(.back-button__help-center){line-height:2.71428571;min-height:40px;margin-bottom:4px;vertical-align:middle}.help-center .help-center-contact-form__label,.help-center .site-picker__label{font-size:.875rem}.help-center .help-center-header__text{margin:1em 0}.help-center .wp-block-embed__wrapper{position:relative}.help-center .wp-block-embed__wrapper::before{content:"";display:block;padding-top:56.25%}.help-center .wp-block-embed__wrapper iframe{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.help-center .components-base-control__label{color:var(--studio-gray-60)}
4
+ .help-center-contact-form__site-picker-hes-tray{margin-top:16px;display:flex;align-items:center}.help-center-contact-form__site-picker-hes-tray .happiness-engineers-tray{margin:0;flex-wrap:nowrap}.help-center-contact-form__site-picker-hes-tray img{width:32px;height:32px;border:2px solid #fff;border-radius:50%}.help-center-contact-form__site-picker-hes-tray img+img{margin-left:-16px}.help-center-contact-form__site-picker-hes-tray .help-center-contact-form__site-picker-hes-tray-text{font-size:.75rem;color:var(--studio-gray-60);margin:0;margin-left:8px}.site-picker__site-item{padding:12px 8px}.help-center-contact-form section{margin-top:16px}.help-center-contact-form div.components-base-control__field input.components-text-control__input,.help-center-contact-form div.components-base-control__field textarea.components-text-control__input{padding:15.5px !important;border:1px solid var(--studio-gray-10) !important;border-radius:4px !important;box-sizing:border-box}.help-center-contact-form .site-picker__site-item{padding:12px 8px}.help-center-contact-form .popover.is-top-left{z-index:9999}.help-center-contact-form .popover.is-top-left .popover__arrow{z-index:1}.help-center-contact-form .popover.is-top-left .popover__inner span{display:block;padding:16px}.help-center-contact-form__message,.help-center-contact-form__subject input.components-text-control__input{padding:15.5px;border:1px solid var(--studio-gray-10);border-radius:4px;width:100%;display:block;box-sizing:border-box}.help-center-contact-form__message:focus,.help-center-contact-form__subject input.components-text-control__input:focus{box-shadow:none;outline:none;border-color:var(--studio-gray-10)}section.contact-form-submit{position:sticky;bottom:0;left:0;width:100%;box-sizing:border-box;background:#fff;padding:16px}section.contact-form-submit::before{content:" ";display:block;height:1px;background:rgba(0,0,0,.1);position:absolute;left:-16px;top:0;width:calc(100% + 32px)}section.contact-form-submit .button.help-center-contact-form__site-picker-cta.is-primary{background-color:var(--color-accent);border-color:var(--color-accent);color:var(--color-text-inverted)}section.contact-form-submit .button.help-center-contact-form__site-picker-cta.is-primary:hover,section.contact-form-submit .button.help-center-contact-form__site-picker-cta.is-primary:focus{color:var(--color-text-inverted);background-color:var(--color-accent-60);border-color:var(--color-accent-60)}section.contact-form-submit .button.help-center-contact-form__site-picker-cta.is-primary:focus{border:none;box-shadow:none;outline:solid 2px var(--color-accent-60);outline-offset:2px}section.contact-form-submit .button.help-center-contact-form__site-picker-cta.is-primary:disabled{background-color:var(--color-surface) !important;border-color:var(--color-neutral-5) !important;color:var(--color-neutral-20) !important}.help-center .help-center-contact-form .site-picker__site-item-site-logo svg{fill:var(--studio-gray-30)}.help-center-contact-form__site-picker-title{font-size:16px;color:var(--studio-gray-100);margin-top:20px}.help-center-contact-form__site-picker-form-warning,.help-center-contact-form__site-picker-form-subtitle{color:var(--studio-gray-60)}.help-center-contact-form__site-picker-cta{width:100%;padding:5px 16px !important}.help-center-contact-form__label{color:var(--studio-gray-60);margin-bottom:8px;display:block}.help-center-notice__positive-feedback{font-size:.75rem;color:var(--studio-gray-60);max-width:100%;overflow:hidden;text-overflow:ellipsis;margin:0}.help-center-notice__container{background-color:var(--studio-gray-0);border-radius:4px;color:#2c3338;padding:16px 21px;font-size:.875rem;display:flex;margin-top:16px}.help-center-notice__container p{margin:0;margin-left:16px}.help-center-notice__container .dashicon{display:block;color:var(--studio-orange-40);margin-top:2px}.help-center-notice__container .components-external-link__icon{display:none}.help-center-contact-form__domain-sharing .components-checkbox-control{display:flex}.help-center-contact-form__domain-sharing .components-checkbox-control .components-base-control__help{margin:0;padding-left:8px}.help-center-contact-form__domain-sharing .components-checkbox-control .components-base-control__help svg{fill:var(--studio-gray-50)}.form-input-validation{line-height:1.5}.form-input-validation .gridicon{fill:currentColor}.help-center-contact-form__site-picker-forum-privacy-popover{display:inline-block;max-width:200px;padding:5px}.help-center-contact-form__site-picker-forum-privacy-info{padding:0;margin:0;background:none;border:none}.help-center-contact-form__site-picker-privacy-popover{z-index:10000}
5
+ @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{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ca] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=cs] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=da] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=de] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=en] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=es] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=eu] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=fi] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=fr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=gl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=hr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=hu] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=id] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=is] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=it] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=lv] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=mt] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=nb] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=nl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=pl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=pt] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ro] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ru] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sk] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sq] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sv] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sw] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=tr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=uz] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}.site-picker-title{font-size:16px;color:#101517;margin-top:20px}.site-picker__site-dropdown{margin-bottom:16px;border:1px solid #c3c4c7;border-radius:4px}.site-picker__site-dropdown.open{border-bottom:none;border-bottom-right-radius:none;border-bottom-left-radius:none}.site-picker__site-drawer{width:100%;width:calc(100% - 34px);box-shadow:2px 2px 6px -4px rgba(66,68,90,.5);max-height:300px;overflow-y:auto;position:absolute;background:#fff;transform-origin:0 0;margin:0;border:1px solid #c3c4c7;border-radius:4px;margin-left:-1px;margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0;border-top:none}.site-picker__site-item{display:flex;text-align:left;padding:17px 9px;background:transparent;border:none;width:100%;border-radius:4px;align-items:center}.site-picker__site-item.enabled{cursor:pointer}.site-picker__site-item.selected{background:#f6f7f7}.site-picker__site-item.enabled:not(.main-item):hover{background-color:#f6f7f7}.site-picker__site-info{flex:1}.site-picker__site-title{font-weight:400;font-size:.875rem;line-height:20px;margin:0}.site-picker__site-domain{font-weight:400;font-size:.75rem;line-height:.875rem;color:#646970;margin:0;margin-top:2px}.site-picker__site-picker{display:block;width:100%}.site-picker__site-item-site-logo{background-color:#f6f7f7;display:flex;align-items:center;margin-right:10px;width:34px;height:34px;justify-content:center}.site-picker__site-item-site-logo svg{width:24px;fill:#646970}.site-picker__label{color:#50575e;margin-bottom:8px;display:block}
6
+ @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{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ca] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=cs] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=da] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=de] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=en] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=es] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=eu] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=fi] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=fr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=gl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=hr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=hu] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=id] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=is] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=it] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=lv] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=mt] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=nb] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=nl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=pl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=pt] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ro] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ru] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sk] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sq] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sv] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sw] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=tr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=uz] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}.popover{font-size:.75rem;z-index:z-index("root", ".popover");position:absolute;top:0;left:0 /*rtl:ignore*/;right:auto /*rtl:ignore*/}.popover .popover__inner{background-color:var(--color-surface);border:1px solid var(--color-neutral-10);border-radius:2px;box-shadow:0 2px 5px rgba(0,0,0,.1),0 0 56px rgba(0,0,0,.075);text-align:center;position:relative}.popover .popover__arrow{border:10px dashed var(--color-neutral-10);height:0;line-height:0;position:absolute;width:0;z-index:z-index(".popover", ".popover .popover__arrow")}.popover.fade{transition:opacity 100ms}.popover.is-top .popover__arrow,.popover.is-top-left .popover__arrow,.popover.is-top-right .popover__arrow{bottom:0 /*rtl:ignore*/;left:50% /*rtl:ignore*/;margin-left:-10px /*rtl:ignore*/;border-top-style:solid/*rtl:ignore*/;border-bottom:none/*rtl:ignore*/;border-left-color:transparent/*rtl:ignore*/;border-right-color:transparent/*rtl:ignore*/}.popover.is-top .popover__arrow::before,.popover.is-top-left .popover__arrow::before,.popover.is-top-right .popover__arrow::before{bottom:2px /*rtl:ignore*/;border:10px solid var(--color-border-inverted);content:" ";position:absolute;left:50% /*rtl:ignore*/;margin-left:-10px /*rtl:ignore*/;border-top-style:solid/*rtl:ignore*/;border-bottom:none/*rtl:ignore*/;border-left-color:transparent/*rtl:ignore*/;border-right-color:transparent/*rtl:ignore*/}.popover.is-bottom .popover__arrow,.popover.is-bottom-left .popover__arrow,.popover.is-bottom-right .popover__arrow{top:0 /*rtl:ignore*/;left:50% /*rtl:ignore*/;margin-left:-10px /*rtl:ignore*/;border-bottom-style:solid/*rtl:ignore*/;border-top:none/*rtl:ignore*/;border-left-color:transparent/*rtl:ignore*/;border-right-color:transparent/*rtl:ignore*/}.popover.is-bottom .popover__arrow::before,.popover.is-bottom-left .popover__arrow::before,.popover.is-bottom-right .popover__arrow::before{top:2px /*rtl:ignore*/;border:10px solid var(--color-border-inverted);content:" ";position:absolute;left:50% /*rtl:ignore*/;margin-left:-10px /*rtl:ignore*/;border-bottom-style:solid/*rtl:ignore*/;border-top:none/*rtl:ignore*/;border-left-color:transparent/*rtl:ignore*/;border-right-color:transparent/*rtl:ignore*/}.popover.is-left .popover__arrow,.popover.is-left-top .popover__arrow,.popover.is-left-bottom .popover__arrow{right:0 /*rtl:ignore*/;top:50% /*rtl:ignore*/;margin-top:-10px /*rtl:ignore*/;border-left-style:solid/*rtl:ignore*/;border-right:none/*rtl:ignore*/;border-top-color:transparent/*rtl:ignore*/;border-bottom-color:transparent/*rtl:ignore*/}.popover.is-left .popover__arrow::before,.popover.is-left-top .popover__arrow::before,.popover.is-left-bottom .popover__arrow::before{right:2px /*rtl:ignore*/;border:10px solid var(--color-border-inverted);content:" ";position:absolute;top:50% /*rtl:ignore*/;margin-top:-10px /*rtl:ignore*/;border-left-style:solid/*rtl:ignore*/;border-right:none/*rtl:ignore*/;border-top-color:transparent/*rtl:ignore*/;border-bottom-color:transparent/*rtl:ignore*/}.popover.is-right .popover__arrow,.popover.is-right-top .popover__arrow,.popover.is-right-bottom .popover__arrow{left:0 /*rtl:ignore*/;top:50% /*rtl:ignore*/;margin-top:-10px /*rtl:ignore*/;border-right-style:solid/*rtl:ignore*/;border-left:none/*rtl:ignore*/;border-top-color:transparent/*rtl:ignore*/;border-bottom-color:transparent/*rtl:ignore*/}.popover.is-right .popover__arrow::before,.popover.is-right-top .popover__arrow::before,.popover.is-right-bottom .popover__arrow::before{left:2px /*rtl:ignore*/;border:10px solid var(--color-border-inverted);content:" ";position:absolute;top:50% /*rtl:ignore*/;margin-top:-10px /*rtl:ignore*/;border-right-style:solid/*rtl:ignore*/;border-left:none/*rtl:ignore*/;border-top-color:transparent/*rtl:ignore*/;border-bottom-color:transparent/*rtl:ignore*/}.popover.is-top-left,.popover.is-bottom-left,.popover.is-top-right,.popover.is-bottom-right{padding-right:0;padding-left:0}.popover.is-top-left .popover__arrow,.popover.is-bottom-left .popover__arrow{left:auto /*rtl:ignore*/;right:5px /*rtl:ignore*/}.popover.is-top-right .popover__arrow,.popover.is-bottom-right .popover__arrow{left:15px /*rtl:ignore*/}.popover.is-top .popover__inner,.popover.is-top-left .popover__inner,.popover.is-top-right .popover__inner{top:-10px /*rtl:ignore*/}.popover.is-left .popover__inner,.popover.is-top-right .popover__inner,.popover.is-bottom-right .popover__inner{left:-10px /*rtl:ignore*/}.popover.is-bottom .popover__inner,.popover.is-bottom-left .popover__inner,.popover.is-bottom-right .popover__inner{top:10px /*rtl:ignore*/}.popover.is-right .popover__inner,.popover.is-top-left .popover__inner,.popover.is-bottom-left .popover__inner{left:10px /*rtl:ignore*/}.popover.is-dialog-visible{z-index:z-index("root", "popover.is-dialog-visible")}
7
  .button{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif;background:transparent;border-style:solid;border-width:1px;cursor:pointer;display:inline-block;margin:0;outline:0;overflow:hidden;text-align:center;text-overflow:ellipsis;text-decoration:none;vertical-align:top;box-sizing:border-box;font-size:14px;line-height:22px;border-radius:2px;padding:8px 14px;-webkit-appearance:none;appearance:none;background-color:var(--color-surface);color:var(--color-neutral-70);border-color:var(--color-neutral-10)}.rtl .button{font-family:Tahoma,-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif}.button.hidden{display:none}.button .gridicon{position:relative;top:4px;margin-top:-2px;width:18px;height:18px}.button .gridicon:not(:last-child){margin-right:4px}.button:active,.button.is-active{border-width:1px}.button:hover{border-color:var(--color-neutral-20);color:var(--color-neutral-70)}.button:visited{color:var(--color-neutral-70)}.button[disabled],.button:disabled,.button.disabled{color:var(--color-neutral-20);background-color:var(--color-surface);border-color:var(--color-neutral-5);cursor:default}.button[disabled]:active,.button[disabled].is-active,.button:disabled:active,.button:disabled.is-active,.button.disabled:active,.button.disabled.is-active{border-width:1px}.accessible-focus .button:focus{border-color:var(--color-primary);box-shadow:0 0 0 2px var(--color-primary-light)}.button.is-compact{padding:7px;color:var(--color-text-subtle);font-size:12px;line-height:1}.button.is-compact:disabled{color:var(--color-neutral-20)}.button.is-compact .gridicon{top:5px;margin-top:-8px}.button.is-compact .gridicons-plus-small{margin-left:-4px}.button.is-compact .gridicons-plus-small:last-of-type{margin-left:0}.button.is-compact .gridicons-plus-small+.gridicon{margin-left:-4px}.button.is-busy{pointer-events:none;animation:button__busy-animation 3000ms infinite linear;background-size:120px 100%;background-image:linear-gradient(-45deg, var(--color-neutral-0) 28%, var(--color-surface) 28%, var(--color-surface) 72%, var(--color-neutral-0) 72%)}.button.is-primary{background-color:var(--color-accent);border-color:var(--color-accent);color:var(--color-text-inverted)}.button.is-primary:hover,.button.is-primary:focus{background-color:var(--color-accent-60);border-color:var(--color-accent-60);color:var(--color-text-inverted)}.accessible-focus .button.is-primary:focus{box-shadow:0 0 0 2px var(--color-accent-light)}.button.is-primary.is-compact{color:var(--color-text-inverted)}.button.is-primary[disabled],.button.is-primary:disabled,.button.is-primary.disabled{color:var(--color-neutral-20);background-color:var(--color-surface);border-color:var(--color-neutral-5)}.button.is-primary.is-busy{background-image:linear-gradient(-45deg, var(--color-accent) 28%, var(--color-accent-60) 28%, var(--color-accent-60) 72%, var(--color-accent) 72%)}.button.is-scary{color:var(--color-error)}.button.is-scary:hover,.button.is-scary:focus{border-color:var(--color-error)}.accessible-focus .button.is-scary:focus{box-shadow:0 0 0 2px var(--color-error-light)}.button.is-scary[disabled],.button.is-scary:disabled{color:var(--color-neutral-20);background-color:var(--color-surface);border-color:var(--color-neutral-5)}.button.is-primary.is-scary{background-color:var(--color-error);border-color:var(--color-error);color:var(--color-text-inverted)}.button.is-primary.is-scary:hover,.button.is-primary.is-scary:focus{background-color:var(--color-error-60);border-color:var(--color-error-60)}.button.is-primary.is-scary[disabled],.button.is-primary.is-scary:disabled{color:var(--color-neutral-20);background-color:var(--color-surface);border-color:var(--color-neutral-5)}.button.is-primary.is-scary.is-busy{background-image:linear-gradient(-45deg, var(--color-error) 28%, var(--color-error-60) 28%, var(--color-error-60) 72%, var(--color-error) 72%)}.button.is-borderless{border:none;background:none;color:var(--color-text-subtle);padding-left:0;padding-right:0}.button.is-borderless:hover,.button.is-borderless:focus{background:none;color:var(--color-neutral-70)}.button.is-borderless .gridicon{width:24px;height:24px;top:6px}.button.is-borderless[disabled],.button.is-borderless:disabled{color:var(--color-neutral-20);cursor:default}.button.is-borderless[disabled]:active,.button.is-borderless[disabled].is-active,.button.is-borderless:disabled:active,.button.is-borderless:disabled.is-active{border-width:0}.button.is-borderless.is-scary{color:var(--color-error)}.button.is-borderless.is-scary:hover,.button.is-borderless.is-scary:focus{color:var(--color-error-60)}.button.is-borderless.is-scary[disabled]{color:var(--color-error-20)}.button.is-borderless.is-primary{color:var(--color-accent)}.button.is-borderless.is-primary:focus,.button.is-borderless.is-primary:hover,.button.is-borderless.is-primary:active,.button.is-borderless.is-primary.is-active{color:var(--color-accent-dark)}.button.is-borderless.is-primary:focus{box-shadow:0 0 0 2px var(--color-accent-light)}.button.is-borderless.is-primary[disabled]{color:var(--color-neutral-20)}.button.is-borderless.is-compact .gridicon{width:18px;height:18px;top:5px}.button.is-borderless.is-compact .gridicons-arrow-left{top:4px;margin-right:4px}.button.is-borderless.is-compact .gridicons-arrow-right{top:4px;margin-left:4px}.button-plain{-webkit-appearance:none;appearance:none;background:transparent;color:inherit;border:none;font-size:inherit;font-weight:inherit;outline:0;padding:0;vertical-align:baseline}.button.is-transparent{background:transparent;border-color:currentcolor;border-color:var(--transparent-button-text-color, currentcolor);display:flex;justify-content:center}.button.is-transparent,.button.is-transparent:visited{color:currentcolor;color:var(--transparent-button-text-color, currentcolor)}.button.is-transparent:hover{border-color:var(--color-accent);border-color:var(--transparent-button-text-color-hover, var(--color-accent));color:var(--color-accent);color:var(--transparent-button-text-color-hover, var(--color-accent));background:transparent}.button.is-link{background:transparent;border:none;border-radius:0;padding:0;color:var(--color-link);font-weight:400;font-size:inherit;line-height:1.65}.button.is-link:hover,.button.is-link:focus,.button.is-link:active,.button.is-link.is-active{color:var(--color-link-dark);box-shadow:none}@keyframes button__busy-animation{0%{background-position:240px 0}}
8
+ @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{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ca] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=cs] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=da] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=de] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=en] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=es] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=eu] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=fi] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=fr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=gl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=hr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=hu] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=id] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=is] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=it] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=lv] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=mt] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=nb] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=nl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=pl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=pt] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ro] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ru] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sk] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sq] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sv] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sw] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=tr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=uz] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}.form-input-validation{color:var(--color-success);position:relative;padding:6px 24px 11px 34px;border-radius:2px;box-sizing:border-box;font-size:.875rem;animation:appear .3s ease-in-out;font-weight:400}.form-input-validation.is-error{color:var(--color-error)}.form-input-validation.is-warning{color:var(--color-warning)}.form-input-validation.is-hidden{animation:none;visibility:hidden}.form-input-validation .gridicon,.form-input-validation svg{fill:currentcolor;float:left;margin-left:-34px}
 
9
  input[type=text].form-text-input,input[type=url].form-text-input,input[type=password].form-text-input,input[type=email].form-text-input,input[type=tel].form-text-input,input[type=number].form-text-input,input[type=search].form-text-input{margin:0;padding:7px 14px;width:100%;color:var(--color-neutral-70);font-size:1rem;line-height:1.5;border:1px solid var(--color-neutral-10);border-radius:2px;background-color:var(--color-surface);transition:all .15s ease-in-out;box-sizing:border-box}input[type=text].form-text-input::placeholder,input[type=url].form-text-input::placeholder,input[type=password].form-text-input::placeholder,input[type=email].form-text-input::placeholder,input[type=tel].form-text-input::placeholder,input[type=number].form-text-input::placeholder,input[type=search].form-text-input::placeholder{color:var(--color-neutral-50)}input[type=text].form-text-input:hover,input[type=url].form-text-input:hover,input[type=password].form-text-input:hover,input[type=email].form-text-input:hover,input[type=tel].form-text-input:hover,input[type=number].form-text-input:hover,input[type=search].form-text-input:hover{border-color:var(--color-neutral-20)}input[type=text].form-text-input:focus,input[type=url].form-text-input:focus,input[type=password].form-text-input:focus,input[type=email].form-text-input:focus,input[type=tel].form-text-input:focus,input[type=number].form-text-input:focus,input[type=search].form-text-input:focus{border-color:var(--color-primary);outline:none;box-shadow:0 0 0 2px var(--color-primary-10)}input[type=text].form-text-input:focus:hover,input[type=url].form-text-input:focus:hover,input[type=password].form-text-input:focus:hover,input[type=email].form-text-input:focus:hover,input[type=tel].form-text-input:focus:hover,input[type=number].form-text-input:focus:hover,input[type=search].form-text-input:focus:hover{box-shadow:0 0 0 2px var(--color-primary-20)}input[type=text].form-text-input:focus::-ms-clear,input[type=url].form-text-input:focus::-ms-clear,input[type=password].form-text-input:focus::-ms-clear,input[type=email].form-text-input:focus::-ms-clear,input[type=tel].form-text-input:focus::-ms-clear,input[type=number].form-text-input:focus::-ms-clear,input[type=search].form-text-input:focus::-ms-clear{display:none}input[type=text].form-text-input:disabled,input[type=url].form-text-input:disabled,input[type=password].form-text-input:disabled,input[type=email].form-text-input:disabled,input[type=tel].form-text-input:disabled,input[type=number].form-text-input:disabled,input[type=search].form-text-input:disabled{background:var(--color-neutral-0);border-color:var(--color-neutral-0);color:var(--color-neutral-20);opacity:1;-webkit-text-fill-color:var(--color-neutral-20)}input[type=text].form-text-input:disabled:hover,input[type=url].form-text-input:disabled:hover,input[type=password].form-text-input:disabled:hover,input[type=email].form-text-input:disabled:hover,input[type=tel].form-text-input:disabled:hover,input[type=number].form-text-input:disabled:hover,input[type=search].form-text-input:disabled:hover{cursor:default}input[type=text].form-text-input:disabled::placeholder,input[type=url].form-text-input:disabled::placeholder,input[type=password].form-text-input:disabled::placeholder,input[type=email].form-text-input:disabled::placeholder,input[type=tel].form-text-input:disabled::placeholder,input[type=number].form-text-input:disabled::placeholder,input[type=search].form-text-input:disabled::placeholder{color:var(--color-neutral-20)}input.is-valid[type=text].form-text-input,input.is-valid[type=url].form-text-input,input.is-valid[type=password].form-text-input,input.is-valid[type=email].form-text-input,input.is-valid[type=tel].form-text-input,input.is-valid[type=number].form-text-input,input.is-valid[type=search].form-text-input{border-color:var(--color-success)}input.is-valid[type=text].form-text-input:hover,input.is-valid[type=url].form-text-input:hover,input.is-valid[type=password].form-text-input:hover,input.is-valid[type=email].form-text-input:hover,input.is-valid[type=tel].form-text-input:hover,input.is-valid[type=number].form-text-input:hover,input.is-valid[type=search].form-text-input:hover{border-color:var(--color-success-dark)}input.is-error[type=text].form-text-input,input.is-error[type=url].form-text-input,input.is-error[type=password].form-text-input,input.is-error[type=email].form-text-input,input.is-error[type=tel].form-text-input,input.is-error[type=number].form-text-input,input.is-error[type=search].form-text-input{border-color:var(--color-error)}input.is-error[type=text].form-text-input:hover,input.is-error[type=url].form-text-input:hover,input.is-error[type=password].form-text-input:hover,input.is-error[type=email].form-text-input:hover,input.is-error[type=tel].form-text-input:hover,input.is-error[type=number].form-text-input:hover,input.is-error[type=search].form-text-input:hover{border-color:var(--color-error-dark)}input[type=text].form-text-input:focus.is-valid,input[type=url].form-text-input:focus.is-valid,input[type=password].form-text-input:focus.is-valid,input[type=email].form-text-input:focus.is-valid,input[type=tel].form-text-input:focus.is-valid,input[type=number].form-text-input:focus.is-valid,input[type=search].form-text-input:focus.is-valid{box-shadow:0 0 0 2px var(--color-success-10)}input[type=text].form-text-input:focus.is-valid:hover,input[type=url].form-text-input:focus.is-valid:hover,input[type=password].form-text-input:focus.is-valid:hover,input[type=email].form-text-input:focus.is-valid:hover,input[type=tel].form-text-input:focus.is-valid:hover,input[type=number].form-text-input:focus.is-valid:hover,input[type=search].form-text-input:focus.is-valid:hover{box-shadow:0 0 0 2px var(--color-success-20)}input[type=text].form-text-input:focus.is-error,input[type=url].form-text-input:focus.is-error,input[type=password].form-text-input:focus.is-error,input[type=email].form-text-input:focus.is-error,input[type=tel].form-text-input:focus.is-error,input[type=number].form-text-input:focus.is-error,input[type=search].form-text-input:focus.is-error{box-shadow:0 0 0 2px var(--color-error-10)}input[type=text].form-text-input:focus.is-error:hover,input[type=url].form-text-input:focus.is-error:hover,input[type=password].form-text-input:focus.is-error:hover,input[type=email].form-text-input:focus.is-error:hover,input[type=tel].form-text-input:focus.is-error:hover,input[type=number].form-text-input:focus.is-error:hover,input[type=search].form-text-input:focus.is-error:hover{box-shadow:0 0 0 2px var(--color-error-20)}input[type=url].form-text-input,input[type=password].form-text-input,input[type=email].form-text-input{text-align:left;/*!rtl:ignore*/direction:ltr}input[type=url].form-text-input,input[type=search].form-text-input{-webkit-appearance:none;appearance:none}input[type=search].form-text-input::-webkit-search-decoration{display:none}
10
  .is-section-purchases .search{z-index:z-index("root", ".is-section-purchases .search")}.search{border-radius:2px;display:flex;flex:1 1 auto;margin-bottom:24px;width:60px;height:51px;position:relative;align-items:center;z-index:z-index("root", ".search");transition:all .15s ease-in-out}.search .search__icon-navigation{flex:0 0 auto;display:flex;align-items:center;background-color:var(--color-surface);height:100%}.accessible-focus .search .search__icon-navigation:focus{box-shadow:inset 0 0 0 2px var(--color-primary-light);position:relative;z-index:9999}.search .search__open-icon,.search .search__close-icon{flex:0 0 auto;width:50px;z-index:z-index(".search", ".search .search__open-icon");color:var(--color-primary);cursor:pointer}.search .search__open-icon:hover{color:var(--color-neutral-60)}.search .search__close-icon{color:var(--color-neutral-60);opacity:0;transition:opacity .2s ease-in}.search.is-open.has-focus{border-color:var(--color-primary);box-shadow:0 0 0 1px var(--color-primary),0 0 0 4px var(--color-primary-10)}.search.is-open.has-focus:hover{box-shadow:0 0 0 1px var(--color-primary),0 0 0 4px var(--color-primary-20)}.search.is-compact{height:36px}.search.is-compact .search__input{height:36px;font-size:.75rem}.search.is-compact .search__open-icon{margin:0 4px 0 8px;width:18px}.search.is-compact .search__close-icon{width:18px;margin-right:8px}.search.is-expanded-to-container{margin-bottom:0;position:absolute;display:flex;height:100%;width:50px;top:0;right:0}.search.is-expanded-to-container .search__input-fade{position:relative;flex:1 1 auto;display:flex}.search.is-expanded-to-container .search__input[type=search]{flex:1 1 auto;display:flex}.search__input.form-text-input[type=search]{flex:1 1 auto;display:none;z-index:z-index(".search", ".search__input");top:0;border:none;height:100%;background:var(--color-surface);appearance:none;border-radius:0;box-sizing:border-box;padding:0;-webkit-appearance:none}.search__input.form-text-input[type=search]::-webkit-search-cancel-button{-webkit-appearance:none}.search__input.form-text-input[type=search]:disabled{background:var(--color-surface)}.search__input.form-text-input[type=search]:focus{box-shadow:none;border:none}.search__input.form-text-input[type=search]:focus:hover{border:none;box-shadow:none}.search.is-open{width:100%}.search.is-open .search__open-icon{color:var(--color-neutral-60)}.search.is-open .search__close-icon{display:inline-block}.search.is-open .search__input,.search.is-open .search__close-icon{opacity:1}.search.is-open .search__input{display:block}.search.is-open .search__input-fade{border-radius:0;flex:1 1 auto;height:100%;position:relative;font-size:1rem;padding-left:8px}.search.is-open .search__input-fade::before{content:"";display:block;position:absolute;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none;pointer-events:none;z-index:z-index(".search", ".search__input")2;background:overflow-gradient(var(--color-surface-rgb));top:0;bottom:0;right:0;left:auto;width:32px;height:auto;border-radius:inherit}.search.is-open .search__input-fade.ltr{/*!rtl:ignore*/}.search.is-open .search__input-fade.ltr::before{content:"";display:block;position:absolute;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none;pointer-events:none;z-index:z-index(".search", ".search__input")2;background:overflow-gradient(var(--color-surface-rgb));top:0;bottom:0;right:0;left:auto;width:32px;height:auto;border-radius:inherit}.search.has-open-icon .search__input-fade{padding-left:0}.search__input-fade .search__text-overlay{color:transparent;position:absolute;pointer-events:none;white-space:nowrap;display:flex;align-items:center;flex:1 1 auto;overflow:hidden;font-size:inherit;font-family:inherit;width:100%;height:100%;top:1px;left:0;z-index:z-index(".search", ".search__input")1}.search .spinner{display:none}.search.is-searching .search__open-icon{display:none}.search.is-searching .spinner{flex:0 0 auto;display:flex;width:50px;height:100%;background-color:var(--color-surface);z-index:z-index(".search", ".search.is-searching .spinner")}.animating.search-opening .search input{opacity:1}
11
  @keyframes rotate-spinner{100%{transform:rotate(360deg)}}.spinner{display:flex;align-items:center}.spinner__outer,.spinner__inner{margin:auto;box-sizing:border-box;border:.1em solid transparent;border-radius:50%;animation:3s linear infinite;animation-name:rotate-spinner}.spinner__outer{border-top-color:var(--color-accent)}.spinner__inner{width:100%;height:100%;border-top-color:var(--color-accent);border-right-color:var(--color-accent);opacity:.4}
13
  .card{display:block;position:relative;margin:0 auto 10px;padding:16px;box-sizing:border-box;background:var(--color-surface);box-shadow:0 0 0 1px var(--color-border-subtle)}.card::after{content:".";display:block;height:0;width:0;clear:both;visibility:hidden;overflow:hidden}@media(min-width: 480px){.card{margin-bottom:16px;padding:24px}}.card.is-compact{margin-bottom:1px}@media(min-width: 480px){.card.is-compact{margin-bottom:1px;padding:16px 24px}}.card.is-card-link{padding-right:48px}.card.is-card-link:not(a){color:var(--color-primary);font-size:100%;line-height:1.5;text-align:left;width:100%}.card.is-card-link:not(a):active,.card.is-card-link:not(a):focus,.card.is-card-link:not(a):hover{color:var(--color-link-dark)}.card.is-clickable{cursor:pointer}.card.is-highlight{padding-left:21px}.card.is-error{border-left:3px solid var(--color-error-20)}.card.is-info{border-left:3px solid var(--color-primary-20)}.card.is-success{border-left:3px solid var(--color-success-20)}.card.is-warning{border-left:3px solid var(--color-warning-20)}.card__link-indicator{color:var(--color-text-subtle);display:block;height:100%;position:absolute;top:0;right:16px}html[dir=rtl] .card__link-indicator.gridicons-chevron-right{transform:scaleX(-1)}a.card:hover .card__link-indicator,.is-card-link.card:hover .card__link-indicator{color:var(--color-text)}a.card:focus .card__link-indicator,.is-card-link.card:focus .card__link-indicator{color:var(--color-link-dark)}
14
  .help-center .help-center__container-content{scroll-behavior:smooth}.help-center .help-center__container-content svg{box-sizing:content-box}.help-center .help-center__container-content .inline-help__search .card.search-card{border:1px solid var(--studio-gray-10);border-radius:2px;box-shadow:none;margin-bottom:30px}.help-center .help-center__container-content .inline-help__search .card.search-card .is-open.has-focus{border:1px var(--studio-gray-50);box-shadow:none}.help-center .help-center__container-content .inline-help__search .card.search-card .search{height:40px}.help-center .help-center__container-content .inline-help__search .card.search-card input.search__input{font-size:.875rem}.help-center .help-center__container-content .inline-help__search .help-center-search-results__empty-results{padding:8px 16px 0;margin:1em 0;font-size:.875rem;color:var(--color-text-subtle);font-style:italic;text-align:left}@media screen and (min-width: 661px){.help-center .help-center__container-content .inline-help__search .help-center-search-results__empty-results{font-size:1rem}}.help-center .help-center__container-content .inline-help__search .help-center-search-results__cell{width:100%}.help-center .help-center__container-content .inline-help__search .help-center-search-results__cell svg{overflow:visible}.help-center .help-center__container-content .inline-help__search .help-center-search-results__results li:last-child{margin-bottom:40px}.help-center .help-center__container-content .inline-help__search .help-center-search-results__results .help-center-search-results__title{font-weight:500;line-height:1.4;display:block;font-size:.875rem;text-align:left}.help-center .help-center__container-content .inline-help__search .help-center-search-results__results .help-center-search-results__title::after{content:":"}.help-center .help-center__container-content .inline-help__search .help-center-search-results__results .help-center-search-results__item{margin:0 0 16px 0;font-size:.875rem}@media screen and (min-width: 661px){.help-center .help-center__container-content .inline-help__search .help-center-search-results__results .help-center-search-results__item{font-size:1.25rem;line-height:1.3}}.help-center .help-center__container-content .inline-help__search .help-center-search-results__results .help-center-search-results__item a{text-decoration:underline;font-weight:normal;line-height:1.4;display:flex}.help-center .help-center__container-content .inline-help__search .help-center-search-results__results .help-center-search-results__item a span{flex-grow:2}.help-center .help-center__container-content .inline-help__search .help-center-search-results__results .help-center-search-results__item a .gridicon{align-self:baseline;color:var(--color-neutral-light);flex-shrink:0;margin-right:8px;position:relative;top:2px}.help-center .help-center__container-content .inline-help__search .help-center-search-results__results .help-center-search-results__item a:hover{cursor:pointer;background:var(--color-neutral-0)}.help-center .help-center__container-content .inline-help__search .help-center-search-results__results .help-center-search-results__item a:hover .gridicon{color:var(--color-neutral)}.help-center .help-center__container-content .inline-help__search .help-center-search-results__results .help-center-search-results__item a:focus{color:var(--color-text-inverted)}.help-center .help-center__container-content .inline-help__search .help-center-search-results__results .help-center-search-results__item a:focus .gridicon{color:var(--color-text-inverted)}.help-center .help-center__container-content .inline-help__search .help-center-search-results__results .help-center-search-results__item .help-center-search-results__cell a{display:flex;text-decoration:none;color:var(--studio-gray-100);font-size:.875rem}.help-center .help-center__container-content .inline-help__search .help-center-search-results__results .help-center-search-results__item .help-center-search-results__cell a svg{margin-right:15px;display:block;background:var(--studio-gray-0);fill:var(--studio-blue-50);padding:8px}.help-center .help-center__container-content .inline-help__search .help-center-search-results__results .help-center-search-results__item .help-center-search-results__cell a span{display:block;align-self:center}.help-center .help-center__container-content .inline-help__more-resources,.help-center .help-center__container-content .help-center-search-results__list{list-style:none;text-align:left;margin:0;padding:0}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item,.help-center .help-center__container-content .inline-help__more-resources .help-center-search-results__item,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item,.help-center .help-center__container-content .help-center-search-results__list .help-center-search-results__item{margin:0;margin-bottom:.6em;font-size:.875rem}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell,.help-center .help-center__container-content .inline-help__more-resources .help-center-search-results__item .inline-help__resource-cell,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell,.help-center .help-center__container-content .help-center-search-results__list .help-center-search-results__item .inline-help__resource-cell{width:100%}@media screen and (max-width: 660px){.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item,.help-center .help-center__container-content .inline-help__more-resources .help-center-search-results__item,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item,.help-center .help-center__container-content .help-center-search-results__list .help-center-search-results__item{line-height:1.3}}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item a,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item button,.help-center .help-center__container-content .inline-help__more-resources .help-center-search-results__item a,.help-center .help-center__container-content .inline-help__more-resources .help-center-search-results__item button,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item a,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item button,.help-center .help-center__container-content .help-center-search-results__list .help-center-search-results__item a,.help-center .help-center__container-content .help-center-search-results__list .help-center-search-results__item button{color:#000;text-decoration:none;font-weight:normal;line-height:1.4;display:flex;align-items:center}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item a span,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item button span,.help-center .help-center__container-content .inline-help__more-resources .help-center-search-results__item a span,.help-center .help-center__container-content .inline-help__more-resources .help-center-search-results__item button span,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item a span,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item button span,.help-center .help-center__container-content .help-center-search-results__list .help-center-search-results__item a span,.help-center .help-center__container-content .help-center-search-results__list .help-center-search-results__item button span{flex-grow:2}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item a .gridicon,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item button .gridicon,.help-center .help-center__container-content .inline-help__more-resources .help-center-search-results__item a .gridicon,.help-center .help-center__container-content .inline-help__more-resources .help-center-search-results__item button .gridicon,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item a .gridicon,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item button .gridicon,.help-center .help-center__container-content .help-center-search-results__list .help-center-search-results__item a .gridicon,.help-center .help-center__container-content .help-center-search-results__list .help-center-search-results__item button .gridicon{align-self:baseline;background:var(--color-neutral-0);color:var(--color-neutral-light);flex-shrink:0;margin-right:8px;padding:10px;position:relative}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item a:hover,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item button:hover,.help-center .help-center__container-content .inline-help__more-resources .help-center-search-results__item a:hover,.help-center .help-center__container-content .inline-help__more-resources .help-center-search-results__item button:hover,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item a:hover,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item button:hover,.help-center .help-center__container-content .help-center-search-results__list .help-center-search-results__item a:hover,.help-center .help-center__container-content .help-center-search-results__list .help-center-search-results__item button:hover{cursor:pointer;background:var(--color-neutral-0)}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item a:hover .gridicon,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item button:hover .gridicon,.help-center .help-center__container-content .inline-help__more-resources .help-center-search-results__item a:hover .gridicon,.help-center .help-center__container-content .inline-help__more-resources .help-center-search-results__item button:hover .gridicon,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item a:hover .gridicon,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item button:hover .gridicon,.help-center .help-center__container-content .help-center-search-results__list .help-center-search-results__item a:hover .gridicon,.help-center .help-center__container-content .help-center-search-results__list .help-center-search-results__item button:hover .gridicon{color:var(--color-neutral)}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item{margin-bottom:16px}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell a,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell button,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell a,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell button{display:flex}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell a svg:first-of-type,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell button svg:first-of-type,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell a svg:first-of-type,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell button svg:first-of-type{margin-right:15px;display:block;padding:8px;background:var(--studio-gray-0)}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell a span,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell button span,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell a span,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell button span{display:block;align-self:center}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell a.inline-help__video svg,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell button.inline-help__video svg,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell a.inline-help__video svg,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell button.inline-help__video svg{fill:var(--studio-pink-50)}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell a.inline-help__capture-video svg,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell button.inline-help__capture-video svg,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell a.inline-help__capture-video svg,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell button.inline-help__capture-video svg{fill:var(--studio-orange-30)}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell a.inline-help__desktop svg,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell button.inline-help__desktop svg,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell a.inline-help__desktop svg,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell button.inline-help__desktop svg{fill:var(--studio-celadon-30)}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell a.inline-help__format-list-numbered svg,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell button.inline-help__format-list-numbered svg,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell a.inline-help__format-list-numbered svg,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell button.inline-help__format-list-numbered svg{fill:var(--studio-purple-40)}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell a.inline-help__new-releases,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell button.inline-help__new-releases,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell a.inline-help__new-releases,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell button.inline-help__new-releases{padding:0;font-size:.875rem !important;color:var(--studio-gray-100);text-decoration:none !important;width:100%}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell a.inline-help__new-releases>:first-child,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell button.inline-help__new-releases>:first-child,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell a.inline-help__new-releases>:first-child,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell button.inline-help__new-releases>:first-child{fill:var(--studio-blue-70)}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell a.inline-help__new-releases span,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell button.inline-help__new-releases span,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell a.inline-help__new-releases span,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell button.inline-help__new-releases span{text-decoration:none;color:var(--studio-gray-100)}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell a.inline-help__new-releases .inline-help__new-releases_dot,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell button.inline-help__new-releases .inline-help__new-releases_dot,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell a.inline-help__new-releases .inline-help__new-releases_dot,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell button.inline-help__new-releases .inline-help__new-releases_dot{align-self:auto;background:none;color:var(--color-masterbar-unread-dot-background);padding-left:8px}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell a.inline-help__new-releases:active,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell a.inline-help__new-releases:focus,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell button.inline-help__new-releases:active,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell button.inline-help__new-releases:focus,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell a.inline-help__new-releases:active,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell a.inline-help__new-releases:focus,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell button.inline-help__new-releases:active,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell button.inline-help__new-releases:focus{box-shadow:0 0 0 1px var(--studio-blue-30),0 0 2px 1px rgba(79,148,212,.8);outline:1px solid transparent}.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell a>svg:last-child,.help-center .help-center__container-content .inline-help__more-resources .inline-help__resource-item .inline-help__resource-cell button>svg:last-child,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell a>svg:last-child,.help-center .help-center__container-content .help-center-search-results__list .inline-help__resource-item .inline-help__resource-cell button>svg:last-child{fill:unset;margin-left:auto}.help-center .help-center__container-content .inline-help__secondary-view.inline-help__richresult button.button.is-borderless,.help-center .help-center__container-content .inline-help__secondary-view.inline-help__contact button.button.is-borderless{display:flex;align-items:center;font-size:.875rem;color:var(--studio-gray-100)}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__content{margin-bottom:40px}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__content h3{font-size:1rem;font-weight:500;margin:1em 0}.help-center .help-center__container-content .help-center-contact-page .help-center-notice__container{margin:0 0 16px}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes{display:flex;flex-direction:column;justify-content:space-between}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes a{text-decoration:none;color:#1d2327}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes.is-reversed{flex-direction:column-reverse}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box{display:flex;flex-direction:row;border:1px solid var(--studio-gray-5);overflow:hidden;border-radius:2px;cursor:pointer;margin-bottom:16px}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box .help-center-contact-page__box-icon{border-radius:2px 0 0 2px;display:flex;background-color:var(--studio-blue-70);width:56px}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box .help-center-contact-page__box-icon svg{fill:#fff;display:block;margin:auto}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box h2{font-size:.875rem !important}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box p{font-size:.75rem !important;color:var(--studio-gray-60)}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box.chat .help-center-contact-page__box-icon{background-color:var(--color-accent)}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box.chat.is-disabled{cursor:auto}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box.chat.is-disabled .help-center-contact-page__box-icon{background-color:var(--studio-gray-0)}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box.chat.is-disabled .help-center-contact-page__box-icon svg{fill:var(--studio-gray-20)}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box.chat.is-disabled h2,.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box.chat.is-disabled p{color:var(--studio-gray-60)}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box :not(.help-center-contact-page__box-icon){padding:0 15px;margin:16px 0}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box :not(.help-center-contact-page__box-icon)>*{padding:0;margin:0}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box :not(.help-center-contact-page__box-icon) p{margin-top:2px}.help-center .help-center__container-content .help-center-contact-page .help-center-contact-page__boxes .help-center-contact-page__box :not(.help-center-contact-page__box-icon) h2{font-weight:500;font-size:1rem}.help-center .help-center__container-content .help-center-contact-page .inline-help__results h3{margin-bottom:16px}.help-center .help-center__container-content .help-center-contact-page .inline-help__results h3#inline-search--admin_section{margin-top:40px}.help-center .help-center__container-content .help-center-contact-page .inline-help__results .help-center-search-results__item{margin-bottom:16px}.help-center .help-center__container-content .help-center-contact-page .inline-help__results .help-center-search-results__item .help-center-search-results__cell a{display:flex}.help-center .help-center__container-content .help-center-contact-page .inline-help__results .help-center-search-results__item .help-center-search-results__cell a svg{margin-right:15px;border-radius:2px;display:block;background:var(--studio-gray-0);fill:var(--studio-blue-50)}.help-center .help-center__container-content .help-center-contact-page .inline-help__results .help-center-search-results__item .help-center-search-results__cell a span{display:block;align-self:center}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story{padding:0 20px 20px}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story h1.support-article-dialog__header-title>a{text-decoration:none;clear:none;color:var(--color-neutral-70);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5rem;font-weight:600;line-height:32px;margin:56px 0 0;max-width:750px}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story h2{font-size:1.25rem}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story h3,.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story h4{font-size:1rem}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story h5{font-size:.875rem}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story h2,.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story h3,.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story h4,.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story h5{font-weight:600;color:var(--color-neutral-100);margin:8px 0}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story button.button.is-borderless:focus,.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story a.button.is-borderless:focus{color:#043959;box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8);outline:1px solid transparent;border-color:inherit}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story a:not(.support-article-dialog__header-title-link){text-decoration:none}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story a[name=toc] span{color:var(--color-neutral-80);font-size:1rem}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story p.toc-jump{display:none}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .clipboard-button{display:none}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .wp-block-a8c-support-table-of-contents{background-color:var(--studio-blue-0);padding:16px}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .wp-block-a8c-support-table-of-contents ol{list-style-type:none;margin:0}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .wp-block-a8c-support-table-of-contents li{margin-bottom:0}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .wp-block-a8c-support-table-of-contents li a{font-size:.875rem}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .wp-block-a8c-support-table-of-contents li ol{margin-left:2em}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .help-center-embed-result__external-button{display:flex;align-items:center}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story p{font-size:.875rem;color:var(--color-neutral-80)}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story ul{font-size:.875rem;color:var(--color-neutral-80);list-style-type:circle;list-style-position:inside}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story span.noticon.noticon-star{color:var(--studio-yellow-20)}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .support-article-dialog__header{margin-bottom:0}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .wp-block-quote{background-color:var(--color-neutral-0);border-left:none;padding:16px;color:var(--color-neutral-80)}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .wp-block-separator{margin:auto;border-bottom:1px solid var(--color-neutral-10);border-top:0;width:100%}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .wp-block-group__inner-container{background-color:var(--color-neutral-0);padding:16px 0}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story :where(.wp-block-group.has-background){padding:0}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .wp-block-button{width:100%}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .wp-block-button .wp-block-button__link{background-color:var(--color-surface);border:1px solid var(--color-neutral-10);border-radius:2px;color:var(--color-neutral-70);font-size:.875rem;padding:8px 14px;width:100%}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .button-primary{background-color:var(--wp-admin-theme-color);border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--color-text-inverted);font-size:.875rem;padding:4px 14px;width:100%}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .callout .wp-block-column{background-color:var(--color-neutral-0)}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .callout .wp-block-column .wp-block-quote{margin:0}.help-center .help-center__container-content .help-center-embed-result article.help-center-article-content__story .wp-block-image figure figcaption{display:block}.help-center__container-footer .button.help-center-contact-page__button{background-color:transparent;border:1px solid var(--studio-gray-10);padding:5px;width:100%;display:flex;align-items:center;justify-content:center;margin-bottom:0;line-height:2.15}.help-center__container-footer .button.help-center-contact-page__button:hover{border-color:var(--color-neutral-20);box-shadow:none;outline:none}.help-center__container-footer .button.help-center-contact-page__button:focus{color:#043959;box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8);outline:1px solid transparent;border-color:inherit}.help-center__container-footer .button.help-center-contact-page__button svg{margin-right:10px;vertical-align:middle}.help-center__container-footer .button.help-center-contact-page__button span{color:var(--studio-gray-100)}
15
  .placeholder-lines__help-center{margin:16px;min-height:120px}.placeholder-lines__help-center-item{height:16px;margin:16px 0;border-radius:16px;background-color:var(--color-neutral-0);color:transparent;animation:placeholder-lines__help-center-loading 2s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;animation-delay:0s}.placeholder-lines__help-center-item:nth-child(1){animation-delay:-1.3s}.placeholder-lines__help-center-item:nth-child(2){animation-delay:-2.5s}.placeholder-lines__help-center-item:nth-child(3){animation-delay:-3.8s}.placeholder-lines__help-center-item::after{content:" "}@keyframes placeholder-lines__help-center-loading{0%{opacity:.3;width:65%}25%{opacity:.6;width:90%}50%{opacity:.5;width:18%}75%{opacity:.8;width:75%}100%{opacity:.3;width:65%}}
16
+ @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{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ca] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=cs] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=da] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=de] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=en] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=es] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=eu] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=fi] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=fr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=gl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=hr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=hu] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=id] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=is] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=it] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=lv] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=mt] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=nb] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=nl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=pl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=pt] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ro] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ru] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sk] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sq] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sv] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sw] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=tr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=uz] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}@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{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ca] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=cs] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=da] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=de] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=en] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=es] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=eu] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=fi] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=fr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=gl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=hr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=hu] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=id] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=is] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=it] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=lv] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=mt] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=nb] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=nl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=pl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=pt] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ro] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ru] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sk] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sq] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sv] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sw] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=tr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=uz] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}@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{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ca] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=cs] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=da] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=de] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=en] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=es] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=eu] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=fi] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=fr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=gl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=hr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=hu] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=id] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=is] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=it] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=lv] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=mt] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=nb] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=nl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=pl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=pt] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ro] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=ru] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sk] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sl] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sq] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sv] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=sw] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[lang*=tr] .wp-brand-font{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif}[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}100%{opacity:.5}}: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}:root{--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}: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: #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: 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-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{--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-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-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{--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-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{--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{--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 .masterbar__item-notifications .gridicon{fill:#000}.color-scheme.is-midnight{--theme-text-color: #fff;--theme-text-color-rgb: 255, 255, 255;--theme-base-color: #363b3f;--theme-base-color-rgb: 54, 59, 63;--theme-submenu-text-color: #c3c4c5;--theme-submenu-background-color: #26292c;--theme-icon-color: #ece6f6;--theme-highlight-color: #e14d43;--theme-highlight-color-rgb: 225, 77, 67;--theme-notification-color: #69a8bb;--color-primary: var(--theme-highlight-color);--color-primary-rgb: var(--theme-highlight-color-rgb);--color-primary-dark: var(--studio-red-70);--color-primary-dark-rgb: var(--studio-red-70-rgb);--color-primary-light: var(--studio-red-30);--color-primary-light-rgb: var(--studio-red-30-rgb);--color-primary-0: var(--studio-red-0);--color-primary-0-rgb: var(--studio-red-0-rgb);--color-primary-5: var(--studio-red-5);--color-primary-5-rgb: var(--studio-red-5-rgb);--color-primary-10: var(--studio-red-10);--color-primary-10-rgb: var(--studio-red-10-rgb);--color-primary-20: var(--studio-red-20);--color-primary-20-rgb: var(--studio-red-20-rgb);--color-primary-30: var(--studio-red-30);--color-primary-30-rgb: var(--studio-red-30-rgb);--color-primary-40: var(--studio-red-40);--color-primary-40-rgb: var(--studio-red-40-rgb);--color-primary-50: var(--studio-red-50);--color-primary-50-rgb: var(--studio-red-50-rgb);--color-primary-60: var(--studio-red-60);--color-primary-60-rgb: var(--studio-red-60-rgb);--color-primary-70: var(--studio-red-70);--color-primary-70-rgb: var(--studio-red-70-rgb);--color-primary-80: var(--studio-red-80);--color-primary-80-rgb: var(--studio-red-80-rgb);--color-primary-90: var(--studio-red-90);--color-primary-90-rgb: var(--studio-red-90-rgb);--color-primary-100: var(--studio-red-100);--color-primary-100-rgb: var(--studio-red-100-rgb);--color-accent: var(--theme-highlight-color);--color-accent-rgb: var(--theme-highlight-color-rgb);--color-accent-dark: var(--studio-red-70);--color-accent-dark-rgb: var(--studio-red-70-rgb);--color-accent-light: var(--studio-red-30);--color-accent-light-rgb: var(--studio-red-30-rgb);--color-accent-0: var(--studio-red-0);--color-accent-0-rgb: var(--studio-red-0-rgb);--color-accent-5: var(--studio-red-5);--color-accent-5-rgb: var(--studio-red-5-rgb);--color-accent-10: var(--studio-red-10);--color-accent-10-rgb: var(--studio-red-10-rgb);--color-accent-20: var(--studio-red-20);--color-accent-20-rgb: var(--studio-red-20-rgb);--color-accent-30: var(--studio-red-30);--color-accent-30-rgb: var(--studio-red-30-rgb);--color-accent-40: var(--studio-red-40);--color-accent-40-rgb: var(--studio-red-40-rgb);--color-accent-50: var(--studio-red-50);--color-accent-50-rgb: var(--studio-red-50-rgb);--color-accent-60: var(--studio-red-60);--color-accent-60-rgb: var(--studio-red-60-rgb);--color-accent-70: var(--studio-red-70);--color-accent-70-rgb: var(--studio-red-70-rgb);--color-accent-80: var(--studio-red-80);--color-accent-80-rgb: var(--studio-red-80-rgb);--color-accent-90: var(--studio-red-90);--color-accent-90-rgb: var(--studio-red-90-rgb);--color-accent-100: var(--studio-red-100);--color-accent-100-rgb: var(--studio-red-100-rgb);--color-masterbar-background: var(--theme-base-color);--color-masterbar-border: var(--theme-submenu-background-color);--color-masterbar-text: var(--studio-white);--color-masterbar-unread-dot-background: var(--theme-notification-color);--color-masterbar-item-hover-background: var(--theme-submenu-background-color);--color-masterbar-item-active-background: var(--theme-submenu-background-color);--color-masterbar-item-new-editor-background: var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background: var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-background: var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background: var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border: var(--studio-gray-10);--color-sidebar-background: var(--theme-base-color);--color-sidebar-background-rgb: var(--theme-base-color-rgb);--color-sidebar-border: var(--theme-submenu-background-color);--color-sidebar-text: var(--theme-text-color);--color-sidebar-text-rgb: var(--theme-text-color-rgb);--color-sidebar-text-alternative: var(--theme-text-color);--color-sidebar-gridicon-fill: var(--theme-icon-color);--color-sidebar-menu-selected-background: var(--theme-highlight-color);--color-sidebar-menu-selected-background-rgb: var(--theme-highlight-color-rgb);--color-sidebar-menu-selected-text: var(--theme-text-color);--color-sidebar-menu-selected-text-rgb: var(--theme-text-color-rgb);--color-sidebar-menu-hover-background: var(--theme-highlight-color);--color-sidebar-menu-hover-background-rgb: var(--theme-highlight-color-rgb);--color-sidebar-menu-hover-text: var(--theme-text-color);--color-sidebar-submenu-background: var(--theme-submenu-background-color);--color-sidebar-submenu-text: var(--theme-submenu-text-color);--color-sidebar-submenu-hover-background: transparent;--color-sidebar-submenu-hover-text: var(--theme-highlight-color)}.color-scheme.is-modern{--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-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{--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-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-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{--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-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)}.theme-jetpack-cloud,.color-scheme.is-jetpack-cloud{--color-primary: var(--studio-black);--color-primary-rgb: var(--studio-black-rgb);--color-primary-dark: var(--studio-gray-70);--color-primary-dark-rgb: var(--studio-gray-70-rgb);--color-primary-light: var(--studio-gray-30);--color-primary-light-rgb: var(--studio-gray-30-rgb);--color-primary-0: var(--studio-gray-0);--color-primary-0-rgb: var(--studio-gray-0-rgb);--color-primary-5: var(--studio-gray-5);--color-primary-5-rgb: var(--studio-gray-5-rgb);--color-primary-10: var(--studio-gray-10);--color-primary-10-rgb: var(--studio-gray-10-rgb);--color-primary-20: var(--studio-gray-20);--color-primary-20-rgb: var(--studio-gray-20-rgb);--color-primary-30: var(--studio-gray-30);--color-primary-30-rgb: var(--studio-gray-30-rgb);--color-primary-40: var(--studio-gray-40);--color-primary-40-rgb: var(--studio-gray-40-rgb);--color-primary-50: var(--studio-gray-50);--color-primary-50-rgb: var(--studio-gray-rgb);--color-primary-60: var(--studio-gray-60);--color-primary-60-rgb: var(--studio-gray-60-rgb);--color-primary-70: var(--studio-gray-70);--color-primary-70-rgb: var(--studio-gray-70-rgb);--color-primary-80: var(--studio-gray-80);--color-primary-80-rgb: var(--studio-gray-80-rgb);--color-primary-90: var(--studio-gray-90);--color-primary-90-rgb: var(--studio-gray-90-rgb);--color-primary-100: var(--studio-gray-100);--color-primary-100-rgb: var(--studio-gray-100-rgb);--color-accent: var(--studio-black);--color-accent-rgb: var(--studio-black-rgb);--color-accent-dark: var(--studio-gray-70);--color-accent-dark-rgb: var(--studio-gray-70-rgb);--color-accent-light: var(--studio-gray-30);--color-accent-light-rgb: var(--studio-gray-30-rgb);--color-accent-0: var(--studio-gray-0);--color-accent-0-rgb: var(--studio-gray-0-rgb);--color-accent-5: var(--studio-gray-5);--color-accent-5-rgb: var(--studio-gray-5-rgb);--color-accent-10: var(--studio-gray-10);--color-accent-10-rgb: var(--studio-gray-10-rgb);--color-accent-20: var(--studio-gray-20);--color-accent-20-rgb: var(--studio-gray-20-rgb);--color-accent-30: var(--studio-gray-30);--color-accent-30-rgb: var(--studio-gray-30-rgb);--color-accent-40: var(--studio-gray-40);--color-accent-40-rgb: var(--studio-gray-40-rgb);--color-accent-50: var(--studio-gray-50);--color-accent-50-rgb: var(--studio-gray-50-rgb);--color-accent-60: var(--studio-gray-60);--color-accent-60-rgb: var(--studio-gray-60-rgb);--color-accent-70: var(--studio-gray-70);--color-accent-70-rgb: var(--studio-gray-70-rgb);--color-accent-80: var(--studio-gray-80);--color-accent-80-rgb: var(--studio-gray-80-rgb);--color-accent-90: var(--studio-gray-90);--color-accent-90-rgb: var(--studio-gray-90-rgb);--color-accent-100: var(--studio-gray-100);--color-accent-100-rgb: var(--studio-gray-100-rgb);--color-link: var(--studio-jetpack-green-50);--color-link-rgb: var(--studio-jetpack-green-50-rgb);--color-link-dark: var(--studio-jetpack-green-70);--color-link-dark-rgb: var(--studio-jetpack-green-70-rgb);--color-link-light: var(--studio-jetpack-green-30);--color-link-light-rgb: var(--studio-jetpack-green-30-rgb);--color-link-0: var(--studio-jetpack-green-0);--color-link-0-rgb: var(--studio-jetpack-green-0-rgb);--color-link-5: var(--studio-jetpack-green-5);--color-link-5-rgb: var(--studio-jetpack-green-5-rgb);--color-link-10: var(--studio-jetpack-green-10);--color-link-10-rgb: var(--studio-jetpack-green-10-rgb);--color-link-20: var(--studio-jetpack-green-20);--color-link-20-rgb: var(--studio-jetpack-green-20-rgb);--color-link-30: var(--studio-jetpack-green-30);--color-link-30-rgb: var(--studio-jetpack-green-30-rgb);--color-link-40: var(--studio-jetpack-green-40);--color-link-40-rgb: var(--studio-jetpack-green-40-rgb);--color-link-50: var(--studio-gray-50);--color-link-50-rgb: var(--studio-gray-50-rgb);--color-link-60: var(--studio-jetpack-green-60);--color-link-60-rgb: var(--studio-jetpack-green-60-rgb);--color-link-70: var(--studio-jetpack-green-70);--color-link-70-rgb: var(--studio-jetpack-green-70-rgb);--color-link-80: var(--studio-jetpack-green-80);--color-link-80-rgb: var(--studio-jetpack-green-80-rgb);--color-link-90: var(--studio-jetpack-green-90);--color-link-90-rgb: var(--studio-jetpack-green-90-rgb);--color-link-100: var(--studio-jetpack-green-100);--color-link-100-rgb: var(--studio-jetpack-green-100-rgb);--color-masterbar-background: var(--studio-white);--color-masterbar-border: var(--studio-gray-5);--color-masterbar-text: var(--studio-gray-50);--color-masterbar-item-hover-background: var(--studio-white);--color-masterbar-item-active-background: var(--studio-white);--color-masterbar-item-new-editor-background: var(--studio-white);--color-masterbar-item-new-editor-hover-background: var(--studio-white);--color-masterbar-unread-dot-background: var(--color-accent-30);--color-masterbar-toggle-drafts-editor-background: var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background: var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border: var(--studio-gray-10);--color-sidebar-background: var(--studio-white);--color-sidebar-background-rgb: var(--studio-white-rgb);--color-sidebar-border: var(--studio-gray-5);--color-sidebar-text: var(--studio-gray-60);--color-sidebar-text-rgb: var(--studio-gray-60-rgb);--color-sidebar-text-alternative: var(--studio-gray-60);--color-sidebar-gridicon-fill: var(--studio-gray-60);--color-sidebar-menu-selected-text: var(--studio-gray-90);--color-sidebar-menu-selected-text-rgb: var(--studio-gray-90-rgb);--color-sidebar-menu-selected-background: var(--studio-gray-0);--color-sidebar-menu-selected-background-rgb: var(--studio-gray-0-rgb);--color-sidebar-menu-selected-gridicon-fill: var(--studio-jetpack-green-50);--color-sidebar-menu-hover-text: var(--studio-gray-90);--color-sidebar-menu-hover-background: var(--studio-gray-0);--color-sidebar-menu-hover-background-rgb: var(--studio-gray-0-rgb);--color-scary-0: var(--studio-red-0);--color-scary-5: var(--studio-red-5);--color-scary-40: var(--studio-red-40);--color-scary-50: var(--studio-red-50);--color-scary-60: var(--studio-red-60);--color-scary-70: var(--studio-red-70)}.whats-new-guide__main.components-guide-overlay{background-color:rgba(0,0,0,.45)}.whats-new-guide__main.components-modal__frame{top:calc(17.5vh - 47px);border-radius:4px;overflow:auto;max-height:80vh}@media(max-width: 660px){.whats-new-guide__main.components-modal__frame{width:90vw;min-width:90vw;left:5vw;right:5vw;height:520px}}@media(min-width: 660px){.whats-new-guide__main.components-modal__frame{width:744px;min-height:400px;height:-moz-fit-content;height:fit-content;top:calc(50% - 47px)}}.whats-new-guide__main .components-modal__header{height:0}.whats-new-guide__main .components-modal__header .components-button{color:#fff;color:var(--studio-white)}.whats-new-guide__main .guide__container{display:flex;flex-direction:column;height:100%}.whats-new-guide__main .guide__footer{width:100%;margin-top:auto;display:flex;justify-content:space-between;align-items:center;background:#fff;background:var(--studio-white);border-top:none;box-sizing:border-box}@media(min-width: 660px){.whats-new-guide__main .guide__footer{position:absolute;width:372px;height:auto;bottom:0;left:0;padding:32px}}@media(max-width: 660px){.whats-new-guide__main .guide__footer{padding:16px}}.whats-new-guide__main .guide__footer .guide__buttons .components-button{background-color:#fff;background-color:var(--color-surface);color:#3c434a;color:var(--color-neutral-70);border-color:#c3c4c7;border-color:var(--color-neutral-10);border-radius:2px;border-style:solid;border-width:1px;box-sizing:border-box;font-weight:400;line-height:22px;padding:6px 16px;text-decoration:none;vertical-align:top}.whats-new-guide__main .guide__footer .guide__buttons .guide__forward-button{background-color:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color);color:#fff;color:var(--color-text-inverted);font-size:.875rem}.whats-new-guide__main .guide__footer .guide__buttons .guide__forward-button:focus{border:none}.whats-new-guide__main .guide__footer .guide__buttons .guide__back-button{margin-right:20px}.whats-new-guide__main .guide__page{width:100%;justify-content:start;overflow:auto}.whats-new-guide__main .pagination-control li button{background-color:#c3c4c7;background-color:var(--studio-gray-10)}.whats-new-guide__main .pagination-control li button.is-current{background-color:#2c3338;background-color:var(--studio-gray-80)}.whats-new-page__container{display:flex;flex-direction:column-reverse;justify-content:flex-end;background:#fff;background:var(--studio-white);width:100%}@media(min-width: 660px){.whats-new-page__container{flex-direction:row;justify-content:flex-start;position:relative;height:100%;min-height:400px;bottom:0}}.whats-new-page__text,.whats-new-page__visual{box-sizing:border-box}@media(min-width: 660px){.whats-new-page__text,.whats-new-page__visual{flex:1 auto;min-width:372px}}.whats-new-page__text{padding:16px 16px 0;min-height:222px;height:-moz-fit-content;height:fit-content}@media(min-width: 660px){.whats-new-page__text{overflow:auto;padding:32px 32px 0;margin-bottom:94px}}.whats-new-page__visual{height:50%;max-height:230px;padding:32px 52px 0;background:#0675c4;background:var(--studio-blue-50);text-align:center;display:flex;flex-direction:column;flex:1;overflow:hidden;position:relative}@media(min-width: 660px){.whats-new-page__visual{height:auto;max-height:initial;width:372px}.whats-new-page__visual .whats-new-page__image-container{position:absolute;top:74px;left:52px;right:52px}}@media(max-width: 660px){.whats-new-page__visual{max-height:33.3333333333vh}}@media(max-height: 480px){.whats-new-page__visual{max-height:25vh}}.whats-new-page__heading{font-family:"Recoleta","Noto Serif",Georgia,"Times New Roman",Times,serif;font-weight:400;letter-spacing:-0.4px;color:#1d2327;color:var(--studio-gray-90);font-size:1.5rem;line-height:1;margin:0}@media(min-width: 660px){.whats-new-page__heading{font-size:2rem}}body.locale-de .whats-new-page__heading{font-size:2.25rem}@media(min-width: 660px){body.locale-de .whats-new-page__heading{font-size:1.5rem}}.whats-new-page__description p{font-size:.875rem;line-height:22px;margin:10px 0 0;color:#2c3338;color:var(--studio-gray-80)}@media(min-width: 660px){.whats-new-page__description p{margin:10px 0;font-size:1rem;line-height:24px}}.whats-new-page__link{font-size:.875rem}.whats-new-page__link.is-tertiary:not(:disabled){color:#0675c4;color:var(--studio-blue-50)}.whats-new-page__link.is-tertiary:not(:disabled):hover{box-shadow:none}@media(min-width: 660px){.whats-new-page__link{font-size:1rem;line-height:24px}}.whats-new-page__image{max-width:100%;height:auto;margin-top:auto;align-self:center;max-height:100%}@media(min-width: 660px){.whats-new-page__image{max-height:none}}
17
  :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}:root{--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}: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: #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: 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-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{--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-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-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{--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-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{--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{--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 .masterbar__item-notifications .gridicon{fill:#000}.color-scheme.is-midnight{--theme-text-color: #fff;--theme-text-color-rgb: 255, 255, 255;--theme-base-color: #363b3f;--theme-base-color-rgb: 54, 59, 63;--theme-submenu-text-color: #c3c4c5;--theme-submenu-background-color: #26292c;--theme-icon-color: #ece6f6;--theme-highlight-color: #e14d43;--theme-highlight-color-rgb: 225, 77, 67;--theme-notification-color: #69a8bb;--color-primary: var(--theme-highlight-color);--color-primary-rgb: var(--theme-highlight-color-rgb);--color-primary-dark: var(--studio-red-70);--color-primary-dark-rgb: var(--studio-red-70-rgb);--color-primary-light: var(--studio-red-30);--color-primary-light-rgb: var(--studio-red-30-rgb);--color-primary-0: var(--studio-red-0);--color-primary-0-rgb: var(--studio-red-0-rgb);--color-primary-5: var(--studio-red-5);--color-primary-5-rgb: var(--studio-red-5-rgb);--color-primary-10: var(--studio-red-10);--color-primary-10-rgb: var(--studio-red-10-rgb);--color-primary-20: var(--studio-red-20);--color-primary-20-rgb: var(--studio-red-20-rgb);--color-primary-30: var(--studio-red-30);--color-primary-30-rgb: var(--studio-red-30-rgb);--color-primary-40: var(--studio-red-40);--color-primary-40-rgb: var(--studio-red-40-rgb);--color-primary-50: var(--studio-red-50);--color-primary-50-rgb: var(--studio-red-50-rgb);--color-primary-60: var(--studio-red-60);--color-primary-60-rgb: var(--studio-red-60-rgb);--color-primary-70: var(--studio-red-70);--color-primary-70-rgb: var(--studio-red-70-rgb);--color-primary-80: var(--studio-red-80);--color-primary-80-rgb: var(--studio-red-80-rgb);--color-primary-90: var(--studio-red-90);--color-primary-90-rgb: var(--studio-red-90-rgb);--color-primary-100: var(--studio-red-100);--color-primary-100-rgb: var(--studio-red-100-rgb);--color-accent: var(--theme-highlight-color);--color-accent-rgb: var(--theme-highlight-color-rgb);--color-accent-dark: var(--studio-red-70);--color-accent-dark-rgb: var(--studio-red-70-rgb);--color-accent-light: var(--studio-red-30);--color-accent-light-rgb: var(--studio-red-30-rgb);--color-accent-0: var(--studio-red-0);--color-accent-0-rgb: var(--studio-red-0-rgb);--color-accent-5: var(--studio-red-5);--color-accent-5-rgb: var(--studio-red-5-rgb);--color-accent-10: var(--studio-red-10);--color-accent-10-rgb: var(--studio-red-10-rgb);--color-accent-20: var(--studio-red-20);--color-accent-20-rgb: var(--studio-red-20-rgb);--color-accent-30: var(--studio-red-30);--color-accent-30-rgb: var(--studio-red-30-rgb);--color-accent-40: var(--studio-red-40);--color-accent-40-rgb: var(--studio-red-40-rgb);--color-accent-50: var(--studio-red-50);--color-accent-50-rgb: var(--studio-red-50-rgb);--color-accent-60: var(--studio-red-60);--color-accent-60-rgb: var(--studio-red-60-rgb);--color-accent-70: var(--studio-red-70);--color-accent-70-rgb: var(--studio-red-70-rgb);--color-accent-80: var(--studio-red-80);--color-accent-80-rgb: var(--studio-red-80-rgb);--color-accent-90: var(--studio-red-90);--color-accent-90-rgb: var(--studio-red-90-rgb);--color-accent-100: var(--studio-red-100);--color-accent-100-rgb: var(--studio-red-100-rgb);--color-masterbar-background: var(--theme-base-color);--color-masterbar-border: var(--theme-submenu-background-color);--color-masterbar-text: var(--studio-white);--color-masterbar-unread-dot-background: var(--theme-notification-color);--color-masterbar-item-hover-background: var(--theme-submenu-background-color);--color-masterbar-item-active-background: var(--theme-submenu-background-color);--color-masterbar-item-new-editor-background: var(--studio-gray-50);--color-masterbar-item-new-editor-hover-background: var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-background: var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background: var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border: var(--studio-gray-10);--color-sidebar-background: var(--theme-base-color);--color-sidebar-background-rgb: var(--theme-base-color-rgb);--color-sidebar-border: var(--theme-submenu-background-color);--color-sidebar-text: var(--theme-text-color);--color-sidebar-text-rgb: var(--theme-text-color-rgb);--color-sidebar-text-alternative: var(--theme-text-color);--color-sidebar-gridicon-fill: var(--theme-icon-color);--color-sidebar-menu-selected-background: var(--theme-highlight-color);--color-sidebar-menu-selected-background-rgb: var(--theme-highlight-color-rgb);--color-sidebar-menu-selected-text: var(--theme-text-color);--color-sidebar-menu-selected-text-rgb: var(--theme-text-color-rgb);--color-sidebar-menu-hover-background: var(--theme-highlight-color);--color-sidebar-menu-hover-background-rgb: var(--theme-highlight-color-rgb);--color-sidebar-menu-hover-text: var(--theme-text-color);--color-sidebar-submenu-background: var(--theme-submenu-background-color);--color-sidebar-submenu-text: var(--theme-submenu-text-color);--color-sidebar-submenu-hover-background: transparent;--color-sidebar-submenu-hover-text: var(--theme-highlight-color)}.color-scheme.is-modern{--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-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{--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-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-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{--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-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)}.theme-jetpack-cloud,.color-scheme.is-jetpack-cloud{--color-primary: var(--studio-black);--color-primary-rgb: var(--studio-black-rgb);--color-primary-dark: var(--studio-gray-70);--color-primary-dark-rgb: var(--studio-gray-70-rgb);--color-primary-light: var(--studio-gray-30);--color-primary-light-rgb: var(--studio-gray-30-rgb);--color-primary-0: var(--studio-gray-0);--color-primary-0-rgb: var(--studio-gray-0-rgb);--color-primary-5: var(--studio-gray-5);--color-primary-5-rgb: var(--studio-gray-5-rgb);--color-primary-10: var(--studio-gray-10);--color-primary-10-rgb: var(--studio-gray-10-rgb);--color-primary-20: var(--studio-gray-20);--color-primary-20-rgb: var(--studio-gray-20-rgb);--color-primary-30: var(--studio-gray-30);--color-primary-30-rgb: var(--studio-gray-30-rgb);--color-primary-40: var(--studio-gray-40);--color-primary-40-rgb: var(--studio-gray-40-rgb);--color-primary-50: var(--studio-gray-50);--color-primary-50-rgb: var(--studio-gray-rgb);--color-primary-60: var(--studio-gray-60);--color-primary-60-rgb: var(--studio-gray-60-rgb);--color-primary-70: var(--studio-gray-70);--color-primary-70-rgb: var(--studio-gray-70-rgb);--color-primary-80: var(--studio-gray-80);--color-primary-80-rgb: var(--studio-gray-80-rgb);--color-primary-90: var(--studio-gray-90);--color-primary-90-rgb: var(--studio-gray-90-rgb);--color-primary-100: var(--studio-gray-100);--color-primary-100-rgb: var(--studio-gray-100-rgb);--color-accent: var(--studio-black);--color-accent-rgb: var(--studio-black-rgb);--color-accent-dark: var(--studio-gray-70);--color-accent-dark-rgb: var(--studio-gray-70-rgb);--color-accent-light: var(--studio-gray-30);--color-accent-light-rgb: var(--studio-gray-30-rgb);--color-accent-0: var(--studio-gray-0);--color-accent-0-rgb: var(--studio-gray-0-rgb);--color-accent-5: var(--studio-gray-5);--color-accent-5-rgb: var(--studio-gray-5-rgb);--color-accent-10: var(--studio-gray-10);--color-accent-10-rgb: var(--studio-gray-10-rgb);--color-accent-20: var(--studio-gray-20);--color-accent-20-rgb: var(--studio-gray-20-rgb);--color-accent-30: var(--studio-gray-30);--color-accent-30-rgb: var(--studio-gray-30-rgb);--color-accent-40: var(--studio-gray-40);--color-accent-40-rgb: var(--studio-gray-40-rgb);--color-accent-50: var(--studio-gray-50);--color-accent-50-rgb: var(--studio-gray-50-rgb);--color-accent-60: var(--studio-gray-60);--color-accent-60-rgb: var(--studio-gray-60-rgb);--color-accent-70: var(--studio-gray-70);--color-accent-70-rgb: var(--studio-gray-70-rgb);--color-accent-80: var(--studio-gray-80);--color-accent-80-rgb: var(--studio-gray-80-rgb);--color-accent-90: var(--studio-gray-90);--color-accent-90-rgb: var(--studio-gray-90-rgb);--color-accent-100: var(--studio-gray-100);--color-accent-100-rgb: var(--studio-gray-100-rgb);--color-link: var(--studio-jetpack-green-50);--color-link-rgb: var(--studio-jetpack-green-50-rgb);--color-link-dark: var(--studio-jetpack-green-70);--color-link-dark-rgb: var(--studio-jetpack-green-70-rgb);--color-link-light: var(--studio-jetpack-green-30);--color-link-light-rgb: var(--studio-jetpack-green-30-rgb);--color-link-0: var(--studio-jetpack-green-0);--color-link-0-rgb: var(--studio-jetpack-green-0-rgb);--color-link-5: var(--studio-jetpack-green-5);--color-link-5-rgb: var(--studio-jetpack-green-5-rgb);--color-link-10: var(--studio-jetpack-green-10);--color-link-10-rgb: var(--studio-jetpack-green-10-rgb);--color-link-20: var(--studio-jetpack-green-20);--color-link-20-rgb: var(--studio-jetpack-green-20-rgb);--color-link-30: var(--studio-jetpack-green-30);--color-link-30-rgb: var(--studio-jetpack-green-30-rgb);--color-link-40: var(--studio-jetpack-green-40);--color-link-40-rgb: var(--studio-jetpack-green-40-rgb);--color-link-50: var(--studio-gray-50);--color-link-50-rgb: var(--studio-gray-50-rgb);--color-link-60: var(--studio-jetpack-green-60);--color-link-60-rgb: var(--studio-jetpack-green-60-rgb);--color-link-70: var(--studio-jetpack-green-70);--color-link-70-rgb: var(--studio-jetpack-green-70-rgb);--color-link-80: var(--studio-jetpack-green-80);--color-link-80-rgb: var(--studio-jetpack-green-80-rgb);--color-link-90: var(--studio-jetpack-green-90);--color-link-90-rgb: var(--studio-jetpack-green-90-rgb);--color-link-100: var(--studio-jetpack-green-100);--color-link-100-rgb: var(--studio-jetpack-green-100-rgb);--color-masterbar-background: var(--studio-white);--color-masterbar-border: var(--studio-gray-5);--color-masterbar-text: var(--studio-gray-50);--color-masterbar-item-hover-background: var(--studio-white);--color-masterbar-item-active-background: var(--studio-white);--color-masterbar-item-new-editor-background: var(--studio-white);--color-masterbar-item-new-editor-hover-background: var(--studio-white);--color-masterbar-unread-dot-background: var(--color-accent-30);--color-masterbar-toggle-drafts-editor-background: var(--studio-gray-60);--color-masterbar-toggle-drafts-editor-hover-background: var(--studio-gray-40);--color-masterbar-toggle-drafts-editor-border: var(--studio-gray-10);--color-sidebar-background: var(--studio-white);--color-sidebar-background-rgb: var(--studio-white-rgb);--color-sidebar-border: var(--studio-gray-5);--color-sidebar-text: var(--studio-gray-60);--color-sidebar-text-rgb: var(--studio-gray-60-rgb);--color-sidebar-text-alternative: var(--studio-gray-60);--color-sidebar-gridicon-fill: var(--studio-gray-60);--color-sidebar-menu-selected-text: var(--studio-gray-90);--color-sidebar-menu-selected-text-rgb: var(--studio-gray-90-rgb);--color-sidebar-menu-selected-background: var(--studio-gray-0);--color-sidebar-menu-selected-background-rgb: var(--studio-gray-0-rgb);--color-sidebar-menu-selected-gridicon-fill: var(--studio-jetpack-green-50);--color-sidebar-menu-hover-text: var(--studio-gray-90);--color-sidebar-menu-hover-background: var(--studio-gray-0);--color-sidebar-menu-hover-background-rgb: var(--studio-gray-0-rgb);--color-scary-0: var(--studio-red-0);--color-scary-5: var(--studio-red-5);--color-scary-40: var(--studio-red-40);--color-scary-50: var(--studio-red-50);--color-scary-60: var(--studio-red-60);--color-scary-70: var(--studio-red-70)}.pagination-control{margin:0;display:flex;justify-content:center;width:100%}.pagination-control li{display:inline-flex;margin:auto 4px;height:18px;align-items:center;border:none}.pagination-control li.pagination-control__last-item{margin-left:auto;height:32px}.pagination-control button.pagination-control__page{border:none;padding:0;width:6px;height:6px;border-radius:50%;cursor:pointer;transition:all .2s ease-in-out;background-color:#c3c4c7;background-color:var(--color-neutral-10)}.pagination-control button.pagination-control__page:hover{background-color:#787c82;background-color:var(--color-neutral-40)}.pagination-control button.pagination-control__page:disabled{cursor:default}.pagination-control button.pagination-control__page.is-current{background-color:var(--wp-admin-theme-color)}
18
  .external-link .gridicons-external{color:currentColor;margin-left:3px;margin-right:0;top:2px;position:relative}.external-link:hover{cursor:pointer}.icon-first .gridicons-external{margin-left:0;margin-right:3px}
19
  .screen-reader-text{clip:rect(1px, 1px, 1px, 1px);position:absolute !important}.screen-reader-text:hover,.screen-reader-text:active,.screen-reader-text:focus{background-color:#f1f1f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto !important;color:#21759b;display:block;font-size:14px;font-weight:bold;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:z-index("screen-reader-text-parent", ".screen-reader-text:focus")}
help-center/dist/help-center.js CHANGED
@@ -36990,6 +36990,7 @@ function createPurchaseObject(purchase) {
36990
  productId: Number(purchase.product_id),
36991
  productName: purchase.product_name,
36992
  productSlug: purchase.product_slug,
 
36993
  productDisplayPrice: purchase.product_display_price,
36994
  totalRefundAmount: Number(purchase.total_refund_amount),
36995
  totalRefundText: purchase.total_refund_text,
@@ -38780,10 +38781,10 @@ function onDisablePersistence(callback) {
38780
  /* harmony import */ var _automattic_calypso_config__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(20899);
38781
  /* harmony import */ var debug__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(38049);
38782
  /* harmony import */ var debug__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(debug__WEBPACK_IMPORTED_MODULE_1__);
 
38783
  /* harmony import */ var wpcom_proxy_request__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(18552);
38784
- /* harmony import */ var calypso_lib_oauth_token__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(7268);
38785
- /* harmony import */ var calypso_lib_wp_support__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(33300);
38786
- /* harmony import */ var calypso_lib_wpcom_oauth_wrapper__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(12902);
38787
  /* harmony import */ var calypso_lib_wpcom_xhr_wrapper__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(54083);
38788
  /* harmony import */ var _handlers_guest_sandbox_ticket__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(78009);
38789
  /* harmony import */ var _localization__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(21286);
@@ -38800,9 +38801,9 @@ const debug = debug__WEBPACK_IMPORTED_MODULE_1___default()('calypso:wp');
38800
  let wpcom;
38801
 
38802
  if (_automattic_calypso_config__WEBPACK_IMPORTED_MODULE_0__/* ["default"].isEnabled */ .ZP.isEnabled('oauth')) {
38803
- wpcom = (0,calypso_lib_wpcom_oauth_wrapper__WEBPACK_IMPORTED_MODULE_4__/* ["default"] */ .Z)(calypso_lib_oauth_token__WEBPACK_IMPORTED_MODULE_2__/* .getToken */ .LP(), calypso_lib_wpcom_xhr_wrapper__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z);
38804
  } else {
38805
- wpcom = (0,calypso_lib_wpcom_oauth_wrapper__WEBPACK_IMPORTED_MODULE_4__/* ["default"] */ .Z)(wpcom_proxy_request__WEBPACK_IMPORTED_MODULE_8__/* ["default"] */ .ZP); // Upgrade to "access all users blogs" mode
38806
 
38807
  wpcom.request({
38808
  metaAPI: {
@@ -38817,7 +38818,7 @@ if (_automattic_calypso_config__WEBPACK_IMPORTED_MODULE_0__/* ["default"].isEnab
38817
  });
38818
  }
38819
 
38820
- wpcom = (0,calypso_lib_wp_support__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z)(wpcom);
38821
 
38822
  if (false) {} // Inject localization helpers to `wpcom` instance
38823
 
@@ -38833,7 +38834,7 @@ if (false) {} // Inject localization helpers to `wpcom` instance
38833
  * Expose `wpcomJetpackLicensing` which uses a different auth token than wpcom.
38834
  */
38835
 
38836
- const wpcomJetpackLicensing = (0,calypso_lib_wpcom_oauth_wrapper__WEBPACK_IMPORTED_MODULE_4__/* ["default"] */ .Z)(calypso_lib_wpcom_xhr_wrapper__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z);
38837
 
38838
  /***/ }),
38839
 
@@ -39074,83 +39075,6 @@ function wpcomSupport(wpcom) {
39074
 
39075
  /***/ }),
39076
 
39077
- /***/ 12902:
39078
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
39079
-
39080
- "use strict";
39081
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
39082
- /* harmony export */ "Z": () => (__WEBPACK_DEFAULT_EXPORT__)
39083
- /* harmony export */ });
39084
- /* harmony import */ var inherits__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(91285);
39085
- /* harmony import */ var inherits__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(inherits__WEBPACK_IMPORTED_MODULE_0__);
39086
- /* harmony import */ var wpcom__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(91202);
39087
-
39088
-
39089
- /**
39090
- * Class inherited from `WPCOMUnpublished` class and adds
39091
- * specific methods useful for wp-calypso.
39092
- *
39093
- * @param {string} [token] - oauth token
39094
- * @param {Function} [reqHandler] - request handler
39095
- * @returns {wpcomFactory} WPCOMOAuthWrapper instance
39096
- */
39097
-
39098
- function WPCOMOAuthWrapper(token, reqHandler) {
39099
- if (!(this instanceof WPCOMOAuthWrapper)) {
39100
- return new WPCOMOAuthWrapper(token, reqHandler);
39101
- }
39102
-
39103
- if ('function' === typeof token) {
39104
- reqHandler = token;
39105
- token = null;
39106
- } else if (token) {
39107
- this.loadToken(token);
39108
- }
39109
-
39110
- wpcom__WEBPACK_IMPORTED_MODULE_1__/* ["default"].call */ .Z.call(this, token, function (params, fn) {
39111
- if (this.isTokenLoaded()) {
39112
- // authToken is used in wpcom-xhr-request,
39113
- // which is used for the signup flow in the REST Proxy
39114
- params = { ...params,
39115
- authToken: this._token,
39116
- token: this._token
39117
- };
39118
- }
39119
-
39120
- return reqHandler(params, fn);
39121
- });
39122
- }
39123
-
39124
- inherits__WEBPACK_IMPORTED_MODULE_0___default()(WPCOMOAuthWrapper, wpcom__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .Z);
39125
- /**
39126
- * Add a token to this instance of WPCOM.
39127
- * When loaded, the token is applied to the param object of each subsequent request.
39128
- *
39129
- * @param {string} [token] - oauth token
39130
- */
39131
-
39132
- wpcom__WEBPACK_IMPORTED_MODULE_1__/* ["default"].prototype.loadToken */ .Z.prototype.loadToken = function (token) {
39133
- this._token = token;
39134
- };
39135
- /**
39136
- * Returns a boolean representing whether or not the token has been loaded.
39137
- *
39138
- * @returns {string} oauth token
39139
- */
39140
-
39141
-
39142
- WPCOMOAuthWrapper.prototype.isTokenLoaded = function () {
39143
- return this._token !== undefined;
39144
- };
39145
- /**
39146
- * Expose `WPCOMOAuthWrapper`
39147
- */
39148
-
39149
-
39150
- /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (WPCOMOAuthWrapper);
39151
-
39152
- /***/ }),
39153
-
39154
  /***/ 54083:
39155
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
39156
 
@@ -43481,7 +43405,7 @@ const localizedSupport = function () {
43481
  /* harmony export */ "dZ": () => (/* binding */ HAPPYCHAT_CHAT_STATUS_ASSIGNED),
43482
  /* harmony export */ "s0": () => (/* binding */ HAPPYCHAT_CHAT_STATUS_DEFAULT)
43483
  /* harmony export */ });
43484
- /* unused harmony exports HAPPYCHAT_CONNECTION_ERROR_FORCED_CLOSE, HAPPYCHAT_CONNECTION_ERROR_PING_TIMEOUT, HAPPYCHAT_CONNECTION_ERROR_TRANSPORT_CLOSE, HAPPYCHAT_CONNECTION_ERROR_TRANSPORT_ERROR, HAPPYCHAT_CONNECTION_STATUS_UNAUTHORIZED, HAPPYCHAT_SKILL_PRODUCT, HAPPYCHAT_SKILL_LANGUAGE, HAPPYCHAT_GROUP_JPOP, HAPPYCHAT_GROUP_WOO, HAPPYCHAT_GROUP_JPPHP, HAPPYCHAT_GROUP_WPCOM, HAPPYCHAT_CHAT_STATUS_ABANDONED, HAPPYCHAT_CHAT_STATUS_ASSIGNING, HAPPYCHAT_CHAT_STATUS_BLOCKED, HAPPYCHAT_CHAT_STATUS_CLOSED, HAPPYCHAT_CHAT_STATUS_NEW, HAPPYCHAT_CHAT_STATUS_MISSED, HAPPYCHAT_CHAT_STATUS_PENDING */
43485
  // These CONNECTION_ERROR constants come directly from the Socket.IO client library.
43486
  // These are the possible reasons for a connection disconnect.
43487
  const HAPPYCHAT_CONNECTION_ERROR_FORCED_CLOSE = 'forced close';
@@ -43494,6 +43418,7 @@ const HAPPYCHAT_CONNECTION_STATUS_CONNECTING = 'connecting';
43494
  const HAPPYCHAT_CONNECTION_STATUS_CONNECTED = 'connected';
43495
  const HAPPYCHAT_CONNECTION_STATUS_DISCONNECTED = 'disconnected';
43496
  const HAPPYCHAT_CONNECTION_STATUS_RECONNECTING = 'reconnecting';
 
43497
  const HAPPYCHAT_CONNECTION_STATUS_UNAUTHORIZED = 'unauthorized'; // Max number of messages to save between refreshes
43498
 
43499
  const HAPPYCHAT_MAX_STORED_MESSAGES = 30; // Skills
@@ -49953,9 +49878,9 @@ function getSitesItems(state) {
49953
 
49954
 
49955
  /**
49956
- * Does the user have any current purchases that can be canceled (i.e. purchases other than premium themes)?
49957
  *
49958
- * Note: there is an is_cancelable flag on the purchase object, but it returns true for premium themes.
49959
  *
49960
  * @param {object} state global state
49961
  * @returns {boolean} if the user currently has any purchases that can be canceled.
@@ -54729,7 +54654,6 @@ const disable = configApi.disable;
54729
  /* harmony export */ "ikw": () => (/* binding */ WPCOM_FEATURES_SCAN),
54730
  /* harmony export */ "Vhs": () => (/* binding */ FEATURE_UNLIMITED_EMAILS),
54731
  /* harmony export */ "nl4": () => (/* binding */ FEATURE_UNLIMITED_SUBSCRIBERS),
54732
- /* harmony export */ "c9J": () => (/* binding */ FEATURE_IMPORT_SUBSCRIBERS),
54733
  /* harmony export */ "kWv": () => (/* binding */ FEATURE_ADD_MULTIPLE_PAGES_NEWSLETTER),
54734
  /* harmony export */ "pOV": () => (/* binding */ FEATURE_AD_FREE_EXPERIENCE),
54735
  /* harmony export */ "Ix": () => (/* binding */ FEATURE_COLLECT_PAYMENTS_NEWSLETTER),
@@ -54742,7 +54666,7 @@ const disable = configApi.disable;
54742
  /* harmony export */ "cMD": () => (/* binding */ FEATURE_COLLECT_PAYMENTS_LINK_IN_BIO),
54743
  /* harmony export */ "_xz": () => (/* binding */ FEATURE_LINK_IN_BIO_THEMES_CUSTOMIZATION)
54744
  /* harmony export */ });
54745
- /* unused harmony exports FEATURE_SET_PRIMARY_CUSTOM_DOMAIN, FEATURE_UNLIMITED_STORAGE, FEATURE_EMAIL_LIVE_CHAT_SUPPORT, FEATURE_SFTP, FEATURE_SSH, FEATURE_VIDEO_UPLOADS_JETPACK_PREMIUM, FEATURE_INSTALL_THEMES, FEATURE_PERFORMANCE, FEATURE_ALL_PERSONAL_FEATURES_JETPACK, FEATURE_DONATIONS, FEATURE_RECURRING_PAYMENTS, FEATURE_PREMIUM_CONTENT_CONTAINER, FEATURE_SECURITY_SETTINGS, FEATURE_WOOP, FEATURE_SEARCH, FEATURE_SEARCH_V2, FEATURE_VIDEO_HOSTING_V2, FEATURE_CRM_INTEGRATED_WITH_WORDPRESS, FEATURE_CRM_LEADS_AND_FUNNEL, FEATURE_CRM_PROPOSALS_AND_INVOICES, FEATURE_CRM_TRACK_TRANSACTIONS, FEATURE_CRM_NO_CONTACT_LIMITS, FEATURE_SECURE_STORAGE_V2, FEATURE_ONE_CLICK_RESTORE_V2, FEATURE_ONE_CLICK_FIX_V2, FEATURE_INSTANT_EMAIL_V2, FEATURE_AKISMET_V2, FEATURE_SPAM_BLOCK_V2, FEATURE_SPAM_10K_PER_MONTH, FEATURE_FILTERING_V2, FEATURE_LANGUAGE_SUPPORT_V2, FEATURE_SPELLING_CORRECTION_V2, FEATURE_SUPPORTS_WOOCOMMERCE_V2, FEATURE_JETPACK_VIDEOPRESS_EDITOR, FEATURE_JETPACK_VIDEOPRESS_STORAGE, FEATURE_JETPACK_VIDEOPRESS_UNBRANDED, FEATURE_CLOUD_CRITICAL_CSS, SOCIAL_SHARES_1000, FEATURE_JETPACK_10GB_BACKUP_STORAGE, FEATURE_JETPACK_1_YEAR_ARCHIVE_ACTIVITY_LOG, FEATURE_JETPACK_30_DAY_ARCHIVE_ACTIVITY_LOG, FEATURE_JETPACK_REAL_TIME_CLOUD_BACKUPS, FEATURE_UNLIMITED_USERS, FEATURE_UNLIMITED_POSTS_PAGES, FEATURE_ADDITIONAL_SITES, WPCOM_FEATURES_AKISMET, WPCOM_FEATURES_BACKUPS_RESTORE, WPCOM_FEATURES_CDN, WPCOM_FEATURES_CLASSIC_SEARCH, WPCOM_FEATURES_CLOUDFLARE_CDN, WPCOM_FEATURES_FULL_ACTIVITY_LOG, WPCOM_FEATURES_INSTALL_PLUGINS, WPCOM_FEATURES_INSTANT_SEARCH, WPCOM_FEATURES_LIVE_SUPPORT, WPCOM_FEATURES_MANAGE_PLUGINS, WPCOM_FEATURES_NO_ADVERTS, WPCOM_FEATURES_NO_WPCOM_BRANDING, WPCOM_FEATURES_PREMIUM_THEMES, WPCOM_FEATURES_PRIORITY_SUPPORT, WPCOM_FEATURES_REAL_TIME_BACKUPS, WPCOM_FEATURES_SEO_PREVIEW_TOOLS, WPCOM_FEATURES_UPLOAD_AUDIO_FILES, WPCOM_FEATURES_UPLOAD_PLUGINS, WPCOM_FEATURES_UPLOAD_VIDEO_FILES, WPCOM_FEATURES_VAULTPRESS_BACKUPS, WPCOM_FEATURES_VIDEOPRESS, WPCOM_FEATURES_VIDEOPRESS_UNLIMITED_STORAGE, WPCOM_FEATURES_VIDEO_HOSTING, WPCOM_FEATURES_WORDADS, WPCOM_FEATURES_CUSTOM_DESIGN, WPCOM_FEATURES_GLOBAL_STYLES */
54746
  /* harmony import */ var _jetpack__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(90892);
54747
 
54748
  const FEATURE_WP_SUBDOMAIN = 'wordpress-subdomain';
@@ -56307,7 +56231,9 @@ const getPlanPersonalDetails = () => ({ ...getDotcomPlanDetails(),
56307
  getPortfolioSignupFeatures: () => [_constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_FREE_DOMAIN */ .MCU, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_EMAIL_SUPPORT_SIGNUP */ .fhe, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_ALL_FREE_FEATURES */ .Uwp],
56308
  getSignupCompareAvailableFeatures: () => [_constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_CUSTOM_DOMAIN */ .Eb2, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_HOSTING */ .q4V, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_NO_ADS */ .Xk_, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_COLLECT_PAYMENTS_V2 */ .$4, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_EMAIL_SUPPORT_SIGNUP */ .fhe],
56309
  getNewsletterDescription: () => i18n_calypso__WEBPACK_IMPORTED_MODULE_2__/* ["default"].translate */ .ZP.translate('Jumpstart your Newsletter with a custom domain, ad-free experience, and the ability to sell subscriptions, take payments, and collect donations from day one. Backed with email support to help get everything just right.'),
56310
- getNewsletterSignupFeatures: () => [_constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_CUSTOM_DOMAIN */ .Eb2, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_UNLIMITED_EMAILS */ .Vhs, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_UNLIMITED_SUBSCRIBERS */ .nl4, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_IMPORT_SUBSCRIBERS */ .c9J, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_ADD_MULTIPLE_PAGES_NEWSLETTER */ .kWv, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_AD_FREE_EXPERIENCE */ .pOV, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_COLLECT_PAYMENTS_NEWSLETTER */ .Ix, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_POST_BY_EMAIL */ .WCW, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_EMAIL_SUPPORT_SIGNUP */ .fhe],
 
 
56311
  getNewsletterHighlightedFeatures: () => [_constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_CUSTOM_DOMAIN */ .Eb2, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_UNLIMITED_EMAILS */ .Vhs, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_UNLIMITED_SUBSCRIBERS */ .nl4, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_AD_FREE_EXPERIENCE */ .pOV],
56312
  getLinkInBioDescription: () => i18n_calypso__WEBPACK_IMPORTED_MODULE_2__/* ["default"].translate */ .ZP.translate('Stand out and unlock earnings with an ad-free site, custom domain, and the ability to sell subscriptions, take payments, and collect donations. Backed with email support to help get your site just right.'),
56313
  getLinkInBioSignupFeatures: () => [_constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_CUSTOM_DOMAIN */ .Eb2, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_ADD_UNLIMITED_LINKS */ .y4L, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_CUSTOMIZE_THEMES_BUTTONS_COLORS */ .baL, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_AD_FREE_EXPERIENCE */ .pOV, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_TRACK_VIEWS_CLICKS */ .LDi, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_COLLECT_PAYMENTS_LINK_IN_BIO */ .cMD, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_POST_BY_EMAIL */ .WCW, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_EMAIL_SUPPORT_SIGNUP */ .fhe],
@@ -56371,7 +56297,11 @@ const getPlanPremiumDetails = () => ({ ...getDotcomPlanDetails(),
56371
  getPromotedFeatures: () => [_constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_CUSTOM_DOMAIN */ .Eb2, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_NO_ADS */ .Xk_, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_ADVANCED_DESIGN */ .MOV, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_13GB_STORAGE */ .E5t],
56372
  getSignupFeatures: () => [_constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_LIVE_CHAT_SUPPORT_BUSINESS_DAYS */ .N5t, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_ADVANCED_CUSTOMIZATION */ .jSq, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_ALL_PERSONAL_FEATURES */ .VyO],
56373
  getNewsletterDescription: () => i18n_calypso__WEBPACK_IMPORTED_MODULE_2__/* ["default"].translate */ .ZP.translate('Take your Newsletter further, faster. Get everything included in Personal, plus premium design themes, baked-in video uploads, ad monetization, deep visitor insights from Google Analytics, and live chat support.'),
56374
- getNewsletterSignupFeatures: () => [_constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_CUSTOM_DOMAIN */ .Eb2, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_UNLIMITED_EMAILS */ .Vhs, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_UNLIMITED_SUBSCRIBERS */ .nl4, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_IMPORT_SUBSCRIBERS */ .c9J, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_ADD_MULTIPLE_PAGES_NEWSLETTER */ .kWv, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_AD_FREE_EXPERIENCE */ .pOV, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_COLLECT_PAYMENTS_NEWSLETTER */ .Ix, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_POST_BY_EMAIL */ .WCW, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_EMAIL_SUPPORT_SIGNUP */ .fhe, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_LIVE_CHAT_SUPPORT */ .Tez, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_REAL_TIME_ANALYTICS */ .Hrz, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_GOOGLE_ANALYTICS_V2 */ .HkP, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_PREMIUM_THEMES */ .QfP],
 
 
 
 
56375
  getNewsletterHighlightedFeatures: () => [_constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_CUSTOM_DOMAIN */ .Eb2, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_UNLIMITED_EMAILS */ .Vhs, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_UNLIMITED_SUBSCRIBERS */ .nl4, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_AD_FREE_EXPERIENCE */ .pOV, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_LIVE_CHAT_SUPPORT */ .Tez, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_REAL_TIME_ANALYTICS */ .Hrz, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_PREMIUM_THEMES */ .QfP],
56376
  getLinkInBioDescription: () => i18n_calypso__WEBPACK_IMPORTED_MODULE_2__/* ["default"].translate */ .ZP.translate('Take your site further, faster. Get everything included in Personal, plus premium design themes, baked-in video uploads, ad monetization, deep visitor insights from Google Analytics, and live chat support.'),
56377
  getLinkInBioSignupFeatures: () => [_constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_CUSTOM_DOMAIN */ .Eb2, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_ADD_UNLIMITED_LINKS */ .y4L, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_CUSTOMIZE_THEMES_BUTTONS_COLORS */ .baL, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_AD_FREE_EXPERIENCE */ .pOV, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_TRACK_VIEWS_CLICKS */ .LDi, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_COLLECT_PAYMENTS_LINK_IN_BIO */ .cMD, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_POST_BY_EMAIL */ .WCW, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_EMAIL_SUPPORT_SIGNUP */ .fhe, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_LIVE_CHAT_SUPPORT */ .Tez, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_REAL_TIME_ANALYTICS */ .Hrz, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_GOOGLE_ANALYTICS_V2 */ .HkP, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_MONETISE */ .SZ6, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_LINK_IN_BIO_THEMES_CUSTOMIZATION */ ._xz],
@@ -57323,6 +57253,7 @@ const cleanAnchorProps = _ref => {
57323
  primary,
57324
  scary,
57325
  plain,
 
57326
  ...anchorProps
57327
  } = _ref;
57328
  return anchorProps;
@@ -61840,6 +61771,41 @@ const useHasSeenWhatsNewModalQuery = siteId => {
61840
 
61841
  /***/ }),
61842
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61843
  /***/ 34381:
61844
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
61845
 
@@ -61847,10 +61813,11 @@ const useHasSeenWhatsNewModalQuery = siteId => {
61847
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
61848
  /* harmony export */ "g": () => (/* binding */ useSiteAnalysis)
61849
  /* harmony export */ });
61850
- /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(99196);
61851
- /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
61852
- /* harmony import */ var use_debounce__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(17127);
61853
- /* harmony import */ var wpcom_proxy_request__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(18552);
 
61854
 
61855
 
61856
 
@@ -61858,74 +61825,113 @@ const useHasSeenWhatsNewModalQuery = siteId => {
61858
  // a simple way to check if a string is host to save on API calls
61859
  function isHost(string) {
61860
  if (string) {
61861
- return string.length > 4 && Boolean(string === null || string === void 0 ? void 0 : string.match(/\w{2,}\.\w{2,16}/));
61862
  }
61863
 
61864
  return false;
61865
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61866
  /**
61867
  * Analyses a site to determine whether its a WPCOM site, and if yes, it would fetch and return the site information (SiteDetails).
61868
  *
 
61869
  * @param siteURL the site URL
 
61870
  */
61871
 
61872
 
61873
- function useSiteAnalysis(siteURL) {
61874
- const [analysis, setAnalysis] = (0,react__WEBPACK_IMPORTED_MODULE_0__.useState)();
61875
- const [debouncedSiteUrl] = (0,use_debounce__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .Z)(siteURL, 500);
61876
- (0,react__WEBPACK_IMPORTED_MODULE_0__.useEffect)(() => {
61877
- setAnalysis(undefined);
61878
-
61879
- if (!isHost(debouncedSiteUrl)) {
61880
- return;
61881
- }
 
 
 
 
 
 
61882
 
61883
- if (debouncedSiteUrl) {
61884
- (async () => {
61885
- try {
61886
- var _analysis$platform_da;
 
 
 
61887
 
61888
- const analysis = await (0,wpcom_proxy_request__WEBPACK_IMPORTED_MODULE_2__/* ["default"] */ .ZP)({
61889
- path: `/imports/analyze-url?site_url=${encodeURIComponent(debouncedSiteUrl)}`,
61890
- apiNamespace: 'wpcom/v2'
61891
- });
61892
 
61893
- if ((_analysis$platform_da = analysis.platform_data) !== null && _analysis$platform_da !== void 0 && _analysis$platform_da.is_wpcom) {
61894
- try {
61895
- // if a wpcom site, get its info
61896
- const site = await (0,wpcom_proxy_request__WEBPACK_IMPORTED_MODULE_2__/* ["default"] */ .ZP)({
61897
- path: '/sites/' + encodeURIComponent(debouncedSiteUrl),
61898
- apiVersion: '1.1'
61899
- });
61900
- setAnalysis({
61901
- site,
61902
- result: 'WPCOM'
61903
- });
61904
- } catch (error) {
61905
- // wpcom site, but not owned by user
61906
- setAnalysis({
61907
- result: 'NOT_OWNED_BY_USER'
61908
- });
61909
- }
61910
- } else if (analysis.platform === 'wordpress') {
61911
- setAnalysis({
61912
- result: 'WPORG'
61913
- });
61914
- } else {
61915
- setAnalysis({
61916
- result: 'UNKNOWN'
61917
- });
61918
- }
61919
- } catch (error) {
61920
- setAnalysis({
61921
- result: 'UNKNOWN'
61922
- });
61923
- }
61924
- })();
61925
  }
61926
- }, [debouncedSiteUrl]);
61927
- return { ...analysis,
61928
- isLoading: !analysis
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61929
  };
61930
  }
61931
 
@@ -61955,6 +61961,56 @@ function useSiteIntent(siteId) {
61955
 
61956
  /***/ }),
61957
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61958
  /***/ 28459:
61959
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
61960
 
@@ -63370,13 +63426,14 @@ function useSibylQuery(query, isJetpackSite, isAtomic) {
63370
  function useSubmitForumsMutation() {
63371
  return (0,react_query__WEBPACK_IMPORTED_MODULE_0__.useMutation)(_ref => {
63372
  let {
63373
- site,
63374
  message,
63375
  subject,
63376
  locale,
63377
  hideInfo,
63378
  userDeclaredSiteUrl
63379
  } = _ref;
 
63380
  const blogHelpMessages = [];
63381
 
63382
  if (site) {
@@ -63384,12 +63441,15 @@ function useSubmitForumsMutation() {
63384
  blogHelpMessages.push('WP.com: Unknown');
63385
  blogHelpMessages.push('Jetpack: Yes');
63386
  } else {
63387
- blogHelpMessages.push('WP.com: Yes');
 
63388
  }
63389
 
63390
- blogHelpMessages.push('Correct account: yes');
63391
  } else if (userDeclaredSiteUrl) {
63392
  blogHelpMessages.push(`Self-declared URL: ${userDeclaredSiteUrl}`);
 
 
63393
  }
63394
 
63395
  const forumMessage = message + '\n\n' + blogHelpMessages.join('\n');
@@ -63965,7 +64025,7 @@ class Connection {
63965
  this.closeAfterAccept = closeAfterAccept;
63966
  }
63967
  /**
63968
- * Init the SockeIO connection: check user authorization and bind socket events
63969
  *
63970
  * @param dispatch Redux dispatch function
63971
  * @param auth Authentication promise, will return the user info upon fulfillment
@@ -63994,7 +64054,7 @@ class Connection {
63994
  }
63995
  } = _ref;
63996
  const socket = buildConnection(url);
63997
- socket.once('connect', () => {
63998
  var _this$receiveConnect;
63999
 
64000
  return dispatch((_this$receiveConnect = this.receiveConnect) === null || _this$receiveConnect === void 0 ? void 0 : _this$receiveConnect.call(this));
@@ -64238,7 +64298,8 @@ async function requestHappyChatAuth() {
64238
  function useHappychatAuth() {
64239
  let enabled = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true;
64240
  return (0,react_query__WEBPACK_IMPORTED_MODULE_0__.useQuery)('getHappychatAuth' + key, requestHappyChatAuth, {
64241
- staleTime: Infinity,
 
64242
  enabled
64243
  });
64244
  }
@@ -64269,7 +64330,11 @@ function getHCAvailabilityAndStatus(dataAuth) {
64269
  result.available = receivedAvailability;
64270
 
64271
  if (Object.keys(result).length === 2) {
64272
- resolve(result);
 
 
 
 
64273
  }
64274
  },
64275
 
@@ -64277,7 +64342,11 @@ function getHCAvailabilityAndStatus(dataAuth) {
64277
  result.status = status;
64278
 
64279
  if (Object.keys(result).length === 2) {
64280
- resolve(result);
 
 
 
 
64281
  }
64282
  },
64283
 
@@ -64291,16 +64360,26 @@ function getHCAvailabilityAndStatus(dataAuth) {
64291
  connection.init(value => value, Promise.resolve(dataAuth));
64292
  });
64293
  }
 
 
 
 
 
 
 
 
 
64294
 
64295
  function useHappychatAvailable() {
64296
  let enabled = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true;
 
64297
  const {
64298
  data: dataAuth,
64299
  isLoading: isLoadingAuth
64300
  } = (0,_use_happychat_auth__WEBPACK_IMPORTED_MODULE_2__/* ["default"] */ .Z)();
64301
  return (0,react_query__WEBPACK_IMPORTED_MODULE_0__.useQuery)('happychat-available' + key, () => getHCAvailabilityAndStatus(dataAuth), {
64302
  enabled: !isLoadingAuth && !!dataAuth && enabled,
64303
- staleTime: Infinity
64304
  });
64305
  }
64306
  /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (useHappychatAvailable);
@@ -64592,35 +64671,37 @@ const ArticleFetchingContent = _ref => {
64592
  /* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(69307);
64593
  /* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__);
64594
  /* harmony import */ var _automattic_calypso_analytics__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(36115);
64595
- /* harmony import */ var _automattic_components__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(43239);
64596
- /* harmony import */ var _automattic_components__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(37499);
64597
- /* harmony import */ var _automattic_components__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(27136);
64598
- /* harmony import */ var _automattic_data_stores__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(32457);
64599
- /* harmony import */ var _automattic_data_stores__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(41515);
64600
- /* harmony import */ var _automattic_data_stores__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(34381);
64601
- /* harmony import */ var _automattic_i18n_utils__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(30849);
64602
- /* harmony import */ var _automattic_site_picker__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(1283);
 
64603
  /* harmony import */ var _wordpress_components__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(55609);
64604
  /* harmony import */ var _wordpress_components__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_wordpress_components__WEBPACK_IMPORTED_MODULE_2__);
64605
  /* harmony import */ var _wordpress_data__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(9818);
64606
  /* harmony import */ var _wordpress_data__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_wordpress_data__WEBPACK_IMPORTED_MODULE_3__);
64607
  /* harmony import */ var _wordpress_i18n__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(65736);
64608
  /* harmony import */ var _wordpress_i18n__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(_wordpress_i18n__WEBPACK_IMPORTED_MODULE_4__);
64609
- /* harmony import */ var _wordpress_icons__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(5869);
64610
- /* harmony import */ var _wordpress_icons__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(5614);
64611
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(99196);
64612
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_5__);
64613
  /* harmony import */ var react_redux__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(4792);
64614
- /* harmony import */ var react_router_dom__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(29175);
64615
- /* harmony import */ var calypso_state_ui_selectors__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(73041);
64616
- /* harmony import */ var calypso_state_ui_selectors__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(20834);
64617
- /* harmony import */ var _directly__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(39226);
64618
- /* harmony import */ var _stores__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(98865);
64619
- /* harmony import */ var _support_variations__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(44241);
64620
- /* harmony import */ var _back_button__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(40495);
64621
- /* harmony import */ var _help_center_notice__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(10083);
64622
- /* harmony import */ var _help_center_sibyl_articles__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(61108);
64623
- /* harmony import */ var _help_center_contact_form_scss__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(27427);
 
64624
 
64625
 
64626
  /* eslint-disable no-restricted-imports */
@@ -64642,6 +64723,7 @@ const __ = _wordpress_i18n__WEBPACK_IMPORTED_MODULE_4__.__;
64642
 
64643
 
64644
 
 
64645
  /**
64646
  * Internal Dependencies
64647
  */
@@ -64654,9 +64736,7 @@ const __ = _wordpress_i18n__WEBPACK_IMPORTED_MODULE_4__.__;
64654
 
64655
 
64656
  const SITE_STORE = 'automattic/site';
64657
- const fakeFaces = Array.from({
64658
- length: 10
64659
- }, (_, index) => `https://s0.wp.com/i/fake-faces/face-${index}.jpg`);
64660
  const randomTwoFaces = fakeFaces.sort(() => Math.random() - 0.5).slice(0, 2);
64661
 
64662
  const HelpCenterSitePicker = _ref => {
@@ -64682,7 +64762,7 @@ const HelpCenterSitePicker = _ref => {
64682
  }
64683
 
64684
  const options = [currentSite, otherSite];
64685
- return (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_automattic_site_picker__WEBPACK_IMPORTED_MODULE_9__/* .SitePickerDropDown */ .a, {
64686
  enabled: enabled,
64687
  onPickSite: pickSite,
64688
  options: options,
@@ -64695,13 +64775,13 @@ const titles = {
64695
  formTitle: __('Start live chat', "full-site-editing"),
64696
  trayText: __('Our WordPress experts will be with you right away', "full-site-editing"),
64697
  buttonLabel: __('Chat with us', "full-site-editing"),
64698
- buttonLoadingLabel: __('Connecting to chat', "full-site-editing")
64699
  },
64700
  EMAIL: {
64701
  formTitle: __('Send us an email', "full-site-editing"),
64702
  trayText: __('Our WordPress experts will get back to you soon', "full-site-editing"),
64703
  buttonLabel: __('Email us', "full-site-editing"),
64704
- buttonLoadingLabel: __('Sending email', "full-site-editing")
64705
  },
64706
  DIRECTLY: {
64707
  formTitle: __('Start live chat with an expert', "full-site-editing"),
@@ -64709,35 +64789,43 @@ const titles = {
64709
  trayText: __('An expert user will be with you right away', "full-site-editing"),
64710
  formDisclaimer: __('Please do not provide financial or contact information when submitting this form.', "full-site-editing"),
64711
  buttonLabel: __('Ask an expert', "full-site-editing"),
64712
- buttonLoadingLabel: __('Connecting you to an expert', "full-site-editing")
64713
  },
64714
  FORUM: {
64715
  formTitle: __('Ask in our community forums', "full-site-editing"),
64716
  formDisclaimer: __('Please do not provide financial or contact information when submitting this form.', "full-site-editing"),
64717
  buttonLabel: __('Ask in the forums', "full-site-editing"),
64718
- buttonLoadingLabel: __('Posting in the forums', "full-site-editing")
 
64719
  }
64720
  };
64721
  const HelpCenterContactForm = () => {
 
 
64722
  const {
64723
  search
64724
- } = (0,react_router_dom__WEBPACK_IMPORTED_MODULE_10__/* .useLocation */ .TH)();
64725
- const sectionName = (0,react_redux__WEBPACK_IMPORTED_MODULE_6__/* .useSelector */ .v9)(calypso_state_ui_selectors__WEBPACK_IMPORTED_MODULE_11__/* ["default"] */ .Z);
64726
  const params = new URLSearchParams(search);
64727
  const mode = params.get('mode');
64728
  const overflow = params.get('overflow') === 'true';
64729
- const history = (0,react_router_dom__WEBPACK_IMPORTED_MODULE_10__/* .useHistory */ .k6)();
64730
  const [hideSiteInfo, setHideSiteInfo] = (0,react__WEBPACK_IMPORTED_MODULE_5__.useState)(false);
64731
  const [hasSubmittingError, setHasSubmittingError] = (0,react__WEBPACK_IMPORTED_MODULE_5__.useState)(false);
64732
- const locale = (0,_automattic_i18n_utils__WEBPACK_IMPORTED_MODULE_12__/* .useLocale */ .bU)();
64733
  const {
64734
  isLoading: submittingTicket,
64735
  mutateAsync: submitTicket
64736
- } = (0,_automattic_data_stores__WEBPACK_IMPORTED_MODULE_13__/* .useSubmitTicketMutation */ .g)();
64737
  const {
64738
  isLoading: submittingTopic,
64739
  mutateAsync: submitTopic
64740
- } = (0,_automattic_data_stores__WEBPACK_IMPORTED_MODULE_14__/* .useSubmitForumsMutation */ .M)();
 
 
 
 
 
64741
  const [sitePickerChoice, setSitePickerChoice] = (0,react__WEBPACK_IMPORTED_MODULE_5__.useState)('CURRENT_SITE');
64742
  const {
64743
  selectedSite,
@@ -64747,14 +64835,14 @@ const HelpCenterContactForm = () => {
64747
  directlyData
64748
  } = (0,_wordpress_data__WEBPACK_IMPORTED_MODULE_3__.useSelect)(select => {
64749
  return {
64750
- selectedSite: select(_stores__WEBPACK_IMPORTED_MODULE_15__/* .HELP_CENTER_STORE */ .aM).getSite(),
64751
- subject: select(_stores__WEBPACK_IMPORTED_MODULE_15__/* .HELP_CENTER_STORE */ .aM).getSubject(),
64752
- message: select(_stores__WEBPACK_IMPORTED_MODULE_15__/* .HELP_CENTER_STORE */ .aM).getMessage(),
64753
- userDeclaredSiteUrl: select(_stores__WEBPACK_IMPORTED_MODULE_15__/* .HELP_CENTER_STORE */ .aM).getUserDeclaredSiteUrl(),
64754
- directlyData: select(_stores__WEBPACK_IMPORTED_MODULE_15__/* .HELP_CENTER_STORE */ .aM).getDirectly()
64755
  };
64756
  });
64757
- const userData = (0,_wordpress_data__WEBPACK_IMPORTED_MODULE_3__.useSelect)(select => select(_stores__WEBPACK_IMPORTED_MODULE_15__/* .USER_STORE */ .Em).getCurrentUser());
64758
  const {
64759
  setSite,
64760
  resetStore,
@@ -64763,40 +64851,59 @@ const HelpCenterContactForm = () => {
64763
  setUserDeclaredSite,
64764
  setSubject,
64765
  setMessage
64766
- } = (0,_wordpress_data__WEBPACK_IMPORTED_MODULE_3__.useDispatch)(_stores__WEBPACK_IMPORTED_MODULE_15__/* .HELP_CENTER_STORE */ .aM);
64767
- const {
64768
- result: ownershipResult,
64769
- isLoading: isAnalysisLoading,
64770
- site: userDeclaredSite
64771
- } = (0,_automattic_data_stores__WEBPACK_IMPORTED_MODULE_16__/* .useSiteAnalysis */ .g)(userDeclaredSiteUrl);
64772
  (0,react__WEBPACK_IMPORTED_MODULE_5__.useEffect)(() => {
64773
- const supportVariation = (0,_support_variations__WEBPACK_IMPORTED_MODULE_17__/* .getSupportVariationFromMode */ .yQ)(mode);
64774
  (0,_automattic_calypso_analytics__WEBPACK_IMPORTED_MODULE_1__/* .recordTracksEvent */ .jN)('calypso_inlinehelp_contact_view', {
64775
  support_variation: supportVariation,
64776
  location: 'help-center',
64777
  section: sectionName
64778
  });
64779
- }, [mode, sectionName]); // record the resolved site
64780
-
64781
  (0,react__WEBPACK_IMPORTED_MODULE_5__.useEffect)(() => {
64782
- if (userDeclaredSite) {
64783
- setUserDeclaredSite(userDeclaredSite);
64784
  }
64785
- }, [userDeclaredSite, setUserDeclaredSite]);
64786
  (0,react__WEBPACK_IMPORTED_MODULE_5__.useEffect)(() => {
64787
  if (directlyData !== null && directlyData !== void 0 && directlyData.hasSession) {
64788
- (0,_directly__WEBPACK_IMPORTED_MODULE_7__/* .execute */ .ht)(['maximize', {}]);
64789
  setShowHelpCenter(false);
64790
  }
64791
  }, [directlyData, setShowHelpCenter]);
64792
- const isSubmitting = submittingTicket || submittingTopic;
64793
  const formTitles = titles[mode];
64794
- const siteId = (0,react_redux__WEBPACK_IMPORTED_MODULE_6__/* .useSelector */ .v9)(calypso_state_ui_selectors__WEBPACK_IMPORTED_MODULE_18__/* ["default"] */ .Z);
64795
  const currentSite = (0,_wordpress_data__WEBPACK_IMPORTED_MODULE_3__.useSelect)(select => select(SITE_STORE).getSite(siteId));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64796
  let supportSite; // if the user picked "other site", force them to declare a site
64797
 
64798
  if (sitePickerChoice === 'OTHER_SITE') {
64799
- supportSite = userDeclaredSite;
 
 
64800
  } else {
64801
  supportSite = selectedSite || currentSite;
64802
  }
@@ -64859,6 +64966,7 @@ const HelpCenterContactForm = () => {
64859
  case 'FORUM':
64860
  {
64861
  submitTopic({
 
64862
  site: supportSite,
64863
  message: message ?? '',
64864
  subject: subject ?? '',
@@ -64881,7 +64989,7 @@ const HelpCenterContactForm = () => {
64881
 
64882
  case 'DIRECTLY':
64883
  {
64884
- (0,_directly__WEBPACK_IMPORTED_MODULE_7__/* .askDirectlyQuestion */ .SW)(message ?? '', (userData === null || userData === void 0 ? void 0 : userData.display_name) ?? '', (userData === null || userData === void 0 ? void 0 : userData.email) ?? '');
64885
  (0,_automattic_calypso_analytics__WEBPACK_IMPORTED_MODULE_1__/* .recordTracksEvent */ .jN)('calypso_inlinehelp_contact_submit', {
64886
  support_variation: 'directly',
64887
  location: 'help-center',
@@ -64894,26 +65002,29 @@ const HelpCenterContactForm = () => {
64894
  }
64895
 
64896
  const InfoTip = () => {
64897
- const [ref, setRef] = (0,react__WEBPACK_IMPORTED_MODULE_5__.useState)();
64898
  const [isOpen, setOpen] = (0,react__WEBPACK_IMPORTED_MODULE_5__.useState)(false);
64899
- return (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.Fragment, null, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_automattic_components__WEBPACK_IMPORTED_MODULE_19__/* ["default"] */ .Z, {
64900
- borderless: true,
64901
- ref: reference => ref !== reference && setRef(reference),
64902
  "aria-haspopup": true,
64903
  "aria-label": __('More information'),
64904
  onClick: () => setOpen(!isOpen)
64905
- }, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_icons__WEBPACK_IMPORTED_MODULE_20__/* ["default"] */ .Z, {
64906
- icon: _wordpress_icons__WEBPACK_IMPORTED_MODULE_21__/* ["default"] */ .Z,
64907
  size: 18
64908
- })), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_automattic_components__WEBPACK_IMPORTED_MODULE_22__/* ["default"] */ .Z, {
 
64909
  isVisible: isOpen,
64910
- context: ref,
64911
  position: "top left"
64912
- }, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("span", null, "This may result in a longer response time,", (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("br", null), "but WordPress.com staff in the forums will", (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("br", null), "still be able to view your site's URL.")));
 
 
64913
  };
64914
 
64915
  const isCTADisabled = () => {
64916
- if (isSubmitting || !message) {
64917
  return true;
64918
  }
64919
 
@@ -64929,15 +65040,33 @@ const HelpCenterContactForm = () => {
64929
  }
64930
  };
64931
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64932
  return (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("main", {
64933
  className: "help-center-contact-form"
64934
- }, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_back_button__WEBPACK_IMPORTED_MODULE_23__/* .BackButton */ .x, null), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("h1", {
64935
  className: "help-center-contact-form__site-picker-title"
64936
  }, formTitles.formTitle), formTitles.formSubtitle && (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("p", {
64937
  className: "help-center-contact-form__site-picker-form-subtitle"
64938
  }, formTitles.formSubtitle), formTitles.formDisclaimer && (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("p", {
64939
  className: "help-center-contact-form__site-picker-form-warning"
64940
- }, formTitles.formDisclaimer), mode !== 'DIRECTLY' && (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("section", null, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(HelpCenterSitePicker, {
64941
  enabled: mode === 'FORUM',
64942
  currentSite: currentSite,
64943
  onSelect: id => {
@@ -64952,10 +65081,8 @@ const HelpCenterContactForm = () => {
64952
  label: __('Site address', "full-site-editing"),
64953
  value: userDeclaredSiteUrl ?? '',
64954
  onChange: setUserDeclaredSiteUrl
64955
- })), ownershipResult && (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_help_center_notice__WEBPACK_IMPORTED_MODULE_24__/* .HelpCenterOwnershipNotice */ .JJ, {
64956
- ownershipResult: ownershipResult,
64957
- isAnalysisLoading: isAnalysisLoading,
64958
- userDeclaredSite: userDeclaredSite
64959
  })), ['FORUM', 'EMAIL'].includes(mode) && (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("section", null, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_2__.TextControl, {
64960
  className: "help-center-contact-form__subject",
64961
  label: __('Subject', "full-site-editing"),
@@ -64979,12 +65106,12 @@ const HelpCenterContactForm = () => {
64979
  onChange: value => setHideSiteInfo(value)
64980
  }))), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("section", {
64981
  className: "contact-form-submit"
64982
- }, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_automattic_components__WEBPACK_IMPORTED_MODULE_19__/* ["default"] */ .Z, {
64983
  disabled: isCTADisabled(),
64984
  onClick: handleCTA,
64985
  primary: true,
64986
  className: "help-center-contact-form__site-picker-cta"
64987
- }, isSubmitting ? formTitles.buttonLoadingLabel : formTitles.buttonLabel), hasSubmittingError && (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_automattic_components__WEBPACK_IMPORTED_MODULE_25__/* ["default"] */ .Z, {
64988
  isError: true,
64989
  text: __('Something went wrong, please try again later.', "full-site-editing")
64990
  })), ['CHAT', 'EMAIL'].includes(mode) && (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("section", null, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("div", {
@@ -64996,7 +65123,7 @@ const HelpCenterContactForm = () => {
64996
  alt: ""
64997
  })), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("p", {
64998
  className: "help-center-contact-form__site-picker-hes-tray-text"
64999
- }, formTitles.trayText))), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_help_center_sibyl_articles__WEBPACK_IMPORTED_MODULE_26__/* .SibylArticles */ .e, {
65000
  supportSite: supportSite,
65001
  message: message
65002
  }));
@@ -65179,10 +65306,11 @@ const HelpCenterContactButton = () => {
65179
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
65180
  /* harmony export */ "Z": () => (__WEBPACK_DEFAULT_EXPORT__)
65181
  /* harmony export */ });
65182
- /* harmony import */ var _babel_runtime_helpers_extends__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(7896);
65183
  /* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(69307);
65184
  /* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__);
65185
- /* harmony import */ var _automattic_happychat_connection__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(89645);
 
65186
  /* harmony import */ var _automattic_viewport_react__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(76951);
65187
  /* harmony import */ var _wordpress_components__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(55609);
65188
  /* harmony import */ var _wordpress_components__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_wordpress_components__WEBPACK_IMPORTED_MODULE_1__);
@@ -65194,12 +65322,12 @@ const HelpCenterContactButton = () => {
65194
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_4__);
65195
  /* harmony import */ var react_draggable__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(41327);
65196
  /* harmony import */ var react_draggable__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(react_draggable__WEBPACK_IMPORTED_MODULE_5__);
65197
- /* harmony import */ var react_router_dom__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(29175);
65198
- /* harmony import */ var _contexts_FeatureFlagContext__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(24478);
65199
  /* harmony import */ var _stores__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(98865);
65200
- /* harmony import */ var _help_center_content__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(407);
65201
- /* harmony import */ var _help_center_footer__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(14059);
65202
- /* harmony import */ var _help_center_header__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(24934);
65203
 
65204
 
65205
 
@@ -65214,6 +65342,7 @@ const HelpCenterContactButton = () => {
65214
 
65215
 
65216
 
 
65217
  /**
65218
  * Internal Dependencies
65219
  */
@@ -65249,9 +65378,12 @@ const HelpCenterContainer = _ref2 => {
65249
  'is-minimized': isMinimized
65250
  });
65251
  const show = (0,_wordpress_data__WEBPACK_IMPORTED_MODULE_2__.useSelect)(select => select(_stores__WEBPACK_IMPORTED_MODULE_7__/* .HELP_CENTER_STORE */ .aM).isHelpCenterShown());
 
 
 
65252
  const {
65253
  data
65254
- } = (0,_automattic_happychat_connection__WEBPACK_IMPORTED_MODULE_8__/* ["default"] */ .Z)();
65255
 
65256
  const onDismiss = () => {
65257
  setIsVisible(false);
@@ -65279,23 +65411,23 @@ const HelpCenterContainer = _ref2 => {
65279
  return null;
65280
  }
65281
 
65282
- return (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(react_router_dom__WEBPACK_IMPORTED_MODULE_9__/* .MemoryRouter */ .VA, null, (data === null || data === void 0 ? void 0 : data.status) === 'assigned' && (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(react_router_dom__WEBPACK_IMPORTED_MODULE_9__/* .Redirect */ .l_, {
65283
- to: "/inline-chat"
65284
- }), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_contexts_FeatureFlagContext__WEBPACK_IMPORTED_MODULE_10__/* .FeatureFlagProvider */ .O, null, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(OptionalDraggable, {
65285
  draggable: !isMobile,
65286
  nodeRef: nodeRef,
65287
  handle: ".help-center__container-header",
65288
  bounds: "body"
65289
- }, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_1__.Card, (0,_babel_runtime_helpers_extends__WEBPACK_IMPORTED_MODULE_11__/* ["default"] */ .Z)({
65290
  className: classNames
65291
  }, animationProps, {
65292
  ref: nodeRef
65293
- }), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_help_center_header__WEBPACK_IMPORTED_MODULE_12__/* ["default"] */ .Z, {
65294
  isMinimized: isMinimized,
65295
  onMinimize: () => setIsMinimized(true),
65296
  onMaximize: () => setIsMinimized(false),
65297
  onDismiss: onDismiss
65298
- }), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_help_center_content__WEBPACK_IMPORTED_MODULE_13__/* ["default"] */ .Z, null), !isMinimized && (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_help_center_footer__WEBPACK_IMPORTED_MODULE_14__/* ["default"] */ .Z, null)))));
65299
  };
65300
 
65301
  /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (HelpCenterContainer);
@@ -65630,9 +65762,7 @@ const HelpCenterHeader = _ref => {
65630
  }), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(react_router_dom__WEBPACK_IMPORTED_MODULE_3__/* .Route */ .AW, {
65631
  path: "/post",
65632
  component: ArticleTitle
65633
- }), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(react_router_dom__WEBPACK_IMPORTED_MODULE_3__/* .Route */ .AW, {
65634
- path: "/inline-chat"
65635
- }, __('Live Chat', "full-site-editing"))) : __('Help Center', "full-site-editing"), isMinimized && unreadCount > 0 && (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("span", {
65636
  className: "help-center-header__unread-count"
65637
  }, formattedUnreadCount)), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("div", null, isMinimized ? (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_1__.Button, {
65638
  className: 'help-center-header__maximize',
@@ -65670,6 +65800,7 @@ const HelpCenterHeader = _ref => {
65670
  /* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__);
65671
  /* harmony import */ var _wordpress_data__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(9818);
65672
  /* harmony import */ var _wordpress_data__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_wordpress_data__WEBPACK_IMPORTED_MODULE_1__);
 
65673
  /* harmony import */ var _help_center_inline_chat_scss__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(96459);
65674
  /* harmony import */ var _stores__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(98865);
65675
 
@@ -65678,6 +65809,7 @@ const HelpCenterHeader = _ref => {
65678
  * External Dependencies
65679
  */
65680
 
 
65681
  /**
65682
  * Internal Dependencies
65683
  */
@@ -65689,11 +65821,16 @@ const InlineChat = () => {
65689
  const {
65690
  setIframe
65691
  } = (0,_wordpress_data__WEBPACK_IMPORTED_MODULE_1__.useDispatch)(_stores__WEBPACK_IMPORTED_MODULE_3__/* .HELP_CENTER_STORE */ .aM);
 
 
 
 
 
65692
  return (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("iframe", {
65693
  ref: ref => setIframe(ref),
65694
  className: "help-center-inline-chat__iframe",
65695
  title: "Happychat",
65696
- src: "https://widgets.wp.com/calypso-happychat/",
65697
  scrolling: "no"
65698
  });
65699
  };
@@ -65930,39 +66067,68 @@ const HelpCenterMoreResources = () => {
65930
 
65931
 
65932
  const __ = _wordpress_i18n__WEBPACK_IMPORTED_MODULE_2__.__;
65933
- const responses = {
65934
- NOT_OWNED_BY_USER: (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("p", null, __('Your site is linked to another WordPress.com account. If you’re trying to access it, please follow our Account Recovery procedure.', "full-site-editing"), "\xA0", ' ', (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_1__.ExternalLink, {
65935
- href: (0,_automattic_i18n_utils__WEBPACK_IMPORTED_MODULE_3__/* .localizeUrl */ .aq)('https://wordpress.com/wp-login.php?action=recovery')
65936
- }, __('Learn More', "full-site-editing"))),
65937
- WPCOM: '',
65938
- WPORG: (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("p", null, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createInterpolateElement)(__('Your site is not <hosted_on_our_services>hosted with our services</hosted_on_our_services>. Support for the self-hosted version of WordPress is provided by the <wordpress_org_community_forums>WordPress.org community forums</wordpress_org_community_forums>, or if the problem relates to a specific plugin or theme, contact support for that product instead. If you’re not sure, share your question with a link, and we’ll point you in the right direction!', "full-site-editing"), {
65939
- hosted_on_our_services: (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_1__.ExternalLink, {
65940
- href: (0,_automattic_i18n_utils__WEBPACK_IMPORTED_MODULE_3__/* .localizeUrl */ .aq)('https://wordpress.com/support/com-vs-org/')
65941
- }),
65942
- wordpress_org_community_forums: (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_1__.ExternalLink, {
65943
- href: (0,_automattic_i18n_utils__WEBPACK_IMPORTED_MODULE_3__/* .localizeUrl */ .aq)('https://wordpress.org/support/forums/')
65944
- })
65945
- })),
65946
- UNKNOWN: (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("p", null, __("We couldn't fetch enough information about this site to determine our ability to support you with it.", "full-site-editing"))
65947
- };
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
65948
  function HelpCenterOwnershipNotice(_ref) {
 
 
65949
  let {
65950
- ownershipResult,
65951
- isAnalysisLoading,
65952
- userDeclaredSite
65953
  } = _ref;
65954
 
65955
- if (isAnalysisLoading || ownershipResult === 'WPCOM') {
65956
- if (ownershipResult === 'WPCOM') {
65957
- return (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("p", {
65958
- className: "help-center-notice__positive-feedback"
65959
- }, userDeclaredSite === null || userDeclaredSite === void 0 ? void 0 : userDeclaredSite.name);
65960
- }
65961
-
65962
  return null;
65963
  }
65964
 
65965
- return (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(HelpCenterNotice, null, responses[ownershipResult]);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
65966
  }
65967
  function HelpCenterActiveTicketNotice(_ref2) {
65968
  let {
@@ -66493,13 +66659,13 @@ function SibylArticles(_ref2) {
66493
  }, __('Recommended resources', "full-site-editing")), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("ul", {
66494
  className: "help-center-sibyl-articles__list",
66495
  "aria-labelledby": "help-center--contextual_help"
66496
- }, articles.map(article => {
66497
  if ('type' in article && ['video', 'tour'].includes(article.type)) {
66498
  return;
66499
  }
66500
 
66501
  return (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("li", {
66502
- key: article.link
66503
  }, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(ConfigurableLink, {
66504
  to: getPostUrl(article, message),
66505
  external: 'en' !== locale,
@@ -66522,17 +66688,17 @@ function SibylArticles(_ref2) {
66522
  /* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(69307);
66523
  /* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__);
66524
  /* harmony import */ var _automattic_calypso_analytics__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(36115);
66525
- /* harmony import */ var _automattic_data_stores__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(99706);
66526
- /* harmony import */ var _automattic_happychat_connection__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(89645);
66527
  /* harmony import */ var _wordpress_data__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(9818);
66528
  /* harmony import */ var _wordpress_data__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_wordpress_data__WEBPACK_IMPORTED_MODULE_2__);
66529
  /* harmony import */ var react_redux__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(4792);
66530
- /* harmony import */ var calypso_state_sites_selectors_is_simple_site__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(83377);
66531
- /* harmony import */ var calypso_state_ui_selectors__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(20834);
66532
  /* harmony import */ var _directly__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(39226);
66533
  /* harmony import */ var _hooks_use_still_need_help_url__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(83822);
66534
- /* harmony import */ var _stores__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(98865);
66535
- /* harmony import */ var _help_center_contact_form__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(23025);
66536
  /* harmony import */ var _help_center_container__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(30250);
66537
  /* harmony import */ var _styles_scss__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(62829);
66538
 
@@ -66567,12 +66733,15 @@ const HelpCenter = _ref => {
66567
  hidden
66568
  } = _ref;
66569
  const portalParent = (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.useRef)(document.createElement('div')).current;
 
 
 
66570
  const {
66571
  data
66572
- } = (0,_automattic_happychat_connection__WEBPACK_IMPORTED_MODULE_6__/* ["default"] */ .Z)();
66573
  const {
66574
  setShowHelpCenter
66575
- } = (0,_wordpress_data__WEBPACK_IMPORTED_MODULE_2__.useDispatch)(_stores__WEBPACK_IMPORTED_MODULE_7__/* .HELP_CENTER_STORE */ .aM);
66576
  (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.useEffect)(() => {
66577
  if ((data === null || data === void 0 ? void 0 : data.status) === 'assigned') {
66578
  setShowHelpCenter(true);
@@ -66583,20 +66752,20 @@ const HelpCenter = _ref => {
66583
  isSimpleSite
66584
  } = (0,react_redux__WEBPACK_IMPORTED_MODULE_3__/* .useSelector */ .v9)(state => {
66585
  return {
66586
- siteId: (0,calypso_state_ui_selectors__WEBPACK_IMPORTED_MODULE_8__/* ["default"] */ .Z)(state),
66587
- isSimpleSite: (0,calypso_state_sites_selectors_is_simple_site__WEBPACK_IMPORTED_MODULE_9__/* ["default"] */ .Z)(state)
66588
  };
66589
  }); // prefetch the current site and user
66590
 
66591
- (0,_wordpress_data__WEBPACK_IMPORTED_MODULE_2__.useSelect)(select => select(_help_center_contact_form__WEBPACK_IMPORTED_MODULE_10__/* .SITE_STORE */ .j).getSite(siteId));
66592
- (0,_wordpress_data__WEBPACK_IMPORTED_MODULE_2__.useSelect)(select => select(_stores__WEBPACK_IMPORTED_MODULE_7__/* .USER_STORE */ .Em).getCurrentUser());
66593
  const {
66594
  setDirectlyData
66595
- } = (0,_wordpress_data__WEBPACK_IMPORTED_MODULE_2__.useDispatch)(_stores__WEBPACK_IMPORTED_MODULE_7__/* .HELP_CENTER_STORE */ .aM);
66596
- (0,_automattic_data_stores__WEBPACK_IMPORTED_MODULE_11__/* .useSupportAvailability */ .p)('CHAT', isSimpleSite);
66597
  const {
66598
  data: supportData
66599
- } = (0,_automattic_data_stores__WEBPACK_IMPORTED_MODULE_11__/* .useSupportAvailability */ .p)('OTHER', isSimpleSite);
66600
  (0,_hooks_use_still_need_help_url__WEBPACK_IMPORTED_MODULE_12__/* .useStillNeedHelpURL */ .A)();
66601
  (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.useEffect)(() => {
66602
  if (supportData !== null && supportData !== void 0 && supportData.is_user_eligible_for_directly) {
@@ -67269,11 +67438,13 @@ const useHelpSearchQuery = function (search) {
67269
  function useShouldRenderChatOption() {
67270
  const {
67271
  data: chatStatus
67272
- } = (0,_automattic_data_stores__WEBPACK_IMPORTED_MODULE_0__/* .useSupportAvailability */ .p)('CHAT');
 
 
67273
  const {
67274
  data,
67275
  isLoading
67276
- } = (0,_automattic_happychat_connection__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .Z)();
67277
 
67278
  if (!(chatStatus !== null && chatStatus !== void 0 && chatStatus.is_user_eligible)) {
67279
  return {
@@ -71413,12 +71584,33 @@ function WPCOM(token, reqHandler) {
71413
 
71414
  this.apiVersion = '1.1';
71415
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71416
  /**
71417
  * Return `Me` object instance
71418
  *
71419
  * @returns {Me} Me instance
71420
  */
71421
 
 
71422
  WPCOM.prototype.me = function () {
71423
  return new _lib_me__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .Z(this);
71424
  };
@@ -76488,6 +76680,11 @@ function sendRequest(params, query, body, fn) {
76488
 
76489
  if (body) {
76490
  params.body = body;
 
 
 
 
 
76491
  }
76492
 
76493
  debug('params: %o', params); // if callback is provided, behave traditionally
36990
  productId: Number(purchase.product_id),
36991
  productName: purchase.product_name,
36992
  productSlug: purchase.product_slug,
36993
+ productType: purchase.product_type,
36994
  productDisplayPrice: purchase.product_display_price,
36995
  totalRefundAmount: Number(purchase.total_refund_amount),
36996
  totalRefundText: purchase.total_refund_text,
38781
  /* harmony import */ var _automattic_calypso_config__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(20899);
38782
  /* harmony import */ var debug__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(38049);
38783
  /* harmony import */ var debug__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(debug__WEBPACK_IMPORTED_MODULE_1__);
38784
+ /* harmony import */ var wpcom__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(91202);
38785
  /* harmony import */ var wpcom_proxy_request__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(18552);
38786
+ /* harmony import */ var calypso_lib_oauth_token__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(7268);
38787
+ /* harmony import */ var calypso_lib_wp_support__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(33300);
 
38788
  /* harmony import */ var calypso_lib_wpcom_xhr_wrapper__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(54083);
38789
  /* harmony import */ var _handlers_guest_sandbox_ticket__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(78009);
38790
  /* harmony import */ var _localization__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(21286);
38801
  let wpcom;
38802
 
38803
  if (_automattic_calypso_config__WEBPACK_IMPORTED_MODULE_0__/* ["default"].isEnabled */ .ZP.isEnabled('oauth')) {
38804
+ wpcom = new wpcom__WEBPACK_IMPORTED_MODULE_2__/* ["default"] */ .Z(calypso_lib_oauth_token__WEBPACK_IMPORTED_MODULE_3__/* .getToken */ .LP(), calypso_lib_wpcom_xhr_wrapper__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z);
38805
  } else {
38806
+ wpcom = new wpcom__WEBPACK_IMPORTED_MODULE_2__/* ["default"] */ .Z(wpcom_proxy_request__WEBPACK_IMPORTED_MODULE_8__/* ["default"] */ .ZP); // Upgrade to "access all users blogs" mode
38807
 
38808
  wpcom.request({
38809
  metaAPI: {
38818
  });
38819
  }
38820
 
38821
+ wpcom = (0,calypso_lib_wp_support__WEBPACK_IMPORTED_MODULE_4__/* ["default"] */ .Z)(wpcom);
38822
 
38823
  if (false) {} // Inject localization helpers to `wpcom` instance
38824
 
38834
  * Expose `wpcomJetpackLicensing` which uses a different auth token than wpcom.
38835
  */
38836
 
38837
+ const wpcomJetpackLicensing = new wpcom__WEBPACK_IMPORTED_MODULE_2__/* ["default"] */ .Z(calypso_lib_wpcom_xhr_wrapper__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z);
38838
 
38839
  /***/ }),
38840
 
39075
 
39076
  /***/ }),
39077
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39078
  /***/ 54083:
39079
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
39080
 
43405
  /* harmony export */ "dZ": () => (/* binding */ HAPPYCHAT_CHAT_STATUS_ASSIGNED),
43406
  /* harmony export */ "s0": () => (/* binding */ HAPPYCHAT_CHAT_STATUS_DEFAULT)
43407
  /* harmony export */ });
43408
+ /* unused harmony exports HAPPYCHAT_CONNECTION_ERROR_FORCED_CLOSE, HAPPYCHAT_CONNECTION_ERROR_PING_TIMEOUT, HAPPYCHAT_CONNECTION_ERROR_TRANSPORT_CLOSE, HAPPYCHAT_CONNECTION_ERROR_TRANSPORT_ERROR, HAPPYCHAT_CONNECTION_STATUS_CONTINUING_SESSION, HAPPYCHAT_CONNECTION_STATUS_UNAUTHORIZED, HAPPYCHAT_SKILL_PRODUCT, HAPPYCHAT_SKILL_LANGUAGE, HAPPYCHAT_GROUP_JPOP, HAPPYCHAT_GROUP_WOO, HAPPYCHAT_GROUP_JPPHP, HAPPYCHAT_GROUP_WPCOM, HAPPYCHAT_CHAT_STATUS_ABANDONED, HAPPYCHAT_CHAT_STATUS_ASSIGNING, HAPPYCHAT_CHAT_STATUS_BLOCKED, HAPPYCHAT_CHAT_STATUS_CLOSED, HAPPYCHAT_CHAT_STATUS_NEW, HAPPYCHAT_CHAT_STATUS_MISSED, HAPPYCHAT_CHAT_STATUS_PENDING */
43409
  // These CONNECTION_ERROR constants come directly from the Socket.IO client library.
43410
  // These are the possible reasons for a connection disconnect.
43411
  const HAPPYCHAT_CONNECTION_ERROR_FORCED_CLOSE = 'forced close';
43418
  const HAPPYCHAT_CONNECTION_STATUS_CONNECTED = 'connected';
43419
  const HAPPYCHAT_CONNECTION_STATUS_DISCONNECTED = 'disconnected';
43420
  const HAPPYCHAT_CONNECTION_STATUS_RECONNECTING = 'reconnecting';
43421
+ const HAPPYCHAT_CONNECTION_STATUS_CONTINUING_SESSION = 'continuing_session';
43422
  const HAPPYCHAT_CONNECTION_STATUS_UNAUTHORIZED = 'unauthorized'; // Max number of messages to save between refreshes
43423
 
43424
  const HAPPYCHAT_MAX_STORED_MESSAGES = 30; // Skills
49878
 
49879
 
49880
  /**
49881
+ * Does the user have any current purchases that can be canceled (i.e. purchases other than legacy premium theme purchases)?
49882
  *
49883
+ * Note: there is an is_cancelable flag on the purchase object, but it returns true for legacy premium theme purchases.
49884
  *
49885
  * @param {object} state global state
49886
  * @returns {boolean} if the user currently has any purchases that can be canceled.
54654
  /* harmony export */ "ikw": () => (/* binding */ WPCOM_FEATURES_SCAN),
54655
  /* harmony export */ "Vhs": () => (/* binding */ FEATURE_UNLIMITED_EMAILS),
54656
  /* harmony export */ "nl4": () => (/* binding */ FEATURE_UNLIMITED_SUBSCRIBERS),
 
54657
  /* harmony export */ "kWv": () => (/* binding */ FEATURE_ADD_MULTIPLE_PAGES_NEWSLETTER),
54658
  /* harmony export */ "pOV": () => (/* binding */ FEATURE_AD_FREE_EXPERIENCE),
54659
  /* harmony export */ "Ix": () => (/* binding */ FEATURE_COLLECT_PAYMENTS_NEWSLETTER),
54666
  /* harmony export */ "cMD": () => (/* binding */ FEATURE_COLLECT_PAYMENTS_LINK_IN_BIO),
54667
  /* harmony export */ "_xz": () => (/* binding */ FEATURE_LINK_IN_BIO_THEMES_CUSTOMIZATION)
54668
  /* harmony export */ });
54669
+ /* unused harmony exports FEATURE_SET_PRIMARY_CUSTOM_DOMAIN, FEATURE_UNLIMITED_STORAGE, FEATURE_EMAIL_LIVE_CHAT_SUPPORT, FEATURE_SFTP, FEATURE_SSH, FEATURE_VIDEO_UPLOADS_JETPACK_PREMIUM, FEATURE_INSTALL_THEMES, FEATURE_PERFORMANCE, FEATURE_ALL_PERSONAL_FEATURES_JETPACK, FEATURE_DONATIONS, FEATURE_RECURRING_PAYMENTS, FEATURE_PREMIUM_CONTENT_CONTAINER, FEATURE_SECURITY_SETTINGS, FEATURE_WOOP, FEATURE_SEARCH, FEATURE_SEARCH_V2, FEATURE_VIDEO_HOSTING_V2, FEATURE_CRM_INTEGRATED_WITH_WORDPRESS, FEATURE_CRM_LEADS_AND_FUNNEL, FEATURE_CRM_PROPOSALS_AND_INVOICES, FEATURE_CRM_TRACK_TRANSACTIONS, FEATURE_CRM_NO_CONTACT_LIMITS, FEATURE_SECURE_STORAGE_V2, FEATURE_ONE_CLICK_RESTORE_V2, FEATURE_ONE_CLICK_FIX_V2, FEATURE_INSTANT_EMAIL_V2, FEATURE_AKISMET_V2, FEATURE_SPAM_BLOCK_V2, FEATURE_SPAM_10K_PER_MONTH, FEATURE_FILTERING_V2, FEATURE_LANGUAGE_SUPPORT_V2, FEATURE_SPELLING_CORRECTION_V2, FEATURE_SUPPORTS_WOOCOMMERCE_V2, FEATURE_JETPACK_VIDEOPRESS_EDITOR, FEATURE_JETPACK_VIDEOPRESS_STORAGE, FEATURE_JETPACK_VIDEOPRESS_UNBRANDED, FEATURE_CLOUD_CRITICAL_CSS, SOCIAL_SHARES_1000, FEATURE_JETPACK_10GB_BACKUP_STORAGE, FEATURE_JETPACK_1_YEAR_ARCHIVE_ACTIVITY_LOG, FEATURE_JETPACK_30_DAY_ARCHIVE_ACTIVITY_LOG, FEATURE_JETPACK_REAL_TIME_CLOUD_BACKUPS, FEATURE_UNLIMITED_USERS, FEATURE_UNLIMITED_POSTS_PAGES, FEATURE_ADDITIONAL_SITES, WPCOM_FEATURES_AKISMET, WPCOM_FEATURES_BACKUPS_RESTORE, WPCOM_FEATURES_CDN, WPCOM_FEATURES_CLASSIC_SEARCH, WPCOM_FEATURES_CLOUDFLARE_CDN, WPCOM_FEATURES_FULL_ACTIVITY_LOG, WPCOM_FEATURES_INSTALL_PLUGINS, WPCOM_FEATURES_INSTANT_SEARCH, WPCOM_FEATURES_LIVE_SUPPORT, WPCOM_FEATURES_MANAGE_PLUGINS, WPCOM_FEATURES_NO_ADVERTS, WPCOM_FEATURES_NO_WPCOM_BRANDING, WPCOM_FEATURES_PREMIUM_THEMES, WPCOM_FEATURES_PRIORITY_SUPPORT, WPCOM_FEATURES_REAL_TIME_BACKUPS, WPCOM_FEATURES_SEO_PREVIEW_TOOLS, WPCOM_FEATURES_UPLOAD_AUDIO_FILES, WPCOM_FEATURES_UPLOAD_PLUGINS, WPCOM_FEATURES_UPLOAD_VIDEO_FILES, WPCOM_FEATURES_VAULTPRESS_BACKUPS, WPCOM_FEATURES_VIDEOPRESS, WPCOM_FEATURES_VIDEOPRESS_UNLIMITED_STORAGE, WPCOM_FEATURES_VIDEO_HOSTING, WPCOM_FEATURES_WORDADS, WPCOM_FEATURES_CUSTOM_DESIGN, WPCOM_FEATURES_GLOBAL_STYLES, FEATURE_IMPORT_SUBSCRIBERS */
54670
  /* harmony import */ var _jetpack__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(90892);
54671
 
54672
  const FEATURE_WP_SUBDOMAIN = 'wordpress-subdomain';
56231
  getPortfolioSignupFeatures: () => [_constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_FREE_DOMAIN */ .MCU, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_EMAIL_SUPPORT_SIGNUP */ .fhe, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_ALL_FREE_FEATURES */ .Uwp],
56232
  getSignupCompareAvailableFeatures: () => [_constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_CUSTOM_DOMAIN */ .Eb2, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_HOSTING */ .q4V, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_NO_ADS */ .Xk_, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_COLLECT_PAYMENTS_V2 */ .$4, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_EMAIL_SUPPORT_SIGNUP */ .fhe],
56233
  getNewsletterDescription: () => i18n_calypso__WEBPACK_IMPORTED_MODULE_2__/* ["default"].translate */ .ZP.translate('Jumpstart your Newsletter with a custom domain, ad-free experience, and the ability to sell subscriptions, take payments, and collect donations from day one. Backed with email support to help get everything just right.'),
56234
+ getNewsletterSignupFeatures: () => [_constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_CUSTOM_DOMAIN */ .Eb2, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_UNLIMITED_EMAILS */ .Vhs, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_UNLIMITED_SUBSCRIBERS */ .nl4, // we don't offer this one yet
56235
+ // FEATURE_IMPORT_SUBSCRIBERS,
56236
+ _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_AD_FREE_EXPERIENCE */ .pOV, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_ADD_MULTIPLE_PAGES_NEWSLETTER */ .kWv, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_COLLECT_PAYMENTS_NEWSLETTER */ .Ix, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_POST_BY_EMAIL */ .WCW, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_EMAIL_SUPPORT_SIGNUP */ .fhe],
56237
  getNewsletterHighlightedFeatures: () => [_constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_CUSTOM_DOMAIN */ .Eb2, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_UNLIMITED_EMAILS */ .Vhs, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_UNLIMITED_SUBSCRIBERS */ .nl4, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_AD_FREE_EXPERIENCE */ .pOV],
56238
  getLinkInBioDescription: () => i18n_calypso__WEBPACK_IMPORTED_MODULE_2__/* ["default"].translate */ .ZP.translate('Stand out and unlock earnings with an ad-free site, custom domain, and the ability to sell subscriptions, take payments, and collect donations. Backed with email support to help get your site just right.'),
56239
  getLinkInBioSignupFeatures: () => [_constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_CUSTOM_DOMAIN */ .Eb2, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_ADD_UNLIMITED_LINKS */ .y4L, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_CUSTOMIZE_THEMES_BUTTONS_COLORS */ .baL, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_AD_FREE_EXPERIENCE */ .pOV, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_TRACK_VIEWS_CLICKS */ .LDi, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_COLLECT_PAYMENTS_LINK_IN_BIO */ .cMD, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_POST_BY_EMAIL */ .WCW, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_EMAIL_SUPPORT_SIGNUP */ .fhe],
56297
  getPromotedFeatures: () => [_constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_CUSTOM_DOMAIN */ .Eb2, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_NO_ADS */ .Xk_, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_ADVANCED_DESIGN */ .MOV, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_13GB_STORAGE */ .E5t],
56298
  getSignupFeatures: () => [_constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_LIVE_CHAT_SUPPORT_BUSINESS_DAYS */ .N5t, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_ADVANCED_CUSTOMIZATION */ .jSq, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_ALL_PERSONAL_FEATURES */ .VyO],
56299
  getNewsletterDescription: () => i18n_calypso__WEBPACK_IMPORTED_MODULE_2__/* ["default"].translate */ .ZP.translate('Take your Newsletter further, faster. Get everything included in Personal, plus premium design themes, baked-in video uploads, ad monetization, deep visitor insights from Google Analytics, and live chat support.'),
56300
+ getNewsletterSignupFeatures: () => [_constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_CUSTOM_DOMAIN */ .Eb2, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_UNLIMITED_EMAILS */ .Vhs, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_UNLIMITED_SUBSCRIBERS */ .nl4, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_LIVE_CHAT_SUPPORT */ .Tez, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_REAL_TIME_ANALYTICS */ .Hrz, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_AD_FREE_EXPERIENCE */ .pOV, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_ADD_MULTIPLE_PAGES_NEWSLETTER */ .kWv, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_COLLECT_PAYMENTS_NEWSLETTER */ .Ix, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_POST_BY_EMAIL */ .WCW, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_EMAIL_SUPPORT_SIGNUP */ .fhe // For context, see: https://github.com/Automattic/wp-calypso/issues/68150
56301
+ // FEATURE_IMPORT_SUBSCRIBERS,
56302
+ // FEATURE_GOOGLE_ANALYTICS_V2,
56303
+ // FEATURE_PREMIUM_THEMES,
56304
+ ],
56305
  getNewsletterHighlightedFeatures: () => [_constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_CUSTOM_DOMAIN */ .Eb2, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_UNLIMITED_EMAILS */ .Vhs, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_UNLIMITED_SUBSCRIBERS */ .nl4, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_AD_FREE_EXPERIENCE */ .pOV, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_LIVE_CHAT_SUPPORT */ .Tez, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_REAL_TIME_ANALYTICS */ .Hrz, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_PREMIUM_THEMES */ .QfP],
56306
  getLinkInBioDescription: () => i18n_calypso__WEBPACK_IMPORTED_MODULE_2__/* ["default"].translate */ .ZP.translate('Take your site further, faster. Get everything included in Personal, plus premium design themes, baked-in video uploads, ad monetization, deep visitor insights from Google Analytics, and live chat support.'),
56307
  getLinkInBioSignupFeatures: () => [_constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_CUSTOM_DOMAIN */ .Eb2, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_ADD_UNLIMITED_LINKS */ .y4L, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_CUSTOMIZE_THEMES_BUTTONS_COLORS */ .baL, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_AD_FREE_EXPERIENCE */ .pOV, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_TRACK_VIEWS_CLICKS */ .LDi, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_COLLECT_PAYMENTS_LINK_IN_BIO */ .cMD, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_POST_BY_EMAIL */ .WCW, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_EMAIL_SUPPORT_SIGNUP */ .fhe, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_LIVE_CHAT_SUPPORT */ .Tez, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_REAL_TIME_ANALYTICS */ .Hrz, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_GOOGLE_ANALYTICS_V2 */ .HkP, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_MONETISE */ .SZ6, _constants__WEBPACK_IMPORTED_MODULE_5__/* .FEATURE_LINK_IN_BIO_THEMES_CUSTOMIZATION */ ._xz],
57253
  primary,
57254
  scary,
57255
  plain,
57256
+ transparent,
57257
  ...anchorProps
57258
  } = _ref;
57259
  return anchorProps;
61771
 
61772
  /***/ }),
61773
 
61774
+ /***/ 26932:
61775
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
61776
+
61777
+ "use strict";
61778
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
61779
+ /* harmony export */ "K": () => (/* binding */ useIsWpOrgSite)
61780
+ /* harmony export */ });
61781
+ /* harmony import */ var react_query__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(82066);
61782
+ /* harmony import */ var wpcom_proxy_request__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(18552);
61783
+
61784
+
61785
+ function useIsWpOrgSite(siteUrl) {
61786
+ let enabled = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;
61787
+ return (0,react_query__WEBPACK_IMPORTED_MODULE_0__.useQuery)(['is-site-wporg-', siteUrl], async () => {
61788
+ var _analysis$platform_da;
61789
+
61790
+ const analysis = await (0,wpcom_proxy_request__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .ZP)({
61791
+ path: `/imports/analyze-url?site_url=${encodeURIComponent(siteUrl)}`,
61792
+ apiNamespace: 'wpcom/v2'
61793
+ });
61794
+
61795
+ if (analysis.platform === 'wordpress' && !((_analysis$platform_da = analysis.platform_data) !== null && _analysis$platform_da !== void 0 && _analysis$platform_da.is_wpcom)) {
61796
+ return true;
61797
+ }
61798
+
61799
+ return false;
61800
+ }, {
61801
+ refetchOnWindowFocus: false,
61802
+ staleTime: Infinity,
61803
+ enabled: !!siteUrl && enabled
61804
+ });
61805
+ }
61806
+
61807
+ /***/ }),
61808
+
61809
  /***/ 34381:
61810
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
61811
 
61813
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
61814
  /* harmony export */ "g": () => (/* binding */ useSiteAnalysis)
61815
  /* harmony export */ });
61816
+ /* harmony import */ var use_debounce__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(17127);
61817
+ /* harmony import */ var _use_is_wporg_site__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(26932);
61818
+ /* harmony import */ var _use_user_sites__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(41073);
61819
+ /* harmony import */ var _use_wpcom_site__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(1494);
61820
+
61821
 
61822
 
61823
 
61825
  // a simple way to check if a string is host to save on API calls
61826
  function isHost(string) {
61827
  if (string) {
61828
+ return string.length > 4 && Boolean(string === null || string === void 0 ? void 0 : string.match(/\w{2,}\.\w{2,32}/));
61829
  }
61830
 
61831
  return false;
61832
  }
61833
+
61834
+ function urlMatches(trustedURL, userInputUrl) {
61835
+ if (!trustedURL || !userInputUrl) {
61836
+ return false;
61837
+ }
61838
+
61839
+ const normalizedInputUrl = userInputUrl.trim().toLowerCase();
61840
+
61841
+ if (trustedURL === normalizedInputUrl) {
61842
+ return true;
61843
+ }
61844
+
61845
+ try {
61846
+ const trustedURLObject = new URL(trustedURL);
61847
+
61848
+ if (trustedURLObject.host === normalizedInputUrl) {
61849
+ return true;
61850
+ }
61851
+
61852
+ const normalizedInputUrlObject = new URL(normalizedInputUrl);
61853
+
61854
+ if (trustedURLObject.host === normalizedInputUrlObject.host) {
61855
+ return true;
61856
+ }
61857
+ } catch (_e) {
61858
+ // couldn't build URL object
61859
+ return false;
61860
+ }
61861
+ }
61862
  /**
61863
  * Analyses a site to determine whether its a WPCOM site, and if yes, it would fetch and return the site information (SiteDetails).
61864
  *
61865
+ * @param userId the user ID
61866
  * @param siteURL the site URL
61867
+ * @param enabled whether the query is enabled
61868
  */
61869
 
61870
 
61871
+ function useSiteAnalysis(userId, siteURL, enabled) {
61872
+ const [debouncedSiteUrl] = (0,use_debounce__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z)(siteURL, 500);
61873
+ const isEnabled = isHost(debouncedSiteUrl) && enabled;
61874
+ const {
61875
+ data: userSites,
61876
+ isLoading: userSitesLoading
61877
+ } = (0,_use_user_sites__WEBPACK_IMPORTED_MODULE_1__/* .useUserSites */ .u)(userId, isEnabled);
61878
+ const {
61879
+ data: wpcomSite,
61880
+ isLoading: wpcomSiteLoading
61881
+ } = (0,_use_wpcom_site__WEBPACK_IMPORTED_MODULE_2__/* .useWpcomSite */ .z)(debouncedSiteUrl, isEnabled);
61882
+ const {
61883
+ data: isWporg,
61884
+ isLoading: wpOrgSiteLoading
61885
+ } = (0,_use_is_wporg_site__WEBPACK_IMPORTED_MODULE_3__/* .useIsWpOrgSite */ .K)(debouncedSiteUrl, isEnabled);
61886
 
61887
+ if (!isEnabled) {
61888
+ return {
61889
+ result: 'DISABLED',
61890
+ siteURL,
61891
+ isWpcom: false
61892
+ };
61893
+ }
61894
 
61895
+ const usersOwned = Boolean(userSites === null || userSites === void 0 ? void 0 : userSites.sites.find(s => urlMatches(s.URL, debouncedSiteUrl)));
 
 
 
61896
 
61897
+ if (usersOwned) {
61898
+ return {
61899
+ site: wpcomSite,
61900
+ result: 'OWNED_BY_USER',
61901
+ siteURL,
61902
+ isWpcom: true
61903
+ };
61904
+ } else if (wpcomSite) {
61905
+ // use the wpcomSite response URL instead of user input to
61906
+ // double check if the wpcom site belongs to the user before dismissing
61907
+ if (userSites !== null && userSites !== void 0 && userSites.sites.find(s => urlMatches(s.URL, wpcomSite.URL))) {
61908
+ return {
61909
+ site: wpcomSite,
61910
+ result: 'OWNED_BY_USER',
61911
+ siteURL,
61912
+ isWpcom: true
61913
+ };
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61914
  }
61915
+
61916
+ return {
61917
+ site: wpcomSite,
61918
+ result: 'NOT_OWNED_BY_USER',
61919
+ siteURL,
61920
+ isWpcom: true
61921
+ };
61922
+ } else if (isWporg) {
61923
+ return {
61924
+ result: 'WPORG',
61925
+ siteURL,
61926
+ isWpcom: false
61927
+ };
61928
+ }
61929
+
61930
+ const isLoading = [userSitesLoading, wpOrgSiteLoading, wpcomSiteLoading].some(Boolean);
61931
+ return {
61932
+ result: isLoading ? 'LOADING' : 'UNKNOWN',
61933
+ siteURL,
61934
+ isWpcom: false
61935
  };
61936
  }
61937
 
61961
 
61962
  /***/ }),
61963
 
61964
+ /***/ 41073:
61965
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
61966
+
61967
+ "use strict";
61968
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
61969
+ /* harmony export */ "u": () => (/* binding */ useUserSites)
61970
+ /* harmony export */ });
61971
+ /* harmony import */ var react_query__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(82066);
61972
+ /* harmony import */ var wpcom_proxy_request__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(18552);
61973
+
61974
+
61975
+ function useUserSites(userId) {
61976
+ let enabled = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;
61977
+ return (0,react_query__WEBPACK_IMPORTED_MODULE_0__.useQuery)(['user-sites', userId], () => (0,wpcom_proxy_request__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .ZP)({
61978
+ path: '/me/sites/',
61979
+ apiVersion: '1.1'
61980
+ }), {
61981
+ refetchOnWindowFocus: false,
61982
+ staleTime: 5 * 60 * 1000,
61983
+ enabled
61984
+ });
61985
+ }
61986
+
61987
+ /***/ }),
61988
+
61989
+ /***/ 1494:
61990
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
61991
+
61992
+ "use strict";
61993
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
61994
+ /* harmony export */ "z": () => (/* binding */ useWpcomSite)
61995
+ /* harmony export */ });
61996
+ /* harmony import */ var react_query__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(82066);
61997
+ /* harmony import */ var wpcom_proxy_request__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(18552);
61998
+
61999
+
62000
+ function useWpcomSite(siteId) {
62001
+ let enabled = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;
62002
+ return (0,react_query__WEBPACK_IMPORTED_MODULE_0__.useQuery)(['wpcom-site', siteId], () => (0,wpcom_proxy_request__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .ZP)({
62003
+ path: '/sites/' + encodeURIComponent(siteId),
62004
+ apiVersion: '1.1'
62005
+ }), {
62006
+ refetchOnWindowFocus: false,
62007
+ staleTime: Infinity,
62008
+ enabled: !!siteId && enabled
62009
+ });
62010
+ }
62011
+
62012
+ /***/ }),
62013
+
62014
  /***/ 28459:
62015
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
62016
 
63426
  function useSubmitForumsMutation() {
63427
  return (0,react_query__WEBPACK_IMPORTED_MODULE_0__.useMutation)(_ref => {
63428
  let {
63429
+ ownershipResult,
63430
  message,
63431
  subject,
63432
  locale,
63433
  hideInfo,
63434
  userDeclaredSiteUrl
63435
  } = _ref;
63436
+ const site = ownershipResult.site;
63437
  const blogHelpMessages = [];
63438
 
63439
  if (site) {
63441
  blogHelpMessages.push('WP.com: Unknown');
63442
  blogHelpMessages.push('Jetpack: Yes');
63443
  } else {
63444
+ blogHelpMessages.push(`WP.com: ${ownershipResult.isWpcom ? 'Yes' : 'No'}`);
63445
+ blogHelpMessages.push('Jetpack: No');
63446
  }
63447
 
63448
+ blogHelpMessages.push(`Correct account: ${ownershipResult.result === 'OWNED_BY_USER' ? 'Yes' : 'No'}`);
63449
  } else if (userDeclaredSiteUrl) {
63450
  blogHelpMessages.push(`Self-declared URL: ${userDeclaredSiteUrl}`);
63451
+ blogHelpMessages.push('Jetpack: Unknown');
63452
+ blogHelpMessages.push('WP.com: Unknown');
63453
  }
63454
 
63455
  const forumMessage = message + '\n\n' + blogHelpMessages.join('\n');
64025
  this.closeAfterAccept = closeAfterAccept;
64026
  }
64027
  /**
64028
+ * Init the SocketIO connection: check user authorization and bind socket events
64029
  *
64030
  * @param dispatch Redux dispatch function
64031
  * @param auth Authentication promise, will return the user info upon fulfillment
64054
  }
64055
  } = _ref;
64056
  const socket = buildConnection(url);
64057
+ return socket.once('connect', () => {
64058
  var _this$receiveConnect;
64059
 
64060
  return dispatch((_this$receiveConnect = this.receiveConnect) === null || _this$receiveConnect === void 0 ? void 0 : _this$receiveConnect.call(this));
64298
  function useHappychatAuth() {
64299
  let enabled = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true;
64300
  return (0,react_query__WEBPACK_IMPORTED_MODULE_0__.useQuery)('getHappychatAuth' + key, requestHappyChatAuth, {
64301
+ staleTime: 10 * 60 * 1000,
64302
+ // 10 minutes
64303
  enabled
64304
  });
64305
  }
64330
  result.available = receivedAvailability;
64331
 
64332
  if (Object.keys(result).length === 2) {
64333
+ var _connection$openSocke;
64334
+
64335
+ resolve(result); // close connection after we get accept and status
64336
+
64337
+ (_connection$openSocke = connection.openSocket) === null || _connection$openSocke === void 0 ? void 0 : _connection$openSocke.then(socket => socket.close());
64338
  }
64339
  },
64340
 
64342
  result.status = status;
64343
 
64344
  if (Object.keys(result).length === 2) {
64345
+ var _connection$openSocke2;
64346
+
64347
+ resolve(result); // close connection after we get accept and status
64348
+
64349
+ (_connection$openSocke2 = connection.openSocket) === null || _connection$openSocke2 === void 0 ? void 0 : _connection$openSocke2.then(socket => socket.close());
64350
  }
64351
  },
64352
 
64360
  connection.init(value => value, Promise.resolve(dataAuth));
64361
  });
64362
  }
64363
+ /**
64364
+ * Opens a socket connection to Happychat to check if it's available and if the user has an active session.
64365
+ * By default, it caches the answer for 10 minutes or until page refresh.
64366
+ *
64367
+ * @param enabled on/off switch
64368
+ * @param staleTime time in ms to cache the result
64369
+ * @returns
64370
+ */
64371
+
64372
 
64373
  function useHappychatAvailable() {
64374
  let enabled = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true;
64375
+ let staleTime = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 10 * 60 * 1000;
64376
  const {
64377
  data: dataAuth,
64378
  isLoading: isLoadingAuth
64379
  } = (0,_use_happychat_auth__WEBPACK_IMPORTED_MODULE_2__/* ["default"] */ .Z)();
64380
  return (0,react_query__WEBPACK_IMPORTED_MODULE_0__.useQuery)('happychat-available' + key, () => getHCAvailabilityAndStatus(dataAuth), {
64381
  enabled: !isLoadingAuth && !!dataAuth && enabled,
64382
+ staleTime
64383
  });
64384
  }
64385
  /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (useHappychatAvailable);
64671
  /* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(69307);
64672
  /* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__);
64673
  /* harmony import */ var _automattic_calypso_analytics__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(36115);
64674
+ /* harmony import */ var _automattic_components__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(37499);
64675
+ /* harmony import */ var _automattic_components__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(43239);
64676
+ /* harmony import */ var _automattic_components__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(27136);
64677
+ /* harmony import */ var _automattic_data_stores__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(32457);
64678
+ /* harmony import */ var _automattic_data_stores__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(41515);
64679
+ /* harmony import */ var _automattic_data_stores__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(41073);
64680
+ /* harmony import */ var _automattic_data_stores__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(34381);
64681
+ /* harmony import */ var _automattic_i18n_utils__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(30849);
64682
+ /* harmony import */ var _automattic_site_picker__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(1283);
64683
  /* harmony import */ var _wordpress_components__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(55609);
64684
  /* harmony import */ var _wordpress_components__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_wordpress_components__WEBPACK_IMPORTED_MODULE_2__);
64685
  /* harmony import */ var _wordpress_data__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(9818);
64686
  /* harmony import */ var _wordpress_data__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_wordpress_data__WEBPACK_IMPORTED_MODULE_3__);
64687
  /* harmony import */ var _wordpress_i18n__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(65736);
64688
  /* harmony import */ var _wordpress_i18n__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(_wordpress_i18n__WEBPACK_IMPORTED_MODULE_4__);
64689
+ /* harmony import */ var _wordpress_icons__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(5869);
64690
+ /* harmony import */ var _wordpress_icons__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(5614);
64691
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(99196);
64692
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_5__);
64693
  /* harmony import */ var react_redux__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(4792);
64694
+ /* harmony import */ var react_router_dom__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(29175);
64695
+ /* harmony import */ var calypso_state_current_user_selectors__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(36747);
64696
+ /* harmony import */ var calypso_state_ui_selectors__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(73041);
64697
+ /* harmony import */ var calypso_state_ui_selectors__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(20834);
64698
+ /* harmony import */ var _directly__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(39226);
64699
+ /* harmony import */ var _stores__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(98865);
64700
+ /* harmony import */ var _support_variations__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(44241);
64701
+ /* harmony import */ var _back_button__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(40495);
64702
+ /* harmony import */ var _help_center_notice__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(10083);
64703
+ /* harmony import */ var _help_center_sibyl_articles__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(61108);
64704
+ /* harmony import */ var _help_center_contact_form_scss__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(27427);
64705
 
64706
 
64707
  /* eslint-disable no-restricted-imports */
64723
 
64724
 
64725
 
64726
+
64727
  /**
64728
  * Internal Dependencies
64729
  */
64736
 
64737
 
64738
  const SITE_STORE = 'automattic/site';
64739
+ const fakeFaces = ['john', 'joe', 'julia', 'emily', 'ashley', 'daphne', 'megan', 'omar', 'vivian', 'sam', 'tony'].map(name => `https://s0.wp.com/i/support-engineers/${name}.jpg`);
 
 
64740
  const randomTwoFaces = fakeFaces.sort(() => Math.random() - 0.5).slice(0, 2);
64741
 
64742
  const HelpCenterSitePicker = _ref => {
64762
  }
64763
 
64764
  const options = [currentSite, otherSite];
64765
+ return (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_automattic_site_picker__WEBPACK_IMPORTED_MODULE_10__/* .SitePickerDropDown */ .a, {
64766
  enabled: enabled,
64767
  onPickSite: pickSite,
64768
  options: options,
64775
  formTitle: __('Start live chat', "full-site-editing"),
64776
  trayText: __('Our WordPress experts will be with you right away', "full-site-editing"),
64777
  buttonLabel: __('Chat with us', "full-site-editing"),
64778
+ buttonSubmittingLabel: __('Connecting to chat', "full-site-editing")
64779
  },
64780
  EMAIL: {
64781
  formTitle: __('Send us an email', "full-site-editing"),
64782
  trayText: __('Our WordPress experts will get back to you soon', "full-site-editing"),
64783
  buttonLabel: __('Email us', "full-site-editing"),
64784
+ buttonSubmittingLabel: __('Sending email', "full-site-editing")
64785
  },
64786
  DIRECTLY: {
64787
  formTitle: __('Start live chat with an expert', "full-site-editing"),
64789
  trayText: __('An expert user will be with you right away', "full-site-editing"),
64790
  formDisclaimer: __('Please do not provide financial or contact information when submitting this form.', "full-site-editing"),
64791
  buttonLabel: __('Ask an expert', "full-site-editing"),
64792
+ buttonSubmittingLabel: __('Connecting you to an expert', "full-site-editing")
64793
  },
64794
  FORUM: {
64795
  formTitle: __('Ask in our community forums', "full-site-editing"),
64796
  formDisclaimer: __('Please do not provide financial or contact information when submitting this form.', "full-site-editing"),
64797
  buttonLabel: __('Ask in the forums', "full-site-editing"),
64798
+ buttonSubmittingLabel: __('Posting in the forums', "full-site-editing"),
64799
+ buttonLoadingLabel: __('Analyzing site…', "full-site-editing")
64800
  }
64801
  };
64802
  const HelpCenterContactForm = () => {
64803
+ var _ownershipResult;
64804
+
64805
  const {
64806
  search
64807
+ } = (0,react_router_dom__WEBPACK_IMPORTED_MODULE_11__/* .useLocation */ .TH)();
64808
+ const sectionName = (0,react_redux__WEBPACK_IMPORTED_MODULE_6__/* .useSelector */ .v9)(calypso_state_ui_selectors__WEBPACK_IMPORTED_MODULE_12__/* ["default"] */ .Z);
64809
  const params = new URLSearchParams(search);
64810
  const mode = params.get('mode');
64811
  const overflow = params.get('overflow') === 'true';
64812
+ const history = (0,react_router_dom__WEBPACK_IMPORTED_MODULE_11__/* .useHistory */ .k6)();
64813
  const [hideSiteInfo, setHideSiteInfo] = (0,react__WEBPACK_IMPORTED_MODULE_5__.useState)(false);
64814
  const [hasSubmittingError, setHasSubmittingError] = (0,react__WEBPACK_IMPORTED_MODULE_5__.useState)(false);
64815
+ const locale = (0,_automattic_i18n_utils__WEBPACK_IMPORTED_MODULE_13__/* .useLocale */ .bU)();
64816
  const {
64817
  isLoading: submittingTicket,
64818
  mutateAsync: submitTicket
64819
+ } = (0,_automattic_data_stores__WEBPACK_IMPORTED_MODULE_14__/* .useSubmitTicketMutation */ .g)();
64820
  const {
64821
  isLoading: submittingTopic,
64822
  mutateAsync: submitTopic
64823
+ } = (0,_automattic_data_stores__WEBPACK_IMPORTED_MODULE_15__/* .useSubmitForumsMutation */ .M)();
64824
+ const userId = (0,react_redux__WEBPACK_IMPORTED_MODULE_6__/* .useSelector */ .v9)(calypso_state_current_user_selectors__WEBPACK_IMPORTED_MODULE_7__/* .getCurrentUserId */ .rc);
64825
+ const {
64826
+ data: userSites
64827
+ } = (0,_automattic_data_stores__WEBPACK_IMPORTED_MODULE_16__/* .useUserSites */ .u)(userId);
64828
+ const userWithNoSites = (userSites === null || userSites === void 0 ? void 0 : userSites.sites.length) === 0;
64829
  const [sitePickerChoice, setSitePickerChoice] = (0,react__WEBPACK_IMPORTED_MODULE_5__.useState)('CURRENT_SITE');
64830
  const {
64831
  selectedSite,
64835
  directlyData
64836
  } = (0,_wordpress_data__WEBPACK_IMPORTED_MODULE_3__.useSelect)(select => {
64837
  return {
64838
+ selectedSite: select(_stores__WEBPACK_IMPORTED_MODULE_17__/* .HELP_CENTER_STORE */ .aM).getSite(),
64839
+ subject: select(_stores__WEBPACK_IMPORTED_MODULE_17__/* .HELP_CENTER_STORE */ .aM).getSubject(),
64840
+ message: select(_stores__WEBPACK_IMPORTED_MODULE_17__/* .HELP_CENTER_STORE */ .aM).getMessage(),
64841
+ userDeclaredSiteUrl: select(_stores__WEBPACK_IMPORTED_MODULE_17__/* .HELP_CENTER_STORE */ .aM).getUserDeclaredSiteUrl(),
64842
+ directlyData: select(_stores__WEBPACK_IMPORTED_MODULE_17__/* .HELP_CENTER_STORE */ .aM).getDirectly()
64843
  };
64844
  });
64845
+ const userData = (0,_wordpress_data__WEBPACK_IMPORTED_MODULE_3__.useSelect)(select => select(_stores__WEBPACK_IMPORTED_MODULE_17__/* .USER_STORE */ .Em).getCurrentUser());
64846
  const {
64847
  setSite,
64848
  resetStore,
64851
  setUserDeclaredSite,
64852
  setSubject,
64853
  setMessage
64854
+ } = (0,_wordpress_data__WEBPACK_IMPORTED_MODULE_3__.useDispatch)(_stores__WEBPACK_IMPORTED_MODULE_17__/* .HELP_CENTER_STORE */ .aM);
 
 
 
 
 
64855
  (0,react__WEBPACK_IMPORTED_MODULE_5__.useEffect)(() => {
64856
+ const supportVariation = (0,_support_variations__WEBPACK_IMPORTED_MODULE_18__/* .getSupportVariationFromMode */ .yQ)(mode);
64857
  (0,_automattic_calypso_analytics__WEBPACK_IMPORTED_MODULE_1__/* .recordTracksEvent */ .jN)('calypso_inlinehelp_contact_view', {
64858
  support_variation: supportVariation,
64859
  location: 'help-center',
64860
  section: sectionName
64861
  });
64862
+ }, [mode, sectionName]);
 
64863
  (0,react__WEBPACK_IMPORTED_MODULE_5__.useEffect)(() => {
64864
+ if (userWithNoSites) {
64865
+ setSitePickerChoice('OTHER_SITE');
64866
  }
64867
+ }, [userWithNoSites]);
64868
  (0,react__WEBPACK_IMPORTED_MODULE_5__.useEffect)(() => {
64869
  if (directlyData !== null && directlyData !== void 0 && directlyData.hasSession) {
64870
+ (0,_directly__WEBPACK_IMPORTED_MODULE_8__/* .execute */ .ht)(['maximize', {}]);
64871
  setShowHelpCenter(false);
64872
  }
64873
  }, [directlyData, setShowHelpCenter]);
 
64874
  const formTitles = titles[mode];
64875
+ const siteId = (0,react_redux__WEBPACK_IMPORTED_MODULE_6__/* .useSelector */ .v9)(calypso_state_ui_selectors__WEBPACK_IMPORTED_MODULE_19__/* ["default"] */ .Z);
64876
  const currentSite = (0,_wordpress_data__WEBPACK_IMPORTED_MODULE_3__.useSelect)(select => select(SITE_STORE).getSite(siteId));
64877
+ let ownershipResult = (0,_automattic_data_stores__WEBPACK_IMPORTED_MODULE_20__/* .useSiteAnalysis */ .g)( // pass user email as query cache key
64878
+ userId, userDeclaredSiteUrl, sitePickerChoice === 'OTHER_SITE');
64879
+ const ownershipStatusLoading = ((_ownershipResult = ownershipResult) === null || _ownershipResult === void 0 ? void 0 : _ownershipResult.result) === 'LOADING';
64880
+ const isSubmitting = submittingTicket || submittingTopic; // if the user picked a site from the picker, we don't need to analyze the ownership
64881
+
64882
+ if (currentSite && sitePickerChoice === 'CURRENT_SITE') {
64883
+ ownershipResult = {
64884
+ result: 'OWNED_BY_USER',
64885
+ isWpcom: true,
64886
+ siteURL: currentSite.URL,
64887
+ site: currentSite
64888
+ };
64889
+ } // record the resolved site
64890
+
64891
+
64892
+ (0,react__WEBPACK_IMPORTED_MODULE_5__.useEffect)(() => {
64893
+ var _ownershipResult2;
64894
+
64895
+ if ((_ownershipResult2 = ownershipResult) !== null && _ownershipResult2 !== void 0 && _ownershipResult2.site && sitePickerChoice === 'OTHER_SITE') {
64896
+ var _ownershipResult3;
64897
+
64898
+ setUserDeclaredSite((_ownershipResult3 = ownershipResult) === null || _ownershipResult3 === void 0 ? void 0 : _ownershipResult3.site);
64899
+ }
64900
+ }, [ownershipResult, setUserDeclaredSite, sitePickerChoice]);
64901
  let supportSite; // if the user picked "other site", force them to declare a site
64902
 
64903
  if (sitePickerChoice === 'OTHER_SITE') {
64904
+ var _ownershipResult4;
64905
+
64906
+ supportSite = (_ownershipResult4 = ownershipResult) === null || _ownershipResult4 === void 0 ? void 0 : _ownershipResult4.site;
64907
  } else {
64908
  supportSite = selectedSite || currentSite;
64909
  }
64966
  case 'FORUM':
64967
  {
64968
  submitTopic({
64969
+ ownershipResult,
64970
  site: supportSite,
64971
  message: message ?? '',
64972
  subject: subject ?? '',
64989
 
64990
  case 'DIRECTLY':
64991
  {
64992
+ (0,_directly__WEBPACK_IMPORTED_MODULE_8__/* .askDirectlyQuestion */ .SW)(message ?? '', (userData === null || userData === void 0 ? void 0 : userData.display_name) ?? '', (userData === null || userData === void 0 ? void 0 : userData.email) ?? '');
64993
  (0,_automattic_calypso_analytics__WEBPACK_IMPORTED_MODULE_1__/* .recordTracksEvent */ .jN)('calypso_inlinehelp_contact_submit', {
64994
  support_variation: 'directly',
64995
  location: 'help-center',
65002
  }
65003
 
65004
  const InfoTip = () => {
65005
+ const ref = (0,react__WEBPACK_IMPORTED_MODULE_5__.useRef)();
65006
  const [isOpen, setOpen] = (0,react__WEBPACK_IMPORTED_MODULE_5__.useState)(false);
65007
+ return (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("div", null, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("button", {
65008
+ className: "help-center-contact-form__site-picker-forum-privacy-info",
65009
+ ref: ref,
65010
  "aria-haspopup": true,
65011
  "aria-label": __('More information'),
65012
  onClick: () => setOpen(!isOpen)
65013
+ }, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_icons__WEBPACK_IMPORTED_MODULE_21__/* ["default"] */ .Z, {
65014
+ icon: _wordpress_icons__WEBPACK_IMPORTED_MODULE_22__/* ["default"] */ .Z,
65015
  size: 18
65016
+ })), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_automattic_components__WEBPACK_IMPORTED_MODULE_23__/* ["default"] */ .Z, {
65017
+ className: "help-center-contact-form__site-picker-privacy-popover",
65018
  isVisible: isOpen,
65019
+ context: ref.current,
65020
  position: "top left"
65021
+ }, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("span", {
65022
+ className: "help-center-contact-form__site-picker-forum-privacy-popover"
65023
+ }, __("This may result in a longer response time, but WordPress.com staff in the forums will still be able to view your site's URL.", "full-site-editing"))));
65024
  };
65025
 
65026
  const isCTADisabled = () => {
65027
+ if (isSubmitting || !message || ownershipStatusLoading) {
65028
  return true;
65029
  }
65030
 
65040
  }
65041
  };
65042
 
65043
+ const getCTALabel = () => {
65044
+ switch (mode) {
65045
+ case 'CHAT':
65046
+ case 'EMAIL':
65047
+ case 'DIRECTLY':
65048
+ return isSubmitting ? formTitles.buttonSubmittingLabel : formTitles.buttonLabel;
65049
+
65050
+ case 'FORUM':
65051
+ {
65052
+ if (ownershipStatusLoading) {
65053
+ return formTitles.buttonLoadingLabel;
65054
+ }
65055
+
65056
+ return isSubmitting ? formTitles.buttonSubmittingLabel : formTitles.buttonLabel;
65057
+ }
65058
+ }
65059
+ };
65060
+
65061
  return (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("main", {
65062
  className: "help-center-contact-form"
65063
+ }, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_back_button__WEBPACK_IMPORTED_MODULE_24__/* .BackButton */ .x, null), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("h1", {
65064
  className: "help-center-contact-form__site-picker-title"
65065
  }, formTitles.formTitle), formTitles.formSubtitle && (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("p", {
65066
  className: "help-center-contact-form__site-picker-form-subtitle"
65067
  }, formTitles.formSubtitle), formTitles.formDisclaimer && (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("p", {
65068
  className: "help-center-contact-form__site-picker-form-warning"
65069
+ }, formTitles.formDisclaimer), mode !== 'DIRECTLY' && !userWithNoSites && (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("section", null, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(HelpCenterSitePicker, {
65070
  enabled: mode === 'FORUM',
65071
  currentSite: currentSite,
65072
  onSelect: id => {
65081
  label: __('Site address', "full-site-editing"),
65082
  value: userDeclaredSiteUrl ?? '',
65083
  onChange: setUserDeclaredSiteUrl
65084
+ })), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_help_center_notice__WEBPACK_IMPORTED_MODULE_25__/* .HelpCenterOwnershipNotice */ .JJ, {
65085
+ ownershipResult: ownershipResult
 
 
65086
  })), ['FORUM', 'EMAIL'].includes(mode) && (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("section", null, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_2__.TextControl, {
65087
  className: "help-center-contact-form__subject",
65088
  label: __('Subject', "full-site-editing"),
65106
  onChange: value => setHideSiteInfo(value)
65107
  }))), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("section", {
65108
  className: "contact-form-submit"
65109
+ }, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_automattic_components__WEBPACK_IMPORTED_MODULE_26__/* ["default"] */ .Z, {
65110
  disabled: isCTADisabled(),
65111
  onClick: handleCTA,
65112
  primary: true,
65113
  className: "help-center-contact-form__site-picker-cta"
65114
+ }, getCTALabel()), hasSubmittingError && (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_automattic_components__WEBPACK_IMPORTED_MODULE_27__/* ["default"] */ .Z, {
65115
  isError: true,
65116
  text: __('Something went wrong, please try again later.', "full-site-editing")
65117
  })), ['CHAT', 'EMAIL'].includes(mode) && (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("section", null, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("div", {
65123
  alt: ""
65124
  })), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("p", {
65125
  className: "help-center-contact-form__site-picker-hes-tray-text"
65126
+ }, formTitles.trayText))), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_help_center_sibyl_articles__WEBPACK_IMPORTED_MODULE_28__/* .SibylArticles */ .e, {
65127
  supportSite: supportSite,
65128
  message: message
65129
  }));
65306
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
65307
  /* harmony export */ "Z": () => (__WEBPACK_DEFAULT_EXPORT__)
65308
  /* harmony export */ });
65309
+ /* harmony import */ var _babel_runtime_helpers_extends__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(7896);
65310
  /* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(69307);
65311
  /* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__);
65312
+ /* harmony import */ var _automattic_data_stores__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(99706);
65313
+ /* harmony import */ var _automattic_happychat_connection__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(89645);
65314
  /* harmony import */ var _automattic_viewport_react__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(76951);
65315
  /* harmony import */ var _wordpress_components__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(55609);
65316
  /* harmony import */ var _wordpress_components__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_wordpress_components__WEBPACK_IMPORTED_MODULE_1__);
65322
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_4__);
65323
  /* harmony import */ var react_draggable__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(41327);
65324
  /* harmony import */ var react_draggable__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(react_draggable__WEBPACK_IMPORTED_MODULE_5__);
65325
+ /* harmony import */ var react_router_dom__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(29175);
65326
+ /* harmony import */ var _contexts_FeatureFlagContext__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(24478);
65327
  /* harmony import */ var _stores__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(98865);
65328
+ /* harmony import */ var _help_center_content__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(407);
65329
+ /* harmony import */ var _help_center_footer__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(14059);
65330
+ /* harmony import */ var _help_center_header__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(24934);
65331
 
65332
 
65333
 
65342
 
65343
 
65344
 
65345
+
65346
  /**
65347
  * Internal Dependencies
65348
  */
65378
  'is-minimized': isMinimized
65379
  });
65380
  const show = (0,_wordpress_data__WEBPACK_IMPORTED_MODULE_2__.useSelect)(select => select(_stores__WEBPACK_IMPORTED_MODULE_7__/* .HELP_CENTER_STORE */ .aM).isHelpCenterShown());
65381
+ const {
65382
+ data: supportAvailability
65383
+ } = (0,_automattic_data_stores__WEBPACK_IMPORTED_MODULE_8__/* .useSupportAvailability */ .p)('CHAT');
65384
  const {
65385
  data
65386
+ } = (0,_automattic_happychat_connection__WEBPACK_IMPORTED_MODULE_9__/* ["default"] */ .Z)(Boolean(supportAvailability === null || supportAvailability === void 0 ? void 0 : supportAvailability.is_user_eligible));
65387
 
65388
  const onDismiss = () => {
65389
  setIsVisible(false);
65411
  return null;
65412
  }
65413
 
65414
+ return (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(react_router_dom__WEBPACK_IMPORTED_MODULE_10__/* .MemoryRouter */ .VA, null, (data === null || data === void 0 ? void 0 : data.status) === 'assigned' && (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(react_router_dom__WEBPACK_IMPORTED_MODULE_10__/* .Redirect */ .l_, {
65415
+ to: "/inline-chat?session=continued"
65416
+ }), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_contexts_FeatureFlagContext__WEBPACK_IMPORTED_MODULE_11__/* .FeatureFlagProvider */ .O, null, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(OptionalDraggable, {
65417
  draggable: !isMobile,
65418
  nodeRef: nodeRef,
65419
  handle: ".help-center__container-header",
65420
  bounds: "body"
65421
+ }, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_1__.Card, (0,_babel_runtime_helpers_extends__WEBPACK_IMPORTED_MODULE_12__/* ["default"] */ .Z)({
65422
  className: classNames
65423
  }, animationProps, {
65424
  ref: nodeRef
65425
+ }), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_help_center_header__WEBPACK_IMPORTED_MODULE_13__/* ["default"] */ .Z, {
65426
  isMinimized: isMinimized,
65427
  onMinimize: () => setIsMinimized(true),
65428
  onMaximize: () => setIsMinimized(false),
65429
  onDismiss: onDismiss
65430
+ }), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_help_center_content__WEBPACK_IMPORTED_MODULE_14__/* ["default"] */ .Z, null), !isMinimized && (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_help_center_footer__WEBPACK_IMPORTED_MODULE_15__/* ["default"] */ .Z, null)))));
65431
  };
65432
 
65433
  /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (HelpCenterContainer);
65762
  }), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(react_router_dom__WEBPACK_IMPORTED_MODULE_3__/* .Route */ .AW, {
65763
  path: "/post",
65764
  component: ArticleTitle
65765
+ })) : __('Help Center', "full-site-editing"), isMinimized && unreadCount > 0 && (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("span", {
 
 
65766
  className: "help-center-header__unread-count"
65767
  }, formattedUnreadCount)), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("div", null, isMinimized ? (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_1__.Button, {
65768
  className: 'help-center-header__maximize',
65800
  /* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__);
65801
  /* harmony import */ var _wordpress_data__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(9818);
65802
  /* harmony import */ var _wordpress_data__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_wordpress_data__WEBPACK_IMPORTED_MODULE_1__);
65803
+ /* harmony import */ var react_router_dom__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(29175);
65804
  /* harmony import */ var _help_center_inline_chat_scss__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(96459);
65805
  /* harmony import */ var _stores__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(98865);
65806
 
65809
  * External Dependencies
65810
  */
65811
 
65812
+
65813
  /**
65814
  * Internal Dependencies
65815
  */
65821
  const {
65822
  setIframe
65823
  } = (0,_wordpress_data__WEBPACK_IMPORTED_MODULE_1__.useDispatch)(_stores__WEBPACK_IMPORTED_MODULE_3__/* .HELP_CENTER_STORE */ .aM);
65824
+ const {
65825
+ search
65826
+ } = (0,react_router_dom__WEBPACK_IMPORTED_MODULE_4__/* .useLocation */ .TH)();
65827
+ const params = new URLSearchParams(search);
65828
+ const session = params.get('session') === 'continued' ? 'continued' : 'new';
65829
  return (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("iframe", {
65830
  ref: ref => setIframe(ref),
65831
  className: "help-center-inline-chat__iframe",
65832
  title: "Happychat",
65833
+ src: `https://widgets.wp.com/calypso-happychat/?session=${session}`,
65834
  scrolling: "no"
65835
  });
65836
  };
66067
 
66068
 
66069
  const __ = _wordpress_i18n__WEBPACK_IMPORTED_MODULE_2__.__;
66070
+
66071
+ function getResponses(siteName) {
66072
+ const responses = {
66073
+ NOT_OWNED_BY_USER: (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("p", null, (0,_wordpress_i18n__WEBPACK_IMPORTED_MODULE_2__.sprintf)(
66074
+ /* translators: %s is site name (eg myblog.com) */
66075
+ __('%s is linked to another WordPress.com account. If you’re trying to access it, please follow our Account Recovery procedure.', "full-site-editing"), siteName), "\xA0", ' ', (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_1__.ExternalLink, {
66076
+ href: (0,_automattic_i18n_utils__WEBPACK_IMPORTED_MODULE_3__/* .localizeUrl */ .aq)('https://wordpress.com/wp-login.php?action=recovery')
66077
+ }, __('Learn More', "full-site-editing"))),
66078
+ WPORG: (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("p", null, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createInterpolateElement)(__('Your site is not <hosted_on_our_services>hosted with our services</hosted_on_our_services>. Support for the self-hosted version of WordPress is provided by the <wordpress_org_community_forums>WordPress.org community forums</wordpress_org_community_forums>, or if the problem relates to a specific plugin or theme, contact support for that product instead. If you’re not sure, share your question with a link, and we’ll point you in the right direction!', "full-site-editing"), {
66079
+ hosted_on_our_services: (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_1__.ExternalLink, {
66080
+ href: (0,_automattic_i18n_utils__WEBPACK_IMPORTED_MODULE_3__/* .localizeUrl */ .aq)('https://wordpress.com/support/com-vs-org/')
66081
+ }),
66082
+ wordpress_org_community_forums: (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_1__.ExternalLink, {
66083
+ href: (0,_automattic_i18n_utils__WEBPACK_IMPORTED_MODULE_3__/* .localizeUrl */ .aq)('https://wordpress.org/support/forums/')
66084
+ })
66085
+ })),
66086
+ UNKNOWN: (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("p", null, __("We couldn't fetch enough information about this site to determine our ability to support you with it.", "full-site-editing")),
66087
+ OWNED_BY_USER: '',
66088
+ DISABLED: '',
66089
+ LOADING: ''
66090
+ };
66091
+ return responses;
66092
+ }
66093
+
66094
+ function tryGetHost(url) {
66095
+ if (!url) {
66096
+ return null;
66097
+ }
66098
+
66099
+ try {
66100
+ return new URL(url).host;
66101
+ } catch {
66102
+ return url;
66103
+ }
66104
+ }
66105
+
66106
  function HelpCenterOwnershipNotice(_ref) {
66107
+ var _ownershipResult$site2;
66108
+
66109
  let {
66110
+ ownershipResult
 
 
66111
  } = _ref;
66112
 
66113
+ if (!ownershipResult) {
 
 
 
 
 
 
66114
  return null;
66115
  }
66116
 
66117
+ if (ownershipResult.result === 'OWNED_BY_USER') {
66118
+ var _ownershipResult$site;
66119
+
66120
+ return (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("p", {
66121
+ className: "help-center-notice__positive-feedback"
66122
+ }, ((_ownershipResult$site = ownershipResult.site) === null || _ownershipResult$site === void 0 ? void 0 : _ownershipResult$site.name) || ownershipResult.siteURL);
66123
+ }
66124
+
66125
+ const responses = getResponses(tryGetHost((_ownershipResult$site2 = ownershipResult.site) === null || _ownershipResult$site2 === void 0 ? void 0 : _ownershipResult$site2.URL) || ownershipResult.siteURL);
66126
+
66127
+ if (responses[ownershipResult.result]) {
66128
+ return (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(HelpCenterNotice, null, responses[ownershipResult.result]);
66129
+ }
66130
+
66131
+ return null;
66132
  }
66133
  function HelpCenterActiveTicketNotice(_ref2) {
66134
  let {
66659
  }, __('Recommended resources', "full-site-editing")), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("ul", {
66660
  className: "help-center-sibyl-articles__list",
66661
  "aria-labelledby": "help-center--contextual_help"
66662
+ }, articles.map((article, index) => {
66663
  if ('type' in article && ['video', 'tour'].includes(article.type)) {
66664
  return;
66665
  }
66666
 
66667
  return (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("li", {
66668
+ key: article.link + index
66669
  }, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(ConfigurableLink, {
66670
  to: getPostUrl(article, message),
66671
  external: 'en' !== locale,
66688
  /* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(69307);
66689
  /* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__);
66690
  /* harmony import */ var _automattic_calypso_analytics__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(36115);
66691
+ /* harmony import */ var _automattic_data_stores__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(99706);
66692
+ /* harmony import */ var _automattic_happychat_connection__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(89645);
66693
  /* harmony import */ var _wordpress_data__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(9818);
66694
  /* harmony import */ var _wordpress_data__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_wordpress_data__WEBPACK_IMPORTED_MODULE_2__);
66695
  /* harmony import */ var react_redux__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(4792);
66696
+ /* harmony import */ var calypso_state_sites_selectors_is_simple_site__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(83377);
66697
+ /* harmony import */ var calypso_state_ui_selectors__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(20834);
66698
  /* harmony import */ var _directly__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(39226);
66699
  /* harmony import */ var _hooks_use_still_need_help_url__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(83822);
66700
+ /* harmony import */ var _stores__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(98865);
66701
+ /* harmony import */ var _help_center_contact_form__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(23025);
66702
  /* harmony import */ var _help_center_container__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(30250);
66703
  /* harmony import */ var _styles_scss__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(62829);
66704
 
66733
  hidden
66734
  } = _ref;
66735
  const portalParent = (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.useRef)(document.createElement('div')).current;
66736
+ const {
66737
+ data: chatStatus
66738
+ } = (0,_automattic_data_stores__WEBPACK_IMPORTED_MODULE_6__/* .useSupportAvailability */ .p)('CHAT');
66739
  const {
66740
  data
66741
+ } = (0,_automattic_happychat_connection__WEBPACK_IMPORTED_MODULE_7__/* ["default"] */ .Z)(Boolean(chatStatus === null || chatStatus === void 0 ? void 0 : chatStatus.is_user_eligible));
66742
  const {
66743
  setShowHelpCenter
66744
+ } = (0,_wordpress_data__WEBPACK_IMPORTED_MODULE_2__.useDispatch)(_stores__WEBPACK_IMPORTED_MODULE_8__/* .HELP_CENTER_STORE */ .aM);
66745
  (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.useEffect)(() => {
66746
  if ((data === null || data === void 0 ? void 0 : data.status) === 'assigned') {
66747
  setShowHelpCenter(true);
66752
  isSimpleSite
66753
  } = (0,react_redux__WEBPACK_IMPORTED_MODULE_3__/* .useSelector */ .v9)(state => {
66754
  return {
66755
+ siteId: (0,calypso_state_ui_selectors__WEBPACK_IMPORTED_MODULE_9__/* ["default"] */ .Z)(state),
66756
+ isSimpleSite: (0,calypso_state_sites_selectors_is_simple_site__WEBPACK_IMPORTED_MODULE_10__/* ["default"] */ .Z)(state)
66757
  };
66758
  }); // prefetch the current site and user
66759
 
66760
+ (0,_wordpress_data__WEBPACK_IMPORTED_MODULE_2__.useSelect)(select => select(_help_center_contact_form__WEBPACK_IMPORTED_MODULE_11__/* .SITE_STORE */ .j).getSite(siteId));
66761
+ (0,_wordpress_data__WEBPACK_IMPORTED_MODULE_2__.useSelect)(select => select(_stores__WEBPACK_IMPORTED_MODULE_8__/* .USER_STORE */ .Em).getCurrentUser());
66762
  const {
66763
  setDirectlyData
66764
+ } = (0,_wordpress_data__WEBPACK_IMPORTED_MODULE_2__.useDispatch)(_stores__WEBPACK_IMPORTED_MODULE_8__/* .HELP_CENTER_STORE */ .aM);
66765
+ (0,_automattic_data_stores__WEBPACK_IMPORTED_MODULE_6__/* .useSupportAvailability */ .p)('CHAT', isSimpleSite);
66766
  const {
66767
  data: supportData
66768
+ } = (0,_automattic_data_stores__WEBPACK_IMPORTED_MODULE_6__/* .useSupportAvailability */ .p)('OTHER', isSimpleSite);
66769
  (0,_hooks_use_still_need_help_url__WEBPACK_IMPORTED_MODULE_12__/* .useStillNeedHelpURL */ .A)();
66770
  (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.useEffect)(() => {
66771
  if (supportData !== null && supportData !== void 0 && supportData.is_user_eligible_for_directly) {
67438
  function useShouldRenderChatOption() {
67439
  const {
67440
  data: chatStatus
67441
+ } = (0,_automattic_data_stores__WEBPACK_IMPORTED_MODULE_0__/* .useSupportAvailability */ .p)('CHAT'); // when the user is looking at the help page, we want to be extra sure they don't start a chat without available operators
67442
+ // so in this case, let's make stale time 1 minute.
67443
+
67444
  const {
67445
  data,
67446
  isLoading
67447
+ } = (0,_automattic_happychat_connection__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .Z)(Boolean(chatStatus === null || chatStatus === void 0 ? void 0 : chatStatus.is_user_eligible), 60 * 1000);
67448
 
67449
  if (!(chatStatus !== null && chatStatus !== void 0 && chatStatus.is_user_eligible)) {
67450
  return {
71584
 
71585
  this.apiVersion = '1.1';
71586
  }
71587
+ /**
71588
+ * Add a token to this instance of WPCOM.
71589
+ * When loaded, the token is applied to the param object of each subsequent request.
71590
+ *
71591
+ * @param {string} [token] - oauth token
71592
+ */
71593
+
71594
+ WPCOM.prototype.loadToken = function (token) {
71595
+ this.token = token;
71596
+ };
71597
+ /**
71598
+ * Returns a boolean representing whether or not the token has been loaded.
71599
+ *
71600
+ * @returns {boolean} oauth token
71601
+ */
71602
+
71603
+
71604
+ WPCOM.prototype.isTokenLoaded = function () {
71605
+ return this.token !== undefined;
71606
+ };
71607
  /**
71608
  * Return `Me` object instance
71609
  *
71610
  * @returns {Me} Me instance
71611
  */
71612
 
71613
+
71614
  WPCOM.prototype.me = function () {
71615
  return new _lib_me__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .Z(this);
71616
  };
76680
 
76681
  if (body) {
76682
  params.body = body;
76683
+ } // OAuth token
76684
+
76685
+
76686
+ if (this.token) {
76687
+ params.token = this.token;
76688
  }
76689
 
76690
  debug('params: %o', params); // if callback is provided, behave traditionally
help-center/dist/help-center.min.js CHANGED
@@ -9,7 +9,7 @@
9
  * Copyright(c) 2012-2014 Roman Shtylman
10
  * Copyright(c) 2015 Douglas Christopher Wilson
11
  * MIT Licensed
12
- */t.parse=function(e,t){if("string"!=typeof e)throw new TypeError("argument str must be a string");for(var r={},i=t||{},a=e.split(o),u=i.decode||n,c=0;c<a.length;c++){var l=a[c],d=l.indexOf("=");if(!(d<0)){var p=l.substr(0,d).trim(),f=l.substr(++d,l.length).trim();'"'==f[0]&&(f=f.slice(1,-1)),null==r[p]&&(r[p]=s(f,u))}}return r},t.serialize=function(e,t,n){var o=n||{},s=o.encode||r;if("function"!=typeof s)throw new TypeError("option encode is invalid");if(!i.test(e))throw new TypeError("argument name is invalid");var a=s(t);if(a&&!i.test(a))throw new TypeError("argument val is invalid");var u=e+"="+a;if(null!=o.maxAge){var c=o.maxAge-0;if(isNaN(c)||!isFinite(c))throw new TypeError("option maxAge is invalid");u+="; Max-Age="+Math.floor(c)}if(o.domain){if(!i.test(o.domain))throw new TypeError("option domain is invalid");u+="; Domain="+o.domain}if(o.path){if(!i.test(o.path))throw new TypeError("option path is invalid");u+="; Path="+o.path}if(o.expires){if("function"!=typeof o.expires.toUTCString)throw new TypeError("option expires is invalid");u+="; Expires="+o.expires.toUTCString()}o.httpOnly&&(u+="; HttpOnly");o.secure&&(u+="; Secure");if(o.sameSite){switch("string"==typeof o.sameSite?o.sameSite.toLowerCase():o.sameSite){case!0:u+="; SameSite=Strict";break;case"lax":u+="; SameSite=Lax";break;case"strict":u+="; SameSite=Strict";break;case"none":u+="; SameSite=None";break;default:throw new TypeError("option sameSite is invalid")}}return u};var n=decodeURIComponent,r=encodeURIComponent,o=/; */,i=/^[\u0009\u0020-\u007e\u0080-\u00ff]+$/;function s(e,t){try{return t(e)}catch(n){return e}}},77111:(e,t,n)=>{var r=n(9859),o=n(26733),i=n(59821),s=r.TypeError;e.exports=function(e){if(o(e))return e;throw s(i(e)+" is not a function")}},88505:(e,t,n)=>{var r=n(9859),o=n(26733),i=r.String,s=r.TypeError;e.exports=function(e){if("object"==typeof e||o(e))return e;throw s("Can't set "+i(e)+" as a prototype")}},21176:(e,t,n)=>{var r=n(9859),o=n(85052),i=r.String,s=r.TypeError;e.exports=function(e){if(o(e))return e;throw s(i(e)+" is not an object")}},53339:e=>{e.exports="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof DataView},9918:(e,t,n)=>{"use strict";var r,o,i,s=n(53339),a=n(7400),u=n(9859),c=n(26733),l=n(85052),d=n(98270),p=n(81589),f=n(59821),h=n(75762),m=n(27487),g=n(31787).f,y=n(91321),v=n(67567),b=n(56540),w=n(70095),_=n(81441),E=u.Int8Array,S=E&&E.prototype,C=u.Uint8ClampedArray,P=C&&C.prototype,k=E&&v(E),I=S&&v(S),A=Object.prototype,T=u.TypeError,R=w("toStringTag"),O=_("TYPED_ARRAY_TAG"),x=_("TYPED_ARRAY_CONSTRUCTOR"),F=s&&!!b&&"Opera"!==p(u.opera),L=!1,U={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},Z={BigInt64Array:8,BigUint64Array:8},D=function(e){if(!l(e))return!1;var t=p(e);return d(U,t)||d(Z,t)};for(r in U)(i=(o=u[r])&&o.prototype)?h(i,x,o):F=!1;for(r in Z)(i=(o=u[r])&&o.prototype)&&h(i,x,o);if((!F||!c(k)||k===Function.prototype)&&(k=function(){throw T("Incorrect invocation")},F))for(r in U)u[r]&&b(u[r],k);if((!F||!I||I===A)&&(I=k.prototype,F))for(r in U)u[r]&&b(u[r].prototype,I);if(F&&v(P)!==I&&b(P,I),a&&!d(I,R))for(r in L=!0,g(I,R,{get:function(){return l(this)?this[O]:void 0}}),U)u[r]&&h(u[r],O,r);e.exports={NATIVE_ARRAY_BUFFER_VIEWS:F,TYPED_ARRAY_CONSTRUCTOR:x,TYPED_ARRAY_TAG:L&&O,aTypedArray:function(e){if(D(e))return e;throw T("Target is not a typed array")},aTypedArrayConstructor:function(e){if(c(e)&&(!b||y(k,e)))return e;throw T(f(e)+" is not a typed array constructor")},exportTypedArrayMethod:function(e,t,n){if(a){if(n)for(var r in U){var o=u[r];if(o&&d(o.prototype,e))try{delete o.prototype[e]}catch(i){}}I[e]&&!n||m(I,e,n?t:F&&S[e]||t)}},exportTypedArrayStaticMethod:function(e,t,n){var r,o;if(a){if(b){if(n)for(r in U)if((o=u[r])&&d(o,e))try{delete o[e]}catch(i){}if(k[e]&&!n)return;try{return m(k,e,n?t:F&&k[e]||t)}catch(i){}}for(r in U)!(o=u[r])||o[e]&&!n||m(o,e,t)}},isView:function(e){if(!l(e))return!1;var t=p(e);return"DataView"===t||d(U,t)||d(Z,t)},isTypedArray:D,TypedArray:k,TypedArrayPrototype:I}},19540:(e,t,n)=>{var r=n(10905),o=n(43231),i=n(39646),s=function(e){return function(t,n,s){var a,u=r(t),c=i(u),l=o(s,c);if(e&&n!=n){for(;c>l;)if((a=u[l++])!=a)return!0}else for(;c>l;l++)if((e||l in u)&&u[l]===n)return e||l||0;return!e&&-1}};e.exports={includes:s(!0),indexOf:s(!1)}},1909:(e,t,n)=>{var r=n(65968);e.exports=r([].slice)},27079:(e,t,n)=>{var r=n(65968),o=r({}.toString),i=r("".slice);e.exports=function(e){return i(o(e),8,-1)}},81589:(e,t,n)=>{var r=n(9859),o=n(71601),i=n(26733),s=n(27079),a=n(70095)("toStringTag"),u=r.Object,c="Arguments"==s(function(){return arguments}());e.exports=o?s:function(e){var t,n,r;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(n=function(e,t){try{return e[t]}catch(n){}}(t=u(e),a))?n:c?s(t):"Object"==(r=s(t))&&i(t.callee)?"Arguments":r}},77081:(e,t,n)=>{var r=n(98270),o=n(4826),i=n(97933),s=n(31787);e.exports=function(e,t){for(var n=o(t),a=s.f,u=i.f,c=0;c<n.length;c++){var l=n[c];r(e,l)||a(e,l,u(t,l))}}},27528:(e,t,n)=>{var r=n(24229);e.exports=!r((function(){function e(){}return e.prototype.constructor=null,Object.getPrototypeOf(new e)!==e.prototype}))},75762:(e,t,n)=>{var r=n(7400),o=n(31787),i=n(65358);e.exports=r?function(e,t,n){return o.f(e,t,i(1,n))}:function(e,t,n){return e[t]=n,e}},65358:e=>{e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},7400:(e,t,n)=>{var r=n(24229);e.exports=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},22635:(e,t,n)=>{var r=n(9859),o=n(85052),i=r.document,s=o(i)&&o(i.createElement);e.exports=function(e){return s?i.createElement(e):{}}},32023:(e,t,n)=>{var r=n(80598);e.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(r)},28801:(e,t,n)=>{var r=n(27079),o=n(9859);e.exports="process"==r(o.process)},80598:(e,t,n)=>{var r=n(31333);e.exports=r("navigator","userAgent")||""},6358:(e,t,n)=>{var r,o,i=n(9859),s=n(80598),a=i.process,u=i.Deno,c=a&&a.versions||u&&u.version,l=c&&c.v8;l&&(o=(r=l.split("."))[0]>0&&r[0]<4?1:+(r[0]+r[1])),!o&&s&&(!(r=s.match(/Edge\/(\d+)/))||r[1]>=74)&&(r=s.match(/Chrome\/(\d+)/))&&(o=+r[1]),e.exports=o},13837:e=>{e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},23103:(e,t,n)=>{var r=n(9859),o=n(97933).f,i=n(75762),s=n(27487),a=n(12079),u=n(77081),c=n(46541);e.exports=function(e,t){var n,l,d,p,f,h=e.target,m=e.global,g=e.stat;if(n=m?r:g?r[h]||a(h,{}):(r[h]||{}).prototype)for(l in t){if(p=t[l],d=e.noTargetGet?(f=o(n,l))&&f.value:n[l],!c(m?l:h+(g?".":"#")+l,e.forced)&&void 0!==d){if(typeof p==typeof d)continue;u(p,d)}(e.sham||d&&d.sham)&&i(p,"sham",!0),s(n,l,p,e)}}},24229:e=>{e.exports=function(e){try{return!!e()}catch(t){return!0}}},53171:e=>{var t=Function.prototype,n=t.apply,r=t.bind,o=t.call;e.exports="object"==typeof Reflect&&Reflect.apply||(r?o.bind(n):function(){return o.apply(n,arguments)})},97636:(e,t,n)=>{var r=n(65968),o=n(77111),i=r(r.bind);e.exports=function(e,t){return o(e),void 0===t?e:i?i(e,t):function(){return e.apply(t,arguments)}}},20266:e=>{var t=Function.prototype.call;e.exports=t.bind?t.bind(t):function(){return t.apply(t,arguments)}},51805:(e,t,n)=>{var r=n(7400),o=n(98270),i=Function.prototype,s=r&&Object.getOwnPropertyDescriptor,a=o(i,"name"),u=a&&"something"===function(){}.name,c=a&&(!r||r&&s(i,"name").configurable);e.exports={EXISTS:a,PROPER:u,CONFIGURABLE:c}},65968:e=>{var t=Function.prototype,n=t.bind,r=t.call,o=n&&n.bind(r);e.exports=n?function(e){return e&&o(r,e)}:function(e){return e&&function(){return r.apply(e,arguments)}}},31333:(e,t,n)=>{var r=n(9859),o=n(26733),i=function(e){return o(e)?e:void 0};e.exports=function(e,t){return arguments.length<2?i(r[e]):r[e]&&r[e][t]}},55300:(e,t,n)=>{var r=n(77111);e.exports=function(e,t){var n=e[t];return null==n?void 0:r(n)}},9859:e=>{var t=function(e){return e&&e.Math==Math&&e};e.exports=t("object"==typeof globalThis&&globalThis)||t("object"==typeof window&&window)||t("object"==typeof self&&self)||t("object"==typeof window&&window)||function(){return this}()||Function("return this")()},98270:(e,t,n)=>{var r=n(65968),o=n(92991),i=r({}.hasOwnProperty);e.exports=Object.hasOwn||function(e,t){return i(o(e),t)}},95977:e=>{e.exports={}},53777:(e,t,n)=>{var r=n(31333);e.exports=r("document","documentElement")},64394:(e,t,n)=>{var r=n(7400),o=n(24229),i=n(22635);e.exports=!r&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},9337:(e,t,n)=>{var r=n(9859),o=n(65968),i=n(24229),s=n(27079),a=r.Object,u=o("".split);e.exports=i((function(){return!a("z").propertyIsEnumerable(0)}))?function(e){return"String"==s(e)?u(e,""):a(e)}:a},8511:(e,t,n)=>{var r=n(65968),o=n(26733),i=n(85353),s=r(Function.toString);o(i.inspectSource)||(i.inspectSource=function(e){return s(e)}),e.exports=i.inspectSource},56407:(e,t,n)=>{var r,o,i,s=n(18694),a=n(9859),u=n(65968),c=n(85052),l=n(75762),d=n(98270),p=n(85353),f=n(44399),h=n(95977),m="Object already initialized",g=a.TypeError,y=a.WeakMap;if(s||p.state){var v=p.state||(p.state=new y),b=u(v.get),w=u(v.has),_=u(v.set);r=function(e,t){if(w(v,e))throw new g(m);return t.facade=e,_(v,e,t),t},o=function(e){return b(v,e)||{}},i=function(e){return w(v,e)}}else{var E=f("state");h[E]=!0,r=function(e,t){if(d(e,E))throw new g(m);return t.facade=e,l(e,E,t),t},o=function(e){return d(e,E)?e[E]:{}},i=function(e){return d(e,E)}}e.exports={set:r,get:o,has:i,enforce:function(e){return i(e)?o(e):r(e,{})},getterFor:function(e){return function(t){var n;if(!c(t)||(n=o(t)).type!==e)throw g("Incompatible receiver, "+e+" required");return n}}}},26733:e=>{e.exports=function(e){return"function"==typeof e}},46541:(e,t,n)=>{var r=n(24229),o=n(26733),i=/#|\.prototype\./,s=function(e,t){var n=u[a(e)];return n==l||n!=c&&(o(t)?r(t):!!t)},a=s.normalize=function(e){return String(e).replace(i,".").toLowerCase()},u=s.data={},c=s.NATIVE="N",l=s.POLYFILL="P";e.exports=s},85052:(e,t,n)=>{var r=n(26733);e.exports=function(e){return"object"==typeof e?null!==e:r(e)}},24231:e=>{e.exports=!1},49395:(e,t,n)=>{var r=n(9859),o=n(31333),i=n(26733),s=n(91321),a=n(66969),u=r.Object;e.exports=a?function(e){return"symbol"==typeof e}:function(e){var t=o("Symbol");return i(t)&&s(t.prototype,u(e))}},39646:(e,t,n)=>{var r=n(34237);e.exports=function(e){return r(e.length)}},63839:(e,t,n)=>{var r=n(6358),o=n(24229);e.exports=!!Object.getOwnPropertySymbols&&!o((function(){var e=Symbol();return!String(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&r&&r<41}))},18694:(e,t,n)=>{var r=n(9859),o=n(26733),i=n(8511),s=r.WeakMap;e.exports=o(s)&&/native code/.test(i(s))},31787:(e,t,n)=>{var r=n(9859),o=n(7400),i=n(64394),s=n(21176),a=n(39310),u=r.TypeError,c=Object.defineProperty;t.f=o?c:function(e,t,n){if(s(e),t=a(t),s(n),i)try{return c(e,t,n)}catch(r){}if("get"in n||"set"in n)throw u("Accessors not supported");return"value"in n&&(e[t]=n.value),e}},97933:(e,t,n)=>{var r=n(7400),o=n(20266),i=n(19195),s=n(65358),a=n(10905),u=n(39310),c=n(98270),l=n(64394),d=Object.getOwnPropertyDescriptor;t.f=r?d:function(e,t){if(e=a(e),t=u(t),l)try{return d(e,t)}catch(n){}if(c(e,t))return s(!o(i.f,e,t),e[t])}},78151:(e,t,n)=>{var r=n(90140),o=n(13837).concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return r(e,o)}},10894:(e,t)=>{t.f=Object.getOwnPropertySymbols},67567:(e,t,n)=>{var r=n(9859),o=n(98270),i=n(26733),s=n(92991),a=n(44399),u=n(27528),c=a("IE_PROTO"),l=r.Object,d=l.prototype;e.exports=u?l.getPrototypeOf:function(e){var t=s(e);if(o(t,c))return t[c];var n=t.constructor;return i(n)&&t instanceof n?n.prototype:t instanceof l?d:null}},91321:(e,t,n)=>{var r=n(65968);e.exports=r({}.isPrototypeOf)},90140:(e,t,n)=>{var r=n(65968),o=n(98270),i=n(10905),s=n(19540).indexOf,a=n(95977),u=r([].push);e.exports=function(e,t){var n,r=i(e),c=0,l=[];for(n in r)!o(a,n)&&o(r,n)&&u(l,n);for(;t.length>c;)o(r,n=t[c++])&&(~s(l,n)||u(l,n));return l}},19195:(e,t)=>{"use strict";var n={}.propertyIsEnumerable,r=Object.getOwnPropertyDescriptor,o=r&&!n.call({1:2},1);t.f=o?function(e){var t=r(this,e);return!!t&&t.enumerable}:n},56540:(e,t,n)=>{var r=n(65968),o=n(21176),i=n(88505);e.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var e,t=!1,n={};try{(e=r(Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set))(n,[]),t=n instanceof Array}catch(s){}return function(n,r){return o(n),i(r),t?e(n,r):n.__proto__=r,n}}():void 0)},32914:(e,t,n)=>{var r=n(9859),o=n(20266),i=n(26733),s=n(85052),a=r.TypeError;e.exports=function(e,t){var n,r;if("string"===t&&i(n=e.toString)&&!s(r=o(n,e)))return r;if(i(n=e.valueOf)&&!s(r=o(n,e)))return r;if("string"!==t&&i(n=e.toString)&&!s(r=o(n,e)))return r;throw a("Can't convert object to primitive value")}},4826:(e,t,n)=>{var r=n(31333),o=n(65968),i=n(78151),s=n(10894),a=n(21176),u=o([].concat);e.exports=r("Reflect","ownKeys")||function(e){var t=i.f(a(e)),n=s.f;return n?u(t,n(e)):t}},27487:(e,t,n)=>{var r=n(9859),o=n(26733),i=n(98270),s=n(75762),a=n(12079),u=n(8511),c=n(56407),l=n(51805).CONFIGURABLE,d=c.get,p=c.enforce,f=String(String).split("String");(e.exports=function(e,t,n,u){var c,d=!!u&&!!u.unsafe,h=!!u&&!!u.enumerable,m=!!u&&!!u.noTargetGet,g=u&&void 0!==u.name?u.name:t;o(n)&&("Symbol("===String(g).slice(0,7)&&(g="["+String(g).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),(!i(n,"name")||l&&n.name!==g)&&s(n,"name",g),(c=p(n)).source||(c.source=f.join("string"==typeof g?g:""))),e!==r?(d?!m&&e[t]&&(h=!0):delete e[t],h?e[t]=n:s(e,t,n)):h?e[t]=n:a(t,n)})(Function.prototype,"toString",(function(){return o(this)&&d(this).source||u(this)}))},58885:(e,t,n)=>{var r=n(9859).TypeError;e.exports=function(e){if(null==e)throw r("Can't call method on "+e);return e}},12079:(e,t,n)=>{var r=n(9859),o=Object.defineProperty;e.exports=function(e,t){try{o(r,e,{value:t,configurable:!0,writable:!0})}catch(n){r[e]=t}return t}},44399:(e,t,n)=>{var r=n(33036),o=n(81441),i=r("keys");e.exports=function(e){return i[e]||(i[e]=o(e))}},85353:(e,t,n)=>{var r=n(9859),o=n(12079),i="__core-js_shared__",s=r[i]||o(i,{});e.exports=s},33036:(e,t,n)=>{var r=n(24231),o=n(85353);(e.exports=function(e,t){return o[e]||(o[e]=void 0!==t?t:{})})("versions",[]).push({version:"3.19.1",mode:r?"pure":"global",copyright:"© 2021 Denis Pushkarev (zloirock.ru)"})},55795:(e,t,n)=>{var r,o,i,s,a=n(9859),u=n(53171),c=n(97636),l=n(26733),d=n(98270),p=n(24229),f=n(53777),h=n(1909),m=n(22635),g=n(32023),y=n(28801),v=a.setImmediate,b=a.clearImmediate,w=a.process,_=a.Dispatch,E=a.Function,S=a.MessageChannel,C=a.String,P=0,k={},I="onreadystatechange";try{r=a.location}catch(x){}var A=function(e){if(d(k,e)){var t=k[e];delete k[e],t()}},T=function(e){return function(){A(e)}},R=function(e){A(e.data)},O=function(e){a.postMessage(C(e),r.protocol+"//"+r.host)};v&&b||(v=function(e){var t=h(arguments,1);return k[++P]=function(){u(l(e)?e:E(e),void 0,t)},o(P),P},b=function(e){delete k[e]},y?o=function(e){w.nextTick(T(e))}:_&&_.now?o=function(e){_.now(T(e))}:S&&!g?(s=(i=new S).port2,i.port1.onmessage=R,o=c(s.postMessage,s)):a.addEventListener&&l(a.postMessage)&&!a.importScripts&&r&&"file:"!==r.protocol&&!p(O)?(o=O,a.addEventListener("message",R,!1)):o=I in m("script")?function(e){f.appendChild(m("script")).onreadystatechange=function(){f.removeChild(this),A(e)}}:function(e){setTimeout(T(e),0)}),e.exports={set:v,clear:b}},43231:(e,t,n)=>{var r=n(43329),o=Math.max,i=Math.min;e.exports=function(e,t){var n=r(e);return n<0?o(n+t,0):i(n,t)}},10905:(e,t,n)=>{var r=n(9337),o=n(58885);e.exports=function(e){return r(o(e))}},43329:e=>{var t=Math.ceil,n=Math.floor;e.exports=function(e){var r=+e;return r!=r||0===r?0:(r>0?n:t)(r)}},34237:(e,t,n)=>{var r=n(43329),o=Math.min;e.exports=function(e){return e>0?o(r(e),9007199254740991):0}},92991:(e,t,n)=>{var r=n(9859),o=n(58885),i=r.Object;e.exports=function(e){return i(o(e))}},84262:(e,t,n)=>{var r=n(9859),o=n(72002),i=r.RangeError;e.exports=function(e,t){var n=o(e);if(n%t)throw i("Wrong offset");return n}},72002:(e,t,n)=>{var r=n(9859),o=n(43329),i=r.RangeError;e.exports=function(e){var t=o(e);if(t<0)throw i("The argument can't be less than 0");return t}},92066:(e,t,n)=>{var r=n(9859),o=n(20266),i=n(85052),s=n(49395),a=n(55300),u=n(32914),c=n(70095),l=r.TypeError,d=c("toPrimitive");e.exports=function(e,t){if(!i(e)||s(e))return e;var n,r=a(e,d);if(r){if(void 0===t&&(t="default"),n=o(r,e,t),!i(n)||s(n))return n;throw l("Can't convert object to primitive value")}return void 0===t&&(t="number"),u(e,t)}},39310:(e,t,n)=>{var r=n(92066),o=n(49395);e.exports=function(e){var t=r(e,"string");return o(t)?t:t+""}},71601:(e,t,n)=>{var r={};r[n(70095)("toStringTag")]="z",e.exports="[object z]"===String(r)},59821:(e,t,n)=>{var r=n(9859).String;e.exports=function(e){try{return r(e)}catch(t){return"Object"}}},81441:(e,t,n)=>{var r=n(65968),o=0,i=Math.random(),s=r(1..toString);e.exports=function(e){return"Symbol("+(void 0===e?"":e)+")_"+s(++o+i,36)}},66969:(e,t,n)=>{var r=n(63839);e.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},70095:(e,t,n)=>{var r=n(9859),o=n(33036),i=n(98270),s=n(81441),a=n(63839),u=n(66969),c=o("wks"),l=r.Symbol,d=l&&l.for,p=u?l:l&&l.withoutSetter||s;e.exports=function(e){if(!i(c,e)||!a&&"string"!=typeof c[e]){var t="Symbol."+e;a&&i(l,e)?c[e]=l[e]:c[e]=u&&d?d(t):p(t)}return c[e]}},65688:(e,t,n)=>{"use strict";var r=n(9859),o=n(9918),i=n(39646),s=n(84262),a=n(92991),u=n(24229),c=r.RangeError,l=o.aTypedArray;(0,o.exportTypedArrayMethod)("set",(function(e){l(this);var t=s(arguments.length>1?arguments[1]:void 0,1),n=this.length,r=a(e),o=i(r),u=0;if(o+t>n)throw c("Wrong length");for(;u<o;)this[t+u]=r[u++]}),u((function(){new Int8Array(1).set({})})))},46106:(e,t,n)=>{var r=n(23103),o=n(9859),i=n(55795);r({global:!0,bind:!0,enumerable:!0,forced:!o.setImmediate||!o.clearImmediate},{setImmediate:i.set,clearImmediate:i.clear})},74334:e=>{!function(){"use strict";var t=[],n=3988292384;function r(e){var t,r,o,i,s=-1;for(t=0,o=e.length;t<o;t+=1){for(i=255&(s^e[t]),r=0;r<8;r+=1)1==(1&i)?i=i>>>1^n:i>>>=1;s=s>>>8^i}return-1^s}function o(e,n){var r,i,s;if(void 0!==o.crc&&n&&e||(o.crc=-1,e)){for(r=o.crc,i=0,s=e.length;i<s;i+=1)r=r>>>8^t[255&(r^e[i])];return o.crc=r,-1^r}}!function(){var e,r,o;for(r=0;r<256;r+=1){for(e=r,o=0;o<8;o+=1)1&e?e=n^e>>>1:e>>>=1;t[r]=e>>>0}}(),e.exports=function(e,t){var n;e="string"==typeof e?(n=e,Array.prototype.map.call(n,(function(e){return e.charCodeAt(0)}))):e;return((t?r(e):o(e))>>>0).toString(16)},e.exports.direct=r,e.exports.table=o}()},65881:e=>{var t=1e3,n=60*t,r=60*n,o=24*r,i=7*o,s=365.25*o;function a(e,t,n,r){var o=t>=1.5*n;return Math.round(e/n)+" "+r+(o?"s":"")}e.exports=function(e,u){u=u||{};var c=typeof e;if("string"===c&&e.length>0)return function(e){if((e=String(e)).length>100)return;var a=/^(-?(?:\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(!a)return;var u=parseFloat(a[1]);switch((a[2]||"ms").toLowerCase()){case"years":case"year":case"yrs":case"yr":case"y":return u*s;case"weeks":case"week":case"w":return u*i;case"days":case"day":case"d":return u*o;case"hours":case"hour":case"hrs":case"hr":case"h":return u*r;case"minutes":case"minute":case"mins":case"min":case"m":return u*n;case"seconds":case"second":case"secs":case"sec":case"s":return u*t;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return u;default:return}}(e);if("number"===c&&isFinite(e))return u.long?function(e){var i=Math.abs(e);if(i>=o)return a(e,i,o,"day");if(i>=r)return a(e,i,r,"hour");if(i>=n)return a(e,i,n,"minute");if(i>=t)return a(e,i,t,"second");return e+" ms"}(e):function(e){var i=Math.abs(e);if(i>=o)return Math.round(e/o)+"d";if(i>=r)return Math.round(e/r)+"h";if(i>=n)return Math.round(e/n)+"m";if(i>=t)return Math.round(e/t)+"s";return e+"ms"}(e);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(e))}},24869:e=>{e.exports=function e(t){return Object.freeze(t),Object.getOwnPropertyNames(t).forEach((function(n){!t.hasOwnProperty(n)||null===t[n]||"object"!=typeof t[n]&&"function"!=typeof t[n]||Object.isFrozen(t[n])||e(t[n])})),t}},44065:(e,t,n)=>{e.exports=n(14980),e.exports.parser=n(90820)},14980:(e,t,n)=>{var r=n(8113),o=n(17056),i=n(39712)("engine.io-client:socket"),s=n(92543),a=n(90820),u=n(14243),c=n(54355);function l(e,t){if(!(this instanceof l))return new l(e,t);t=t||{},e&&"object"==typeof e&&(t=e,e=null),e?(e=u(e),t.hostname=e.host,t.secure="https"===e.protocol||"wss"===e.protocol,t.port=e.port,e.query&&(t.query=e.query)):t.host&&(t.hostname=u(t.host).host),this.secure=null!=t.secure?t.secure:"undefined"!=typeof location&&"https:"===location.protocol,t.hostname&&!t.port&&(t.port=this.secure?"443":"80"),this.agent=t.agent||!1,this.hostname=t.hostname||("undefined"!=typeof location?location.hostname:"localhost"),this.port=t.port||("undefined"!=typeof location&&location.port?location.port:this.secure?443:80),this.query=t.query||{},"string"==typeof this.query&&(this.query=c.decode(this.query)),this.upgrade=!1!==t.upgrade,this.path=(t.path||"/engine.io").replace(/\/$/,"")+"/",this.forceJSONP=!!t.forceJSONP,this.jsonp=!1!==t.jsonp,this.forceBase64=!!t.forceBase64,this.enablesXDR=!!t.enablesXDR,this.withCredentials=!1!==t.withCredentials,this.timestampParam=t.timestampParam||"t",this.timestampRequests=t.timestampRequests,this.transports=t.transports||["polling","websocket"],this.transportOptions=t.transportOptions||{},this.readyState="",this.writeBuffer=[],this.prevBufferLen=0,this.policyPort=t.policyPort||843,this.rememberUpgrade=t.rememberUpgrade||!1,this.binaryType=null,this.onlyBinaryUpgrades=t.onlyBinaryUpgrades,this.perMessageDeflate=!1!==t.perMessageDeflate&&(t.perMessageDeflate||{}),!0===this.perMessageDeflate&&(this.perMessageDeflate={}),this.perMessageDeflate&&null==this.perMessageDeflate.threshold&&(this.perMessageDeflate.threshold=1024),this.pfx=t.pfx||null,this.key=t.key||null,this.passphrase=t.passphrase||null,this.cert=t.cert||null,this.ca=t.ca||null,this.ciphers=t.ciphers||null,this.rejectUnauthorized=void 0===t.rejectUnauthorized||t.rejectUnauthorized,this.forceNode=!!t.forceNode,this.isReactNative="undefined"!=typeof navigator&&"string"==typeof navigator.product&&"reactnative"===navigator.product.toLowerCase(),("undefined"==typeof self||this.isReactNative)&&(t.extraHeaders&&Object.keys(t.extraHeaders).length>0&&(this.extraHeaders=t.extraHeaders),t.localAddress&&(this.localAddress=t.localAddress)),this.id=null,this.upgrades=null,this.pingInterval=null,this.pingTimeout=null,this.pingIntervalTimer=null,this.pingTimeoutTimer=null,this.open()}e.exports=l,l.priorWebsocketSuccess=!1,o(l.prototype),l.protocol=a.protocol,l.Socket=l,l.Transport=n(5344),l.transports=n(8113),l.parser=n(90820),l.prototype.createTransport=function(e){i('creating transport "%s"',e);var t=function(e){var t={};for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}(this.query);t.EIO=a.protocol,t.transport=e;var n=this.transportOptions[e]||{};return this.id&&(t.sid=this.id),new r[e]({query:t,socket:this,agent:n.agent||this.agent,hostname:n.hostname||this.hostname,port:n.port||this.port,secure:n.secure||this.secure,path:n.path||this.path,forceJSONP:n.forceJSONP||this.forceJSONP,jsonp:n.jsonp||this.jsonp,forceBase64:n.forceBase64||this.forceBase64,enablesXDR:n.enablesXDR||this.enablesXDR,withCredentials:n.withCredentials||this.withCredentials,timestampRequests:n.timestampRequests||this.timestampRequests,timestampParam:n.timestampParam||this.timestampParam,policyPort:n.policyPort||this.policyPort,pfx:n.pfx||this.pfx,key:n.key||this.key,passphrase:n.passphrase||this.passphrase,cert:n.cert||this.cert,ca:n.ca||this.ca,ciphers:n.ciphers||this.ciphers,rejectUnauthorized:n.rejectUnauthorized||this.rejectUnauthorized,perMessageDeflate:n.perMessageDeflate||this.perMessageDeflate,extraHeaders:n.extraHeaders||this.extraHeaders,forceNode:n.forceNode||this.forceNode,localAddress:n.localAddress||this.localAddress,requestTimeout:n.requestTimeout||this.requestTimeout,protocols:n.protocols||void 0,isReactNative:this.isReactNative})},l.prototype.open=function(){var e;if(this.rememberUpgrade&&l.priorWebsocketSuccess&&-1!==this.transports.indexOf("websocket"))e="websocket";else{if(0===this.transports.length){var t=this;return void setTimeout((function(){t.emit("error","No transports available")}),0)}e=this.transports[0]}this.readyState="opening";try{e=this.createTransport(e)}catch(n){return this.transports.shift(),void this.open()}e.open(),this.setTransport(e)},l.prototype.setTransport=function(e){i("setting transport %s",e.name);var t=this;this.transport&&(i("clearing existing transport %s",this.transport.name),this.transport.removeAllListeners()),this.transport=e,e.on("drain",(function(){t.onDrain()})).on("packet",(function(e){t.onPacket(e)})).on("error",(function(e){t.onError(e)})).on("close",(function(){t.onClose("transport close")}))},l.prototype.probe=function(e){i('probing transport "%s"',e);var t=this.createTransport(e,{probe:1}),n=!1,r=this;function o(){if(r.onlyBinaryUpgrades){var o=!this.supportsBinary&&r.transport.supportsBinary;n=n||o}n||(i('probe transport "%s" opened',e),t.send([{type:"ping",data:"probe"}]),t.once("packet",(function(o){if(!n)if("pong"===o.type&&"probe"===o.data){if(i('probe transport "%s" pong',e),r.upgrading=!0,r.emit("upgrading",t),!t)return;l.priorWebsocketSuccess="websocket"===t.name,i('pausing current transport "%s"',r.transport.name),r.transport.pause((function(){n||"closed"!==r.readyState&&(i("changing transport and sending upgrade packet"),p(),r.setTransport(t),t.send([{type:"upgrade"}]),r.emit("upgrade",t),t=null,r.upgrading=!1,r.flush())}))}else{i('probe transport "%s" failed',e);var s=new Error("probe error");s.transport=t.name,r.emit("upgradeError",s)}})))}function s(){n||(n=!0,p(),t.close(),t=null)}function a(n){var o=new Error("probe error: "+n);o.transport=t.name,s(),i('probe transport "%s" failed because of error: %s',e,n),r.emit("upgradeError",o)}function u(){a("transport closed")}function c(){a("socket closed")}function d(e){t&&e.name!==t.name&&(i('"%s" works - aborting "%s"',e.name,t.name),s())}function p(){t.removeListener("open",o),t.removeListener("error",a),t.removeListener("close",u),r.removeListener("close",c),r.removeListener("upgrading",d)}l.priorWebsocketSuccess=!1,t.once("open",o),t.once("error",a),t.once("close",u),this.once("close",c),this.once("upgrading",d),t.open()},l.prototype.onOpen=function(){if(i("socket open"),this.readyState="open",l.priorWebsocketSuccess="websocket"===this.transport.name,this.emit("open"),this.flush(),"open"===this.readyState&&this.upgrade&&this.transport.pause){i("starting upgrade probes");for(var e=0,t=this.upgrades.length;e<t;e++)this.probe(this.upgrades[e])}},l.prototype.onPacket=function(e){if("opening"===this.readyState||"open"===this.readyState||"closing"===this.readyState)switch(i('socket receive: type "%s", data "%s"',e.type,e.data),this.emit("packet",e),this.emit("heartbeat"),e.type){case"open":this.onHandshake(JSON.parse(e.data));break;case"pong":this.setPing(),this.emit("pong");break;case"error":var t=new Error("server error");t.code=e.data,this.onError(t);break;case"message":this.emit("data",e.data),this.emit("message",e.data)}else i('packet received with socket readyState "%s"',this.readyState)},l.prototype.onHandshake=function(e){this.emit("handshake",e),this.id=e.sid,this.transport.query.sid=e.sid,this.upgrades=this.filterUpgrades(e.upgrades),this.pingInterval=e.pingInterval,this.pingTimeout=e.pingTimeout,this.onOpen(),"closed"!==this.readyState&&(this.setPing(),this.removeListener("heartbeat",this.onHeartbeat),this.on("heartbeat",this.onHeartbeat))},l.prototype.onHeartbeat=function(e){clearTimeout(this.pingTimeoutTimer);var t=this;t.pingTimeoutTimer=setTimeout((function(){"closed"!==t.readyState&&t.onClose("ping timeout")}),e||t.pingInterval+t.pingTimeout)},l.prototype.setPing=function(){var e=this;clearTimeout(e.pingIntervalTimer),e.pingIntervalTimer=setTimeout((function(){i("writing ping packet - expecting pong within %sms",e.pingTimeout),e.ping(),e.onHeartbeat(e.pingTimeout)}),e.pingInterval)},l.prototype.ping=function(){var e=this;this.sendPacket("ping",(function(){e.emit("ping")}))},l.prototype.onDrain=function(){this.writeBuffer.splice(0,this.prevBufferLen),this.prevBufferLen=0,0===this.writeBuffer.length?this.emit("drain"):this.flush()},l.prototype.flush=function(){"closed"!==this.readyState&&this.transport.writable&&!this.upgrading&&this.writeBuffer.length&&(i("flushing %d packets in socket",this.writeBuffer.length),this.transport.send(this.writeBuffer),this.prevBufferLen=this.writeBuffer.length,this.emit("flush"))},l.prototype.write=l.prototype.send=function(e,t,n){return this.sendPacket("message",e,t,n),this},l.prototype.sendPacket=function(e,t,n,r){if("function"==typeof t&&(r=t,t=void 0),"function"==typeof n&&(r=n,n=null),"closing"!==this.readyState&&"closed"!==this.readyState){(n=n||{}).compress=!1!==n.compress;var o={type:e,data:t,options:n};this.emit("packetCreate",o),this.writeBuffer.push(o),r&&this.once("flush",r),this.flush()}},l.prototype.close=function(){if("opening"===this.readyState||"open"===this.readyState){this.readyState="closing";var e=this;this.writeBuffer.length?this.once("drain",(function(){this.upgrading?r():t()})):this.upgrading?r():t()}function t(){e.onClose("forced close"),i("socket closing - telling transport to close"),e.transport.close()}function n(){e.removeListener("upgrade",n),e.removeListener("upgradeError",n),t()}function r(){e.once("upgrade",n),e.once("upgradeError",n)}return this},l.prototype.onError=function(e){i("socket error %j",e),l.priorWebsocketSuccess=!1,this.emit("error",e),this.onClose("transport error",e)},l.prototype.onClose=function(e,t){if("opening"===this.readyState||"open"===this.readyState||"closing"===this.readyState){i('socket close with reason: "%s"',e);clearTimeout(this.pingIntervalTimer),clearTimeout(this.pingTimeoutTimer),this.transport.removeAllListeners("close"),this.transport.close(),this.transport.removeAllListeners(),this.readyState="closed",this.id=null,this.emit("close",e,t),this.writeBuffer=[],this.prevBufferLen=0}},l.prototype.filterUpgrades=function(e){for(var t=[],n=0,r=e.length;n<r;n++)~s(this.transports,e[n])&&t.push(e[n]);return t}},5344:(e,t,n)=>{var r=n(90820),o=n(17056);function i(e){this.path=e.path,this.hostname=e.hostname,this.port=e.port,this.secure=e.secure,this.query=e.query,this.timestampParam=e.timestampParam,this.timestampRequests=e.timestampRequests,this.readyState="",this.agent=e.agent||!1,this.socket=e.socket,this.enablesXDR=e.enablesXDR,this.withCredentials=e.withCredentials,this.pfx=e.pfx,this.key=e.key,this.passphrase=e.passphrase,this.cert=e.cert,this.ca=e.ca,this.ciphers=e.ciphers,this.rejectUnauthorized=e.rejectUnauthorized,this.forceNode=e.forceNode,this.isReactNative=e.isReactNative,this.extraHeaders=e.extraHeaders,this.localAddress=e.localAddress}e.exports=i,o(i.prototype),i.prototype.onError=function(e,t){var n=new Error(e);return n.type="TransportError",n.description=t,this.emit("error",n),this},i.prototype.open=function(){return"closed"!==this.readyState&&""!==this.readyState||(this.readyState="opening",this.doOpen()),this},i.prototype.close=function(){return"opening"!==this.readyState&&"open"!==this.readyState||(this.doClose(),this.onClose()),this},i.prototype.send=function(e){if("open"!==this.readyState)throw new Error("Transport not open");this.write(e)},i.prototype.onOpen=function(){this.readyState="open",this.writable=!0,this.emit("open")},i.prototype.onData=function(e){var t=r.decodePacket(e,this.socket.binaryType);this.onPacket(t)},i.prototype.onPacket=function(e){this.emit("packet",e)},i.prototype.onClose=function(){this.readyState="closed",this.emit("close")}},8113:(e,t,n)=>{var r=n(26891),o=n(91962),i=n(18320),s=n(68479);t.polling=function(e){var t=!1,n=!1,s=!1!==e.jsonp;if("undefined"!=typeof location){var a="https:"===location.protocol,u=location.port;u||(u=a?443:80),t=e.hostname!==location.hostname||u!==e.port,n=e.secure!==a}if(e.xdomain=t,e.xscheme=n,"open"in new r(e)&&!e.forceJSONP)return new o(e);if(!s)throw new Error("JSONP disabled");return new i(e)},t.websocket=s},18320:(e,t,n)=>{var r=n(65869),o=n(99238);e.exports=l;var i,s=/\n/g,a=/\\n/g;function u(){}function c(){return"undefined"!=typeof self?self:"undefined"!=typeof window||"undefined"!=typeof window?window:{}}function l(e){if(r.call(this,e),this.query=this.query||{},!i){var t=c();i=t.___eio=t.___eio||[]}this.index=i.length;var n=this;i.push((function(e){n.onData(e)})),this.query.j=this.index,"function"==typeof addEventListener&&addEventListener("beforeunload",(function(){n.script&&(n.script.onerror=u)}),!1)}o(l,r),l.prototype.supportsBinary=!1,l.prototype.doClose=function(){this.script&&(this.script.parentNode.removeChild(this.script),this.script=null),this.form&&(this.form.parentNode.removeChild(this.form),this.form=null,this.iframe=null),r.prototype.doClose.call(this)},l.prototype.doPoll=function(){var e=this,t=document.createElement("script");this.script&&(this.script.parentNode.removeChild(this.script),this.script=null),t.async=!0,t.src=this.uri(),t.onerror=function(t){e.onError("jsonp poll error",t)};var n=document.getElementsByTagName("script")[0];n?n.parentNode.insertBefore(t,n):(document.head||document.body).appendChild(t),this.script=t,"undefined"!=typeof navigator&&/gecko/i.test(navigator.userAgent)&&setTimeout((function(){var e=document.createElement("iframe");document.body.appendChild(e),document.body.removeChild(e)}),100)},l.prototype.doWrite=function(e,t){var n=this;if(!this.form){var r,o=document.createElement("form"),i=document.createElement("textarea"),u=this.iframeId="eio_iframe_"+this.index;o.className="socketio",o.style.position="absolute",o.style.top="-1000px",o.style.left="-1000px",o.target=u,o.method="POST",o.setAttribute("accept-charset","utf-8"),i.name="d",o.appendChild(i),document.body.appendChild(o),this.form=o,this.area=i}function c(){l(),t()}function l(){if(n.iframe)try{n.form.removeChild(n.iframe)}catch(t){n.onError("jsonp polling iframe removal error",t)}try{var e='<iframe src="javascript:0" name="'+n.iframeId+'">';r=document.createElement(e)}catch(t){(r=document.createElement("iframe")).name=n.iframeId,r.src="javascript:0"}r.id=n.iframeId,n.form.appendChild(r),n.iframe=r}this.form.action=this.uri(),l(),e=e.replace(a,"\\\n"),this.area.value=e.replace(s,"\\n");try{this.form.submit()}catch(d){}this.iframe.attachEvent?this.iframe.onreadystatechange=function(){"complete"===n.iframe.readyState&&c()}:this.iframe.onload=c}},91962:(e,t,n)=>{var r=n(26891),o=n(65869),i=n(17056),s=n(99238),a=n(39712)("engine.io-client:polling-xhr");function u(){}function c(e){if(o.call(this,e),this.requestTimeout=e.requestTimeout,this.extraHeaders=e.extraHeaders,"undefined"!=typeof location){var t="https:"===location.protocol,n=location.port;n||(n=t?443:80),this.xd="undefined"!=typeof location&&e.hostname!==location.hostname||n!==e.port,this.xs=e.secure!==t}}function l(e){this.method=e.method||"GET",this.uri=e.uri,this.xd=!!e.xd,this.xs=!!e.xs,this.async=!1!==e.async,this.data=void 0!==e.data?e.data:null,this.agent=e.agent,this.isBinary=e.isBinary,this.supportsBinary=e.supportsBinary,this.enablesXDR=e.enablesXDR,this.withCredentials=e.withCredentials,this.requestTimeout=e.requestTimeout,this.pfx=e.pfx,this.key=e.key,this.passphrase=e.passphrase,this.cert=e.cert,this.ca=e.ca,this.ciphers=e.ciphers,this.rejectUnauthorized=e.rejectUnauthorized,this.extraHeaders=e.extraHeaders,this.create()}if(e.exports=c,e.exports.Request=l,s(c,o),c.prototype.supportsBinary=!0,c.prototype.request=function(e){return(e=e||{}).uri=this.uri(),e.xd=this.xd,e.xs=this.xs,e.agent=this.agent||!1,e.supportsBinary=this.supportsBinary,e.enablesXDR=this.enablesXDR,e.withCredentials=this.withCredentials,e.pfx=this.pfx,e.key=this.key,e.passphrase=this.passphrase,e.cert=this.cert,e.ca=this.ca,e.ciphers=this.ciphers,e.rejectUnauthorized=this.rejectUnauthorized,e.requestTimeout=this.requestTimeout,e.extraHeaders=this.extraHeaders,new l(e)},c.prototype.doWrite=function(e,t){var n="string"!=typeof e&&void 0!==e,r=this.request({method:"POST",data:e,isBinary:n}),o=this;r.on("success",t),r.on("error",(function(e){o.onError("xhr post error",e)})),this.sendXhr=r},c.prototype.doPoll=function(){a("xhr poll");var e=this.request(),t=this;e.on("data",(function(e){t.onData(e)})),e.on("error",(function(e){t.onError("xhr poll error",e)})),this.pollXhr=e},i(l.prototype),l.prototype.create=function(){var e={agent:this.agent,xdomain:this.xd,xscheme:this.xs,enablesXDR:this.enablesXDR};e.pfx=this.pfx,e.key=this.key,e.passphrase=this.passphrase,e.cert=this.cert,e.ca=this.ca,e.ciphers=this.ciphers,e.rejectUnauthorized=this.rejectUnauthorized;var t=this.xhr=new r(e),n=this;try{a("xhr open %s: %s",this.method,this.uri),t.open(this.method,this.uri,this.async);try{if(this.extraHeaders)for(var o in t.setDisableHeaderCheck&&t.setDisableHeaderCheck(!0),this.extraHeaders)this.extraHeaders.hasOwnProperty(o)&&t.setRequestHeader(o,this.extraHeaders[o])}catch(i){}if("POST"===this.method)try{this.isBinary?t.setRequestHeader("Content-type","application/octet-stream"):t.setRequestHeader("Content-type","text/plain;charset=UTF-8")}catch(i){}try{t.setRequestHeader("Accept","*/*")}catch(i){}"withCredentials"in t&&(t.withCredentials=this.withCredentials),this.requestTimeout&&(t.timeout=this.requestTimeout),this.hasXDR()?(t.onload=function(){n.onLoad()},t.onerror=function(){n.onError(t.responseText)}):t.onreadystatechange=function(){if(2===t.readyState)try{var e=t.getResponseHeader("Content-Type");(n.supportsBinary&&"application/octet-stream"===e||"application/octet-stream; charset=UTF-8"===e)&&(t.responseType="arraybuffer")}catch(i){}4===t.readyState&&(200===t.status||1223===t.status?n.onLoad():setTimeout((function(){n.onError("number"==typeof t.status?t.status:0)}),0))},a("xhr data %s",this.data),t.send(this.data)}catch(i){return void setTimeout((function(){n.onError(i)}),0)}"undefined"!=typeof document&&(this.index=l.requestsCount++,l.requests[this.index]=this)},l.prototype.onSuccess=function(){this.emit("success"),this.cleanup()},l.prototype.onData=function(e){this.emit("data",e),this.onSuccess()},l.prototype.onError=function(e){this.emit("error",e),this.cleanup(!0)},l.prototype.cleanup=function(e){if(void 0!==this.xhr&&null!==this.xhr){if(this.hasXDR()?this.xhr.onload=this.xhr.onerror=u:this.xhr.onreadystatechange=u,e)try{this.xhr.abort()}catch(t){}"undefined"!=typeof document&&delete l.requests[this.index],this.xhr=null}},l.prototype.onLoad=function(){var e;try{var t;try{t=this.xhr.getResponseHeader("Content-Type")}catch(n){}e=("application/octet-stream"===t||"application/octet-stream; charset=UTF-8"===t)&&this.xhr.response||this.xhr.responseText}catch(n){this.onError(n)}null!=e&&this.onData(e)},l.prototype.hasXDR=function(){return"undefined"!=typeof XDomainRequest&&!this.xs&&this.enablesXDR},l.prototype.abort=function(){this.cleanup()},l.requestsCount=0,l.requests={},"undefined"!=typeof document)if("function"==typeof attachEvent)attachEvent("onunload",p);else if("function"==typeof addEventListener){var d="onpagehide"in self?"pagehide":"unload";addEventListener(d,p,!1)}function p(){for(var e in l.requests)l.requests.hasOwnProperty(e)&&l.requests[e].abort()}},65869:(e,t,n)=>{var r=n(5344),o=n(54355),i=n(90820),s=n(99238),a=n(34973),u=n(39712)("engine.io-client:polling");e.exports=l;var c=null!=new(n(26891))({xdomain:!1}).responseType;function l(e){var t=e&&e.forceBase64;c&&!t||(this.supportsBinary=!1),r.call(this,e)}s(l,r),l.prototype.name="polling",l.prototype.doOpen=function(){this.poll()},l.prototype.pause=function(e){var t=this;function n(){u("paused"),t.readyState="paused",e()}if(this.readyState="pausing",this.polling||!this.writable){var r=0;this.polling&&(u("we are currently polling - waiting to pause"),r++,this.once("pollComplete",(function(){u("pre-pause polling complete"),--r||n()}))),this.writable||(u("we are currently writing - waiting to pause"),r++,this.once("drain",(function(){u("pre-pause writing complete"),--r||n()})))}else n()},l.prototype.poll=function(){u("polling"),this.polling=!0,this.doPoll(),this.emit("poll")},l.prototype.onData=function(e){var t=this;u("polling got data %s",e);i.decodePayload(e,this.socket.binaryType,(function(e,n,r){if("opening"===t.readyState&&t.onOpen(),"close"===e.type)return t.onClose(),!1;t.onPacket(e)})),"closed"!==this.readyState&&(this.polling=!1,this.emit("pollComplete"),"open"===this.readyState?this.poll():u('ignoring poll - transport state "%s"',this.readyState))},l.prototype.doClose=function(){var e=this;function t(){u("writing close packet"),e.write([{type:"close"}])}"open"===this.readyState?(u("transport open - closing"),t()):(u("transport not open - deferring close"),this.once("open",t))},l.prototype.write=function(e){var t=this;this.writable=!1;var n=function(){t.writable=!0,t.emit("drain")};i.encodePayload(e,this.supportsBinary,(function(e){t.doWrite(e,n)}))},l.prototype.uri=function(){var e=this.query||{},t=this.secure?"https":"http",n="";return!1!==this.timestampRequests&&(e[this.timestampParam]=a()),this.supportsBinary||e.sid||(e.b64=1),e=o.encode(e),this.port&&("https"===t&&443!==Number(this.port)||"http"===t&&80!==Number(this.port))&&(n=":"+this.port),e.length&&(e="?"+e),t+"://"+(-1!==this.hostname.indexOf(":")?"["+this.hostname+"]":this.hostname)+n+this.path+e}},68479:(e,t,n)=>{var r,o,i=n(5344),s=n(90820),a=n(54355),u=n(99238),c=n(34973),l=n(39712)("engine.io-client:websocket");if("undefined"!=typeof WebSocket?r=WebSocket:"undefined"!=typeof self&&(r=self.WebSocket||self.MozWebSocket),"undefined"==typeof window)try{o=n(18864)}catch(f){}var d=r||o;function p(e){e&&e.forceBase64&&(this.supportsBinary=!1),this.perMessageDeflate=e.perMessageDeflate,this.usingBrowserWebSocket=r&&!e.forceNode,this.protocols=e.protocols,this.usingBrowserWebSocket||(d=o),i.call(this,e)}e.exports=p,u(p,i),p.prototype.name="websocket",p.prototype.supportsBinary=!0,p.prototype.doOpen=function(){if(this.check()){var e=this.uri(),t=this.protocols,n={agent:this.agent,perMessageDeflate:this.perMessageDeflate};n.pfx=this.pfx,n.key=this.key,n.passphrase=this.passphrase,n.cert=this.cert,n.ca=this.ca,n.ciphers=this.ciphers,n.rejectUnauthorized=this.rejectUnauthorized,this.extraHeaders&&(n.headers=this.extraHeaders),this.localAddress&&(n.localAddress=this.localAddress);try{this.ws=this.usingBrowserWebSocket&&!this.isReactNative?t?new d(e,t):new d(e):new d(e,t,n)}catch(r){return this.emit("error",r)}void 0===this.ws.binaryType&&(this.supportsBinary=!1),this.ws.supports&&this.ws.supports.binary?(this.supportsBinary=!0,this.ws.binaryType="nodebuffer"):this.ws.binaryType="arraybuffer",this.addEventListeners()}},p.prototype.addEventListeners=function(){var e=this;this.ws.onopen=function(){e.onOpen()},this.ws.onclose=function(){e.onClose()},this.ws.onmessage=function(t){e.onData(t.data)},this.ws.onerror=function(t){e.onError("websocket error",t)}},p.prototype.write=function(e){var t=this;this.writable=!1;for(var n=e.length,r=0,o=n;r<o;r++)!function(e){s.encodePacket(e,t.supportsBinary,(function(r){if(!t.usingBrowserWebSocket){var o={};if(e.options&&(o.compress=e.options.compress),t.perMessageDeflate)("string"==typeof r?Buffer.byteLength(r):r.length)<t.perMessageDeflate.threshold&&(o.compress=!1)}try{t.usingBrowserWebSocket?t.ws.send(r):t.ws.send(r,o)}catch(f){l("websocket closed before onclose event")}--n||i()}))}(e[r]);function i(){t.emit("flush"),setTimeout((function(){t.writable=!0,t.emit("drain")}),0)}},p.prototype.onClose=function(){i.prototype.onClose.call(this)},p.prototype.doClose=function(){void 0!==this.ws&&this.ws.close()},p.prototype.uri=function(){var e=this.query||{},t=this.secure?"wss":"ws",n="";return this.port&&("wss"===t&&443!==Number(this.port)||"ws"===t&&80!==Number(this.port))&&(n=":"+this.port),this.timestampRequests&&(e[this.timestampParam]=c()),this.supportsBinary||(e.b64=1),(e=a.encode(e)).length&&(e="?"+e),t+"://"+(-1!==this.hostname.indexOf(":")?"["+this.hostname+"]":this.hostname)+n+this.path+e},p.prototype.check=function(){return!(!d||"__initialize"in d&&this.name===p.prototype.name)}},26891:(e,t,n)=>{var r=n(95460);e.exports=function(e){var t=e.xdomain,n=e.xscheme,o=e.enablesXDR;try{if("undefined"!=typeof XMLHttpRequest&&(!t||r))return new XMLHttpRequest}catch(i){}try{if("undefined"!=typeof XDomainRequest&&!n&&o)return new XDomainRequest}catch(i){}if(!t)try{return new(self[["Active"].concat("Object").join("X")])("Microsoft.XMLHTTP")}catch(i){}}},17056:e=>{function t(e){if(e)return function(e){for(var n in t.prototype)e[n]=t.prototype[n];return e}(e)}e.exports=t,t.prototype.on=t.prototype.addEventListener=function(e,t){return this._callbacks=this._callbacks||{},(this._callbacks["$"+e]=this._callbacks["$"+e]||[]).push(t),this},t.prototype.once=function(e,t){function n(){this.off(e,n),t.apply(this,arguments)}return n.fn=t,this.on(e,n),this},t.prototype.off=t.prototype.removeListener=t.prototype.removeAllListeners=t.prototype.removeEventListener=function(e,t){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var n,r=this._callbacks["$"+e];if(!r)return this;if(1==arguments.length)return delete this._callbacks["$"+e],this;for(var o=0;o<r.length;o++)if((n=r[o])===t||n.fn===t){r.splice(o,1);break}return this},t.prototype.emit=function(e){this._callbacks=this._callbacks||{};var t=[].slice.call(arguments,1),n=this._callbacks["$"+e];if(n)for(var r=0,o=(n=n.slice(0)).length;r<o;++r)n[r].apply(this,t);return this},t.prototype.listeners=function(e){return this._callbacks=this._callbacks||{},this._callbacks["$"+e]||[]},t.prototype.hasListeners=function(e){return!!this.listeners(e).length}},90820:(e,t,n)=>{var r,o=n(62298),i=n(54632),s=n(50696),a=n(61777),u=n(68544);"undefined"!=typeof ArrayBuffer&&(r=n(28328));var c="undefined"!=typeof navigator&&/Android/i.test(navigator.userAgent),l="undefined"!=typeof navigator&&/PhantomJS/i.test(navigator.userAgent),d=c||l;t.protocol=3;var p=t.packets={open:0,close:1,ping:2,pong:3,message:4,upgrade:5,noop:6},f=o(p),h={type:"error",data:"parser error"},m=n(23055);function g(e,t,n){for(var r=new Array(e.length),o=a(e.length,n),i=function(e,n,o){t(n,(function(t,n){r[e]=n,o(t,r)}))},s=0;s<e.length;s++)i(s,e[s],o)}t.encodePacket=function(e,n,r,o){"function"==typeof n&&(o=n,n=!1),"function"==typeof r&&(o=r,r=null);var i=void 0===e.data?void 0:e.data.buffer||e.data;if("undefined"!=typeof ArrayBuffer&&i instanceof ArrayBuffer)return function(e,n,r){if(!n)return t.encodeBase64Packet(e,r);var o=e.data,i=new Uint8Array(o),s=new Uint8Array(1+o.byteLength);s[0]=p[e.type];for(var a=0;a<i.length;a++)s[a+1]=i[a];return r(s.buffer)}(e,n,o);if(void 0!==m&&i instanceof m)return function(e,n,r){if(!n)return t.encodeBase64Packet(e,r);if(d)return function(e,n,r){if(!n)return t.encodeBase64Packet(e,r);var o=new FileReader;return o.onload=function(){t.encodePacket({type:e.type,data:o.result},n,!0,r)},o.readAsArrayBuffer(e.data)}(e,n,r);var o=new Uint8Array(1);o[0]=p[e.type];var i=new m([o.buffer,e.data]);return r(i)}(e,n,o);if(i&&i.base64)return function(e,n){var r="b"+t.packets[e.type]+e.data.data;return n(r)}(e,o);var s=p[e.type];return void 0!==e.data&&(s+=r?u.encode(String(e.data),{strict:!1}):String(e.data)),o(""+s)},t.encodeBase64Packet=function(e,n){var r,o="b"+t.packets[e.type];if(void 0!==m&&e.data instanceof m){var i=new FileReader;return i.onload=function(){var e=i.result.split(",")[1];n(o+e)},i.readAsDataURL(e.data)}try{r=String.fromCharCode.apply(null,new Uint8Array(e.data))}catch(c){for(var s=new Uint8Array(e.data),a=new Array(s.length),u=0;u<s.length;u++)a[u]=s[u];r=String.fromCharCode.apply(null,a)}return o+=btoa(r),n(o)},t.decodePacket=function(e,n,r){if(void 0===e)return h;if("string"==typeof e){if("b"===e.charAt(0))return t.decodeBase64Packet(e.substr(1),n);if(r&&!1===(e=function(e){try{e=u.decode(e,{strict:!1})}catch(t){return!1}return e}(e)))return h;var o=e.charAt(0);return Number(o)==o&&f[o]?e.length>1?{type:f[o],data:e.substring(1)}:{type:f[o]}:h}o=new Uint8Array(e)[0];var i=s(e,1);return m&&"blob"===n&&(i=new m([i])),{type:f[o],data:i}},t.decodeBase64Packet=function(e,t){var n=f[e.charAt(0)];if(!r)return{type:n,data:{base64:!0,data:e.substr(1)}};var o=r.decode(e.substr(1));return"blob"===t&&m&&(o=new m([o])),{type:n,data:o}},t.encodePayload=function(e,n,r){"function"==typeof n&&(r=n,n=null);var o=i(e);if(n&&o)return m&&!d?t.encodePayloadAsBlob(e,r):t.encodePayloadAsArrayBuffer(e,r);if(!e.length)return r("0:");g(e,(function(e,r){t.encodePacket(e,!!o&&n,!1,(function(e){r(null,function(e){return e.length+":"+e}(e))}))}),(function(e,t){return r(t.join(""))}))},t.decodePayload=function(e,n,r){if("string"!=typeof e)return t.decodePayloadAsBinary(e,n,r);var o;if("function"==typeof n&&(r=n,n=null),""===e)return r(h,0,1);for(var i,s,a="",u=0,c=e.length;u<c;u++){var l=e.charAt(u);if(":"===l){if(""===a||a!=(i=Number(a)))return r(h,0,1);if(a!=(s=e.substr(u+1,i)).length)return r(h,0,1);if(s.length){if(o=t.decodePacket(s,n,!1),h.type===o.type&&h.data===o.data)return r(h,0,1);if(!1===r(o,u+i,c))return}u+=i,a=""}else a+=l}return""!==a?r(h,0,1):void 0},t.encodePayloadAsArrayBuffer=function(e,n){if(!e.length)return n(new ArrayBuffer(0));g(e,(function(e,n){t.encodePacket(e,!0,!0,(function(e){return n(null,e)}))}),(function(e,t){var r=t.reduce((function(e,t){var n;return e+(n="string"==typeof t?t.length:t.byteLength).toString().length+n+2}),0),o=new Uint8Array(r),i=0;return t.forEach((function(e){var t="string"==typeof e,n=e;if(t){for(var r=new Uint8Array(e.length),s=0;s<e.length;s++)r[s]=e.charCodeAt(s);n=r.buffer}o[i++]=t?0:1;var a=n.byteLength.toString();for(s=0;s<a.length;s++)o[i++]=parseInt(a[s]);o[i++]=255;for(r=new Uint8Array(n),s=0;s<r.length;s++)o[i++]=r[s]})),n(o.buffer)}))},t.encodePayloadAsBlob=function(e,n){g(e,(function(e,n){t.encodePacket(e,!0,!0,(function(e){var t=new Uint8Array(1);if(t[0]=1,"string"==typeof e){for(var r=new Uint8Array(e.length),o=0;o<e.length;o++)r[o]=e.charCodeAt(o);e=r.buffer,t[0]=0}var i=(e instanceof ArrayBuffer?e.byteLength:e.size).toString(),s=new Uint8Array(i.length+1);for(o=0;o<i.length;o++)s[o]=parseInt(i[o]);if(s[i.length]=255,m){var a=new m([t.buffer,s.buffer,e]);n(null,a)}}))}),(function(e,t){return n(new m(t))}))},t.decodePayloadAsBinary=function(e,n,r){"function"==typeof n&&(r=n,n=null);for(var o=e,i=[];o.byteLength>0;){for(var a=new Uint8Array(o),u=0===a[0],c="",l=1;255!==a[l];l++){if(c.length>310)return r(h,0,1);c+=a[l]}o=s(o,2+c.length),c=parseInt(c);var d=s(o,0,c);if(u)try{d=String.fromCharCode.apply(null,new Uint8Array(d))}catch(m){var p=new Uint8Array(d);d="";for(l=0;l<p.length;l++)d+=String.fromCharCode(p[l])}i.push(d),o=s(o,c)}var f=i.length;i.forEach((function(e,o){r(t.decodePacket(e,n,!0),o,f)}))}},62298:e=>{e.exports=Object.keys||function(e){var t=[],n=Object.prototype.hasOwnProperty;for(var r in e)n.call(e,r)&&t.push(r);return t}},68544:e=>{
13
  /*! https://mths.be/utf8js v2.1.2 by @mathias */
14
  var t,n,r,o=String.fromCharCode;function i(e){for(var t,n,r=[],o=0,i=e.length;o<i;)(t=e.charCodeAt(o++))>=55296&&t<=56319&&o<i?56320==(64512&(n=e.charCodeAt(o++)))?r.push(((1023&t)<<10)+(1023&n)+65536):(r.push(t),o--):r.push(t);return r}function s(e,t){if(e>=55296&&e<=57343){if(t)throw Error("Lone surrogate U+"+e.toString(16).toUpperCase()+" is not a scalar value");return!1}return!0}function a(e,t){return o(e>>t&63|128)}function u(e,t){if(0==(4294967168&e))return o(e);var n="";return 0==(4294965248&e)?n=o(e>>6&31|192):0==(4294901760&e)?(s(e,t)||(e=65533),n=o(e>>12&15|224),n+=a(e,6)):0==(4292870144&e)&&(n=o(e>>18&7|240),n+=a(e,12),n+=a(e,6)),n+=o(63&e|128)}function c(){if(r>=n)throw Error("Invalid byte index");var e=255&t[r];if(r++,128==(192&e))return 63&e;throw Error("Invalid continuation byte")}function l(e){var o,i;if(r>n)throw Error("Invalid byte index");if(r==n)return!1;if(o=255&t[r],r++,0==(128&o))return o;if(192==(224&o)){if((i=(31&o)<<6|c())>=128)return i;throw Error("Invalid continuation byte")}if(224==(240&o)){if((i=(15&o)<<12|c()<<6|c())>=2048)return s(i,e)?i:65533;throw Error("Invalid continuation byte")}if(240==(248&o)&&(i=(7&o)<<18|c()<<12|c()<<6|c())>=65536&&i<=1114111)return i;throw Error("Invalid UTF-8 detected")}e.exports={version:"2.1.2",encode:function(e,t){for(var n=!1!==(t=t||{}).strict,r=i(e),o=r.length,s=-1,a="";++s<o;)a+=u(r[s],n);return a},decode:function(e,s){var a=!1!==(s=s||{}).strict;t=i(e),n=t.length,r=0;for(var u,c=[];!1!==(u=l(a));)c.push(u);return function(e){for(var t,n=e.length,r=-1,i="";++r<n;)(t=e[r])>65535&&(i+=o((t-=65536)>>>10&1023|55296),t=56320|1023&t),i+=o(t);return i}(c)}}},22699: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 o=Number.isNaN||function(e){return e!=e};function i(){i.init.call(this)}e.exports=i,e.exports.once=function(e,t){return new Promise((function(n,r){function o(n){e.removeListener(t,i),r(n)}function i(){"function"==typeof e.removeListener&&e.removeListener("error",o),n([].slice.call(arguments))}m(e,t,i,{once:!0}),"error"!==t&&function(e,t,n){"function"==typeof e.on&&m(e,"error",t,n)}(e,o,{once:!0})}))},i.EventEmitter=i,i.prototype._events=void 0,i.prototype._eventsCount=0,i.prototype._maxListeners=void 0;var s=10;function a(e){if("function"!=typeof e)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof e)}function u(e){return void 0===e._maxListeners?i.defaultMaxListeners:e._maxListeners}function c(e,t,n,r){var o,i,s,c;if(a(n),void 0===(i=e._events)?(i=e._events=Object.create(null),e._eventsCount=0):(void 0!==i.newListener&&(e.emit("newListener",t,n.listener?n.listener:n),i=e._events),s=i[t]),void 0===s)s=i[t]=n,++e._eventsCount;else if("function"==typeof s?s=i[t]=r?[n,s]:[s,n]:r?s.unshift(n):s.push(n),(o=u(e))>0&&s.length>o&&!s.warned){s.warned=!0;var l=new Error("Possible EventEmitter memory leak detected. "+s.length+" "+String(t)+" listeners added. Use emitter.setMaxListeners() to increase limit");l.name="MaxListenersExceededWarning",l.emitter=e,l.type=t,l.count=s.length,c=l,console&&console.warn&&console.warn(c)}return e}function l(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function d(e,t,n){var r={fired:!1,wrapFn:void 0,target:e,type:t,listener:n},o=l.bind(r);return o.listener=n,r.wrapFn=o,o}function p(e,t,n){var r=e._events;if(void 0===r)return[];var o=r[t];return void 0===o?[]:"function"==typeof o?n?[o.listener||o]:[o]: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}(o):h(o,o.length)}function f(e){var t=this._events;if(void 0!==t){var n=t[e];if("function"==typeof n)return 1;if(void 0!==n)return n.length}return 0}function h(e,t){for(var n=new Array(t),r=0;r<t;++r)n[r]=e[r];return n}function m(e,t,n,r){if("function"==typeof e.on)r.once?e.once(t,n):e.on(t,n);else{if("function"!=typeof e.addEventListener)throw new TypeError('The "emitter" argument must be of type EventEmitter. Received type '+typeof e);e.addEventListener(t,(function o(i){r.once&&e.removeEventListener(t,o),n(i)}))}}Object.defineProperty(i,"defaultMaxListeners",{enumerable:!0,get:function(){return s},set:function(e){if("number"!=typeof e||e<0||o(e))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+e+".");s=e}}),i.init=function(){void 0!==this._events&&this._events!==Object.getPrototypeOf(this)._events||(this._events=Object.create(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0},i.prototype.setMaxListeners=function(e){if("number"!=typeof e||e<0||o(e))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+e+".");return this._maxListeners=e,this},i.prototype.getMaxListeners=function(){return u(this)},i.prototype.emit=function(e){for(var t=[],n=1;n<arguments.length;n++)t.push(arguments[n]);var o="error"===e,i=this._events;if(void 0!==i)o=o&&void 0===i.error;else if(!o)return!1;if(o){var s;if(t.length>0&&(s=t[0]),s instanceof Error)throw s;var a=new Error("Unhandled error."+(s?" ("+s.message+")":""));throw a.context=s,a}var u=i[e];if(void 0===u)return!1;if("function"==typeof u)r(u,this,t);else{var c=u.length,l=h(u,c);for(n=0;n<c;++n)r(l[n],this,t)}return!0},i.prototype.addListener=function(e,t){return c(this,e,t,!1)},i.prototype.on=i.prototype.addListener,i.prototype.prependListener=function(e,t){return c(this,e,t,!0)},i.prototype.once=function(e,t){return a(t),this.on(e,d(this,e,t)),this},i.prototype.prependOnceListener=function(e,t){return a(t),this.prependListener(e,d(this,e,t)),this},i.prototype.removeListener=function(e,t){var n,r,o,i,s;if(a(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(o=-1,i=n.length-1;i>=0;i--)if(n[i]===t||n[i].listener===t){s=n[i].listener,o=i;break}if(o<0)return this;0===o?n.shift():function(e,t){for(;t+1<e.length;t++)e[t]=e[t+1];e.pop()}(n,o),1===n.length&&(r[e]=n[0]),void 0!==r.removeListener&&this.emit("removeListener",e,s||t)}return this},i.prototype.off=i.prototype.removeListener,i.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 o,i=Object.keys(n);for(r=0;r<i.length;++r)"removeListener"!==(o=i[r])&&this.removeAllListeners(o);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},i.prototype.listeners=function(e){return p(this,e,!0)},i.prototype.rawListeners=function(e){return p(this,e,!1)},i.listenerCount=function(e,t){return"function"==typeof e.listenerCount?e.listenerCount(t):f.call(e,t)},i.prototype.listenerCount=f,i.prototype.eventNames=function(){return this._eventsCount>0?t(this._events):[]}},85695: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,o=t.cmp&&(n=t.cmp,function(e){return function(t,r){var o={key:t,value:e[t]},i={key:r,value:e[r]};return n(o,i)}}),i=[];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,s;if(Array.isArray(t)){for(s="[",n=0;n<t.length;n++)n&&(s+=","),s+=e(t[n])||"null";return s+"]"}if(null===t)return"null";if(-1!==i.indexOf(t)){if(r)return JSON.stringify("__cycle__");throw new TypeError("Converting circular structure to JSON")}var a=i.push(t)-1,u=Object.keys(t).sort(o&&o(t));for(s="",n=0;n<u.length;n++){var c=u[n],l=e(t[c]);l&&(s&&(s+=","),s+=JSON.stringify(c)+":"+l)}return i.splice(a,1),"{"+s+"}"}}(e)}},46388:e=>{var t=Object.prototype.hasOwnProperty,n=Object.prototype.toString;e.exports=function(e,r,o){if("[object Function]"!==n.call(r))throw new TypeError("iterator must be a function");var i=e.length;if(i===+i)for(var s=0;s<i;s++)r.call(o,e[s],s,e);else for(var a in e)t.call(e,a)&&r.call(o,e[a],a,e)}},37795:e=>{"use strict";var t="Function.prototype.bind called on incompatible ",n=Array.prototype.slice,r=Object.prototype.toString,o="[object Function]";e.exports=function(e){var i=this;if("function"!=typeof i||r.call(i)!==o)throw new TypeError(t+i);for(var s,a=n.call(arguments,1),u=function(){if(this instanceof s){var t=i.apply(this,a.concat(n.call(arguments)));return Object(t)===t?t:this}return i.apply(e,a.concat(n.call(arguments)))},c=Math.max(0,i.length-a.length),l=[],d=0;d<c;d++)l.push("$"+d);if(s=Function("binder","return function ("+l.join(",")+"){ return binder.apply(this,arguments); }")(u),i.prototype){var p=function(){};p.prototype=i.prototype,s.prototype=new p,p.prototype=null}return s}},4090:(e,t,n)=>{"use strict";var r=n(37795);e.exports=Function.prototype.bind||r},88616:(e,t,n)=>{for(var r=n(43335),o=n(30892),i=/[\{\[]/,s=/[\}\]]/,a=["do","if","in","for","let","new","try","var","case","else","enum","eval","null","this","true","void","with","await","break","catch","class","const","false","super","throw","while","yield","delete","export","import","public","return","static","switch","typeof","default","extends","finally","package","private","continue","debugger","function","arguments","interface","protected","implements","instanceof","NaN","undefined"],u={},c=0;c<a.length;c++)u[a[c]]=!0;var l=function(e){return o(e)&&!u.hasOwnProperty(e)},d={s:function(e){return""+e},d:function(e){return""+Number(e)},o:function(e){return JSON.stringify(e)}},p=function(){var e=[],t=0,n={},a=function(n){for(var r="";r.length<2*t;)r+=" ";e.push(r+n)},u=function(e){return s.test(e.trim()[0])&&i.test(e[e.length-1])?(t--,a(e),void t++):i.test(e[e.length-1])?(a(e),void t++):s.test(e.trim()[0])?(t--,void a(e)):void a(e)},c=function(e){if(!e)return c;if(1===arguments.length&&e.indexOf("\n")>-1)for(var t=e.trim().split("\n"),n=0;n<t.length;n++)u(t[n].trim());else u(r.format.apply(r,arguments));return c};return c.scope={},c.formats=d,c.sym=function(e){return e&&l(e)||(e="tmp"),n[e]||(n[e]=0),e+(n[e]++||"")},c.property=function(e,t){return 1===arguments.length&&(t=e,e=""),o(t+="")?e?e+"."+t:t:e?e+"["+JSON.stringify(t)+"]":JSON.stringify(t)},c.toString=function(){return e.join("\n")},c.toFunction=function(e){e||(e={});var t="return ("+c.toString()+")";Object.keys(c.scope).forEach((function(t){e[t]||(e[t]=c.scope[t])}));var n=Object.keys(e).map((function(e){return e})),r=n.map((function(t){return e[t]}));return Function.apply(null,n.concat(t)).apply(null,r)},arguments.length&&c.apply(null,arguments),c};p.formats=d,e.exports=p},6e3:(e,t,n)=>{var r=n(30892),o=function(e,t){return r(t)?e+"."+t:e+"["+JSON.stringify(t)+"]"};o.valid=r,o.property=function(e){return r(e)?e:JSON.stringify(e)},e.exports=o},67286:(e,t,n)=>{"use strict";var r,o=SyntaxError,i=Function,s=TypeError,a=function(e){try{return i('"use strict"; return ('+e+").constructor;")()}catch(t){}},u=Object.getOwnPropertyDescriptor;if(u)try{u({},"")}catch(A){u=null}var c=function(){throw new s},l=u?function(){try{return c}catch(e){try{return u(arguments,"callee").get}catch(t){return c}}}():c,d=n(32636)(),p=Object.getPrototypeOf||function(e){return e.__proto__},f={},h="undefined"==typeof Uint8Array?r:p(Uint8Array),m={"%AggregateError%":"undefined"==typeof AggregateError?r:AggregateError,"%Array%":Array,"%ArrayBuffer%":"undefined"==typeof ArrayBuffer?r:ArrayBuffer,"%ArrayIteratorPrototype%":d?p([][Symbol.iterator]()):r,"%AsyncFromSyncIteratorPrototype%":r,"%AsyncFunction%":f,"%AsyncGenerator%":f,"%AsyncGeneratorFunction%":f,"%AsyncIteratorPrototype%":f,"%Atomics%":"undefined"==typeof Atomics?r:Atomics,"%BigInt%":"undefined"==typeof BigInt?r:BigInt,"%Boolean%":Boolean,"%DataView%":"undefined"==typeof DataView?r:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":Error,"%eval%":eval,"%EvalError%":EvalError,"%Float32Array%":"undefined"==typeof Float32Array?r:Float32Array,"%Float64Array%":"undefined"==typeof Float64Array?r:Float64Array,"%FinalizationRegistry%":"undefined"==typeof FinalizationRegistry?r:FinalizationRegistry,"%Function%":i,"%GeneratorFunction%":f,"%Int8Array%":"undefined"==typeof Int8Array?r:Int8Array,"%Int16Array%":"undefined"==typeof Int16Array?r:Int16Array,"%Int32Array%":"undefined"==typeof Int32Array?r:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":d?p(p([][Symbol.iterator]())):r,"%JSON%":"object"==typeof JSON?JSON:r,"%Map%":"undefined"==typeof Map?r:Map,"%MapIteratorPrototype%":"undefined"!=typeof Map&&d?p((new Map)[Symbol.iterator]()):r,"%Math%":Math,"%Number%":Number,"%Object%":Object,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":"undefined"==typeof Promise?r:Promise,"%Proxy%":"undefined"==typeof Proxy?r:Proxy,"%RangeError%":RangeError,"%ReferenceError%":ReferenceError,"%Reflect%":"undefined"==typeof Reflect?r:Reflect,"%RegExp%":RegExp,"%Set%":"undefined"==typeof Set?r:Set,"%SetIteratorPrototype%":"undefined"!=typeof Set&&d?p((new Set)[Symbol.iterator]()):r,"%SharedArrayBuffer%":"undefined"==typeof SharedArrayBuffer?r:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":d?p(""[Symbol.iterator]()):r,"%Symbol%":d?Symbol:r,"%SyntaxError%":o,"%ThrowTypeError%":l,"%TypedArray%":h,"%TypeError%":s,"%Uint8Array%":"undefined"==typeof Uint8Array?r:Uint8Array,"%Uint8ClampedArray%":"undefined"==typeof Uint8ClampedArray?r:Uint8ClampedArray,"%Uint16Array%":"undefined"==typeof Uint16Array?r:Uint16Array,"%Uint32Array%":"undefined"==typeof Uint32Array?r:Uint32Array,"%URIError%":URIError,"%WeakMap%":"undefined"==typeof WeakMap?r:WeakMap,"%WeakRef%":"undefined"==typeof WeakRef?r:WeakRef,"%WeakSet%":"undefined"==typeof WeakSet?r:WeakSet},g=function e(t){var n;if("%AsyncFunction%"===t)n=a("async function () {}");else if("%GeneratorFunction%"===t)n=a("function* () {}");else if("%AsyncGeneratorFunction%"===t)n=a("async function* () {}");else if("%AsyncGenerator%"===t){var r=e("%AsyncGeneratorFunction%");r&&(n=r.prototype)}else if("%AsyncIteratorPrototype%"===t){var o=e("%AsyncGenerator%");o&&(n=p(o.prototype))}return m[t]=n,n},y={"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},v=n(4090),b=n(23198),w=v.call(Function.call,Array.prototype.concat),_=v.call(Function.apply,Array.prototype.splice),E=v.call(Function.call,String.prototype.replace),S=v.call(Function.call,String.prototype.slice),C=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,P=/\\(\\)?/g,k=function(e){var t=S(e,0,1),n=S(e,-1);if("%"===t&&"%"!==n)throw new o("invalid intrinsic syntax, expected closing `%`");if("%"===n&&"%"!==t)throw new o("invalid intrinsic syntax, expected opening `%`");var r=[];return E(e,C,(function(e,t,n,o){r[r.length]=n?E(o,P,"$1"):t||e})),r},I=function(e,t){var n,r=e;if(b(y,r)&&(r="%"+(n=y[r])[0]+"%"),b(m,r)){var i=m[r];if(i===f&&(i=g(r)),void 0===i&&!t)throw new s("intrinsic "+e+" exists, but is not available. Please file an issue!");return{alias:n,name:r,value:i}}throw new o("intrinsic "+e+" does not exist!")};e.exports=function(e,t){if("string"!=typeof e||0===e.length)throw new s("intrinsic name must be a non-empty string");if(arguments.length>1&&"boolean"!=typeof t)throw new s('"allowMissing" argument must be a boolean');var n=k(e),r=n.length>0?n[0]:"",i=I("%"+r+"%",t),a=i.name,c=i.value,l=!1,d=i.alias;d&&(r=d[0],_(n,w([0,1],d)));for(var p=1,f=!0;p<n.length;p+=1){var h=n[p],g=S(h,0,1),y=S(h,-1);if(('"'===g||"'"===g||"`"===g||'"'===y||"'"===y||"`"===y)&&g!==y)throw new o("property names with quotes must have matching quotes");if("constructor"!==h&&f||(l=!0),b(m,a="%"+(r+="."+h)+"%"))c=m[a];else if(null!=c){if(!(h in c)){if(!t)throw new s("base intrinsic for "+e+" exists, but the property is not available.");return}if(u&&p+1>=n.length){var v=u(c,h);c=(f=!!v)&&"get"in v&&!("originalValue"in v.get)?v.get:c[h]}else f=b(c,h),c=c[h];f&&!l&&(m[a]=c)}}return c}},88111:e=>{"use strict";e.exports=function(e){if("string"!=typeof e)throw new TypeError("get-src expected a string");var t=/src="(.*?)"/gm.exec(e);if(t&&t.length>=2)return t[1]}},17451:(e,t,n)=>{"use strict";var r=n(88111);function o(e){var t,n;e.indexOf("#")>-1&&(e=e.split("#")[0]),e.indexOf("?")>-1&&-1===e.indexOf("clip_id=")&&(e=e.split("?")[0]);var r=["https?://vimeo.com/[0-9]+$","https?://player.vimeo.com/video/[0-9]+$","https?://vimeo.com/channels","groups","album"].join("|");return new RegExp(r,"gim").test(e)?(n=e.split("/"))&&n.length&&(t=n.pop()):/clip_id=/gim.test(e)&&(n=e.split("clip_id="))&&n.length&&(t=n[1].split("&")[0]),t}function i(e){var t=/https:\/\/vine\.co\/v\/([a-zA-Z0-9]*)\/?/.exec(e);return t&&t[1]}function s(e){var t=/youtube:\/\/|https?:\/\/youtu\.be\/|http:\/\/y2u\.be\//g;if(t.test(e))return u(e.split(t)[1]);var n=/\/v\/|\/vi\//g;if(n.test(e))return u(e.split(n)[1]);var r=/v=|vi=/g;if(r.test(e))return e.split(r)[1].split("&")[0];var o=/\/an_webp\//g;if(o.test(e))return u(e.split(o)[1]);var i=/\/embed\//g;if(i.test(e))return u(e.split(i)[1]);if(!/\/user\/([a-zA-Z0-9]*)$/g.test(e)){if(/\/user\/(?!.*videos)/g.test(e))return u(e.split("/").pop());var s=/\/attribution_link\?.*v%3D([^%&]*)(%26|&|$)/;return s.test(e)?e.match(s)[1]:void 0}}function a(e){var t;if(e.indexOf("embed")>-1)return t=/embed\/(\w{8})/,e.match(t)[1];t=/\/v\/(\w{8})/;var n=e.match(t);return n&&n.length>0?e.match(t)[1]:void 0}function u(e){return e.indexOf("?")>-1?e.split("?")[0]:e.indexOf("/")>-1?e.split("/")[0]:e}e.exports=function(e){if("string"!=typeof e)throw new TypeError("get-video-id expects a string");/<iframe/gi.test(e)&&(e=r(e)),e=(e=(e=e.trim()).replace("-nocookie","")).replace("/www.","/");var t={};if(/\/\/google/.test(e)){var n=e.match(/url=([^&]+)&/);n&&(e=decodeURIComponent(n[1]))}return/youtube|youtu\.be|y2u\.be|i.ytimg\./.test(e)?t={id:s(e),service:"youtube"}:/vimeo/.test(e)?t={id:o(e),service:"vimeo"}:/vine/.test(e)?t={id:i(e),service:"vine"}:/videopress/.test(e)&&(t={id:a(e),service:"videopress"}),t}},54632:(e,t,n)=>{var r=n(28992),o=Object.prototype.toString,i="function"==typeof Blob||"undefined"!=typeof Blob&&"[object BlobConstructor]"===o.call(Blob),s="function"==typeof File||"undefined"!=typeof File&&"[object FileConstructor]"===o.call(File);e.exports=function e(t){if(!t||"object"!=typeof t)return!1;if(r(t)){for(var n=0,o=t.length;n<o;n++)if(e(t[n]))return!0;return!1}if("function"==typeof Buffer&&Buffer.isBuffer&&Buffer.isBuffer(t)||"function"==typeof ArrayBuffer&&t instanceof ArrayBuffer||i&&t instanceof Blob||s&&t instanceof File)return!0;if(t.toJSON&&"function"==typeof t.toJSON&&1===arguments.length)return e(t.toJSON(),!0);for(var a in t)if(Object.prototype.hasOwnProperty.call(t,a)&&e(t[a]))return!0;return!1}},28992:e=>{var t={}.toString;e.exports=Array.isArray||function(e){return"[object Array]"==t.call(e)}},95460:e=>{try{e.exports="undefined"!=typeof XMLHttpRequest&&"withCredentials"in new XMLHttpRequest}catch(t){e.exports=!1}},32636:(e,t,n)=>{"use strict";var r="undefined"!=typeof Symbol&&Symbol,o=n(66679);e.exports=function(){return"function"==typeof r&&("function"==typeof Symbol&&("symbol"==typeof r("foo")&&("symbol"==typeof Symbol("bar")&&o())))}},66679:e=>{"use strict";e.exports=function(){if("function"!=typeof Symbol||"function"!=typeof Object.getOwnPropertySymbols)return!1;if("symbol"==typeof Symbol.iterator)return!0;var e={},t=Symbol("test"),n=Object(t);if("string"==typeof t)return!1;if("[object Symbol]"!==Object.prototype.toString.call(t))return!1;if("[object Symbol]"!==Object.prototype.toString.call(n))return!1;for(t in e[t]=42,e)return!1;if("function"==typeof Object.keys&&0!==Object.keys(e).length)return!1;if("function"==typeof Object.getOwnPropertyNames&&0!==Object.getOwnPropertyNames(e).length)return!1;var r=Object.getOwnPropertySymbols(e);if(1!==r.length||r[0]!==t)return!1;if(!Object.prototype.propertyIsEnumerable.call(e,t))return!1;if("function"==typeof Object.getOwnPropertyDescriptor){var o=Object.getOwnPropertyDescriptor(e,t);if(42!==o.value||!0!==o.enumerable)return!1}return!0}},23198:(e,t,n)=>{"use strict";var r=n(4090);e.exports=r.call(Function.call,Object.prototype.hasOwnProperty)},74495:(e,t,n)=>{"use strict";var r=n(50212),o=n(79561);function i(){this.pending=null,this.pendingTotal=0,this.blockSize=this.constructor.blockSize,this.outSize=this.constructor.outSize,this.hmacStrength=this.constructor.hmacStrength,this.padLength=this.constructor.padLength/8,this.endian="big",this._delta8=this.blockSize/8,this._delta32=this.blockSize/32}t.BlockHash=i,i.prototype.update=function(e,t){if(e=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 o=0;o<e.length;o+=this._delta32)this._update(e,o,o+this._delta32)}return this},i.prototype.digest=function(e){return this.update(this._pad()),o(null===this.pending),this._digest(e)},i.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 o=1;o<n;o++)r[o]=0;if(e<<=3,"big"===this.endian){for(var i=8;i<this.padLength;i++)r[o++]=0;r[o++]=0,r[o++]=0,r[o++]=0,r[o++]=0,r[o++]=e>>>24&255,r[o++]=e>>>16&255,r[o++]=e>>>8&255,r[o++]=255&e}else for(r[o++]=255&e,r[o++]=e>>>8&255,r[o++]=e>>>16&255,r[o++]=e>>>24&255,r[o++]=0,r[o++]=0,r[o++]=0,r[o++]=0,i=8;i<this.padLength;i++)r[o++]=0;return r}},35079:(e,t,n)=>{"use strict";var r=n(50212),o=n(74495),i=n(40713),s=r.rotl32,a=r.sum32,u=r.sum32_5,c=i.ft_1,l=o.BlockHash,d=[1518500249,1859775393,2400959708,3395469782];function p(){if(!(this instanceof p))return new p;l.call(this),this.h=[1732584193,4023233417,2562383102,271733878,3285377520],this.W=new Array(80)}r.inherits(p,l),e.exports=p,p.blockSize=512,p.outSize=160,p.hmacStrength=80,p.padLength=64,p.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(n[r-3]^n[r-8]^n[r-14]^n[r-16],1);var o=this.h[0],i=this.h[1],l=this.h[2],p=this.h[3],f=this.h[4];for(r=0;r<n.length;r++){var h=~~(r/20),m=u(s(o,5),c(h,i,l,p),f,n[r],d[h]);f=p,p=l,l=s(i,30),i=o,o=m}this.h[0]=a(this.h[0],o),this.h[1]=a(this.h[1],i),this.h[2]=a(this.h[2],l),this.h[3]=a(this.h[3],p),this.h[4]=a(this.h[4],f)},p.prototype._digest=function(e){return"hex"===e?r.toHex32(this.h,"big"):r.split32(this.h,"big")}},68032:(e,t,n)=>{"use strict";var r=n(50212),o=n(74495),i=n(40713),s=n(79561),a=r.sum32,u=r.sum32_4,c=r.sum32_5,l=i.ch32,d=i.maj32,p=i.s0_256,f=i.s1_256,h=i.g0_256,m=i.g1_256,g=o.BlockHash,y=[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 v(){if(!(this instanceof v))return new v;g.call(this),this.h=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],this.k=y,this.W=new Array(64)}r.inherits(v,g),e.exports=v,v.blockSize=512,v.outSize=256,v.hmacStrength=192,v.padLength=64,v.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]=u(m(n[r-2]),n[r-7],h(n[r-15]),n[r-16]);var o=this.h[0],i=this.h[1],g=this.h[2],y=this.h[3],v=this.h[4],b=this.h[5],w=this.h[6],_=this.h[7];for(s(this.k.length===n.length),r=0;r<n.length;r++){var E=c(_,f(v),l(v,b,w),this.k[r],n[r]),S=a(p(o),d(o,i,g));_=w,w=b,b=v,v=a(y,E),y=g,g=i,i=o,o=a(E,S)}this.h[0]=a(this.h[0],o),this.h[1]=a(this.h[1],i),this.h[2]=a(this.h[2],g),this.h[3]=a(this.h[3],y),this.h[4]=a(this.h[4],v),this.h[5]=a(this.h[5],b),this.h[6]=a(this.h[6],w),this.h[7]=a(this.h[7],_)},v.prototype._digest=function(e){return"hex"===e?r.toHex32(this.h,"big"):r.split32(this.h,"big")}},40713:(e,t,n)=>{"use strict";var r=n(50212).rotr32;function o(e,t,n){return e&t^~e&n}function i(e,t,n){return e&t^e&n^t&n}function s(e,t,n){return e^t^n}t.ft_1=function(e,t,n,r){return 0===e?o(t,n,r):1===e||3===e?s(t,n,r):2===e?i(t,n,r):void 0},t.ch32=o,t.maj32=i,t.p32=s,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}},50212:(e,t,n)=>{"use strict";var r=n(79561),o=n(91285);function i(e,t){return 55296==(64512&e.charCodeAt(t))&&(!(t<0||t+1>=e.length)&&56320==(64512&e.charCodeAt(t+1)))}function s(e){return(e>>>24|e>>>8&65280|e<<8&16711680|(255&e)<<24)>>>0}function a(e){return 1===e.length?"0"+e:e}function u(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=o,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),o=0;o<e.length;o+=2)n.push(parseInt(e[o]+e[o+1],16))}else for(var r=0,o=0;o<e.length;o++){var s=e.charCodeAt(o);s<128?n[r++]=s:s<2048?(n[r++]=s>>6|192,n[r++]=63&s|128):i(e,o)?(s=65536+((1023&s)<<10)+(1023&e.charCodeAt(++o)),n[r++]=s>>18|240,n[r++]=s>>12&63|128,n[r++]=s>>6&63|128,n[r++]=63&s|128):(n[r++]=s>>12|224,n[r++]=s>>6&63|128,n[r++]=63&s|128)}else for(o=0;o<e.length;o++)n[o]=0|e[o];return n},t.toHex=function(e){for(var t="",n=0;n<e.length;n++)t+=a(e[n].toString(16));return t},t.htonl=s,t.toHex32=function(e,t){for(var n="",r=0;r<e.length;r++){var o=e[r];"little"===t&&(o=s(o)),n+=u(o.toString(16))}return n},t.zero2=a,t.zero8=u,t.join32=function(e,t,n,o){var i=n-t;r(i%4==0);for(var s=new Array(i/4),a=0,u=t;a<s.length;a++,u+=4){var c;c="big"===o?e[u]<<24|e[u+1]<<16|e[u+2]<<8|e[u+3]:e[u+3]<<24|e[u+2]<<16|e[u+1]<<8|e[u],s[a]=c>>>0}return s},t.split32=function(e,t){for(var n=new Array(4*e.length),r=0,o=0;r<e.length;r++,o+=4){var i=e[r];"big"===t?(n[o]=i>>>24,n[o+1]=i>>>16&255,n[o+2]=i>>>8&255,n[o+3]=255&i):(n[o+3]=i>>>24,n[o+2]=i>>>16&255,n[o+1]=i>>>8&255,n[o]=255&i)}return n},t.rotr32=function(e,t){return e>>>t|e<<32-t},t.rotl32=function(e,t){return e<<t|e>>>32-t},t.sum32=function(e,t){return e+t>>>0},t.sum32_3=function(e,t,n){return e+t+n>>>0},t.sum32_4=function(e,t,n,r){return e+t+n+r>>>0},t.sum32_5=function(e,t,n,r,o){return e+t+n+r+o>>>0},t.sum64=function(e,t,n,r){var o=e[t],i=r+e[t+1]>>>0,s=(i<r?1:0)+n+o;e[t]=s>>>0,e[t+1]=i},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,o,i,s,a){var u=0,c=t;return u+=(c=c+r>>>0)<t?1:0,u+=(c=c+i>>>0)<i?1:0,e+n+o+s+(u+=(c=c+a>>>0)<a?1:0)>>>0},t.sum64_4_lo=function(e,t,n,r,o,i,s,a){return t+r+i+a>>>0},t.sum64_5_hi=function(e,t,n,r,o,i,s,a,u,c){var l=0,d=t;return l+=(d=d+r>>>0)<t?1:0,l+=(d=d+i>>>0)<i?1:0,l+=(d=d+a>>>0)<a?1:0,e+n+o+s+u+(l+=(d=d+c>>>0)<c?1:0)>>>0},t.sum64_5_lo=function(e,t,n,r,o,i,s,a,u,c){return t+r+i+a+c>>>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}},73463:(e,t,n)=>{"use strict";var r=n(73887),o={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},i={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},s={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},a={};function u(e){return r.isMemo(e)?s:a[e.$$typeof]||o}a[r.ForwardRef]={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},a[r.Memo]=s;var c=Object.defineProperty,l=Object.getOwnPropertyNames,d=Object.getOwnPropertySymbols,p=Object.getOwnPropertyDescriptor,f=Object.getPrototypeOf,h=Object.prototype;e.exports=function e(t,n,r){if("string"!=typeof n){if(h){var o=f(n);o&&o!==h&&e(t,o,r)}var s=l(n);d&&(s=s.concat(d(n)));for(var a=u(t),m=u(n),g=0;g<s.length;++g){var y=s[g];if(!(i[y]||r&&r[y]||m&&m[y]||a&&a[y])){var v=p(n,y);try{c(t,y,v)}catch(b){}}}}return t}},43459:(e,t)=>{"use strict";
15
  /** @license React v16.13.1
@@ -19,12 +19,12 @@ var t,n,r,o=String.fromCharCode;function i(e){for(var t,n,r=[],o=0,i=e.length;o<
19
  *
20
  * This source code is licensed under the MIT license found in the
21
  * LICENSE file in the root directory of this source tree.
22
- */var n="function"==typeof Symbol&&Symbol.for,r=n?Symbol.for("react.element"):60103,o=n?Symbol.for("react.portal"):60106,i=n?Symbol.for("react.fragment"):60107,s=n?Symbol.for("react.strict_mode"):60108,a=n?Symbol.for("react.profiler"):60114,u=n?Symbol.for("react.provider"):60109,c=n?Symbol.for("react.context"):60110,l=n?Symbol.for("react.async_mode"):60111,d=n?Symbol.for("react.concurrent_mode"):60111,p=n?Symbol.for("react.forward_ref"):60112,f=n?Symbol.for("react.suspense"):60113,h=n?Symbol.for("react.suspense_list"):60120,m=n?Symbol.for("react.memo"):60115,g=n?Symbol.for("react.lazy"):60116,y=n?Symbol.for("react.block"):60121,v=n?Symbol.for("react.fundamental"):60117,b=n?Symbol.for("react.responder"):60118,w=n?Symbol.for("react.scope"):60119;function _(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case r:switch(e=e.type){case l:case d:case i:case a:case s:case f:return e;default:switch(e=e&&e.$$typeof){case c:case p:case g:case m:case u:return e;default:return t}}case o:return t}}}function E(e){return _(e)===d}t.AsyncMode=l,t.ConcurrentMode=d,t.ContextConsumer=c,t.ContextProvider=u,t.Element=r,t.ForwardRef=p,t.Fragment=i,t.Lazy=g,t.Memo=m,t.Portal=o,t.Profiler=a,t.StrictMode=s,t.Suspense=f,t.isAsyncMode=function(e){return E(e)||_(e)===l},t.isConcurrentMode=E,t.isContextConsumer=function(e){return _(e)===c},t.isContextProvider=function(e){return _(e)===u},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===r},t.isForwardRef=function(e){return _(e)===p},t.isFragment=function(e){return _(e)===i},t.isLazy=function(e){return _(e)===g},t.isMemo=function(e){return _(e)===m},t.isPortal=function(e){return _(e)===o},t.isProfiler=function(e){return _(e)===a},t.isStrictMode=function(e){return _(e)===s},t.isSuspense=function(e){return _(e)===f},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===i||e===d||e===a||e===s||e===f||e===h||"object"==typeof e&&null!==e&&(e.$$typeof===g||e.$$typeof===m||e.$$typeof===u||e.$$typeof===c||e.$$typeof===p||e.$$typeof===v||e.$$typeof===b||e.$$typeof===w||e.$$typeof===y)},t.typeOf=_},73887:(e,t,n)=>{"use strict";e.exports=n(43459)},92543:e=>{var t=[].indexOf;e.exports=function(e,n){if(t)return e.indexOf(n);for(var r=0;r<e.length;++r)if(e[r]===n)return r;return-1}},91285: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}}},52635:e=>{"use strict";var t="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag,n=Object.prototype.toString,r=function(e){return!(t&&e&&"object"==typeof e&&Symbol.toStringTag in e)&&"[object Arguments]"===n.call(e)},o=function(e){return!!r(e)||null!==e&&"object"==typeof e&&"number"==typeof e.length&&e.length>=0&&"[object Array]"!==n.call(e)&&"[object Function]"===n.call(e.callee)},i=function(){return r(arguments)}();r.isLegacyArguments=o,e.exports=i?r:o},43138:e=>{"use strict";var t=Object.prototype.toString,n=Function.prototype.toString,r=/^\s*(?:function)?\*/,o="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag,i=Object.getPrototypeOf,s=function(){if(!o)return!1;try{return Function("return function*() {}")()}catch(e){}}(),a=!(!i||!s)&&i(s);e.exports=function(e){return"function"==typeof e&&(!!r.test(n.call(e))||(o?i&&i(e)===a:"[object GeneratorFunction]"===t.call(e)))}},12653:e=>{var t=/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/,n=/\/\d{1,3}(?=%|$)/,r=/\//,o=/%.*$/,i=/([^0-9a-f:/%])/i,s=/([0-9a-f]{5,}|:{3,}|[^:]:$|^:[^:]|\/$)/i;function a(e){if(!t.test(e))return!1;var n=e.split(".");if(4!==n.length)return!1;if("0"===n[0][0]&&n[0].length>1)return!1;if("0"===n[1][0]&&n[1].length>1)return!1;if("0"===n[2][0]&&n[2].length>1)return!1;if("0"===n[3][0]&&n[3].length>1)return!1;var r=Number(n[0]),o=Number(n[1]),i=Number(n[2]),s=Number(n[3]);return r>=0&&r<256&&o>=0&&o<256&&i>=0&&i<256&&s>=0&&s<256}function u(e){var t=e.replace(n,""),u=e.length!==t.length;if(u)return!1;if(!u&&r.test(e))return!1;var c=t.replace(o,""),l=c.lastIndexOf(":");if(-1===l)return!1;var d=a(c.substring(l+1))?c.substring(0,l+1)+"1234:5678":c;if(i.test(d))return!1;if(s.test(d))return!1;var p=d.split("::");if(p.length>2)return!1;if(2===p.length){var f=""===p[0]?[]:p[0].split(":"),h=""===p[1]?[]:p[1].split(":");if(8-(f.length+h.length)<=0)return!1}else if(8!==d.split(":").length)return!1;return!0}function c(e){return a(e)||u(e)}e.exports=function(e){if(e||(e={}),4===e.version)return a;if(6===e.version)return u;if(null==e.version)return c;throw new Error("Unknown version: "+e.version)},e.exports.__all_regexes__=[t,n,r,o,i,s]},77465:(e,t,n)=>{var r=n(12653),o=/\s/,i=/^[a-zA-Z0-9.-]+$/,s=/^([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9-]{0,61}[a-zA-Z0-9])$/,a=/^\+[0-9][0-9 ]{5,27}[0-9]$/,u=/ {2}/,c=/ /g;t["date-time"]=/^\d{4}-(?:0[0-9]{1}|1[0-2]{1})-[0-9]{2}[tT ]\d{2}:\d{2}:\d{2}(?:\.\d+|)([zZ]|[+-]\d{2}:\d{2})$/,t.date=/^\d{4}-(?:0[0-9]{1}|1[0-2]{1})-[0-9]{2}$/,t.time=/^\d{2}:\d{2}:\d{2}$/,t.email=function(e){return-1!==e.indexOf("@")&&!o.test(e)},t["ip-address"]=t.ipv4=r({version:4}),t.ipv6=r({version:6}),t.uri=/^[a-zA-Z][a-zA-Z0-9+\-.]*:[^\s]*$/,t.color=/(#?([0-9A-Fa-f]{3,6})\b)|(aqua)|(black)|(blue)|(fuchsia)|(gray)|(green)|(lime)|(maroon)|(navy)|(olive)|(orange)|(purple)|(red)|(silver)|(teal)|(white)|(yellow)|(rgb\(\s*\b([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\b\s*,\s*\b([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\b\s*,\s*\b([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\b\s*\))|(rgb\(\s*(\d?\d%|100%)+\s*,\s*(\d?\d%|100%)+\s*,\s*(\d?\d%|100%)+\s*\))/,t.hostname=function(e){if(!i.test(e))return!1;for(var t=e.split("."),n=0;n<t.length;n++)if(!s.test(t[n]))return!1;return!0},t.alpha=/^[a-zA-Z]+$/,t.alphanumeric=/^[a-zA-Z0-9]+$/,t.style=/.:\s*[^;]/g,t.phone=function(e){if(!a.test(e))return!1;if(u.test(e))return!1;var t=e.substring(1).replace(c,"").length;return t>=7&&t<=15},t["utc-millisec"]=/^[0-9]{1,15}\.?[0-9]{0,15}$/},60772:(e,t,n)=>{var r=n(6e3),o=n(88616),i=n(404),s=n(51960),a=n(77465),u={any:function(){return"true"},null:function(e){return e+" === null"},boolean:function(e){return"typeof "+e+' === "boolean"'},array:function(e){return"Array.isArray("+e+")"},object:function(e){return"typeof "+e+' === "object" && '+e+" && !Array.isArray("+e+")"},number:function(e){return"typeof "+e+' === "number" && isFinite('+e+")"},integer:function(e){return"typeof "+e+' === "number" && (Math.floor('+e+") === "+e+" || "+e+" > 9007199254740992 || "+e+" < -9007199254740992)"},string:function(e){return"typeof "+e+' === "string"'}},c=function(e,t){t=Math.min(-1===t?e.length:t,e.length);for(var n=[],r=0;r<t;r++)n.push("object"==typeof e[r]?JSON.stringify(e[r]):e[r]);for(r=1;r<n.length;r++)if(n.indexOf(n[r])!==r)return!1;return!0},l=function(e,t){var n,r=(0|t)!==t?Math.pow(10,t.toString().split(".").pop().length):1;r>1?n=((0|e)!==e?Math.pow(10,e.toString().split(".").pop().length):1)>r||Math.round(r*e)%(r*t):n=e%t;return!n},d=function(e,t,n){return n>-1&&t.length>n||e.test(t)},p=function(e,t,n,f,h){var m=h?s(a,h.formats):a,g={unique:c,formats:m,isMultipleOf:l,testLimitedRegex:d},y=!!h&&!!h.verbose,v=!(!h||void 0===h.greedy)&&h.greedy,b={},w=[],_=function(e){var t=e+(b[e]=(b[e]||0)+1);return w.push(t),t},E=function(e){var t=JSON.stringify(e);try{for(var n=/\[([^\[\]"]+)\]/;n.test(t);)t=t.replace(n,r);return t}catch(o){return JSON.stringify(e)}function r(e,t){if(-1===w.indexOf(t))throw new Error("Unreplaceable");return'." + '+t+' + "'}},S={},C=function(e){if(S[e])return S[e];var t=_("pattern");return g[t]=new RegExp(e),S[e]=t,t},P=["i","j","k","l","m","n","o","p","q","r","s","t","u","v","x","y","z"],k=function(){var e=P.shift();return P.push(e+e[0]),w.push(e),e},I=function(e,o,s,c,l){var d=o.properties,f=o.type,b=!1;Array.isArray(o.items)&&(d={},o.items.forEach((function(e,t){d[t]=e})),f="array",b=!0);var w=0,S=function(t,n,r){A("errors++"),!0===s&&(A("if (validate.errors === null) validate.errors = []"),y?A("validate.errors.push({field:%s,message:%s,value:%s,type:%s,schemaPath:%s})",E(n||e),JSON.stringify(t),r||e,JSON.stringify(f),JSON.stringify(l)):A("validate.errors.push({field:%s,message:%s})",E(n||e),JSON.stringify(t)))};!0===o.required?(w++,A("if (%s === undefined) {",e),S("is required"),A("} else {")):(w++,A("if (%s !== undefined) {",e));var P=[].concat(f).map((function(t){if(t&&!u.hasOwnProperty(t))throw new Error("Unknown type: "+t);return u[t||"any"](e)})).join(" || ")||"true";if("true"!==P&&(w++,A("if (!(%s)) {",P),S("is the wrong type"),A("} else {")),b)if(!1===o.additionalItems)A("if (%s.length > %d) {",e,o.items.length),S("has additional items"),A("}");else if(o.additionalItems){var T=k();A("for (var %s = %d; %s < %s.length; %s++) {",T,o.items.length,T,e,T),I(e+"["+T+"]",o.additionalItems,s,c,l.concat("additionalItems")),A("}")}if(o.format&&m[o.format]){"string"!==f&&a[o.format]&&A("if (%s) {",u.string(e));var R=_("format");g[R]=m[o.format],"function"==typeof g[R]?A("if (!%s(%s)) {",R,e):A("if (!testLimitedRegex(%s, %s, %d)) {",R,e,void 0===o.maxLength?-1:o.maxLength),S("must be "+o.format+" format"),A("}"),"string"!==f&&a[o.format]&&A("}")}if(Array.isArray(o.required)){R=_("missing");A("var %s = 0",R);A("if ((%s)) {","object"!==f?u.object(e):"true"),o.required.map((function(t){var n=r(e,t);A("if (%s === undefined) {",n),S("is required",n),A("%s++",R),A("}")})),A("}"),v||(A("if (%s === 0) {",R),w++)}if(o.uniqueItems&&("array"!==f&&A("if (%s) {",u.array(e)),A("if (!(unique(%s, %d))) {",e,o.maxItems||-1),S("must be unique"),A("}"),"array"!==f&&A("}")),o.enum){var O=o.enum.some((function(e){return"object"==typeof e}))?function(t){return"JSON.stringify("+e+") !== JSON.stringify("+JSON.stringify(t)+")"}:function(t){return e+" !== "+JSON.stringify(t)};A("if (%s) {",o.enum.map(O).join(" && ")||"false"),S("must be an enum value"),A("}")}if(o.dependencies&&("object"!==f&&A("if (%s) {",u.object(e)),Object.keys(o.dependencies).forEach((function(t){var n=o.dependencies[t];"string"==typeof n&&(n=[n]);Array.isArray(n)&&(A("if (%s !== undefined && !(%s)) {",r(e,t),n.map((function(t){return r(e,t)+" !== undefined"})).join(" && ")||"true"),S("dependencies not set"),A("}")),"object"==typeof n&&(A("if (%s !== undefined) {",r(e,t)),I(e,n,s,c,l.concat(["dependencies",t])),A("}"))})),"object"!==f&&A("}")),o.additionalProperties||!1===o.additionalProperties){"object"!==f&&A("if (%s) {",u.object(e));T=k();var x=_("keys"),F=Object.keys(d||{}).map((function(e){return x+"["+T+"] !== "+JSON.stringify(e)})).concat(Object.keys(o.patternProperties||{}).map((function(e){return"!"+C(e)+".test("+x+"["+T+"])"}))).join(" && ")||"true";A("var %s = Object.keys(%s)",x,e)("for (var %s = 0; %s < %s.length; %s++) {",T,T,x,T)("if (%s) {",F),!1===o.additionalProperties?(c&&A("delete %s",e+"["+x+"["+T+"]]"),S("has additional properties",null,JSON.stringify(e+".")+" + "+x+"["+T+"]")):I(e+"["+x+"["+T+"]]",o.additionalProperties,s,c,l.concat(["additionalProperties"])),A("}")("}"),"object"!==f&&A("}")}if(o.$ref){var L=function(e,t,n){var r=function(e){return e&&e.id===n?e:"object"==typeof e&&e?Object.keys(e).reduce((function(t,n){return t||r(e[n])}),null):null},o=r(e);if(o)return o;n=(n=n.replace(/^#/,"")).replace(/\/$/,"");try{return i.get(e,decodeURI(n))}catch(c){var s,a=n.indexOf("#");if(0!==a)if(-1===a)s=t[n];else{s=t[n.slice(0,a)];var u=n.slice(a).replace(/^#/,"");try{return i.get(s,u)}catch(c){}}else s=t[n];return s||null}}(n,h&&h.schemas||{},o.$ref);if(L){var U=t[o.$ref];U||(t[o.$ref]=function(e){return U(e)},U=p(L,t,n,!1,h));R=_("ref");g[R]=U,A("if (!(%s(%s))) {",R,e),S("referenced schema does not match"),A("}")}}if(o.not){var Z=_("prev");A("var %s = errors",Z),I(e,o.not,!1,c,l.concat("not")),A("if (%s === errors) {",Z),S("negative schema matches"),A("} else {")("errors = %s",Z)("}")}if(o.items&&!b){"array"!==f&&A("if (%s) {",u.array(e));T=k();A("for (var %s = 0; %s < %s.length; %s++) {",T,T,e,T),I(e+"["+T+"]",o.items,s,c,l.concat("items")),A("}"),"array"!==f&&A("}")}if(o.patternProperties){"object"!==f&&A("if (%s) {",u.object(e));x=_("keys"),T=k();A("var %s = Object.keys(%s)",x,e)("for (var %s = 0; %s < %s.length; %s++) {",T,T,x,T),Object.keys(o.patternProperties).forEach((function(t){var n=C(t);A("if (%s.test(%s)) {",n,x+"["+T+"]"),I(e+"["+x+"["+T+"]]",o.patternProperties[t],s,c,l.concat(["patternProperties",t])),A("}")})),A("}"),"object"!==f&&A("}")}if(o.pattern){var D=C(o.pattern);"string"!==f&&A("if (%s) {",u.string(e)),A("if (!(testLimitedRegex(%s, %s, %d))) {",D,e,void 0===o.maxLength?-1:o.maxLength),S("pattern mismatch"),A("}"),"string"!==f&&A("}")}if(o.allOf&&o.allOf.forEach((function(t,n){I(e,t,s,c,l.concat(["allOf",n]))})),o.anyOf&&o.anyOf.length){Z=_("prev");o.anyOf.forEach((function(t,n){0===n?A("var %s = errors",Z):A("if (errors !== %s) {",Z)("errors = %s",Z),I(e,t,!1,!1,l)})),o.anyOf.forEach((function(e,t){t&&A("}")})),A("if (%s !== errors) {",Z),S("no schemas match"),A("}")}if(o.oneOf&&o.oneOf.length){Z=_("prev");var j=_("passes");A("var %s = errors",Z)("var %s = 0",j),o.oneOf.forEach((function(t,n){I(e,t,!1,!1,l),A("if (%s === errors) {",Z)("%s++",j)("} else {")("errors = %s",Z)("}")})),A("if (%s !== 1) {",j),S("no (or more than one) schemas match"),A("}")}for(void 0!==o.multipleOf&&("number"!==f&&"integer"!==f&&A("if (%s) {",u.number(e)),A("if (!isMultipleOf(%s, %d)) {",e,o.multipleOf),S("has a remainder"),A("}"),"number"!==f&&"integer"!==f&&A("}")),void 0!==o.maxProperties&&("object"!==f&&A("if (%s) {",u.object(e)),A("if (Object.keys(%s).length > %d) {",e,o.maxProperties),S("has more properties than allowed"),A("}"),"object"!==f&&A("}")),void 0!==o.minProperties&&("object"!==f&&A("if (%s) {",u.object(e)),A("if (Object.keys(%s).length < %d) {",e,o.minProperties),S("has less properties than allowed"),A("}"),"object"!==f&&A("}")),void 0!==o.maxItems&&("array"!==f&&A("if (%s) {",u.array(e)),A("if (%s.length > %d) {",e,o.maxItems),S("has more items than allowed"),A("}"),"array"!==f&&A("}")),void 0!==o.minItems&&("array"!==f&&A("if (%s) {",u.array(e)),A("if (%s.length < %d) {",e,o.minItems),S("has less items than allowed"),A("}"),"array"!==f&&A("}")),void 0!==o.maxLength&&("string"!==f&&A("if (%s) {",u.string(e)),A("if (%s.length > %d) {",e,o.maxLength),S("has longer length than allowed"),A("}"),"string"!==f&&A("}")),void 0!==o.minLength&&("string"!==f&&A("if (%s) {",u.string(e)),A("if (%s.length < %d) {",e,o.minLength),S("has less length than allowed"),A("}"),"string"!==f&&A("}")),void 0!==o.minimum&&("number"!==f&&"integer"!==f&&A("if (%s) {",u.number(e)),A("if (%s %s %d) {",e,o.exclusiveMinimum?"<=":"<",o.minimum),S("is less than minimum"),A("}"),"number"!==f&&"integer"!==f&&A("}")),void 0!==o.maximum&&("number"!==f&&"integer"!==f&&A("if (%s) {",u.number(e)),A("if (%s %s %d) {",e,o.exclusiveMaximum?">=":">",o.maximum),S("is more than maximum"),A("}"),"number"!==f&&"integer"!==f&&A("}")),d&&Object.keys(d).forEach((function(t){Array.isArray(f)&&-1!==f.indexOf("null")&&A("if (%s !== null) {",e),I(r(e,t),d[t],s,c,l.concat(b?t:["properties",t])),Array.isArray(f)&&-1!==f.indexOf("null")&&A("}")}));w--;)A("}")},A=o("function validate(data) {")("if (data === undefined) data = null")("validate.errors = null")("var errors = 0");return I("data",e,f,h&&h.filter,[]),A("return errors === 0")("}"),(A=A.toFunction(g)).errors=null,Object.defineProperty&&Object.defineProperty(A,"error",{get:function(){return A.errors?A.errors.map((function(e){return e.field+" "+e.message})).join("\n"):""}}),A.toJSON=function(){return e},A};e.exports=function(e,t){return"string"==typeof e&&(e=JSON.parse(e)),p(e,{},e,!0,t)},e.exports.filter=function(t,n){var r=e.exports(t,s(n,{filter:!0}));return function(e){return r(e),e}}},30892:e=>{"use strict";e.exports=function(e){return/^[$A-Z\_a-z\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0370-\u0374\u0376\u0377\u037a-\u037d\u0386\u0388-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u048a-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05d0-\u05ea\u05f0-\u05f2\u0620-\u064a\u066e\u066f\u0671-\u06d3\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u07f4\u07f5\u07fa\u0800-\u0815\u081a\u0824\u0828\u0840-\u0858\u08a0\u08a2-\u08ac\u0904-\u0939\u093d\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097f\u0985-\u098c\u098f\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc\u09dd\u09df-\u09e1\u09f0\u09f1\u0a05-\u0a0a\u0a0f\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0\u0ae1\u0b05-\u0b0c\u0b0f\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32\u0b33\u0b35-\u0b39\u0b3d\u0b5c\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99\u0b9a\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c33\u0c35-\u0c39\u0c3d\u0c58\u0c59\u0c60\u0c61\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d05-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d60\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0e01-\u0e30\u0e32\u0e33\u0e40-\u0e46\u0e81\u0e82\u0e84\u0e87\u0e88\u0e8a\u0e8d\u0e94-\u0e97\u0e99-\u0e9f\u0ea1-\u0ea3\u0ea5\u0ea7\u0eaa\u0eab\u0ead-\u0eb0\u0eb2\u0eb3\u0ebd\u0ec0-\u0ec4\u0ec6\u0edc-\u0edf\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u1000-\u102a\u103f\u1050-\u1055\u105a-\u105d\u1061\u1065\u1066\u106e-\u1070\u1075-\u1081\u108e\u10a0-\u10c5\u10c7\u10cd\u10d0-\u10fa\u10fc-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u13a0-\u13f4\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f0\u1700-\u170c\u170e-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1780-\u17b3\u17d7\u17dc\u1820-\u1877\u1880-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191c\u1950-\u196d\u1970-\u1974\u1980-\u19ab\u19c1-\u19c7\u1a00-\u1a16\u1a20-\u1a54\u1aa7\u1b05-\u1b33\u1b45-\u1b4b\u1b83-\u1ba0\u1bae\u1baf\u1bba-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c7d\u1ce9-\u1cec\u1cee-\u1cf1\u1cf5\u1cf6\u1d00-\u1dbf\u1e00-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u2071\u207f\u2090-\u209c\u2102\u2107\u210a-\u2113\u2115\u2119-\u211d\u2124\u2126\u2128\u212a-\u212d\u212f-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u2c00-\u2c2e\u2c30-\u2c5e\u2c60-\u2ce4\u2ceb-\u2cee\u2cf2\u2cf3\u2d00-\u2d25\u2d27\u2d2d\u2d30-\u2d67\u2d6f\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u2e2f\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303c\u3041-\u3096\u309d-\u309f\u30a1-\u30fa\u30fc-\u30ff\u3105-\u312d\u3131-\u318e\u31a0-\u31ba\u31f0-\u31ff\u3400-\u4db5\u4e00-\u9fcc\ua000-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua61f\ua62a\ua62b\ua640-\ua66e\ua67f-\ua697\ua6a0-\ua6ef\ua717-\ua71f\ua722-\ua788\ua78b-\ua78e\ua790-\ua793\ua7a0-\ua7aa\ua7f8-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9cf\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uaa60-\uaa76\uaa7a\uaa80-\uaaaf\uaab1\uaab5\uaab6\uaab9-\uaabd\uaac0\uaac2\uaadb-\uaadd\uaae0-\uaaea\uaaf2-\uaaf4\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uabc0-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\uf900-\ufa6d\ufa70-\ufad9\ufb00-\ufb06\ufb13-\ufb17\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40\ufb41\ufb43\ufb44\ufb46-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\uff21-\uff3a\uff41-\uff5a\uff66-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc][$A-Z\_a-z\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0370-\u0374\u0376\u0377\u037a-\u037d\u0386\u0388-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u048a-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05d0-\u05ea\u05f0-\u05f2\u0620-\u064a\u066e\u066f\u0671-\u06d3\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u07f4\u07f5\u07fa\u0800-\u0815\u081a\u0824\u0828\u0840-\u0858\u08a0\u08a2-\u08ac\u0904-\u0939\u093d\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097f\u0985-\u098c\u098f\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc\u09dd\u09df-\u09e1\u09f0\u09f1\u0a05-\u0a0a\u0a0f\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0\u0ae1\u0b05-\u0b0c\u0b0f\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32\u0b33\u0b35-\u0b39\u0b3d\u0b5c\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99\u0b9a\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c33\u0c35-\u0c39\u0c3d\u0c58\u0c59\u0c60\u0c61\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d05-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d60\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0e01-\u0e30\u0e32\u0e33\u0e40-\u0e46\u0e81\u0e82\u0e84\u0e87\u0e88\u0e8a\u0e8d\u0e94-\u0e97\u0e99-\u0e9f\u0ea1-\u0ea3\u0ea5\u0ea7\u0eaa\u0eab\u0ead-\u0eb0\u0eb2\u0eb3\u0ebd\u0ec0-\u0ec4\u0ec6\u0edc-\u0edf\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u1000-\u102a\u103f\u1050-\u1055\u105a-\u105d\u1061\u1065\u1066\u106e-\u1070\u1075-\u1081\u108e\u10a0-\u10c5\u10c7\u10cd\u10d0-\u10fa\u10fc-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u13a0-\u13f4\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f0\u1700-\u170c\u170e-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1780-\u17b3\u17d7\u17dc\u1820-\u1877\u1880-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191c\u1950-\u196d\u1970-\u1974\u1980-\u19ab\u19c1-\u19c7\u1a00-\u1a16\u1a20-\u1a54\u1aa7\u1b05-\u1b33\u1b45-\u1b4b\u1b83-\u1ba0\u1bae\u1baf\u1bba-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c7d\u1ce9-\u1cec\u1cee-\u1cf1\u1cf5\u1cf6\u1d00-\u1dbf\u1e00-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u2071\u207f\u2090-\u209c\u2102\u2107\u210a-\u2113\u2115\u2119-\u211d\u2124\u2126\u2128\u212a-\u212d\u212f-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u2c00-\u2c2e\u2c30-\u2c5e\u2c60-\u2ce4\u2ceb-\u2cee\u2cf2\u2cf3\u2d00-\u2d25\u2d27\u2d2d\u2d30-\u2d67\u2d6f\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u2e2f\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303c\u3041-\u3096\u309d-\u309f\u30a1-\u30fa\u30fc-\u30ff\u3105-\u312d\u3131-\u318e\u31a0-\u31ba\u31f0-\u31ff\u3400-\u4db5\u4e00-\u9fcc\ua000-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua61f\ua62a\ua62b\ua640-\ua66e\ua67f-\ua697\ua6a0-\ua6ef\ua717-\ua71f\ua722-\ua788\ua78b-\ua78e\ua790-\ua793\ua7a0-\ua7aa\ua7f8-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9cf\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uaa60-\uaa76\uaa7a\uaa80-\uaaaf\uaab1\uaab5\uaab6\uaab9-\uaabd\uaac0\uaac2\uaadb-\uaadd\uaae0-\uaaea\uaaf2-\uaaf4\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uabc0-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\uf900-\ufa6d\ufa70-\ufad9\ufb00-\ufb06\ufb13-\ufb17\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40\ufb41\ufb43\ufb44\ufb46-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\uff21-\uff3a\uff41-\uff5a\uff66-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc0-9\u0300-\u036f\u0483-\u0487\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u0669\u0670\u06d6-\u06dc\u06df-\u06e4\u06e7\u06e8\u06ea-\u06ed\u06f0-\u06f9\u0711\u0730-\u074a\u07a6-\u07b0\u07c0-\u07c9\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0859-\u085b\u08e4-\u08fe\u0900-\u0903\u093a-\u093c\u093e-\u094f\u0951-\u0957\u0962\u0963\u0966-\u096f\u0981-\u0983\u09bc\u09be-\u09c4\u09c7\u09c8\u09cb-\u09cd\u09d7\u09e2\u09e3\u09e6-\u09ef\u0a01-\u0a03\u0a3c\u0a3e-\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a66-\u0a71\u0a75\u0a81-\u0a83\u0abc\u0abe-\u0ac5\u0ac7-\u0ac9\u0acb-\u0acd\u0ae2\u0ae3\u0ae6-\u0aef\u0b01-\u0b03\u0b3c\u0b3e-\u0b44\u0b47\u0b48\u0b4b-\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b66-\u0b6f\u0b82\u0bbe-\u0bc2\u0bc6-\u0bc8\u0bca-\u0bcd\u0bd7\u0be6-\u0bef\u0c01-\u0c03\u0c3e-\u0c44\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0c66-\u0c6f\u0c82\u0c83\u0cbc\u0cbe-\u0cc4\u0cc6-\u0cc8\u0cca-\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0ce6-\u0cef\u0d02\u0d03\u0d3e-\u0d44\u0d46-\u0d48\u0d4a-\u0d4d\u0d57\u0d62\u0d63\u0d66-\u0d6f\u0d82\u0d83\u0dca\u0dcf-\u0dd4\u0dd6\u0dd8-\u0ddf\u0df2\u0df3\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0e50-\u0e59\u0eb1\u0eb4-\u0eb9\u0ebb\u0ebc\u0ec8-\u0ecd\u0ed0-\u0ed9\u0f18\u0f19\u0f20-\u0f29\u0f35\u0f37\u0f39\u0f3e\u0f3f\u0f71-\u0f84\u0f86\u0f87\u0f8d-\u0f97\u0f99-\u0fbc\u0fc6\u102b-\u103e\u1040-\u1049\u1056-\u1059\u105e-\u1060\u1062-\u1064\u1067-\u106d\u1071-\u1074\u1082-\u108d\u108f-\u109d\u135d-\u135f\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b4-\u17d3\u17dd\u17e0-\u17e9\u180b-\u180d\u1810-\u1819\u18a9\u1920-\u192b\u1930-\u193b\u1946-\u194f\u19b0-\u19c0\u19c8\u19c9\u19d0-\u19d9\u1a17-\u1a1b\u1a55-\u1a5e\u1a60-\u1a7c\u1a7f-\u1a89\u1a90-\u1a99\u1b00-\u1b04\u1b34-\u1b44\u1b50-\u1b59\u1b6b-\u1b73\u1b80-\u1b82\u1ba1-\u1bad\u1bb0-\u1bb9\u1be6-\u1bf3\u1c24-\u1c37\u1c40-\u1c49\u1c50-\u1c59\u1cd0-\u1cd2\u1cd4-\u1ce8\u1ced\u1cf2-\u1cf4\u1dc0-\u1de6\u1dfc-\u1dff\u200c\u200d\u203f\u2040\u2054\u20d0-\u20dc\u20e1\u20e5-\u20f0\u2cef-\u2cf1\u2d7f\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua620-\ua629\ua66f\ua674-\ua67d\ua69f\ua6f0\ua6f1\ua802\ua806\ua80b\ua823-\ua827\ua880\ua881\ua8b4-\ua8c4\ua8d0-\ua8d9\ua8e0-\ua8f1\ua900-\ua909\ua926-\ua92d\ua947-\ua953\ua980-\ua983\ua9b3-\ua9c0\ua9d0-\ua9d9\uaa29-\uaa36\uaa43\uaa4c\uaa4d\uaa50-\uaa59\uaa7b\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uaaeb-\uaaef\uaaf5\uaaf6\uabe3-\uabea\uabec\uabed\uabf0-\uabf9\ufb1e\ufe00-\ufe0f\ufe20-\ufe26\ufe33\ufe34\ufe4d-\ufe4f\uff10-\uff19\uff3f]*$/.test(e)}},50198:(e,t,n)=>{"use strict";var r=n(46388),o=n(62191),i=n(62680),s=i("Object.prototype.toString"),a=n(32636)()&&"symbol"==typeof Symbol.toStringTag,u=o(),c=i("Array.prototype.indexOf",!0)||function(e,t){for(var n=0;n<e.length;n+=1)if(e[n]===t)return n;return-1},l=i("String.prototype.slice"),d={},p=n(29765),f=Object.getPrototypeOf;a&&p&&f&&r(u,(function(e){var t=new window[e];if(!(Symbol.toStringTag in t))throw new EvalError("this engine has support for Symbol.toStringTag, but "+e+" does not have the property! Please report this.");var n=f(t),r=p(n,Symbol.toStringTag);if(!r){var o=f(n);r=p(o,Symbol.toStringTag)}d[e]=r.get}));e.exports=function(e){if(!e||"object"!=typeof e)return!1;if(!a){var t=l(s(e),8,-1);return c(u,t)>-1}return!!p&&function(e){var t=!1;return r(d,(function(n,r){if(!t)try{t=n.call(e)===r}catch(o){}})),t}(e)}},95978:function(e,t){var n,r;r="undefined"!=typeof self?self:"undefined"!=typeof window||"undefined"!=typeof window?window:this,e.exports=function(r){"use strict";var o,i=(r=r||{}).Base64,s="2.6.4",a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",u=function(e){for(var t={},n=0,r=e.length;n<r;n++)t[e.charAt(n)]=n;return t}(a),c=String.fromCharCode,l=function(e){if(e.length<2)return(t=e.charCodeAt(0))<128?e:t<2048?c(192|t>>>6)+c(128|63&t):c(224|t>>>12&15)+c(128|t>>>6&63)+c(128|63&t);var t=65536+1024*(e.charCodeAt(0)-55296)+(e.charCodeAt(1)-56320);return c(240|t>>>18&7)+c(128|t>>>12&63)+c(128|t>>>6&63)+c(128|63&t)},d=/[\uD800-\uDBFF][\uDC00-\uDFFFF]|[^\x00-\x7F]/g,p=function(e){return e.replace(d,l)},f=function(e){var t=[0,2,1][e.length%3],n=e.charCodeAt(0)<<16|(e.length>1?e.charCodeAt(1):0)<<8|(e.length>2?e.charCodeAt(2):0);return[a.charAt(n>>>18),a.charAt(n>>>12&63),t>=2?"=":a.charAt(n>>>6&63),t>=1?"=":a.charAt(63&n)].join("")},h=r.btoa&&"function"==typeof r.btoa?function(e){return r.btoa(e)}:function(e){if(e.match(/[^\x00-\xFF]/))throw new RangeError("The string contains invalid characters.");return e.replace(/[\s\S]{1,3}/g,f)},m=function(e){return h(p(String(e)))},g=function(e){return e.replace(/[+\/]/g,(function(e){return"+"==e?"-":"_"})).replace(/=/g,"")},y=function(e,t){return t?g(m(e)):m(e)},v=function(e){return y(e,!0)};r.Uint8Array&&(o=function(e,t){for(var n="",r=0,o=e.length;r<o;r+=3){var i=e[r],s=e[r+1],u=e[r+2],c=i<<16|s<<8|u;n+=a.charAt(c>>>18)+a.charAt(c>>>12&63)+(void 0!==s?a.charAt(c>>>6&63):"=")+(void 0!==u?a.charAt(63&c):"=")}return t?g(n):n});var b,w=/[\xC0-\xDF][\x80-\xBF]|[\xE0-\xEF][\x80-\xBF]{2}|[\xF0-\xF7][\x80-\xBF]{3}/g,_=function(e){switch(e.length){case 4:var t=((7&e.charCodeAt(0))<<18|(63&e.charCodeAt(1))<<12|(63&e.charCodeAt(2))<<6|63&e.charCodeAt(3))-65536;return c(55296+(t>>>10))+c(56320+(1023&t));case 3:return c((15&e.charCodeAt(0))<<12|(63&e.charCodeAt(1))<<6|63&e.charCodeAt(2));default:return c((31&e.charCodeAt(0))<<6|63&e.charCodeAt(1))}},E=function(e){return e.replace(w,_)},S=function(e){var t=e.length,n=t%4,r=(t>0?u[e.charAt(0)]<<18:0)|(t>1?u[e.charAt(1)]<<12:0)|(t>2?u[e.charAt(2)]<<6:0)|(t>3?u[e.charAt(3)]:0),o=[c(r>>>16),c(r>>>8&255),c(255&r)];return o.length-=[0,0,2,1][n],o.join("")},C=r.atob&&"function"==typeof r.atob?function(e){return r.atob(e)}:function(e){return e.replace(/\S{1,4}/g,S)},P=function(e){return C(String(e).replace(/[^A-Za-z0-9\+\/]/g,""))},k=function(e){return E(C(e))},I=function(e){return String(e).replace(/[-_]/g,(function(e){return"-"==e?"+":"/"})).replace(/[^A-Za-z0-9\+\/]/g,"")},A=function(e){return k(I(e))};r.Uint8Array&&(b=function(e){return Uint8Array.from(P(I(e)),(function(e){return e.charCodeAt(0)}))});var T=function(){var e=r.Base64;return r.Base64=i,e};if(r.Base64={VERSION:s,atob:P,btoa:h,fromBase64:A,toBase64:y,utob:p,encode:y,encodeURI:v,btou:E,decode:A,noConflict:T,fromUint8Array:o,toUint8Array:b},"function"==typeof Object.defineProperty){var R=function(e){return{value:e,enumerable:!1,writable:!0,configurable:!0}};r.Base64.extendString=function(){Object.defineProperty(String.prototype,"fromBase64",R((function(){return A(this)}))),Object.defineProperty(String.prototype,"toBase64",R((function(e){return y(this,e)}))),Object.defineProperty(String.prototype,"toBase64URI",R((function(){return y(this,!0)})))}}return r.Meteor&&(Base64=r.Base64),e.exports?e.exports.Base64=r.Base64:void 0===(n=function(){return r.Base64}.apply(t,[]))||(e.exports=n),{Base64:r.Base64}}(r)},404:(e,t)=>{var n=/~/,r=/~[01]/g;function o(e){switch(e){case"~1":return"/";case"~0":return"~"}throw new Error("Invalid tilde escape: "+e)}function i(e){return n.test(e)?e.replace(r,o):e}function s(e){if("string"==typeof e){if(""===(e=e.split("/"))[0])return e;throw new Error("Invalid JSON pointer.")}if(Array.isArray(e))return e;throw new Error("Invalid JSON pointer.")}function a(e,t){if("object"!=typeof e)throw new Error("Invalid input object.");var n=(t=s(t)).length;if(1===n)return e;for(var r=1;r<n;){if(e=e[i(t[r++])],n===r)return e;if("object"!=typeof e)return}}function u(e,t,n){if("object"!=typeof e)throw new Error("Invalid input object.");if(0===(t=s(t)).length)throw new Error("Invalid JSON pointer for set.");return function(e,t,n){for(var r,o,s=1,a=t.length;s<a&&(r=i(t[s++]),o=a>s,void 0===e[r]&&(Array.isArray(e)&&"-"===r&&(r=e.length),o&&(""!==t[s]&&t[s]<1/0||"-"===t[s]?e[r]=[]:e[r]={})),o);)e=e[r];var u=e[r];return void 0===n?delete e[r]:e[r]=n,u}(e,t,n)}t.get=a,t.set=u,t.compile=function(e){var t=s(e);return{get:function(e){return a(e,t)},set:function(e,n){return u(e,t,n)}}}},7839:(e,t,n)=>{var r=n(22699),o=n(91285);function i(e){if(!(this instanceof i))return new i(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=i,o(i,r.EventEmitter),Object.defineProperty(i.prototype,"keys",{get:function(){return Object.keys(this.cache)}}),i.prototype.clear=function(){this.cache={},this.head=this.tail=null,this.length=0},i.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}},i.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)},i.prototype.peek=function(e){if(this.cache.hasOwnProperty(e)){var t=this.cache[e];if(this._checkAge(e,t))return t.value}},i.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},i.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)},i.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}},i.prototype.evict=function(){if(this.tail){var e=this.tail,t=this.remove(this.tail);this.emit("evict",{key:e,value:t})}}},81549:(e,t,n)=>{"use strict";n.d(t,{Z:()=>d});var r=n(99196),o=n.n(r),i=n(81665),s=n(13980),a=n.n(s),u=1073741823,c="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window||"undefined"!=typeof window?window:{};function l(e){var t=[];return{on:function(e){t.push(e)},off:function(e){t=t.filter((function(t){return t!==e}))},get:function(){return e},set:function(n,r){e=n,t.forEach((function(t){return t(e,r)}))}}}const d=o().createContext||function(e,t){var n,o,s,d="__create-react-context-"+((c[s="__global_unique_id__"]=(c[s]||0)+1)+"__"),p=function(e){function n(){var t;return(t=e.apply(this,arguments)||this).emitter=l(t.props.value),t}(0,i.Z)(n,e);var r=n.prototype;return r.getChildContext=function(){var e;return(e={})[d]=this.emitter,e},r.componentWillReceiveProps=function(e){if(this.props.value!==e.value){var n,r=this.props.value,o=e.value;((i=r)===(s=o)?0!==i||1/i==1/s:i!=i&&s!=s)?n=0:(n="function"==typeof t?t(r,o):u,0!==(n|=0)&&this.emitter.set(e.value,n))}var i,s},r.render=function(){return this.props.children},n}(r.Component);p.childContextTypes=((n={})[d]=a().object.isRequired,n);var f=function(t){function n(){var e;return(e=t.apply(this,arguments)||this).state={value:e.getValue()},e.onUpdate=function(t,n){0!=((0|e.observedBits)&n)&&e.setState({value:e.getValue()})},e}(0,i.Z)(n,t);var r=n.prototype;return r.componentWillReceiveProps=function(e){var t=e.observedBits;this.observedBits=null==t?u:t},r.componentDidMount=function(){this.context[d]&&this.context[d].on(this.onUpdate);var e=this.props.observedBits;this.observedBits=null==e?u:e},r.componentWillUnmount=function(){this.context[d]&&this.context[d].off(this.onUpdate)},r.getValue=function(){return this.context[d]?this.context[d].get():e},r.render=function(){return(e=this.props.children,Array.isArray(e)?e[0]:e)(this.state.value);var e},n}(r.Component);return f.contextTypes=((o={})[d]=a().object,o),{Provider:p,Consumer:f}}},39142:()=>{},43261:()=>{},53616:()=>{},81712:()=>{},32014:()=>{},17228:()=>{},9723:()=>{},80418:()=>{},50436:()=>{},21586:()=>{},27427:()=>{},96459:()=>{},6128:()=>{},25827:()=>{},23980:()=>{},62829:()=>{},19201:()=>{},46590:()=>{},79561: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)}},11378:e=>{var t=1e3,n=60*t,r=60*n,o=24*r,i=7*o,s=365.25*o;function a(e,t,n,r){var o=t>=1.5*n;return Math.round(e/n)+" "+r+(o?"s":"")}e.exports=function(e,u){u=u||{};var c=typeof e;if("string"===c&&e.length>0)return function(e){if((e=String(e)).length>100)return;var a=/^(-?(?:\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(!a)return;var u=parseFloat(a[1]);switch((a[2]||"ms").toLowerCase()){case"years":case"year":case"yrs":case"yr":case"y":return u*s;case"weeks":case"week":case"w":return u*i;case"days":case"day":case"d":return u*o;case"hours":case"hour":case"hrs":case"hr":case"h":return u*r;case"minutes":case"minute":case"mins":case"min":case"m":return u*n;case"seconds":case"second":case"secs":case"sec":case"s":return u*t;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return u;default:return}}(e);if("number"===c&&isFinite(e))return u.long?function(e){var i=Math.abs(e);if(i>=o)return a(e,i,o,"day");if(i>=r)return a(e,i,r,"hour");if(i>=n)return a(e,i,n,"minute");if(i>=t)return a(e,i,t,"second");return e+" ms"}(e):function(e){var i=Math.abs(e);if(i>=o)return Math.round(e/o)+"d";if(i>=r)return Math.round(e/r)+"h";if(i>=n)return Math.round(e/n)+"m";if(i>=t)return Math.round(e/t)+"s";return e+"ms"}(e);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(e))}},37320:e=>{"use strict";
23
  /*
24
  object-assign
25
  (c) Sindre Sorhus
26
  @license MIT
27
- */var t=Object.getOwnPropertySymbols,n=Object.prototype.hasOwnProperty,r=Object.prototype.propertyIsEnumerable;function o(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach((function(e){r[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(o){return!1}}()?Object.assign:function(e,i){for(var s,a,u=o(e),c=1;c<arguments.length;c++){for(var l in s=Object(arguments[c]))n.call(s,l)&&(u[l]=s[l]);if(t){a=t(s);for(var d=0;d<a.length;d++)r.call(s,a[d])&&(u[a[d]]=s[a[d]])}}return u}},99500:(e,t,n)=>{var r="function"==typeof Map&&Map.prototype,o=Object.getOwnPropertyDescriptor&&r?Object.getOwnPropertyDescriptor(Map.prototype,"size"):null,i=r&&o&&"function"==typeof o.get?o.get:null,s=r&&Map.prototype.forEach,a="function"==typeof Set&&Set.prototype,u=Object.getOwnPropertyDescriptor&&a?Object.getOwnPropertyDescriptor(Set.prototype,"size"):null,c=a&&u&&"function"==typeof u.get?u.get:null,l=a&&Set.prototype.forEach,d="function"==typeof WeakMap&&WeakMap.prototype?WeakMap.prototype.has:null,p="function"==typeof WeakSet&&WeakSet.prototype?WeakSet.prototype.has:null,f="function"==typeof WeakRef&&WeakRef.prototype?WeakRef.prototype.deref:null,h=Boolean.prototype.valueOf,m=Object.prototype.toString,g=Function.prototype.toString,y=String.prototype.match,v="function"==typeof BigInt?BigInt.prototype.valueOf:null,b=Object.getOwnPropertySymbols,w="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?Symbol.prototype.toString:null,_="function"==typeof Symbol&&"object"==typeof Symbol.iterator,E=Object.prototype.propertyIsEnumerable,S=("function"==typeof Reflect?Reflect.getPrototypeOf:Object.getPrototypeOf)||([].__proto__===Array.prototype?function(e){return e.__proto__}:null),C=n(53260).custom,P=C&&R(C)?C:null,k="function"==typeof Symbol&&void 0!==Symbol.toStringTag?Symbol.toStringTag:null;function I(e,t,n){var r="double"===(n.quoteStyle||t)?'"':"'";return r+e+r}function A(e){return String(e).replace(/"/g,"&quot;")}function T(e){return!("[object Array]"!==F(e)||k&&"object"==typeof e&&k in e)}function R(e){if(_)return e&&"object"==typeof e&&e instanceof Symbol;if("symbol"==typeof e)return!0;if(!e||"object"!=typeof e||!w)return!1;try{return w.call(e),!0}catch(t){}return!1}e.exports=function e(t,n,r,o){var a=n||{};if(x(a,"quoteStyle")&&"single"!==a.quoteStyle&&"double"!==a.quoteStyle)throw new TypeError('option "quoteStyle" must be "single" or "double"');if(x(a,"maxStringLength")&&("number"==typeof a.maxStringLength?a.maxStringLength<0&&a.maxStringLength!==1/0:null!==a.maxStringLength))throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`');var u=!x(a,"customInspect")||a.customInspect;if("boolean"!=typeof u&&"symbol"!==u)throw new TypeError("option \"customInspect\", if provided, must be `true`, `false`, or `'symbol'`");if(x(a,"indent")&&null!==a.indent&&"\t"!==a.indent&&!(parseInt(a.indent,10)===a.indent&&a.indent>0))throw new TypeError('options "indent" must be "\\t", an integer > 0, or `null`');if(void 0===t)return"undefined";if(null===t)return"null";if("boolean"==typeof t)return t?"true":"false";if("string"==typeof t)return U(t,a);if("number"==typeof t)return 0===t?1/0/t>0?"0":"-0":String(t);if("bigint"==typeof t)return String(t)+"n";var m=void 0===a.depth?5:a.depth;if(void 0===r&&(r=0),r>=m&&m>0&&"object"==typeof t)return T(t)?"[Array]":"[Object]";var b=function(e,t){var n;if("\t"===e.indent)n="\t";else{if(!("number"==typeof e.indent&&e.indent>0))return null;n=Array(e.indent+1).join(" ")}return{base:n,prev:Array(t+1).join(n)}}(a,r);if(void 0===o)o=[];else if(L(o,t)>=0)return"[Circular]";function E(t,n,i){if(n&&(o=o.slice()).push(n),i){var s={depth:a.depth};return x(a,"quoteStyle")&&(s.quoteStyle=a.quoteStyle),e(t,s,r+1,o)}return e(t,a,r+1,o)}if("function"==typeof t){var C=function(e){if(e.name)return e.name;var t=y.call(g.call(e),/^function\s*([\w$]+)/);if(t)return t[1];return null}(t),O=q(t,E);return"[Function"+(C?": "+C:" (anonymous)")+"]"+(O.length>0?" { "+O.join(", ")+" }":"")}if(R(t)){var Z=_?String(t).replace(/^(Symbol\(.*\))_[^)]*$/,"$1"):w.call(t);return"object"!=typeof t||_?Z:D(Z)}if(function(e){if(!e||"object"!=typeof e)return!1;if("undefined"!=typeof HTMLElement&&e instanceof HTMLElement)return!0;return"string"==typeof e.nodeName&&"function"==typeof e.getAttribute}(t)){for(var B="<"+String(t.nodeName).toLowerCase(),H=t.attributes||[],V=0;V<H.length;V++)B+=" "+H[V].name+"="+I(A(H[V].value),"double",a);return B+=">",t.childNodes&&t.childNodes.length&&(B+="..."),B+="</"+String(t.nodeName).toLowerCase()+">"}if(T(t)){if(0===t.length)return"[]";var $=q(t,E);return b&&!function(e){for(var t=0;t<e.length;t++)if(L(e[t],"\n")>=0)return!1;return!0}($)?"["+M($,b)+"]":"[ "+$.join(", ")+" ]"}if(function(e){return!("[object Error]"!==F(e)||k&&"object"==typeof e&&k in e)}(t)){var W=q(t,E);return 0===W.length?"["+String(t)+"]":"{ ["+String(t)+"] "+W.join(", ")+" }"}if("object"==typeof t&&u){if(P&&"function"==typeof t[P])return t[P]();if("symbol"!==u&&"function"==typeof t.inspect)return t.inspect()}if(function(e){if(!i||!e||"object"!=typeof e)return!1;try{i.call(e);try{c.call(e)}catch(B){return!0}return e instanceof Map}catch(t){}return!1}(t)){var z=[];return s.call(t,(function(e,n){z.push(E(n,t,!0)+" => "+E(e,t))})),N("Map",i.call(t),z,b)}if(function(e){if(!c||!e||"object"!=typeof e)return!1;try{c.call(e);try{i.call(e)}catch(t){return!0}return e instanceof Set}catch(n){}return!1}(t)){var G=[];return l.call(t,(function(e){G.push(E(e,t))})),N("Set",c.call(t),G,b)}if(function(e){if(!d||!e||"object"!=typeof e)return!1;try{d.call(e,d);try{p.call(e,p)}catch(B){return!0}return e instanceof WeakMap}catch(t){}return!1}(t))return j("WeakMap");if(function(e){if(!p||!e||"object"!=typeof e)return!1;try{p.call(e,p);try{d.call(e,d)}catch(B){return!0}return e instanceof WeakSet}catch(t){}return!1}(t))return j("WeakSet");if(function(e){if(!f||!e||"object"!=typeof e)return!1;try{return f.call(e),!0}catch(t){}return!1}(t))return j("WeakRef");if(function(e){return!("[object Number]"!==F(e)||k&&"object"==typeof e&&k in e)}(t))return D(E(Number(t)));if(function(e){if(!e||"object"!=typeof e||!v)return!1;try{return v.call(e),!0}catch(t){}return!1}(t))return D(E(v.call(t)));if(function(e){return!("[object Boolean]"!==F(e)||k&&"object"==typeof e&&k in e)}(t))return D(h.call(t));if(function(e){return!("[object String]"!==F(e)||k&&"object"==typeof e&&k in e)}(t))return D(E(String(t)));if(!function(e){return!("[object Date]"!==F(e)||k&&"object"==typeof e&&k in e)}(t)&&!function(e){return!("[object RegExp]"!==F(e)||k&&"object"==typeof e&&k in e)}(t)){var Q=q(t,E),Y=S?S(t)===Object.prototype:t instanceof Object||t.constructor===Object,J=t instanceof Object?"":"null prototype",K=!Y&&k&&Object(t)===t&&k in t?F(t).slice(8,-1):J?"Object":"",X=(Y||"function"!=typeof t.constructor?"":t.constructor.name?t.constructor.name+" ":"")+(K||J?"["+[].concat(K||[],J||[]).join(": ")+"] ":"");return 0===Q.length?X+"{}":b?X+"{"+M(Q,b)+"}":X+"{ "+Q.join(", ")+" }"}return String(t)};var O=Object.prototype.hasOwnProperty||function(e){return e in this};function x(e,t){return O.call(e,t)}function F(e){return m.call(e)}function L(e,t){if(e.indexOf)return e.indexOf(t);for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1}function U(e,t){if(e.length>t.maxStringLength){var n=e.length-t.maxStringLength,r="... "+n+" more character"+(n>1?"s":"");return U(e.slice(0,t.maxStringLength),t)+r}return I(e.replace(/(['\\])/g,"\\$1").replace(/[\x00-\x1f]/g,Z),"single",t)}function Z(e){var t=e.charCodeAt(0),n={8:"b",9:"t",10:"n",12:"f",13:"r"}[t];return n?"\\"+n:"\\x"+(t<16?"0":"")+t.toString(16).toUpperCase()}function D(e){return"Object("+e+")"}function j(e){return e+" { ? }"}function N(e,t,n,r){return e+" ("+t+") {"+(r?M(n,r):n.join(", "))+"}"}function M(e,t){if(0===e.length)return"";var n="\n"+t.prev+t.base;return n+e.join(","+n)+"\n"+t.prev}function q(e,t){var n=T(e),r=[];if(n){r.length=e.length;for(var o=0;o<e.length;o++)r[o]=x(e,o)?t(e[o],e):""}var i,s="function"==typeof b?b(e):[];if(_){i={};for(var a=0;a<s.length;a++)i["$"+s[a]]=s[a]}for(var u in e)x(e,u)&&(n&&String(Number(u))===u&&u<e.length||_&&i["$"+u]instanceof Symbol||(/[^\w$]/.test(u)?r.push(t(u,e)+": "+t(e[u],e)):r.push(u+": "+t(e[u],e))));if("function"==typeof b)for(var c=0;c<s.length;c++)E.call(e,s[c])&&r.push("["+t(s[c])+"]: "+t(e[s[c]],e));return r}},78319:function(e){e.exports=function(){"use strict";var e=Array.isArray||function(e){return"[object Array]"==Object.prototype.toString.call(e)},t=v,n=a,r=u,o=c,i=y,s=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^()])+)\\))?|\\(((?:\\\\.|[^()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function a(e){for(var t,n=[],r=0,o=0,i="";null!=(t=s.exec(e));){var a=t[0],u=t[1],c=t.index;if(i+=e.slice(o,c),o=c+a.length,u)i+=u[1];else{i&&(n.push(i),i="");var l=t[2],p=t[3],f=t[4],h=t[5],m=t[6],g=t[7],y="+"===m||"*"===m,v="?"===m||"*"===m,b=l||"/",w=f||h||(g?".*":"[^"+b+"]+?");n.push({name:p||r++,prefix:l||"",delimiter:b,optional:v,repeat:y,pattern:d(w)})}}return o<e.length&&(i+=e.substr(o)),i&&n.push(i),n}function u(e){return c(a(e))}function c(t){for(var n=new Array(t.length),r=0;r<t.length;r++)"object"==typeof t[r]&&(n[r]=new RegExp("^"+t[r].pattern+"$"));return function(r){for(var o="",i=r||{},s=0;s<t.length;s++){var a=t[s];if("string"!=typeof a){var u,c=i[a.name];if(null==c){if(a.optional)continue;throw new TypeError('Expected "'+a.name+'" to be defined')}if(e(c)){if(!a.repeat)throw new TypeError('Expected "'+a.name+'" to not repeat, but received "'+c+'"');if(0===c.length){if(a.optional)continue;throw new TypeError('Expected "'+a.name+'" to not be empty')}for(var l=0;l<c.length;l++){if(u=encodeURIComponent(c[l]),!n[s].test(u))throw new TypeError('Expected all "'+a.name+'" to match "'+a.pattern+'", but received "'+u+'"');o+=(0===l?a.prefix:a.delimiter)+u}}else{if(u=encodeURIComponent(c),!n[s].test(u))throw new TypeError('Expected "'+a.name+'" to match "'+a.pattern+'", but received "'+u+'"');o+=a.prefix+u}}else o+=a}return o}}function l(e){return e.replace(/([.+*?=^!:${}()[\]|\/])/g,"\\$1")}function d(e){return e.replace(/([=!:$\/()])/g,"\\$1")}function p(e,t){return e.keys=t,e}function f(e){return e.sensitive?"":"i"}function h(e,t){var n=e.source.match(/\((?!\?)/g);if(n)for(var r=0;r<n.length;r++)t.push({name:r,prefix:null,delimiter:null,optional:!1,repeat:!1,pattern:null});return p(e,t)}function m(e,t,n){for(var r=[],o=0;o<e.length;o++)r.push(v(e[o],t,n).source);return p(new RegExp("(?:"+r.join("|")+")",f(n)),t)}function g(e,t,n){for(var r=a(e),o=y(r,n),i=0;i<r.length;i++)"string"!=typeof r[i]&&t.push(r[i]);return p(o,t)}function y(e,t){for(var n=(t=t||{}).strict,r=!1!==t.end,o="",i=e[e.length-1],s="string"==typeof i&&/\/$/.test(i),a=0;a<e.length;a++){var u=e[a];if("string"==typeof u)o+=l(u);else{var c=l(u.prefix),d=u.pattern;u.repeat&&(d+="(?:"+c+d+")*"),o+=d=u.optional?c?"(?:"+c+"("+d+"))?":"("+d+")?":c+"("+d+")"}}return n||(o=(s?o.slice(0,-2):o)+"(?:\\/(?=$))?"),o+=r?"$":n&&s?"":"(?=\\/|$)",new RegExp("^"+o,f(t))}function v(t,n,r){return e(n=n||[])?r||(r={}):(r=n,n=[]),t instanceof RegExp?h(t,n,r):e(t)?m(t,n,r):g(t,n,r)}t.parse=n,t.compile=r,t.tokensToFunction=o,t.tokensToRegExp=i;var b,w="undefined"!=typeof document,_="undefined"!=typeof window,E="undefined"!=typeof history,S="undefined"!=typeof process,C=w&&document.ontouchstart?"touchstart":"click",P=_&&!(!window.history.location&&!window.location);function k(){this.callbacks=[],this.exits=[],this.current="",this.len=0,this._decodeURLComponents=!0,this._base="",this._strict=!1,this._running=!1,this._hashbang=!1,this.clickHandler=this.clickHandler.bind(this),this._onpopstate=this._onpopstate.bind(this)}function I(){var e=new k;function t(){return A.apply(e,arguments)}return t.callbacks=e.callbacks,t.exits=e.exits,t.base=e.base.bind(e),t.strict=e.strict.bind(e),t.start=e.start.bind(e),t.stop=e.stop.bind(e),t.show=e.show.bind(e),t.back=e.back.bind(e),t.redirect=e.redirect.bind(e),t.replace=e.replace.bind(e),t.dispatch=e.dispatch.bind(e),t.exit=e.exit.bind(e),t.configure=e.configure.bind(e),t.sameOrigin=e.sameOrigin.bind(e),t.clickHandler=e.clickHandler.bind(e),t.create=I,Object.defineProperty(t,"len",{get:function(){return e.len},set:function(t){e.len=t}}),Object.defineProperty(t,"current",{get:function(){return e.current},set:function(t){e.current=t}}),t.Context=O,t.Route=x,t}function A(e,t){if("function"==typeof e)return A.call(this,"*",e);if("function"==typeof t)for(var n=new x(e,null,this),r=1;r<arguments.length;++r)this.callbacks.push(n.middleware(arguments[r]));else"string"==typeof e?this["string"==typeof t?"redirect":"show"](e,t):this.start(e)}function T(e){if(!e.handled){var t=this,n=t._window;(t._hashbang?P&&this._getBase()+n.location.hash.replace("#!",""):P&&n.location.pathname+n.location.search)!==e.canonicalPath&&(t.stop(),e.handled=!1,P&&(n.location.href=e.canonicalPath))}}function R(e){return e.replace(/([.+*?=^!:${}()[\]|/\\])/g,"\\$1")}function O(e,t,n){var r=this.page=n||A,o=r._window,i=r._hashbang,s=r._getBase();"/"===e[0]&&0!==e.indexOf(s)&&(e=s+(i?"#!":"")+e);var a=e.indexOf("?");this.canonicalPath=e;var u=new RegExp("^"+R(s));if(this.path=e.replace(u,"")||"/",i&&(this.path=this.path.replace("#!","")||"/"),this.title=w&&o.document.title,this.state=t||{},this.state.path=e,this.querystring=~a?r._decodeURLEncodedURIComponent(e.slice(a+1)):"",this.pathname=r._decodeURLEncodedURIComponent(~a?e.slice(0,a):e),this.params={},this.hash="",!i){if(!~this.path.indexOf("#"))return;var c=this.path.split("#");this.path=this.pathname=c[0],this.hash=r._decodeURLEncodedURIComponent(c[1])||"",this.querystring=this.querystring.split("#")[0]}}function x(e,n,r){this.page=r||F;var o=n||{};o.strict=o.strict||r._strict,this.path="*"===e?"(.*)":e,this.method="GET",this.regexp=t(this.path,this.keys=[],o)}k.prototype.configure=function(e){var t=e||{};this._window=t.window||_&&window,this._decodeURLComponents=!1!==t.decodeURLComponents,this._popstate=!1!==t.popstate&&_,this._click=!1!==t.click&&w,this._hashbang=!!t.hashbang;var n=this._window;this._popstate?n.addEventListener("popstate",this._onpopstate,!1):_&&n.removeEventListener("popstate",this._onpopstate,!1),this._click?n.document.addEventListener(C,this.clickHandler,!1):w&&n.document.removeEventListener(C,this.clickHandler,!1),this._hashbang&&_&&!E?n.addEventListener("hashchange",this._onpopstate,!1):_&&n.removeEventListener("hashchange",this._onpopstate,!1)},k.prototype.base=function(e){if(0===arguments.length)return this._base;this._base=e},k.prototype._getBase=function(){var e=this._base;if(e)return e;var t=_&&this._window&&this._window.location;return _&&this._hashbang&&t&&"file:"===t.protocol&&(e=t.pathname),e},k.prototype.strict=function(e){if(0===arguments.length)return this._strict;this._strict=e},k.prototype.start=function(e){var t=e||{};if(this.configure(t),!1!==t.dispatch){var n;if(this._running=!0,P){var r=this._window.location;n=this._hashbang&&~r.hash.indexOf("#!")?r.hash.substr(2)+r.search:this._hashbang?r.search+r.hash:r.pathname+r.search+r.hash}this.replace(n,null,!0,t.dispatch)}},k.prototype.stop=function(){if(this._running){this.current="",this.len=0,this._running=!1;var e=this._window;this._click&&e.document.removeEventListener(C,this.clickHandler,!1),_&&e.removeEventListener("popstate",this._onpopstate,!1),_&&e.removeEventListener("hashchange",this._onpopstate,!1)}},k.prototype.show=function(e,t,n,r){var o=new O(e,t,this),i=this.prevContext;return this.prevContext=o,this.current=o.path,!1!==n&&this.dispatch(o,i),!1!==o.handled&&!1!==r&&o.pushState(),o},k.prototype.back=function(e,t){var n=this;if(this.len>0){var r=this._window;E&&r.history.back(),this.len--}else e?setTimeout((function(){n.show(e,t)})):setTimeout((function(){n.show(n._getBase(),t)}))},k.prototype.redirect=function(e,t){var n=this;"string"==typeof e&&"string"==typeof t&&A.call(this,e,(function(e){setTimeout((function(){n.replace(t)}),0)})),"string"==typeof e&&void 0===t&&setTimeout((function(){n.replace(e)}),0)},k.prototype.replace=function(e,t,n,r){var o=new O(e,t,this),i=this.prevContext;return this.prevContext=o,this.current=o.path,o.init=n,o.save(),!1!==r&&this.dispatch(o,i),o},k.prototype.dispatch=function(e,t){var n=0,r=0,o=this;function i(){var e=o.exits[r++];if(!e)return s();e(t,i)}function s(){var t=o.callbacks[n++];if(e.path===o.current)return t?void t(e,s):T.call(o,e);e.handled=!1}t?i():s()},k.prototype.exit=function(e,t){if("function"==typeof e)return this.exit("*",e);for(var n=new x(e,null,this),r=1;r<arguments.length;++r)this.exits.push(n.middleware(arguments[r]))},k.prototype.clickHandler=function(e){if(1===this._which(e)&&!(e.metaKey||e.ctrlKey||e.shiftKey||e.defaultPrevented)){var t=e.target,n=e.path||(e.composedPath?e.composedPath():null);if(n)for(var r=0;r<n.length;r++)if(n[r].nodeName&&"A"===n[r].nodeName.toUpperCase()&&n[r].href){t=n[r];break}for(;t&&"A"!==t.nodeName.toUpperCase();)t=t.parentNode;if(t&&"A"===t.nodeName.toUpperCase()){var o="object"==typeof t.href&&"SVGAnimatedString"===t.href.constructor.name;if(!t.hasAttribute("download")&&"external"!==t.getAttribute("rel")){var i=t.getAttribute("href");if((this._hashbang||!this._samePath(t)||!t.hash&&"#"!==i)&&!(i&&i.indexOf("mailto:")>-1)&&!(o?t.target.baseVal:t.target)&&(o||this.sameOrigin(t.href))){var s=o?t.href.baseVal:t.pathname+t.search+(t.hash||"");s="/"!==s[0]?"/"+s:s,S&&s.match(/^\/[a-zA-Z]:\//)&&(s=s.replace(/^\/[a-zA-Z]:\//,"/"));var a=s,u=this._getBase();0===s.indexOf(u)&&(s=s.substr(u.length)),this._hashbang&&(s=s.replace("#!","")),(!u||a!==s||P&&"file:"===this._window.location.protocol)&&(e.preventDefault(),this.show(a))}}}}},k.prototype._onpopstate=(b=!1,_?(w&&"complete"===document.readyState?b=!0:window.addEventListener("load",(function(){setTimeout((function(){b=!0}),0)})),function(e){if(b){var t=this;if(e.state){var n=e.state.path;t.replace(n,e.state)}else if(P){var r=t._window.location;t.show(r.pathname+r.search+r.hash,void 0,void 0,!1)}}}):function(){}),k.prototype._which=function(e){return null==(e=e||_&&this._window.event).which?e.button:e.which},k.prototype._toURL=function(e){var t=this._window;if("function"==typeof URL&&P)return new URL(e,t.location.toString());if(w){var n=t.document.createElement("a");return n.href=e,n}},k.prototype.sameOrigin=function(e){if(!e||!P)return!1;var t=this._toURL(e),n=this._window.location;return n.protocol===t.protocol&&n.hostname===t.hostname&&(n.port===t.port||""===n.port&&80===t.port)},k.prototype._samePath=function(e){if(!P)return!1;var t=this._window.location;return e.pathname===t.pathname&&e.search===t.search},k.prototype._decodeURLEncodedURIComponent=function(e){return"string"!=typeof e?e:this._decodeURLComponents?decodeURIComponent(e.replace(/\+/g," ")):e},O.prototype.pushState=function(){var e=this.page,t=e._window,n=e._hashbang;e.len++,E&&t.history.pushState(this.state,this.title,n&&"/"!==this.path?"#!"+this.path:this.canonicalPath)},O.prototype.save=function(){var e=this.page;E&&e._window.history.replaceState(this.state,this.title,e._hashbang&&"/"!==this.path?"#!"+this.path:this.canonicalPath)},x.prototype.middleware=function(e){var t=this;return function(n,r){if(t.match(n.path,n.params))return e(n,r);r()}},x.prototype.match=function(e,t){var n=this.keys,r=e.indexOf("?"),o=~r?e.slice(0,r):e,i=this.regexp.exec(decodeURIComponent(o));if(!i)return!1;delete t[0];for(var s=1,a=i.length;s<a;++s){var u=n[s-1],c=this.page._decodeURLEncodedURIComponent(i[s]);void 0===c&&hasOwnProperty.call(t,u.name)||(t[u.name]=c)}return!0};var F=I(),L=F,U=F;return L.default=U,L}()},54355:(e,t)=>{t.encode=function(e){var t="";for(var n in e)e.hasOwnProperty(n)&&(t.length&&(t+="&"),t+=encodeURIComponent(n)+"="+encodeURIComponent(e[n]));return t},t.decode=function(e){for(var t={},n=e.split("&"),r=0,o=n.length;r<o;r++){var i=n[r].split("=");t[decodeURIComponent(i[0])]=decodeURIComponent(i[1])}return t}},14243:e=>{var t=/^(?:(?![^:@]+:[^:@\/]*@)(http|https|ws|wss):\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/,n=["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"];e.exports=function(e){var r=e,o=e.indexOf("["),i=e.indexOf("]");-1!=o&&-1!=i&&(e=e.substring(0,o)+e.substring(o,i).replace(/:/g,";")+e.substring(i,e.length));for(var s=t.exec(e||""),a={},u=14;u--;)a[n[u]]=s[u]||"";return-1!=o&&-1!=i&&(a.source=r,a.host=a.host.substring(1,a.host.length-1).replace(/;/g,":"),a.authority=a.authority.replace("[","").replace("]","").replace(/;/g,":"),a.ipv6uri=!0),a}},20099:(e,t,n)=>{var r=n(30243);e.exports=f,e.exports.parse=i,e.exports.compile=function(e,t){return a(i(e,t),t)},e.exports.tokensToFunction=a,e.exports.tokensToRegExp=p;var o=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function i(e,t){for(var n,r=[],i=0,s=0,a="",l=t&&t.delimiter||"/";null!=(n=o.exec(e));){var d=n[0],p=n[1],f=n.index;if(a+=e.slice(s,f),s=f+d.length,p)a+=p[1];else{var h=e[s],m=n[2],g=n[3],y=n[4],v=n[5],b=n[6],w=n[7];a&&(r.push(a),a="");var _=null!=m&&null!=h&&h!==m,E="+"===b||"*"===b,S="?"===b||"*"===b,C=n[2]||l,P=y||v;r.push({name:g||i++,prefix:m||"",delimiter:C,optional:S,repeat:E,partial:_,asterisk:!!w,pattern:P?c(P):w?".*":"[^"+u(C)+"]+?"})}}return s<e.length&&(a+=e.substr(s)),a&&r.push(a),r}function s(e){return encodeURI(e).replace(/[\/?#]/g,(function(e){return"%"+e.charCodeAt(0).toString(16).toUpperCase()}))}function a(e,t){for(var n=new Array(e.length),o=0;o<e.length;o++)"object"==typeof e[o]&&(n[o]=new RegExp("^(?:"+e[o].pattern+")$",d(t)));return function(t,o){for(var i="",a=t||{},u=(o||{}).pretty?s:encodeURIComponent,c=0;c<e.length;c++){var l=e[c];if("string"!=typeof l){var d,p=a[l.name];if(null==p){if(l.optional){l.partial&&(i+=l.prefix);continue}throw new TypeError('Expected "'+l.name+'" to be defined')}if(r(p)){if(!l.repeat)throw new TypeError('Expected "'+l.name+'" to not repeat, but received `'+JSON.stringify(p)+"`");if(0===p.length){if(l.optional)continue;throw new TypeError('Expected "'+l.name+'" to not be empty')}for(var f=0;f<p.length;f++){if(d=u(p[f]),!n[c].test(d))throw new TypeError('Expected all "'+l.name+'" to match "'+l.pattern+'", but received `'+JSON.stringify(d)+"`");i+=(0===f?l.prefix:l.delimiter)+d}}else{if(d=l.asterisk?encodeURI(p).replace(/[?#]/g,(function(e){return"%"+e.charCodeAt(0).toString(16).toUpperCase()})):u(p),!n[c].test(d))throw new TypeError('Expected "'+l.name+'" to match "'+l.pattern+'", but received "'+d+'"');i+=l.prefix+d}}else i+=l}return i}}function u(e){return e.replace(/([.+*?=^!:${}()[\]|\/\\])/g,"\\$1")}function c(e){return e.replace(/([=!:$\/()])/g,"\\$1")}function l(e,t){return e.keys=t,e}function d(e){return e&&e.sensitive?"":"i"}function p(e,t,n){r(t)||(n=t||n,t=[]);for(var o=(n=n||{}).strict,i=!1!==n.end,s="",a=0;a<e.length;a++){var c=e[a];if("string"==typeof c)s+=u(c);else{var p=u(c.prefix),f="(?:"+c.pattern+")";t.push(c),c.repeat&&(f+="(?:"+p+f+")*"),s+=f=c.optional?c.partial?p+"("+f+")?":"(?:"+p+"("+f+"))?":p+"("+f+")"}}var h=u(n.delimiter||"/"),m=s.slice(-h.length)===h;return o||(s=(m?s.slice(0,-h.length):s)+"(?:"+h+"(?=$))?"),s+=i?"$":o&&m?"":"(?="+h+"|$)",l(new RegExp("^"+s,d(n)),t)}function f(e,t,n){return r(t)||(n=t||n,t=[]),n=n||{},e instanceof RegExp?function(e,t){var n=e.source.match(/\((?!\?)/g);if(n)for(var r=0;r<n.length;r++)t.push({name:r,prefix:null,delimiter:null,optional:!1,repeat:!1,partial:!1,asterisk:!1,pattern:null});return l(e,t)}(e,t):r(e)?function(e,t,n){for(var r=[],o=0;o<e.length;o++)r.push(f(e[o],t,n).source);return l(new RegExp("(?:"+r.join("|")+")",d(n)),t)}(e,t,n):function(e,t,n){return p(i(e,n),t,n)}(e,t,n)}},30243:e=>{e.exports=Array.isArray||function(e){return"[object Array]"==Object.prototype.toString.call(e)}},48650:e=>{var t,n=window.ProgressEvent,r=!!n;try{t=new n("loaded"),r="loaded"===t.type,t=null}catch(o){r=!1}e.exports=r?n:"function"==typeof document.createEvent?function(e,t){var n=document.createEvent("Event");return n.initEvent(e,!1,!1),t?(n.lengthComputable=Boolean(t.lengthComputable),n.loaded=Number(t.loaded)||0,n.total=Number(t.total)||0):(n.lengthComputable=!1,n.loaded=n.total=0),n}:function(e,t){var n=document.createEventObject();return n.type=e,t?(n.lengthComputable=Boolean(t.lengthComputable),n.loaded=Number(t.loaded)||0,n.total=Number(t.total)||0):(n.lengthComputable=!1,n.loaded=n.total=0),n}},68262:(e,t,n)=>{"use strict";var r=n(23586);function o(){}function i(){}i.resetWarningCache=o,e.exports=function(){function e(e,t,n,o,i,s){if(s!==r){var a=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw a.name="Invariant Violation",a}}function t(){return e}e.isRequired=e;var n={array:e,bigint:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:i,resetWarningCache:o};return n.PropTypes=n,n}},13980:(e,t,n)=>{e.exports=n(68262)()},23586:e=>{"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},85527:e=>{"use strict";var t=String.prototype.replace,n=/%20/g,r="RFC1738",o="RFC3986";e.exports={default:o,formatters:{RFC1738:function(e){return t.call(e,n,"+")},RFC3986:function(e){return String(e)}},RFC1738:r,RFC3986:o}},19126:(e,t,n)=>{"use strict";var r=n(66845),o=n(29166),i=n(85527);e.exports={formats:i,parse:o,stringify:r}},29166:(e,t,n)=>{"use strict";var r=n(12493),o=Object.prototype.hasOwnProperty,i=Array.isArray,s={allowDots:!1,allowPrototypes:!1,allowSparse:!1,arrayLimit:20,charset:"utf-8",charsetSentinel:!1,comma:!1,decoder:r.decode,delimiter:"&",depth:5,ignoreQueryPrefix:!1,interpretNumericEntities:!1,parameterLimit:1e3,parseArrays:!0,plainObjects:!1,strictNullHandling:!1},a=function(e){return e.replace(/&#(\d+);/g,(function(e,t){return String.fromCharCode(parseInt(t,10))}))},u=function(e,t){return e&&"string"==typeof e&&t.comma&&e.indexOf(",")>-1?e.split(","):e},c=function(e,t,n,r){if(e){var i=n.allowDots?e.replace(/\.([^.[]+)/g,"[$1]"):e,s=/(\[[^[\]]*])/g,a=n.depth>0&&/(\[[^[\]]*])/.exec(i),c=a?i.slice(0,a.index):i,l=[];if(c){if(!n.plainObjects&&o.call(Object.prototype,c)&&!n.allowPrototypes)return;l.push(c)}for(var d=0;n.depth>0&&null!==(a=s.exec(i))&&d<n.depth;){if(d+=1,!n.plainObjects&&o.call(Object.prototype,a[1].slice(1,-1))&&!n.allowPrototypes)return;l.push(a[1])}return a&&l.push("["+i.slice(a.index)+"]"),function(e,t,n,r){for(var o=r?t:u(t,n),i=e.length-1;i>=0;--i){var s,a=e[i];if("[]"===a&&n.parseArrays)s=[].concat(o);else{s=n.plainObjects?Object.create(null):{};var c="["===a.charAt(0)&&"]"===a.charAt(a.length-1)?a.slice(1,-1):a,l=parseInt(c,10);n.parseArrays||""!==c?!isNaN(l)&&a!==c&&String(l)===c&&l>=0&&n.parseArrays&&l<=n.arrayLimit?(s=[])[l]=o:"__proto__"!==c&&(s[c]=o):s={0:o}}o=s}return o}(l,t,n,r)}};e.exports=function(e,t){var n=function(e){if(!e)return s;if(null!==e.decoder&&void 0!==e.decoder&&"function"!=typeof e.decoder)throw new TypeError("Decoder has to be a function.");if(void 0!==e.charset&&"utf-8"!==e.charset&&"iso-8859-1"!==e.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var t=void 0===e.charset?s.charset:e.charset;return{allowDots:void 0===e.allowDots?s.allowDots:!!e.allowDots,allowPrototypes:"boolean"==typeof e.allowPrototypes?e.allowPrototypes:s.allowPrototypes,allowSparse:"boolean"==typeof e.allowSparse?e.allowSparse:s.allowSparse,arrayLimit:"number"==typeof e.arrayLimit?e.arrayLimit:s.arrayLimit,charset:t,charsetSentinel:"boolean"==typeof e.charsetSentinel?e.charsetSentinel:s.charsetSentinel,comma:"boolean"==typeof e.comma?e.comma:s.comma,decoder:"function"==typeof e.decoder?e.decoder:s.decoder,delimiter:"string"==typeof e.delimiter||r.isRegExp(e.delimiter)?e.delimiter:s.delimiter,depth:"number"==typeof e.depth||!1===e.depth?+e.depth:s.depth,ignoreQueryPrefix:!0===e.ignoreQueryPrefix,interpretNumericEntities:"boolean"==typeof e.interpretNumericEntities?e.interpretNumericEntities:s.interpretNumericEntities,parameterLimit:"number"==typeof e.parameterLimit?e.parameterLimit:s.parameterLimit,parseArrays:!1!==e.parseArrays,plainObjects:"boolean"==typeof e.plainObjects?e.plainObjects:s.plainObjects,strictNullHandling:"boolean"==typeof e.strictNullHandling?e.strictNullHandling:s.strictNullHandling}}(t);if(""===e||null==e)return n.plainObjects?Object.create(null):{};for(var l="string"==typeof e?function(e,t){var n,c={},l=t.ignoreQueryPrefix?e.replace(/^\?/,""):e,d=t.parameterLimit===1/0?void 0:t.parameterLimit,p=l.split(t.delimiter,d),f=-1,h=t.charset;if(t.charsetSentinel)for(n=0;n<p.length;++n)0===p[n].indexOf("utf8=")&&("utf8=%E2%9C%93"===p[n]?h="utf-8":"utf8=%26%2310003%3B"===p[n]&&(h="iso-8859-1"),f=n,n=p.length);for(n=0;n<p.length;++n)if(n!==f){var m,g,y=p[n],v=y.indexOf("]="),b=-1===v?y.indexOf("="):v+1;-1===b?(m=t.decoder(y,s.decoder,h,"key"),g=t.strictNullHandling?null:""):(m=t.decoder(y.slice(0,b),s.decoder,h,"key"),g=r.maybeMap(u(y.slice(b+1),t),(function(e){return t.decoder(e,s.decoder,h,"value")}))),g&&t.interpretNumericEntities&&"iso-8859-1"===h&&(g=a(g)),y.indexOf("[]=")>-1&&(g=i(g)?[g]:g),o.call(c,m)?c[m]=r.combine(c[m],g):c[m]=g}return c}(e,n):e,d=n.plainObjects?Object.create(null):{},p=Object.keys(l),f=0;f<p.length;++f){var h=p[f],m=c(h,l[h],n,"string"==typeof e);d=r.merge(d,m,n)}return!0===n.allowSparse?d:r.compact(d)}},66845:(e,t,n)=>{"use strict";var r=n(74294),o=n(12493),i=n(85527),s=Object.prototype.hasOwnProperty,a={brackets:function(e){return e+"[]"},comma:"comma",indices:function(e,t){return e+"["+t+"]"},repeat:function(e){return e}},u=Array.isArray,c=String.prototype.split,l=Array.prototype.push,d=function(e,t){l.apply(e,u(t)?t:[t])},p=Date.prototype.toISOString,f=i.default,h={addQueryPrefix:!1,allowDots:!1,charset:"utf-8",charsetSentinel:!1,delimiter:"&",encode:!0,encoder:o.encode,encodeValuesOnly:!1,format:f,formatter:i.formatters[f],indices:!1,serializeDate:function(e){return p.call(e)},skipNulls:!1,strictNullHandling:!1},m={},g=function e(t,n,i,s,a,l,p,f,g,y,v,b,w,_,E){for(var S,C=t,P=E,k=0,I=!1;void 0!==(P=P.get(m))&&!I;){var A=P.get(t);if(k+=1,void 0!==A){if(A===k)throw new RangeError("Cyclic object value");I=!0}void 0===P.get(m)&&(k=0)}if("function"==typeof p?C=p(n,C):C instanceof Date?C=y(C):"comma"===i&&u(C)&&(C=o.maybeMap(C,(function(e){return e instanceof Date?y(e):e}))),null===C){if(s)return l&&!w?l(n,h.encoder,_,"key",v):n;C=""}if("string"==typeof(S=C)||"number"==typeof S||"boolean"==typeof S||"symbol"==typeof S||"bigint"==typeof S||o.isBuffer(C)){if(l){var T=w?n:l(n,h.encoder,_,"key",v);if("comma"===i&&w){for(var R=c.call(String(C),","),O="",x=0;x<R.length;++x)O+=(0===x?"":",")+b(l(R[x],h.encoder,_,"value",v));return[b(T)+"="+O]}return[b(T)+"="+b(l(C,h.encoder,_,"value",v))]}return[b(n)+"="+b(String(C))]}var F,L=[];if(void 0===C)return L;if("comma"===i&&u(C))F=[{value:C.length>0?C.join(",")||null:void 0}];else if(u(p))F=p;else{var U=Object.keys(C);F=f?U.sort(f):U}for(var Z=0;Z<F.length;++Z){var D=F[Z],j="object"==typeof D&&void 0!==D.value?D.value:C[D];if(!a||null!==j){var N=u(C)?"function"==typeof i?i(n,D):n:n+(g?"."+D:"["+D+"]");E.set(t,k);var M=r();M.set(m,E),d(L,e(j,N,i,s,a,l,p,f,g,y,v,b,w,_,M))}}return L};e.exports=function(e,t){var n,o=e,c=function(e){if(!e)return h;if(null!==e.encoder&&void 0!==e.encoder&&"function"!=typeof e.encoder)throw new TypeError("Encoder has to be a function.");var t=e.charset||h.charset;if(void 0!==e.charset&&"utf-8"!==e.charset&&"iso-8859-1"!==e.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var n=i.default;if(void 0!==e.format){if(!s.call(i.formatters,e.format))throw new TypeError("Unknown format option provided.");n=e.format}var r=i.formatters[n],o=h.filter;return("function"==typeof e.filter||u(e.filter))&&(o=e.filter),{addQueryPrefix:"boolean"==typeof e.addQueryPrefix?e.addQueryPrefix:h.addQueryPrefix,allowDots:void 0===e.allowDots?h.allowDots:!!e.allowDots,charset:t,charsetSentinel:"boolean"==typeof e.charsetSentinel?e.charsetSentinel:h.charsetSentinel,delimiter:void 0===e.delimiter?h.delimiter:e.delimiter,encode:"boolean"==typeof e.encode?e.encode:h.encode,encoder:"function"==typeof e.encoder?e.encoder:h.encoder,encodeValuesOnly:"boolean"==typeof e.encodeValuesOnly?e.encodeValuesOnly:h.encodeValuesOnly,filter:o,format:n,formatter:r,serializeDate:"function"==typeof e.serializeDate?e.serializeDate:h.serializeDate,skipNulls:"boolean"==typeof e.skipNulls?e.skipNulls:h.skipNulls,sort:"function"==typeof e.sort?e.sort:null,strictNullHandling:"boolean"==typeof e.strictNullHandling?e.strictNullHandling:h.strictNullHandling}}(t);"function"==typeof c.filter?o=(0,c.filter)("",o):u(c.filter)&&(n=c.filter);var l,p=[];if("object"!=typeof o||null===o)return"";l=t&&t.arrayFormat in a?t.arrayFormat:t&&"indices"in t?t.indices?"indices":"repeat":"indices";var f=a[l];n||(n=Object.keys(o)),c.sort&&n.sort(c.sort);for(var m=r(),y=0;y<n.length;++y){var v=n[y];c.skipNulls&&null===o[v]||d(p,g(o[v],v,f,c.strictNullHandling,c.skipNulls,c.encode?c.encoder:null,c.filter,c.sort,c.allowDots,c.serializeDate,c.format,c.formatter,c.encodeValuesOnly,c.charset,m))}var b=p.join(c.delimiter),w=!0===c.addQueryPrefix?"?":"";return c.charsetSentinel&&("iso-8859-1"===c.charset?w+="utf8=%26%2310003%3B&":w+="utf8=%E2%9C%93&"),b.length>0?w+b:""}},12493:(e,t,n)=>{"use strict";var r=n(85527),o=Object.prototype.hasOwnProperty,i=Array.isArray,s=function(){for(var e=[],t=0;t<256;++t)e.push("%"+((t<16?"0":"")+t.toString(16)).toUpperCase());return e}(),a=function(e,t){for(var n=t&&t.plainObjects?Object.create(null):{},r=0;r<e.length;++r)void 0!==e[r]&&(n[r]=e[r]);return n};e.exports={arrayToObject:a,assign:function(e,t){return Object.keys(t).reduce((function(e,n){return e[n]=t[n],e}),e)},combine:function(e,t){return[].concat(e,t)},compact:function(e){for(var t=[{obj:{o:e},prop:"o"}],n=[],r=0;r<t.length;++r)for(var o=t[r],s=o.obj[o.prop],a=Object.keys(s),u=0;u<a.length;++u){var c=a[u],l=s[c];"object"==typeof l&&null!==l&&-1===n.indexOf(l)&&(t.push({obj:s,prop:c}),n.push(l))}return function(e){for(;e.length>1;){var t=e.pop(),n=t.obj[t.prop];if(i(n)){for(var r=[],o=0;o<n.length;++o)void 0!==n[o]&&r.push(n[o]);t.obj[t.prop]=r}}}(t),e},decode:function(e,t,n){var r=e.replace(/\+/g," ");if("iso-8859-1"===n)return r.replace(/%[0-9a-f]{2}/gi,unescape);try{return decodeURIComponent(r)}catch(o){return r}},encode:function(e,t,n,o,i){if(0===e.length)return e;var a=e;if("symbol"==typeof e?a=Symbol.prototype.toString.call(e):"string"!=typeof e&&(a=String(e)),"iso-8859-1"===n)return escape(a).replace(/%u[0-9a-f]{4}/gi,(function(e){return"%26%23"+parseInt(e.slice(2),16)+"%3B"}));for(var u="",c=0;c<a.length;++c){var l=a.charCodeAt(c);45===l||46===l||95===l||126===l||l>=48&&l<=57||l>=65&&l<=90||l>=97&&l<=122||i===r.RFC1738&&(40===l||41===l)?u+=a.charAt(c):l<128?u+=s[l]:l<2048?u+=s[192|l>>6]+s[128|63&l]:l<55296||l>=57344?u+=s[224|l>>12]+s[128|l>>6&63]+s[128|63&l]:(c+=1,l=65536+((1023&l)<<10|1023&a.charCodeAt(c)),u+=s[240|l>>18]+s[128|l>>12&63]+s[128|l>>6&63]+s[128|63&l])}return u},isBuffer:function(e){return!(!e||"object"!=typeof e)&&!!(e.constructor&&e.constructor.isBuffer&&e.constructor.isBuffer(e))},isRegExp:function(e){return"[object RegExp]"===Object.prototype.toString.call(e)},maybeMap:function(e,t){if(i(e)){for(var n=[],r=0;r<e.length;r+=1)n.push(t(e[r]));return n}return t(e)},merge:function e(t,n,r){if(!n)return t;if("object"!=typeof n){if(i(t))t.push(n);else{if(!t||"object"!=typeof t)return[t,n];(r&&(r.plainObjects||r.allowPrototypes)||!o.call(Object.prototype,n))&&(t[n]=!0)}return t}if(!t||"object"!=typeof t)return[t].concat(n);var s=t;return i(t)&&!i(n)&&(s=a(t,r)),i(t)&&i(n)?(n.forEach((function(n,i){if(o.call(t,i)){var s=t[i];s&&"object"==typeof s&&n&&"object"==typeof n?t[i]=e(s,n,r):t.push(n)}else t[i]=n})),t):Object.keys(n).reduce((function(t,i){var s=n[i];return o.call(t,i)?t[i]=e(t[i],s,r):t[i]=s,t}),s)}}},97375:(e,t)=>{"use strict";var n=Object.prototype.hasOwnProperty;function r(e){try{return decodeURIComponent(e.replace(/\+/g," "))}catch(t){return null}}function o(e){try{return encodeURIComponent(e)}catch(t){return null}}t.stringify=function(e,t){t=t||"";var r,i,s=[];for(i in"string"!=typeof t&&(t="?"),e)if(n.call(e,i)){if((r=e[i])||null!=r&&!isNaN(r)||(r=""),i=o(i),r=o(r),null===i||null===r)continue;s.push(i+"="+r)}return s.length?t+s.join("&"):""},t.parse=function(e){for(var t,n=/([^=?#&]+)=?([^&]*)/g,o={};t=n.exec(e);){var i=r(t[1]),s=r(t[2]);null===i||null===s||i in o||(o[i]=s)}return o}},11997:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"DraggableCore",{enumerable:!0,get:function(){return d.default}}),t.default=void 0;var o=function(e,t){if(!t&&e&&e.__esModule)return e;if(null===e||"object"!==r(e)&&"function"!=typeof e)return{default:e};var n=m(t);if(n&&n.has(e))return n.get(e);var o={},i=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var s in e)if("default"!==s&&Object.prototype.hasOwnProperty.call(e,s)){var a=i?Object.getOwnPropertyDescriptor(e,s):null;a&&(a.get||a.set)?Object.defineProperty(o,s,a):o[s]=e[s]}o.default=e,n&&n.set(e,o);return o}(n(99196)),i=h(n(13980)),s=h(n(91850)),a=h(n(6277)),u=n(54688),c=n(93585),l=n(40136),d=h(n(93816)),p=h(n(81177)),f=["axis","bounds","children","defaultPosition","defaultClassName","defaultClassNameDragging","defaultClassNameDragged","position","positionOffset","scale"];function h(e){return e&&e.__esModule?e:{default:e}}function m(e){if("function"!=typeof WeakMap)return null;var t=new WeakMap,n=new WeakMap;return(m=function(e){return e?n:t})(e)}function g(){return g=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},g.apply(this,arguments)}function y(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function v(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function b(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?v(Object(n),!0).forEach((function(t){A(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):v(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function w(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null==n)return;var r,o,i=[],_n=!0,s=!1;try{for(n=n.call(e);!(_n=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);_n=!0);}catch(a){s=!0,o=a}finally{try{_n||null==n.return||n.return()}finally{if(s)throw o}}return i}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return _(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return _(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function _(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function E(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function S(e,t){return S=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},S(e,t)}function C(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=I(e);if(t){var o=I(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return P(this,n)}}function P(e,t){if(t&&("object"===r(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return k(e)}function k(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function I(e){return I=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},I(e)}function A(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var T=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&S(e,t)}(l,e);var t,n,r,i=C(l);function l(e){var t;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,l),A(k(t=i.call(this,e)),"onDragStart",(function(e,n){if((0,p.default)("Draggable: onDragStart: %j",n),!1===t.props.onStart(e,(0,c.createDraggableData)(k(t),n)))return!1;t.setState({dragging:!0,dragged:!0})})),A(k(t),"onDrag",(function(e,n){if(!t.state.dragging)return!1;(0,p.default)("Draggable: onDrag: %j",n);var r=(0,c.createDraggableData)(k(t),n),o={x:r.x,y:r.y};if(t.props.bounds){var i=o.x,s=o.y;o.x+=t.state.slackX,o.y+=t.state.slackY;var a=w((0,c.getBoundPosition)(k(t),o.x,o.y),2),u=a[0],l=a[1];o.x=u,o.y=l,o.slackX=t.state.slackX+(i-o.x),o.slackY=t.state.slackY+(s-o.y),r.x=o.x,r.y=o.y,r.deltaX=o.x-t.state.x,r.deltaY=o.y-t.state.y}if(!1===t.props.onDrag(e,r))return!1;t.setState(o)})),A(k(t),"onDragStop",(function(e,n){if(!t.state.dragging)return!1;if(!1===t.props.onStop(e,(0,c.createDraggableData)(k(t),n)))return!1;(0,p.default)("Draggable: onDragStop: %j",n);var r={dragging:!1,slackX:0,slackY:0};if(Boolean(t.props.position)){var o=t.props.position,i=o.x,s=o.y;r.x=i,r.y=s}t.setState(r)})),t.state={dragging:!1,dragged:!1,x:e.position?e.position.x:e.defaultPosition.x,y:e.position?e.position.y:e.defaultPosition.y,prevPropsPosition:b({},e.position),slackX:0,slackY:0,isElementSVG:!1},!e.position||e.onDrag||e.onStop||console.warn("A `position` was applied to this <Draggable>, without drag handlers. This will make this component effectively undraggable. Please attach `onDrag` or `onStop` handlers so you can adjust the `position` of this element."),t}return t=l,r=[{key:"getDerivedStateFromProps",value:function(e,t){var n=e.position,r=t.prevPropsPosition;return!n||r&&n.x===r.x&&n.y===r.y?null:((0,p.default)("Draggable: getDerivedStateFromProps %j",{position:n,prevPropsPosition:r}),{x:n.x,y:n.y,prevPropsPosition:b({},n)})}}],(n=[{key:"componentDidMount",value:function(){void 0!==window.SVGElement&&this.findDOMNode()instanceof window.SVGElement&&this.setState({isElementSVG:!0})}},{key:"componentWillUnmount",value:function(){this.setState({dragging:!1})}},{key:"findDOMNode",value:function(){var e,t,n;return null!==(e=null===(t=this.props)||void 0===t||null===(n=t.nodeRef)||void 0===n?void 0:n.current)&&void 0!==e?e:s.default.findDOMNode(this)}},{key:"render",value:function(){var e,t=this.props,n=(t.axis,t.bounds,t.children),r=t.defaultPosition,i=t.defaultClassName,s=t.defaultClassNameDragging,l=t.defaultClassNameDragged,p=t.position,h=t.positionOffset,m=(t.scale,y(t,f)),v={},w=null,_=!Boolean(p)||this.state.dragging,E=p||r,S={x:(0,c.canDragX)(this)&&_?this.state.x:E.x,y:(0,c.canDragY)(this)&&_?this.state.y:E.y};this.state.isElementSVG?w=(0,u.createSVGTransform)(S,h):v=(0,u.createCSSTransform)(S,h);var C=(0,a.default)(n.props.className||"",i,(A(e={},s,this.state.dragging),A(e,l,this.state.dragged),e));return o.createElement(d.default,g({},m,{onStart:this.onDragStart,onDrag:this.onDrag,onStop:this.onDragStop}),o.cloneElement(o.Children.only(n),{className:C,style:b(b({},n.props.style),v),transform:w}))}}])&&E(t.prototype,n),r&&E(t,r),l}(o.Component);t.default=T,A(T,"displayName","Draggable"),A(T,"propTypes",b(b({},d.default.propTypes),{},{axis:i.default.oneOf(["both","x","y","none"]),bounds:i.default.oneOfType([i.default.shape({left:i.default.number,right:i.default.number,top:i.default.number,bottom:i.default.number}),i.default.string,i.default.oneOf([!1])]),defaultClassName:i.default.string,defaultClassNameDragging:i.default.string,defaultClassNameDragged:i.default.string,defaultPosition:i.default.shape({x:i.default.number,y:i.default.number}),positionOffset:i.default.shape({x:i.default.oneOfType([i.default.number,i.default.string]),y:i.default.oneOfType([i.default.number,i.default.string])}),position:i.default.shape({x:i.default.number,y:i.default.number}),className:l.dontSetMe,style:l.dontSetMe,transform:l.dontSetMe})),A(T,"defaultProps",b(b({},d.default.defaultProps),{},{axis:"both",bounds:!1,defaultClassName:"react-draggable",defaultClassNameDragging:"react-draggable-dragging",defaultClassNameDragged:"react-draggable-dragged",defaultPosition:{x:0,y:0},scale:1}))},93816:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=function(e,t){if(!t&&e&&e.__esModule)return e;if(null===e||"object"!==r(e)&&"function"!=typeof e)return{default:e};var n=p(t);if(n&&n.has(e))return n.get(e);var o={},i=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var s in e)if("default"!==s&&Object.prototype.hasOwnProperty.call(e,s)){var a=i?Object.getOwnPropertyDescriptor(e,s):null;a&&(a.get||a.set)?Object.defineProperty(o,s,a):o[s]=e[s]}o.default=e,n&&n.set(e,o);return o}(n(99196)),i=d(n(13980)),s=d(n(91850)),a=n(54688),u=n(93585),c=n(40136),l=d(n(81177));function d(e){return e&&e.__esModule?e:{default:e}}function p(e){if("function"!=typeof WeakMap)return null;var t=new WeakMap,n=new WeakMap;return(p=function(e){return e?n:t})(e)}function f(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null==n)return;var r,o,i=[],_n=!0,s=!1;try{for(n=n.call(e);!(_n=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);_n=!0);}catch(a){s=!0,o=a}finally{try{_n||null==n.return||n.return()}finally{if(s)throw o}}return i}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return h(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return h(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function m(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function g(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function y(e,t){return y=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},y(e,t)}function v(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=_(e);if(t){var o=_(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return b(this,n)}}function b(e,t){if(t&&("object"===r(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return w(e)}function w(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function _(e){return _=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},_(e)}function E(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var S={start:"touchstart",move:"touchmove",stop:"touchend"},C={start:"mousedown",move:"mousemove",stop:"mouseup"},P=C,k=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&y(e,t)}(c,e);var t,n,r,i=v(c);function c(){var e;m(this,c);for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];return E(w(e=i.call.apply(i,[this].concat(n))),"state",{dragging:!1,lastX:NaN,lastY:NaN,touchIdentifier:null}),E(w(e),"mounted",!1),E(w(e),"handleDragStart",(function(t){if(e.props.onMouseDown(t),!e.props.allowAnyClick&&"number"==typeof t.button&&0!==t.button)return!1;var n=e.findDOMNode();if(!n||!n.ownerDocument||!n.ownerDocument.body)throw new Error("<DraggableCore> not mounted on DragStart!");var r=n.ownerDocument;if(!(e.props.disabled||!(t.target instanceof r.defaultView.Node)||e.props.handle&&!(0,a.matchesSelectorAndParentsTo)(t.target,e.props.handle,n)||e.props.cancel&&(0,a.matchesSelectorAndParentsTo)(t.target,e.props.cancel,n))){"touchstart"===t.type&&t.preventDefault();var o=(0,a.getTouchIdentifier)(t);e.setState({touchIdentifier:o});var i=(0,u.getControlPosition)(t,o,w(e));if(null!=i){var s=i.x,c=i.y,d=(0,u.createCoreData)(w(e),s,c);(0,l.default)("DraggableCore: handleDragStart: %j",d),(0,l.default)("calling",e.props.onStart),!1!==e.props.onStart(t,d)&&!1!==e.mounted&&(e.props.enableUserSelectHack&&(0,a.addUserSelectStyles)(r),e.setState({dragging:!0,lastX:s,lastY:c}),(0,a.addEvent)(r,P.move,e.handleDrag),(0,a.addEvent)(r,P.stop,e.handleDragStop))}}})),E(w(e),"handleDrag",(function(t){var n=(0,u.getControlPosition)(t,e.state.touchIdentifier,w(e));if(null!=n){var r=n.x,o=n.y;if(Array.isArray(e.props.grid)){var i=r-e.state.lastX,s=o-e.state.lastY,a=f((0,u.snapToGrid)(e.props.grid,i,s),2);if(i=a[0],s=a[1],!i&&!s)return;r=e.state.lastX+i,o=e.state.lastY+s}var c=(0,u.createCoreData)(w(e),r,o);if((0,l.default)("DraggableCore: handleDrag: %j",c),!1!==e.props.onDrag(t,c)&&!1!==e.mounted)e.setState({lastX:r,lastY:o});else try{e.handleDragStop(new MouseEvent("mouseup"))}catch(p){var d=document.createEvent("MouseEvents");d.initMouseEvent("mouseup",!0,!0,window,0,0,0,0,0,!1,!1,!1,!1,0,null),e.handleDragStop(d)}}})),E(w(e),"handleDragStop",(function(t){if(e.state.dragging){var n=(0,u.getControlPosition)(t,e.state.touchIdentifier,w(e));if(null!=n){var r=n.x,o=n.y,i=(0,u.createCoreData)(w(e),r,o);if(!1===e.props.onStop(t,i)||!1===e.mounted)return!1;var s=e.findDOMNode();s&&e.props.enableUserSelectHack&&(0,a.removeUserSelectStyles)(s.ownerDocument),(0,l.default)("DraggableCore: handleDragStop: %j",i),e.setState({dragging:!1,lastX:NaN,lastY:NaN}),s&&((0,l.default)("DraggableCore: Removing handlers"),(0,a.removeEvent)(s.ownerDocument,P.move,e.handleDrag),(0,a.removeEvent)(s.ownerDocument,P.stop,e.handleDragStop))}}})),E(w(e),"onMouseDown",(function(t){return P=C,e.handleDragStart(t)})),E(w(e),"onMouseUp",(function(t){return P=C,e.handleDragStop(t)})),E(w(e),"onTouchStart",(function(t){return P=S,e.handleDragStart(t)})),E(w(e),"onTouchEnd",(function(t){return P=S,e.handleDragStop(t)})),e}return t=c,(n=[{key:"componentDidMount",value:function(){this.mounted=!0;var e=this.findDOMNode();e&&(0,a.addEvent)(e,S.start,this.onTouchStart,{passive:!1})}},{key:"componentWillUnmount",value:function(){this.mounted=!1;var e=this.findDOMNode();if(e){var t=e.ownerDocument;(0,a.removeEvent)(t,C.move,this.handleDrag),(0,a.removeEvent)(t,S.move,this.handleDrag),(0,a.removeEvent)(t,C.stop,this.handleDragStop),(0,a.removeEvent)(t,S.stop,this.handleDragStop),(0,a.removeEvent)(e,S.start,this.onTouchStart,{passive:!1}),this.props.enableUserSelectHack&&(0,a.removeUserSelectStyles)(t)}}},{key:"findDOMNode",value:function(){var e,t,n;return null!==(e=null===(t=this.props)||void 0===t||null===(n=t.nodeRef)||void 0===n?void 0:n.current)&&void 0!==e?e:s.default.findDOMNode(this)}},{key:"render",value:function(){return o.cloneElement(o.Children.only(this.props.children),{onMouseDown:this.onMouseDown,onMouseUp:this.onMouseUp,onTouchEnd:this.onTouchEnd})}}])&&g(t.prototype,n),r&&g(t,r),c}(o.Component);t.default=k,E(k,"displayName","DraggableCore"),E(k,"propTypes",{allowAnyClick:i.default.bool,disabled:i.default.bool,enableUserSelectHack:i.default.bool,offsetParent:function(e,t){if(e[t]&&1!==e[t].nodeType)throw new Error("Draggable's offsetParent must be a DOM Node.")},grid:i.default.arrayOf(i.default.number),handle:i.default.string,cancel:i.default.string,nodeRef:i.default.object,onStart:i.default.func,onDrag:i.default.func,onStop:i.default.func,onMouseDown:i.default.func,scale:i.default.number,className:c.dontSetMe,style:c.dontSetMe,transform:c.dontSetMe}),E(k,"defaultProps",{allowAnyClick:!1,disabled:!1,enableUserSelectHack:!0,onStart:function(){},onDrag:function(){},onStop:function(){},onMouseDown:function(){},scale:1})},41327:(e,t,n)=>{"use strict";var r=n(11997),o=r.default,i=r.DraggableCore;e.exports=o,e.exports.default=o,e.exports.DraggableCore=i},54688:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}Object.defineProperty(t,"__esModule",{value:!0}),t.matchesSelector=d,t.matchesSelectorAndParentsTo=function(e,t,n){var r=e;do{if(d(r,t))return!0;if(r===n)return!1;r=r.parentNode}while(r);return!1},t.addEvent=function(e,t,n,r){if(!e)return;var o=u({capture:!0},r);e.addEventListener?e.addEventListener(t,n,o):e.attachEvent?e.attachEvent("on"+t,n):e["on"+t]=n},t.removeEvent=function(e,t,n,r){if(!e)return;var o=u({capture:!0},r);e.removeEventListener?e.removeEventListener(t,n,o):e.detachEvent?e.detachEvent("on"+t,n):e["on"+t]=null},t.outerHeight=function(e){var t=e.clientHeight,n=e.ownerDocument.defaultView.getComputedStyle(e);return t+=(0,o.int)(n.borderTopWidth),t+=(0,o.int)(n.borderBottomWidth)},t.outerWidth=function(e){var t=e.clientWidth,n=e.ownerDocument.defaultView.getComputedStyle(e);return t+=(0,o.int)(n.borderLeftWidth),t+=(0,o.int)(n.borderRightWidth)},t.innerHeight=function(e){var t=e.clientHeight,n=e.ownerDocument.defaultView.getComputedStyle(e);return t-=(0,o.int)(n.paddingTop),t-=(0,o.int)(n.paddingBottom)},t.innerWidth=function(e){var t=e.clientWidth,n=e.ownerDocument.defaultView.getComputedStyle(e);return t-=(0,o.int)(n.paddingLeft),t-=(0,o.int)(n.paddingRight)},t.offsetXYFromParent=function(e,t,n){var r=t===t.ownerDocument.body?{left:0,top:0}:t.getBoundingClientRect(),o=(e.clientX+t.scrollLeft-r.left)/n,i=(e.clientY+t.scrollTop-r.top)/n;return{x:o,y:i}},t.createCSSTransform=function(e,t){var n=p(e,t,"px");return c({},(0,i.browserPrefixToKey)("transform",i.default),n)},t.createSVGTransform=function(e,t){return p(e,t,"")},t.getTranslation=p,t.getTouch=function(e,t){return e.targetTouches&&(0,o.findInArray)(e.targetTouches,(function(e){return t===e.identifier}))||e.changedTouches&&(0,o.findInArray)(e.changedTouches,(function(e){return t===e.identifier}))},t.getTouchIdentifier=function(e){if(e.targetTouches&&e.targetTouches[0])return e.targetTouches[0].identifier;if(e.changedTouches&&e.changedTouches[0])return e.changedTouches[0].identifier},t.addUserSelectStyles=function(e){if(!e)return;var t=e.getElementById("react-draggable-style-el");t||((t=e.createElement("style")).type="text/css",t.id="react-draggable-style-el",t.innerHTML=".react-draggable-transparent-selection *::-moz-selection {all: inherit;}\n",t.innerHTML+=".react-draggable-transparent-selection *::selection {all: inherit;}\n",e.getElementsByTagName("head")[0].appendChild(t));e.body&&f(e.body,"react-draggable-transparent-selection")},t.removeUserSelectStyles=function(e){if(!e)return;try{if(e.body&&h(e.body,"react-draggable-transparent-selection"),e.selection)e.selection.empty();else{var t=(e.defaultView||window).getSelection();t&&"Caret"!==t.type&&t.removeAllRanges()}}catch(n){}},t.addClassName=f,t.removeClassName=h;var o=n(40136),i=function(e,t){if(!t&&e&&e.__esModule)return e;if(null===e||"object"!==r(e)&&"function"!=typeof e)return{default:e};var n=s(t);if(n&&n.has(e))return n.get(e);var o={},i=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var a in e)if("default"!==a&&Object.prototype.hasOwnProperty.call(e,a)){var u=i?Object.getOwnPropertyDescriptor(e,a):null;u&&(u.get||u.set)?Object.defineProperty(o,a,u):o[a]=e[a]}o.default=e,n&&n.set(e,o);return o}(n(92185));function s(e){if("function"!=typeof WeakMap)return null;var t=new WeakMap,n=new WeakMap;return(s=function(e){return e?n:t})(e)}function a(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function u(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?a(Object(n),!0).forEach((function(t){c(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):a(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function c(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var l="";function d(e,t){return l||(l=(0,o.findInArray)(["matches","webkitMatchesSelector","mozMatchesSelector","msMatchesSelector","oMatchesSelector"],(function(t){return(0,o.isFunction)(e[t])}))),!!(0,o.isFunction)(e[l])&&e[l](t)}function p(e,t,n){var r=e.x,o=e.y,i="translate(".concat(r).concat(n,",").concat(o).concat(n,")");if(t){var s="".concat("string"==typeof t.x?t.x:t.x+n),a="".concat("string"==typeof t.y?t.y:t.y+n);i="translate(".concat(s,", ").concat(a,")")+i}return i}function f(e,t){e.classList?e.classList.add(t):e.className.match(new RegExp("(?:^|\\s)".concat(t,"(?!\\S)")))||(e.className+=" ".concat(t))}function h(e,t){e.classList?e.classList.remove(t):e.className=e.className.replace(new RegExp("(?:^|\\s)".concat(t,"(?!\\S)"),"g"),"")}},92185:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getPrefix=r,t.browserPrefixToKey=o,t.browserPrefixToStyle=function(e,t){return t?"-".concat(t.toLowerCase(),"-").concat(e):e},t.default=void 0;var n=["Moz","Webkit","O","ms"];function r(){var e,t,r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"transform";if("undefined"==typeof window)return"";var i=null===(e=window.document)||void 0===e||null===(t=e.documentElement)||void 0===t?void 0:t.style;if(!i)return"";if(r in i)return"";for(var s=0;s<n.length;s++)if(o(r,n[s])in i)return n[s];return""}function o(e,t){return t?"".concat(t).concat(function(e){for(var t="",n=!0,r=0;r<e.length;r++)n?(t+=e[r].toUpperCase(),n=!1):"-"===e[r]?n=!0:t+=e[r];return t}(e)):e}var i=r();t.default=i},81177:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(){0}},93585:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getBoundPosition=function(e,t,n){if(!e.props.bounds)return[t,n];var s=e.props.bounds;s="string"==typeof s?s:function(e){return{left:e.left,top:e.top,right:e.right,bottom:e.bottom}}(s);var a=i(e);if("string"==typeof s){var u,c=a.ownerDocument,l=c.defaultView;if(!((u="parent"===s?a.parentNode:c.querySelector(s))instanceof l.HTMLElement))throw new Error('Bounds selector "'+s+'" could not find an element.');var d=u,p=l.getComputedStyle(a),f=l.getComputedStyle(d);s={left:-a.offsetLeft+(0,r.int)(f.paddingLeft)+(0,r.int)(p.marginLeft),top:-a.offsetTop+(0,r.int)(f.paddingTop)+(0,r.int)(p.marginTop),right:(0,o.innerWidth)(d)-(0,o.outerWidth)(a)-a.offsetLeft+(0,r.int)(f.paddingRight)-(0,r.int)(p.marginRight),bottom:(0,o.innerHeight)(d)-(0,o.outerHeight)(a)-a.offsetTop+(0,r.int)(f.paddingBottom)-(0,r.int)(p.marginBottom)}}(0,r.isNum)(s.right)&&(t=Math.min(t,s.right));(0,r.isNum)(s.bottom)&&(n=Math.min(n,s.bottom));(0,r.isNum)(s.left)&&(t=Math.max(t,s.left));(0,r.isNum)(s.top)&&(n=Math.max(n,s.top));return[t,n]},t.snapToGrid=function(e,t,n){var r=Math.round(t/e[0])*e[0],o=Math.round(n/e[1])*e[1];return[r,o]},t.canDragX=function(e){return"both"===e.props.axis||"x"===e.props.axis},t.canDragY=function(e){return"both"===e.props.axis||"y"===e.props.axis},t.getControlPosition=function(e,t,n){var r="number"==typeof t?(0,o.getTouch)(e,t):null;if("number"==typeof t&&!r)return null;var s=i(n),a=n.props.offsetParent||s.offsetParent||s.ownerDocument.body;return(0,o.offsetXYFromParent)(r||e,a,n.props.scale)},t.createCoreData=function(e,t,n){var o=e.state,s=!(0,r.isNum)(o.lastX),a=i(e);return s?{node:a,deltaX:0,deltaY:0,lastX:t,lastY:n,x:t,y:n}:{node:a,deltaX:t-o.lastX,deltaY:n-o.lastY,lastX:o.lastX,lastY:o.lastY,x:t,y:n}},t.createDraggableData=function(e,t){var n=e.props.scale;return{node:t.node,x:e.state.x+t.deltaX/n,y:e.state.y+t.deltaY/n,deltaX:t.deltaX/n,deltaY:t.deltaY/n,lastX:e.state.x,lastY:e.state.y}};var r=n(40136),o=n(54688);function i(e){var t=e.findDOMNode();if(!t)throw new Error("<DraggableCore>: Unmounted during event!");return t}},40136:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.findInArray=function(e,t){for(var n=0,r=e.length;n<r;n++)if(t.apply(t,[e[n],n,e]))return e[n]},t.isFunction=function(e){return"function"==typeof e||"[object Function]"===Object.prototype.toString.call(e)},t.isNum=function(e){return"number"==typeof e&&!isNaN(e)},t.int=function(e){return parseInt(e,10)},t.dontSetMe=function(e,t,n){if(e[t])return new Error("Invalid prop ".concat(t," passed to ").concat(n," - do not set this, set it on the child."))}},66866:(e,t)=>{"use strict";var n=60103,r=60106,o=60107,i=60108,s=60114,a=60109,u=60110,c=60112,l=60113,d=60120,p=60115,f=60116,h=60121,m=60122,g=60117,y=60129,v=60131;
28
  /** @license React v17.0.2
29
  * react-is.production.min.js
30
  *
@@ -32,7 +32,7 @@ object-assign
32
  *
33
  * This source code is licensed under the MIT license found in the
34
  * LICENSE file in the root directory of this source tree.
35
- */if("function"==typeof Symbol&&Symbol.for){var b=Symbol.for;n=b("react.element"),r=b("react.portal"),o=b("react.fragment"),i=b("react.strict_mode"),s=b("react.profiler"),a=b("react.provider"),u=b("react.context"),c=b("react.forward_ref"),l=b("react.suspense"),d=b("react.suspense_list"),p=b("react.memo"),f=b("react.lazy"),h=b("react.block"),m=b("react.server.block"),g=b("react.fundamental"),y=b("react.debug_trace_mode"),v=b("react.legacy_hidden")}function w(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case n:switch(e=e.type){case o:case s:case i:case l:case d:return e;default:switch(e=e&&e.$$typeof){case u:case c:case f:case p:case a:return e;default:return t}}case r:return t}}}t.isContextConsumer=function(e){return w(e)===u}},48570:(e,t,n)=>{"use strict";e.exports=n(66866)},27483:(e,t,n)=>{"use strict";n.d(t,{j:()=>s});var r=n(81665),o=n(92693),i=n(10774),s=new(function(e){function t(){return e.apply(this,arguments)||this}(0,r.Z)(t,e);var n=t.prototype;return n.onSubscribe=function(){this.removeEventListener||this.setDefaultEventListener()},n.setEventListener=function(e){var t=this;this.removeEventListener&&this.removeEventListener(),this.removeEventListener=e((function(e){"boolean"==typeof e?t.setFocused(e):t.onFocus()}))},n.setFocused=function(e){this.focused=e,e&&this.onFocus()},n.onFocus=function(){this.listeners.forEach((function(e){e()}))},n.isFocused=function(){return"boolean"==typeof this.focused?this.focused:"undefined"==typeof document||[void 0,"visible","prerender"].includes(document.visibilityState)},n.setDefaultEventListener=function(){var e;!i.sk&&(null==(e=window)?void 0:e.addEventListener)&&this.setEventListener((function(e){var t=function(){return e()};return window.addEventListener("visibilitychange",t,!1),window.addEventListener("focus",t,!1),function(){window.removeEventListener("visibilitychange",t),window.removeEventListener("focus",t)}}))},t}(o.l))},60002:(e,t,n)=>{"use strict";n.d(t,{Su:()=>r.S});var r=n(29446),o=n(77820);n.o(o,"QueryClientProvider")&&n.d(t,{QueryClientProvider:function(){return o.QueryClientProvider}}),n.o(o,"useMutation")&&n.d(t,{useMutation:function(){return o.useMutation}}),n.o(o,"useQuery")&&n.d(t,{useQuery:function(){return o.useQuery}}),n.o(o,"useQueryClient")&&n.d(t,{useQueryClient:function(){return o.useQueryClient}})},20560:(e,t,n)=>{"use strict";n.d(t,{Gm:()=>i});var r=n(22348),o=n(10774);function i(){return{onFetch:function(e){e.fetchFn=function(){var t,n,i,u,c,l,d,p=null==(t=e.fetchOptions)||null==(n=t.meta)?void 0:n.refetchPage,f=null==(i=e.fetchOptions)||null==(u=i.meta)?void 0:u.fetchMore,h=null==f?void 0:f.pageParam,m="forward"===(null==f?void 0:f.direction),g="backward"===(null==f?void 0:f.direction),y=(null==(c=e.state.data)?void 0:c.pages)||[],v=(null==(l=e.state.data)?void 0:l.pageParams)||[],b=(0,o.G9)(),w=null==b?void 0:b.signal,_=v,E=!1,S=e.options.queryFn||function(){return Promise.reject("Missing queryFn")},C=function(e,t,n,r){return _=r?[t].concat(_):[].concat(_,[t]),r?[n].concat(e):[].concat(e,[n])},P=function(t,n,o,i){if(E)return Promise.reject("Cancelled");if(void 0===o&&!n&&t.length)return Promise.resolve(t);var s={queryKey:e.queryKey,signal:w,pageParam:o,meta:e.meta},a=S(s),u=Promise.resolve(a).then((function(e){return C(t,o,e,i)}));(0,r.LE)(a)&&(u.cancel=a.cancel);return u};if(y.length)if(m){var k=void 0!==h,I=k?h:s(e.options,y);d=P(y,k,I)}else if(g){var A=void 0!==h,T=A?h:a(e.options,y);d=P(y,A,T,!0)}else!function(){_=[];var t=void 0===e.options.getNextPageParam,n=!p||!y[0]||p(y[0],0,y);d=n?P([],t,v[0]):Promise.resolve(C([],v[0],y[0]));for(var r=function(n){d=d.then((function(r){if(!p||!y[n]||p(y[n],n,y)){var o=t?v[n]:s(e.options,r);return P(r,t,o)}return Promise.resolve(C(r,v[n],y[n]))}))},o=1;o<y.length;o++)r(o)}();else d=P([]);var R=d.then((function(e){return{pages:e,pageParams:_}}));return R.cancel=function(){E=!0,null==b||b.abort(),(0,r.LE)(d)&&d.cancel()},R}}}}function s(e,t){return null==e.getNextPageParam?void 0:e.getNextPageParam(t[t.length-1],t)}function a(e,t){return null==e.getPreviousPageParam?void 0:e.getPreviousPageParam(t[0],t)}},53579:(e,t,n)=>{"use strict";n.d(t,{j:()=>i,E:()=>s});var r=n(10774),o=console||{error:r.ZT,warn:r.ZT,log:r.ZT};function i(){return o}function s(e){o=e}},3284:(e,t,n)=>{"use strict";n.d(t,{m:()=>u,R:()=>c});var r=n(7896),o=n(53579),i=n(50667),s=n(22348),a=n(10774),u=function(){function e(e){this.options=(0,r.Z)({},e.defaultOptions,e.options),this.mutationId=e.mutationId,this.mutationCache=e.mutationCache,this.observers=[],this.state=e.state||c()}var t=e.prototype;return t.setState=function(e){this.dispatch({type:"setState",state:e})},t.addObserver=function(e){-1===this.observers.indexOf(e)&&this.observers.push(e)},t.removeObserver=function(e){this.observers=this.observers.filter((function(t){return t!==e}))},t.cancel=function(){return this.retryer?(this.retryer.cancel(),this.retryer.promise.then(a.ZT).catch(a.ZT)):Promise.resolve()},t.continue=function(){return this.retryer?(this.retryer.continue(),this.retryer.promise):this.execute()},t.execute=function(){var e,t=this,n="loading"===this.state.status,r=Promise.resolve();return n||(this.dispatch({type:"loading",variables:this.options.variables}),r=r.then((function(){return null==t.options.onMutate?void 0:t.options.onMutate(t.state.variables)})).then((function(e){e!==t.state.context&&t.dispatch({type:"loading",context:e,variables:t.state.variables})}))),r.then((function(){return t.executeMutation()})).then((function(n){e=n,null==t.mutationCache.config.onSuccess||t.mutationCache.config.onSuccess(e,t.state.variables,t.state.context,t)})).then((function(){return null==t.options.onSuccess?void 0:t.options.onSuccess(e,t.state.variables,t.state.context)})).then((function(){return null==t.options.onSettled?void 0:t.options.onSettled(e,null,t.state.variables,t.state.context)})).then((function(){return t.dispatch({type:"success",data:e}),e})).catch((function(e){return null==t.mutationCache.config.onError||t.mutationCache.config.onError(e,t.state.variables,t.state.context,t),(0,o.j)().error(e),Promise.resolve().then((function(){return null==t.options.onError?void 0:t.options.onError(e,t.state.variables,t.state.context)})).then((function(){return null==t.options.onSettled?void 0:t.options.onSettled(void 0,e,t.state.variables,t.state.context)})).then((function(){throw t.dispatch({type:"error",error:e}),e}))}))},t.executeMutation=function(){var e,t=this;return this.retryer=new s.m4({fn:function(){return t.options.mutationFn?t.options.mutationFn(t.state.variables):Promise.reject("No mutationFn found")},onFail:function(){t.dispatch({type:"failed"})},onPause:function(){t.dispatch({type:"pause"})},onContinue:function(){t.dispatch({type:"continue"})},retry:null!=(e=this.options.retry)?e:0,retryDelay:this.options.retryDelay}),this.retryer.promise},t.dispatch=function(e){var t=this;this.state=function(e,t){switch(t.type){case"failed":return(0,r.Z)({},e,{failureCount:e.failureCount+1});case"pause":return(0,r.Z)({},e,{isPaused:!0});case"continue":return(0,r.Z)({},e,{isPaused:!1});case"loading":return(0,r.Z)({},e,{context:t.context,data:void 0,error:null,isPaused:!1,status:"loading",variables:t.variables});case"success":return(0,r.Z)({},e,{data:t.data,error:null,status:"success",isPaused:!1});case"error":return(0,r.Z)({},e,{data:void 0,error:t.error,failureCount:e.failureCount+1,isPaused:!1,status:"error"});case"setState":return(0,r.Z)({},e,t.state);default:return e}}(this.state,e),i.V.batch((function(){t.observers.forEach((function(t){t.onMutationUpdate(e)})),t.mutationCache.notify(t)}))},e}();function c(){return{context:void 0,data:void 0,error:null,failureCount:0,isPaused:!1,status:"idle",variables:void 0}}},9601:(e,t,n)=>{"use strict";n.d(t,{L:()=>a});var r=n(81665),o=n(50667),i=n(3284),s=n(10774),a=function(e){function t(t){var n;return(n=e.call(this)||this).config=t||{},n.mutations=[],n.mutationId=0,n}(0,r.Z)(t,e);var n=t.prototype;return n.build=function(e,t,n){var r=new i.m({mutationCache:this,mutationId:++this.mutationId,options:e.defaultMutationOptions(t),state:n,defaultOptions:t.mutationKey?e.getMutationDefaults(t.mutationKey):void 0});return this.add(r),r},n.add=function(e){this.mutations.push(e),this.notify(e)},n.remove=function(e){this.mutations=this.mutations.filter((function(t){return t!==e})),e.cancel(),this.notify(e)},n.clear=function(){var e=this;o.V.batch((function(){e.mutations.forEach((function(t){e.remove(t)}))}))},n.getAll=function(){return this.mutations},n.find=function(e){return void 0===e.exact&&(e.exact=!0),this.mutations.find((function(t){return(0,s.X7)(e,t)}))},n.findAll=function(e){return this.mutations.filter((function(t){return(0,s.X7)(e,t)}))},n.notify=function(e){var t=this;o.V.batch((function(){t.listeners.forEach((function(t){t(e)}))}))},n.onFocus=function(){this.resumePausedMutations()},n.onOnline=function(){this.resumePausedMutations()},n.resumePausedMutations=function(){var e=this.mutations.filter((function(e){return e.state.isPaused}));return o.V.batch((function(){return e.reduce((function(e,t){return e.then((function(){return t.continue().catch(s.ZT)}))}),Promise.resolve())}))},t}(n(92693).l)},74856:(e,t,n)=>{"use strict";n.d(t,{X:()=>a});var r=n(7896),o=n(81665),i=n(3284),s=n(50667),a=function(e){function t(t,n){var r;return(r=e.call(this)||this).client=t,r.setOptions(n),r.bindMethods(),r.updateResult(),r}(0,o.Z)(t,e);var n=t.prototype;return n.bindMethods=function(){this.mutate=this.mutate.bind(this),this.reset=this.reset.bind(this)},n.setOptions=function(e){this.options=this.client.defaultMutationOptions(e)},n.onUnsubscribe=function(){var e;this.listeners.length||(null==(e=this.currentMutation)||e.removeObserver(this))},n.onMutationUpdate=function(e){this.updateResult();var t={listeners:!0};"success"===e.type?t.onSuccess=!0:"error"===e.type&&(t.onError=!0),this.notify(t)},n.getCurrentResult=function(){return this.currentResult},n.reset=function(){this.currentMutation=void 0,this.updateResult(),this.notify({listeners:!0})},n.mutate=function(e,t){return this.mutateOptions=t,this.currentMutation&&this.currentMutation.removeObserver(this),this.currentMutation=this.client.getMutationCache().build(this.client,(0,r.Z)({},this.options,{variables:void 0!==e?e:this.options.variables})),this.currentMutation.addObserver(this),this.currentMutation.execute()},n.updateResult=function(){var e=this.currentMutation?this.currentMutation.state:(0,i.R)(),t=(0,r.Z)({},e,{isLoading:"loading"===e.status,isSuccess:"success"===e.status,isError:"error"===e.status,isIdle:"idle"===e.status,mutate:this.mutate,reset:this.reset});this.currentResult=t},n.notify=function(e){var t=this;s.V.batch((function(){t.mutateOptions&&(e.onSuccess?(null==t.mutateOptions.onSuccess||t.mutateOptions.onSuccess(t.currentResult.data,t.currentResult.variables,t.currentResult.context),null==t.mutateOptions.onSettled||t.mutateOptions.onSettled(t.currentResult.data,null,t.currentResult.variables,t.currentResult.context)):e.onError&&(null==t.mutateOptions.onError||t.mutateOptions.onError(t.currentResult.error,t.currentResult.variables,t.currentResult.context),null==t.mutateOptions.onSettled||t.mutateOptions.onSettled(void 0,t.currentResult.error,t.currentResult.variables,t.currentResult.context))),e.listeners&&t.listeners.forEach((function(e){e(t.currentResult)}))}))},t}(n(92693).l)},50667:(e,t,n)=>{"use strict";n.d(t,{V:()=>o});var r=n(10774),o=new(function(){function e(){this.queue=[],this.transactions=0,this.notifyFn=function(e){e()},this.batchNotifyFn=function(e){e()}}var t=e.prototype;return t.batch=function(e){this.transactions++;var t=e();return this.transactions--,this.transactions||this.flush(),t},t.schedule=function(e){var t=this;this.transactions?this.queue.push(e):(0,r.A4)((function(){t.notifyFn(e)}))},t.batchCalls=function(e){var t=this;return function(){for(var n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];t.schedule((function(){e.apply(void 0,r)}))}},t.flush=function(){var e=this,t=this.queue;this.queue=[],t.length&&(0,r.A4)((function(){e.batchNotifyFn((function(){t.forEach((function(t){e.notifyFn(t)}))}))}))},t.setNotifyFunction=function(e){this.notifyFn=e},t.setBatchNotifyFunction=function(e){this.batchNotifyFn=e},e}())},58927:(e,t,n)=>{"use strict";n.d(t,{N:()=>s});var r=n(81665),o=n(92693),i=n(10774),s=new(function(e){function t(){return e.apply(this,arguments)||this}(0,r.Z)(t,e);var n=t.prototype;return n.onSubscribe=function(){this.removeEventListener||this.setDefaultEventListener()},n.setEventListener=function(e){var t=this;this.removeEventListener&&this.removeEventListener(),this.removeEventListener=e((function(e){"boolean"==typeof e?t.setOnline(e):t.onOnline()}))},n.setOnline=function(e){this.online=e,e&&this.onOnline()},n.onOnline=function(){this.listeners.forEach((function(e){e()}))},n.isOnline=function(){return"boolean"==typeof this.online?this.online:"undefined"==typeof navigator||void 0===navigator.onLine||navigator.onLine},n.setDefaultEventListener=function(){var e;!i.sk&&(null==(e=window)?void 0:e.addEventListener)&&this.setEventListener((function(e){var t=function(){return e()};return window.addEventListener("online",t,!1),window.addEventListener("offline",t,!1),function(){window.removeEventListener("online",t),window.removeEventListener("offline",t)}}))},t}(o.l))},81257:(e,t,n)=>{"use strict";n.d(t,{A:()=>u});var r=n(7896),o=n(10774),i=n(50667),s=n(53579),a=n(22348),u=function(){function e(e){this.abortSignalConsumed=!1,this.defaultOptions=e.defaultOptions,this.setOptions(e.options),this.observers=[],this.cache=e.cache,this.queryKey=e.queryKey,this.queryHash=e.queryHash,this.initialState=e.state||this.getDefaultState(this.options),this.state=this.initialState,this.meta=e.meta,this.scheduleGc()}var t=e.prototype;return t.setOptions=function(e){var t;this.options=(0,r.Z)({},this.defaultOptions,e),this.meta=null==e?void 0:e.meta,this.cacheTime=Math.max(this.cacheTime||0,null!=(t=this.options.cacheTime)?t:3e5)},t.setDefaultOptions=function(e){this.defaultOptions=e},t.scheduleGc=function(){var e=this;this.clearGcTimeout(),(0,o.PN)(this.cacheTime)&&(this.gcTimeout=setTimeout((function(){e.optionalRemove()}),this.cacheTime))},t.clearGcTimeout=function(){clearTimeout(this.gcTimeout),this.gcTimeout=void 0},t.optionalRemove=function(){this.observers.length||this.state.isFetching||this.cache.remove(this)},t.setData=function(e,t){var n,r,i=this.state.data,s=(0,o.SE)(e,i);return(null==(n=(r=this.options).isDataEqual)?void 0:n.call(r,i,s))?s=i:!1!==this.options.structuralSharing&&(s=(0,o.Q$)(i,s)),this.dispatch({data:s,type:"success",dataUpdatedAt:null==t?void 0:t.updatedAt}),s},t.setState=function(e,t){this.dispatch({type:"setState",state:e,setStateOptions:t})},t.cancel=function(e){var t,n=this.promise;return null==(t=this.retryer)||t.cancel(e),n?n.then(o.ZT).catch(o.ZT):Promise.resolve()},t.destroy=function(){this.clearGcTimeout(),this.cancel({silent:!0})},t.reset=function(){this.destroy(),this.setState(this.initialState)},t.isActive=function(){return this.observers.some((function(e){return!1!==e.options.enabled}))},t.isFetching=function(){return this.state.isFetching},t.isStale=function(){return this.state.isInvalidated||!this.state.dataUpdatedAt||this.observers.some((function(e){return e.getCurrentResult().isStale}))},t.isStaleByTime=function(e){return void 0===e&&(e=0),this.state.isInvalidated||!this.state.dataUpdatedAt||!(0,o.Kp)(this.state.dataUpdatedAt,e)},t.onFocus=function(){var e,t=this.observers.find((function(e){return e.shouldFetchOnWindowFocus()}));t&&t.refetch(),null==(e=this.retryer)||e.continue()},t.onOnline=function(){var e,t=this.observers.find((function(e){return e.shouldFetchOnReconnect()}));t&&t.refetch(),null==(e=this.retryer)||e.continue()},t.addObserver=function(e){-1===this.observers.indexOf(e)&&(this.observers.push(e),this.clearGcTimeout(),this.cache.notify({type:"observerAdded",query:this,observer:e}))},t.removeObserver=function(e){-1!==this.observers.indexOf(e)&&(this.observers=this.observers.filter((function(t){return t!==e})),this.observers.length||(this.retryer&&(this.retryer.isTransportCancelable||this.abortSignalConsumed?this.retryer.cancel({revert:!0}):this.retryer.cancelRetry()),this.cacheTime?this.scheduleGc():this.cache.remove(this)),this.cache.notify({type:"observerRemoved",query:this,observer:e}))},t.getObserversCount=function(){return this.observers.length},t.invalidate=function(){this.state.isInvalidated||this.dispatch({type:"invalidate"})},t.fetch=function(e,t){var n,r,i,u=this;if(this.state.isFetching)if(this.state.dataUpdatedAt&&(null==t?void 0:t.cancelRefetch))this.cancel({silent:!0});else if(this.promise)return this.promise;if(e&&this.setOptions(e),!this.options.queryFn){var c=this.observers.find((function(e){return e.options.queryFn}));c&&this.setOptions(c.options)}var l=(0,o.mc)(this.queryKey),d=(0,o.G9)(),p={queryKey:l,pageParam:void 0,meta:this.meta};Object.defineProperty(p,"signal",{enumerable:!0,get:function(){if(d)return u.abortSignalConsumed=!0,d.signal}});var f,h,m={fetchOptions:t,options:this.options,queryKey:l,state:this.state,fetchFn:function(){return u.options.queryFn?(u.abortSignalConsumed=!1,u.options.queryFn(p)):Promise.reject("Missing queryFn")},meta:this.meta};(null==(n=this.options.behavior)?void 0:n.onFetch)&&(null==(f=this.options.behavior)||f.onFetch(m));(this.revertState=this.state,this.state.isFetching&&this.state.fetchMeta===(null==(r=m.fetchOptions)?void 0:r.meta))||this.dispatch({type:"fetch",meta:null==(h=m.fetchOptions)?void 0:h.meta});return this.retryer=new a.m4({fn:m.fetchFn,abort:null==d||null==(i=d.abort)?void 0:i.bind(d),onSuccess:function(e){u.setData(e),null==u.cache.config.onSuccess||u.cache.config.onSuccess(e,u),0===u.cacheTime&&u.optionalRemove()},onError:function(e){(0,a.DV)(e)&&e.silent||u.dispatch({type:"error",error:e}),(0,a.DV)(e)||(null==u.cache.config.onError||u.cache.config.onError(e,u),(0,s.j)().error(e)),0===u.cacheTime&&u.optionalRemove()},onFail:function(){u.dispatch({type:"failed"})},onPause:function(){u.dispatch({type:"pause"})},onContinue:function(){u.dispatch({type:"continue"})},retry:m.options.retry,retryDelay:m.options.retryDelay}),this.promise=this.retryer.promise,this.promise},t.dispatch=function(e){var t=this;this.state=this.reducer(this.state,e),i.V.batch((function(){t.observers.forEach((function(t){t.onQueryUpdate(e)})),t.cache.notify({query:t,type:"queryUpdated",action:e})}))},t.getDefaultState=function(e){var t="function"==typeof e.initialData?e.initialData():e.initialData,n=void 0!==e.initialData?"function"==typeof e.initialDataUpdatedAt?e.initialDataUpdatedAt():e.initialDataUpdatedAt:0,r=void 0!==t;return{data:t,dataUpdateCount:0,dataUpdatedAt:r?null!=n?n:Date.now():0,error:null,errorUpdateCount:0,errorUpdatedAt:0,fetchFailureCount:0,fetchMeta:null,isFetching:!1,isInvalidated:!1,isPaused:!1,status:r?"success":"idle"}},t.reducer=function(e,t){var n,o;switch(t.type){case"failed":return(0,r.Z)({},e,{fetchFailureCount:e.fetchFailureCount+1});case"pause":return(0,r.Z)({},e,{isPaused:!0});case"continue":return(0,r.Z)({},e,{isPaused:!1});case"fetch":return(0,r.Z)({},e,{fetchFailureCount:0,fetchMeta:null!=(n=t.meta)?n:null,isFetching:!0,isPaused:!1,status:e.dataUpdatedAt?e.status:"loading"});case"success":return(0,r.Z)({},e,{data:t.data,dataUpdateCount:e.dataUpdateCount+1,dataUpdatedAt:null!=(o=t.dataUpdatedAt)?o:Date.now(),error:null,fetchFailureCount:0,isFetching:!1,isInvalidated:!1,isPaused:!1,status:"success"});case"error":var i=t.error;return(0,a.DV)(i)&&i.revert&&this.revertState?(0,r.Z)({},this.revertState):(0,r.Z)({},e,{error:i,errorUpdateCount:e.errorUpdateCount+1,errorUpdatedAt:Date.now(),fetchFailureCount:e.fetchFailureCount+1,isFetching:!1,isPaused:!1,status:"error"});case"invalidate":return(0,r.Z)({},e,{isInvalidated:!0});case"setState":return(0,r.Z)({},e,t.state);default:return e}},e}()},10384:(e,t,n)=>{"use strict";n.d(t,{t:()=>a});var r=n(81665),o=n(10774),i=n(81257),s=n(50667),a=function(e){function t(t){var n;return(n=e.call(this)||this).config=t||{},n.queries=[],n.queriesMap={},n}(0,r.Z)(t,e);var n=t.prototype;return n.build=function(e,t,n){var r,s=t.queryKey,a=null!=(r=t.queryHash)?r:(0,o.Rm)(s,t),u=this.get(a);return u||(u=new i.A({cache:this,queryKey:s,queryHash:a,options:e.defaultQueryOptions(t),state:n,defaultOptions:e.getQueryDefaults(s),meta:t.meta}),this.add(u)),u},n.add=function(e){this.queriesMap[e.queryHash]||(this.queriesMap[e.queryHash]=e,this.queries.push(e),this.notify({type:"queryAdded",query:e}))},n.remove=function(e){var t=this.queriesMap[e.queryHash];t&&(e.destroy(),this.queries=this.queries.filter((function(t){return t!==e})),t===e&&delete this.queriesMap[e.queryHash],this.notify({type:"queryRemoved",query:e}))},n.clear=function(){var e=this;s.V.batch((function(){e.queries.forEach((function(t){e.remove(t)}))}))},n.get=function(e){return this.queriesMap[e]},n.getAll=function(){return this.queries},n.find=function(e,t){var n=(0,o.I6)(e,t)[0];return void 0===n.exact&&(n.exact=!0),this.queries.find((function(e){return(0,o._x)(n,e)}))},n.findAll=function(e,t){var n=(0,o.I6)(e,t)[0];return n?this.queries.filter((function(e){return(0,o._x)(n,e)})):this.queries},n.notify=function(e){var t=this;s.V.batch((function(){t.listeners.forEach((function(t){t(e)}))}))},n.onFocus=function(){var e=this;s.V.batch((function(){e.queries.forEach((function(e){e.onFocus()}))}))},n.onOnline=function(){var e=this;s.V.batch((function(){e.queries.forEach((function(e){e.onOnline()}))}))},t}(n(92693).l)},29446:(e,t,n)=>{"use strict";n.d(t,{S:()=>d});var r=n(7896),o=n(10774),i=n(10384),s=n(9601),a=n(27483),u=n(58927),c=n(50667),l=n(20560),d=function(){function e(e){void 0===e&&(e={}),this.queryCache=e.queryCache||new i.t,this.mutationCache=e.mutationCache||new s.L,this.defaultOptions=e.defaultOptions||{},this.queryDefaults=[],this.mutationDefaults=[]}var t=e.prototype;return t.mount=function(){var e=this;this.unsubscribeFocus=a.j.subscribe((function(){a.j.isFocused()&&u.N.isOnline()&&(e.mutationCache.onFocus(),e.queryCache.onFocus())})),this.unsubscribeOnline=u.N.subscribe((function(){a.j.isFocused()&&u.N.isOnline()&&(e.mutationCache.onOnline(),e.queryCache.onOnline())}))},t.unmount=function(){var e,t;null==(e=this.unsubscribeFocus)||e.call(this),null==(t=this.unsubscribeOnline)||t.call(this)},t.isFetching=function(e,t){var n=(0,o.I6)(e,t)[0];return n.fetching=!0,this.queryCache.findAll(n).length},t.isMutating=function(e){return this.mutationCache.findAll((0,r.Z)({},e,{fetching:!0})).length},t.getQueryData=function(e,t){var n;return null==(n=this.queryCache.find(e,t))?void 0:n.state.data},t.getQueriesData=function(e){return this.getQueryCache().findAll(e).map((function(e){return[e.queryKey,e.state.data]}))},t.setQueryData=function(e,t,n){var r=(0,o._v)(e),i=this.defaultQueryOptions(r);return this.queryCache.build(this,i).setData(t,n)},t.setQueriesData=function(e,t,n){var r=this;return c.V.batch((function(){return r.getQueryCache().findAll(e).map((function(e){var o=e.queryKey;return[o,r.setQueryData(o,t,n)]}))}))},t.getQueryState=function(e,t){var n;return null==(n=this.queryCache.find(e,t))?void 0:n.state},t.removeQueries=function(e,t){var n=(0,o.I6)(e,t)[0],r=this.queryCache;c.V.batch((function(){r.findAll(n).forEach((function(e){r.remove(e)}))}))},t.resetQueries=function(e,t,n){var i=this,s=(0,o.I6)(e,t,n),a=s[0],u=s[1],l=this.queryCache,d=(0,r.Z)({},a,{active:!0});return c.V.batch((function(){return l.findAll(a).forEach((function(e){e.reset()})),i.refetchQueries(d,u)}))},t.cancelQueries=function(e,t,n){var r=this,i=(0,o.I6)(e,t,n),s=i[0],a=i[1],u=void 0===a?{}:a;void 0===u.revert&&(u.revert=!0);var l=c.V.batch((function(){return r.queryCache.findAll(s).map((function(e){return e.cancel(u)}))}));return Promise.all(l).then(o.ZT).catch(o.ZT)},t.invalidateQueries=function(e,t,n){var i,s,a,u=this,l=(0,o.I6)(e,t,n),d=l[0],p=l[1],f=(0,r.Z)({},d,{active:null==(i=null!=(s=d.refetchActive)?s:d.active)||i,inactive:null!=(a=d.refetchInactive)&&a});return c.V.batch((function(){return u.queryCache.findAll(d).forEach((function(e){e.invalidate()})),u.refetchQueries(f,p)}))},t.refetchQueries=function(e,t,n){var i=this,s=(0,o.I6)(e,t,n),a=s[0],u=s[1],l=c.V.batch((function(){return i.queryCache.findAll(a).map((function(e){return e.fetch(void 0,(0,r.Z)({},u,{meta:{refetchPage:null==a?void 0:a.refetchPage}}))}))})),d=Promise.all(l).then(o.ZT);return(null==u?void 0:u.throwOnError)||(d=d.catch(o.ZT)),d},t.fetchQuery=function(e,t,n){var r=(0,o._v)(e,t,n),i=this.defaultQueryOptions(r);void 0===i.retry&&(i.retry=!1);var s=this.queryCache.build(this,i);return s.isStaleByTime(i.staleTime)?s.fetch(i):Promise.resolve(s.state.data)},t.prefetchQuery=function(e,t,n){return this.fetchQuery(e,t,n).then(o.ZT).catch(o.ZT)},t.fetchInfiniteQuery=function(e,t,n){var r=(0,o._v)(e,t,n);return r.behavior=(0,l.Gm)(),this.fetchQuery(r)},t.prefetchInfiniteQuery=function(e,t,n){return this.fetchInfiniteQuery(e,t,n).then(o.ZT).catch(o.ZT)},t.cancelMutations=function(){var e=this,t=c.V.batch((function(){return e.mutationCache.getAll().map((function(e){return e.cancel()}))}));return Promise.all(t).then(o.ZT).catch(o.ZT)},t.resumePausedMutations=function(){return this.getMutationCache().resumePausedMutations()},t.executeMutation=function(e){return this.mutationCache.build(this,e).execute()},t.getQueryCache=function(){return this.queryCache},t.getMutationCache=function(){return this.mutationCache},t.getDefaultOptions=function(){return this.defaultOptions},t.setDefaultOptions=function(e){this.defaultOptions=e},t.setQueryDefaults=function(e,t){var n=this.queryDefaults.find((function(t){return(0,o.yF)(e)===(0,o.yF)(t.queryKey)}));n?n.defaultOptions=t:this.queryDefaults.push({queryKey:e,defaultOptions:t})},t.getQueryDefaults=function(e){var t;return e?null==(t=this.queryDefaults.find((function(t){return(0,o.to)(e,t.queryKey)})))?void 0:t.defaultOptions:void 0},t.setMutationDefaults=function(e,t){var n=this.mutationDefaults.find((function(t){return(0,o.yF)(e)===(0,o.yF)(t.mutationKey)}));n?n.defaultOptions=t:this.mutationDefaults.push({mutationKey:e,defaultOptions:t})},t.getMutationDefaults=function(e){var t;return e?null==(t=this.mutationDefaults.find((function(t){return(0,o.to)(e,t.mutationKey)})))?void 0:t.defaultOptions:void 0},t.defaultQueryOptions=function(e){if(null==e?void 0:e._defaulted)return e;var t=(0,r.Z)({},this.defaultOptions.queries,this.getQueryDefaults(null==e?void 0:e.queryKey),e,{_defaulted:!0});return!t.queryHash&&t.queryKey&&(t.queryHash=(0,o.Rm)(t.queryKey,t)),t},t.defaultQueryObserverOptions=function(e){return this.defaultQueryOptions(e)},t.defaultMutationOptions=function(e){return(null==e?void 0:e._defaulted)?e:(0,r.Z)({},this.defaultOptions.mutations,this.getMutationDefaults(null==e?void 0:e.mutationKey),e,{_defaulted:!0})},t.clear=function(){this.queryCache.clear(),this.mutationCache.clear()},e}()},24198:(e,t,n)=>{"use strict";n.d(t,{z:()=>d});var r=n(7896),o=n(81665),i=n(10774),s=n(50667),a=n(27483),u=n(92693),c=n(53579),l=n(22348),d=function(e){function t(t,n){var r;return(r=e.call(this)||this).client=t,r.options=n,r.trackedProps=[],r.previousSelectError=null,r.bindMethods(),r.setOptions(n),r}(0,o.Z)(t,e);var n=t.prototype;return n.bindMethods=function(){this.remove=this.remove.bind(this),this.refetch=this.refetch.bind(this)},n.onSubscribe=function(){1===this.listeners.length&&(this.currentQuery.addObserver(this),p(this.currentQuery,this.options)&&this.executeFetch(),this.updateTimers())},n.onUnsubscribe=function(){this.listeners.length||this.destroy()},n.shouldFetchOnReconnect=function(){return e=this.currentQuery,!1!==(t=this.options).enabled&&("always"===t.refetchOnReconnect||!1!==t.refetchOnReconnect&&h(e,t));var e,t},n.shouldFetchOnWindowFocus=function(){return e=this.currentQuery,!1!==(t=this.options).enabled&&("always"===t.refetchOnWindowFocus||!1!==t.refetchOnWindowFocus&&h(e,t));var e,t},n.destroy=function(){this.listeners=[],this.clearTimers(),this.currentQuery.removeObserver(this)},n.setOptions=function(e,t){var n=this.options,r=this.currentQuery;if(this.options=this.client.defaultQueryObserverOptions(e),void 0!==this.options.enabled&&"boolean"!=typeof this.options.enabled)throw new Error("Expected enabled to be a boolean");this.options.queryKey||(this.options.queryKey=n.queryKey),this.updateQuery();var o=this.hasListeners();o&&f(this.currentQuery,r,this.options,n)&&this.executeFetch(),this.updateResult(t),!o||this.currentQuery===r&&this.options.enabled===n.enabled&&this.options.staleTime===n.staleTime||this.updateStaleTimeout();var i=this.computeRefetchInterval();!o||this.currentQuery===r&&this.options.enabled===n.enabled&&i===this.currentRefetchInterval||this.updateRefetchInterval(i)},n.getOptimisticResult=function(e){var t=this.client.defaultQueryObserverOptions(e),n=this.client.getQueryCache().build(this.client,t);return this.createResult(n,t)},n.getCurrentResult=function(){return this.currentResult},n.trackResult=function(e){var t=this,n={};return Object.keys(e).forEach((function(r){Object.defineProperty(n,r,{configurable:!1,enumerable:!0,get:function(){var n=r;return t.trackedProps.includes(n)||t.trackedProps.push(n),e[n]}})})),n},n.getNextResult=function(e){var t=this;return new Promise((function(n,r){var o=t.subscribe((function(t){t.isFetching||(o(),t.isError&&(null==e?void 0:e.throwOnError)?r(t.error):n(t))}))}))},n.getCurrentQuery=function(){return this.currentQuery},n.remove=function(){this.client.getQueryCache().remove(this.currentQuery)},n.refetch=function(e){return this.fetch((0,r.Z)({},e,{meta:{refetchPage:null==e?void 0:e.refetchPage}}))},n.fetchOptimistic=function(e){var t=this,n=this.client.defaultQueryObserverOptions(e),r=this.client.getQueryCache().build(this.client,n);return r.fetch().then((function(){return t.createResult(r,n)}))},n.fetch=function(e){var t=this;return this.executeFetch(e).then((function(){return t.updateResult(),t.currentResult}))},n.executeFetch=function(e){this.updateQuery();var t=this.currentQuery.fetch(this.options,e);return(null==e?void 0:e.throwOnError)||(t=t.catch(i.ZT)),t},n.updateStaleTimeout=function(){var e=this;if(this.clearStaleTimeout(),!i.sk&&!this.currentResult.isStale&&(0,i.PN)(this.options.staleTime)){var t=(0,i.Kp)(this.currentResult.dataUpdatedAt,this.options.staleTime)+1;this.staleTimeoutId=setTimeout((function(){e.currentResult.isStale||e.updateResult()}),t)}},n.computeRefetchInterval=function(){var e;return"function"==typeof this.options.refetchInterval?this.options.refetchInterval(this.currentResult.data,this.currentQuery):null!=(e=this.options.refetchInterval)&&e},n.updateRefetchInterval=function(e){var t=this;this.clearRefetchInterval(),this.currentRefetchInterval=e,!i.sk&&!1!==this.options.enabled&&(0,i.PN)(this.currentRefetchInterval)&&0!==this.currentRefetchInterval&&(this.refetchIntervalId=setInterval((function(){(t.options.refetchIntervalInBackground||a.j.isFocused())&&t.executeFetch()}),this.currentRefetchInterval))},n.updateTimers=function(){this.updateStaleTimeout(),this.updateRefetchInterval(this.computeRefetchInterval())},n.clearTimers=function(){this.clearStaleTimeout(),this.clearRefetchInterval()},n.clearStaleTimeout=function(){clearTimeout(this.staleTimeoutId),this.staleTimeoutId=void 0},n.clearRefetchInterval=function(){clearInterval(this.refetchIntervalId),this.refetchIntervalId=void 0},n.createResult=function(e,t){var n,r=this.currentQuery,o=this.options,s=this.currentResult,a=this.currentResultState,u=this.currentResultOptions,l=e!==r,d=l?e.state:this.currentQueryInitialState,m=l?this.currentResult:this.previousQueryResult,g=e.state,y=g.dataUpdatedAt,v=g.error,b=g.errorUpdatedAt,w=g.isFetching,_=g.status,E=!1,S=!1;if(t.optimisticResults){var C=this.hasListeners(),P=!C&&p(e,t),k=C&&f(e,r,t,o);(P||k)&&(w=!0,y||(_="loading"))}if(t.keepPreviousData&&!g.dataUpdateCount&&(null==m?void 0:m.isSuccess)&&"error"!==_)n=m.data,y=m.dataUpdatedAt,_=m.status,E=!0;else if(t.select&&void 0!==g.data)if(s&&g.data===(null==a?void 0:a.data)&&t.select===(null==u?void 0:u.select)&&!this.previousSelectError)n=s.data;else try{n=t.select(g.data),!1!==t.structuralSharing&&(n=(0,i.Q$)(null==s?void 0:s.data,n)),this.previousSelectError=null}catch(A){(0,c.j)().error(A),v=A,this.previousSelectError=A,b=Date.now(),_="error"}else n=g.data;if(void 0!==t.placeholderData&&void 0===n&&("loading"===_||"idle"===_)){var I;if((null==s?void 0:s.isPlaceholderData)&&t.placeholderData===(null==u?void 0:u.placeholderData))I=s.data;else if(I="function"==typeof t.placeholderData?t.placeholderData():t.placeholderData,t.select&&void 0!==I)try{I=t.select(I),!1!==t.structuralSharing&&(I=(0,i.Q$)(null==s?void 0:s.data,I)),this.previousSelectError=null}catch(A){(0,c.j)().error(A),v=A,this.previousSelectError=A,b=Date.now(),_="error"}void 0!==I&&(_="success",n=I,S=!0)}return{status:_,isLoading:"loading"===_,isSuccess:"success"===_,isError:"error"===_,isIdle:"idle"===_,data:n,dataUpdatedAt:y,error:v,errorUpdatedAt:b,failureCount:g.fetchFailureCount,isFetched:g.dataUpdateCount>0||g.errorUpdateCount>0,isFetchedAfterMount:g.dataUpdateCount>d.dataUpdateCount||g.errorUpdateCount>d.errorUpdateCount,isFetching:w,isRefetching:w&&"loading"!==_,isLoadingError:"error"===_&&0===g.dataUpdatedAt,isPlaceholderData:S,isPreviousData:E,isRefetchError:"error"===_&&0!==g.dataUpdatedAt,isStale:h(e,t),refetch:this.refetch,remove:this.remove}},n.shouldNotifyListeners=function(e,t){if(!t)return!0;if(e===t)return!1;var n=this.options,r=n.notifyOnChangeProps,o=n.notifyOnChangePropsExclusions;if(!r&&!o)return!0;if("tracked"===r&&!this.trackedProps.length)return!0;var i="tracked"===r?this.trackedProps:r;return Object.keys(e).some((function(n){var r=n,s=e[r]!==t[r],a=null==i?void 0:i.some((function(e){return e===n})),u=null==o?void 0:o.some((function(e){return e===n}));return s&&!u&&(!i||a)}))},n.updateResult=function(e){var t=this.currentResult;if(this.currentResult=this.createResult(this.currentQuery,this.options),this.currentResultState=this.currentQuery.state,this.currentResultOptions=this.options,!(0,i.VS)(this.currentResult,t)){var n={cache:!0};!1!==(null==e?void 0:e.listeners)&&this.shouldNotifyListeners(this.currentResult,t)&&(n.listeners=!0),this.notify((0,r.Z)({},n,e))}},n.updateQuery=function(){var e=this.client.getQueryCache().build(this.client,this.options);if(e!==this.currentQuery){var t=this.currentQuery;this.currentQuery=e,this.currentQueryInitialState=e.state,this.previousQueryResult=this.currentResult,this.hasListeners()&&(null==t||t.removeObserver(this),e.addObserver(this))}},n.onQueryUpdate=function(e){var t={};"success"===e.type?t.onSuccess=!0:"error"!==e.type||(0,l.DV)(e.error)||(t.onError=!0),this.updateResult(t),this.hasListeners()&&this.updateTimers()},n.notify=function(e){var t=this;s.V.batch((function(){e.onSuccess?(null==t.options.onSuccess||t.options.onSuccess(t.currentResult.data),null==t.options.onSettled||t.options.onSettled(t.currentResult.data,null)):e.onError&&(null==t.options.onError||t.options.onError(t.currentResult.error),null==t.options.onSettled||t.options.onSettled(void 0,t.currentResult.error)),e.listeners&&t.listeners.forEach((function(e){e(t.currentResult)})),e.cache&&t.client.getQueryCache().notify({query:t.currentQuery,type:"observerResultsUpdated"})}))},t}(u.l);function p(e,t){return function(e,t){return!(!1===t.enabled||e.state.dataUpdatedAt||"error"===e.state.status&&!1===t.retryOnMount)}(e,t)||function(e,t){return!1!==t.enabled&&e.state.dataUpdatedAt>0&&("always"===t.refetchOnMount||!1!==t.refetchOnMount&&h(e,t))}(e,t)}function f(e,t,n,r){return!1!==n.enabled&&(e!==t||!1===r.enabled)&&(!n.suspense||"error"!==e.state.status||!1===r.enabled)&&h(e,n)}function h(e,t){return e.isStaleByTime(t.staleTime)}},22348:(e,t,n)=>{"use strict";n.d(t,{LE:()=>a,DV:()=>c,m4:()=>l});var r=n(27483),o=n(58927),i=n(10774);function s(e){return Math.min(1e3*Math.pow(2,e),3e4)}function a(e){return"function"==typeof(null==e?void 0:e.cancel)}var u=function(e){this.revert=null==e?void 0:e.revert,this.silent=null==e?void 0:e.silent};function c(e){return e instanceof u}var l=function(e){var t,n,c,l,d=this,p=!1;this.abort=e.abort,this.cancel=function(e){return null==t?void 0:t(e)},this.cancelRetry=function(){p=!0},this.continue=function(){return null==n?void 0:n()},this.failureCount=0,this.isPaused=!1,this.isResolved=!1,this.isTransportCancelable=!1,this.promise=new Promise((function(e,t){c=e,l=t}));var f=function(t){d.isResolved||(d.isResolved=!0,null==e.onSuccess||e.onSuccess(t),null==n||n(),c(t))},h=function(t){d.isResolved||(d.isResolved=!0,null==e.onError||e.onError(t),null==n||n(),l(t))};!function c(){if(!d.isResolved){var l;try{l=e.fn()}catch(m){l=Promise.reject(m)}t=function(e){if(!d.isResolved&&(h(new u(e)),null==d.abort||d.abort(),a(l)))try{l.cancel()}catch(t){}},d.isTransportCancelable=a(l),Promise.resolve(l).then(f).catch((function(t){var a,u;if(!d.isResolved){var l=null!=(a=e.retry)?a:3,f=null!=(u=e.retryDelay)?u:s,m="function"==typeof f?f(d.failureCount,t):f,g=!0===l||"number"==typeof l&&d.failureCount<l||"function"==typeof l&&l(d.failureCount,t);!p&&g?(d.failureCount++,null==e.onFail||e.onFail(d.failureCount,t),(0,i.Gh)(m).then((function(){if(!r.j.isFocused()||!o.N.isOnline())return new Promise((function(t){n=t,d.isPaused=!0,null==e.onPause||e.onPause()})).then((function(){n=void 0,d.isPaused=!1,null==e.onContinue||e.onContinue()}))})).then((function(){p?h(t):c()}))):h(t)}}))}}()}},92693:(e,t,n)=>{"use strict";n.d(t,{l:()=>r});var r=function(){function e(){this.listeners=[]}var t=e.prototype;return t.subscribe=function(e){var t=this,n=e||function(){};return this.listeners.push(n),this.onSubscribe(),function(){t.listeners=t.listeners.filter((function(e){return e!==n})),t.onUnsubscribe()}},t.hasListeners=function(){return this.listeners.length>0},t.onSubscribe=function(){},t.onUnsubscribe=function(){},e}()},77820:()=>{},10774:(e,t,n)=>{"use strict";n.d(t,{sk:()=>o,ZT:()=>i,SE:()=>s,PN:()=>a,mc:()=>u,Kp:()=>c,_v:()=>l,lV:()=>d,I6:()=>p,_x:()=>f,X7:()=>h,Rm:()=>m,yF:()=>g,to:()=>y,Q$:()=>b,VS:()=>w,Gh:()=>C,A4:()=>P,G9:()=>k});var r=n(7896),o="undefined"==typeof window;function i(){}function s(e,t){return"function"==typeof e?e(t):e}function a(e){return"number"==typeof e&&e>=0&&e!==1/0}function u(e){return Array.isArray(e)?e:[e]}function c(e,t){return Math.max(e+(t||0)-Date.now(),0)}function l(e,t,n){return S(e)?"function"==typeof t?(0,r.Z)({},n,{queryKey:e,queryFn:t}):(0,r.Z)({},t,{queryKey:e}):e}function d(e,t,n){return S(e)?"function"==typeof t?(0,r.Z)({},n,{mutationKey:e,mutationFn:t}):(0,r.Z)({},t,{mutationKey:e}):"function"==typeof e?(0,r.Z)({},t,{mutationFn:e}):(0,r.Z)({},e)}function p(e,t,n){return S(e)?[(0,r.Z)({},t,{queryKey:e}),n]:[e||{},t]}function f(e,t){var n=e.active,r=e.exact,o=e.fetching,i=e.inactive,s=e.predicate,a=e.queryKey,u=e.stale;if(S(a))if(r){if(t.queryHash!==m(a,t.options))return!1}else if(!y(t.queryKey,a))return!1;var c=function(e,t){return!0===e&&!0===t||null==e&&null==t?"all":!1===e&&!1===t?"none":(null!=e?e:!t)?"active":"inactive"}(n,i);if("none"===c)return!1;if("all"!==c){var l=t.isActive();if("active"===c&&!l)return!1;if("inactive"===c&&l)return!1}return("boolean"!=typeof u||t.isStale()===u)&&(("boolean"!=typeof o||t.isFetching()===o)&&!(s&&!s(t)))}function h(e,t){var n=e.exact,r=e.fetching,o=e.predicate,i=e.mutationKey;if(S(i)){if(!t.options.mutationKey)return!1;if(n){if(g(t.options.mutationKey)!==g(i))return!1}else if(!y(t.options.mutationKey,i))return!1}return("boolean"!=typeof r||"loading"===t.state.status===r)&&!(o&&!o(t))}function m(e,t){return((null==t?void 0:t.queryKeyHashFn)||g)(e)}function g(e){var t,n=u(e);return t=n,JSON.stringify(t,(function(e,t){return _(t)?Object.keys(t).sort().reduce((function(e,n){return e[n]=t[n],e}),{}):t}))}function y(e,t){return v(u(e),u(t))}function v(e,t){return e===t||typeof e==typeof t&&(!(!e||!t||"object"!=typeof e||"object"!=typeof t)&&!Object.keys(t).some((function(n){return!v(e[n],t[n])})))}function b(e,t){if(e===t)return e;var n=Array.isArray(e)&&Array.isArray(t);if(n||_(e)&&_(t)){for(var r=n?e.length:Object.keys(e).length,o=n?t:Object.keys(t),i=o.length,s=n?[]:{},a=0,u=0;u<i;u++){var c=n?u:o[u];s[c]=b(e[c],t[c]),s[c]===e[c]&&a++}return r===i&&a===r?e:s}return t}function w(e,t){if(e&&!t||t&&!e)return!1;for(var n in e)if(e[n]!==t[n])return!1;return!0}function _(e){if(!E(e))return!1;var t=e.constructor;if(void 0===t)return!0;var n=t.prototype;return!!E(n)&&!!n.hasOwnProperty("isPrototypeOf")}function E(e){return"[object Object]"===Object.prototype.toString.call(e)}function S(e){return"string"==typeof e||Array.isArray(e)}function C(e){return new Promise((function(t){setTimeout(t,e)}))}function P(e){Promise.resolve().then(e).catch((function(e){return setTimeout((function(){throw e}))}))}function k(){if("function"==typeof AbortController)return new AbortController}},82066:(e,t,n)=>{"use strict";n.d(t,{QueryClient:()=>r.Su,QueryClientProvider:()=>o.aH,useMutation:()=>o.Db,useQuery:()=>o.aM,useQueryClient:()=>o.NL});var r=n(60002);n.o(r,"QueryClientProvider")&&n.d(t,{QueryClientProvider:function(){return r.QueryClientProvider}}),n.o(r,"useMutation")&&n.d(t,{useMutation:function(){return r.useMutation}}),n.o(r,"useQuery")&&n.d(t,{useQuery:function(){return r.useQuery}}),n.o(r,"useQueryClient")&&n.d(t,{useQueryClient:function(){return r.useQueryClient}});var o=n(33577)},77639:(e,t,n)=>{"use strict";n.d(t,{N:()=>u,a:()=>c});var r=n(99196),o=n.n(r),i=o().createContext(void 0),s=o().createContext(!1);function a(e){return e&&"undefined"!=typeof window?(window.ReactQueryClientContext||(window.ReactQueryClientContext=i),window.ReactQueryClientContext):i}var u=function(){var e=o().useContext(a(o().useContext(s)));if(!e)throw new Error("No QueryClient set, use QueryClientProvider to set one");return e},c=function(e){var t=e.client,n=e.contextSharing,r=void 0!==n&&n,i=e.children;o().useEffect((function(){return t.mount(),function(){t.unmount()}}),[t]);var u=a(r);return o().createElement(s.Provider,{value:r},o().createElement(u.Provider,{value:t},i))}},4578:(e,t,n)=>{"use strict";n.d(t,{_:()=>a});var r=n(99196),o=n.n(r);function i(){var e=!1;return{clearReset:function(){e=!1},reset:function(){e=!0},isReset:function(){return e}}}var s=o().createContext(i()),a=function(){return o().useContext(s)}},33577:(e,t,n)=>{"use strict";n.d(t,{aH:()=>r.a,NL:()=>r.N,Db:()=>o.D,aM:()=>i.a});n(96328),n(94091);var r=n(77639),o=n(82127),i=n(18067)},51733:(e,t,n)=>{"use strict";n.d(t,{k:()=>r});var r=console},63520:(e,t,n)=>{"use strict";n.d(t,{m:()=>o});var r=n(91850),o=n.n(r)().unstable_batchedUpdates},96328:(e,t,n)=>{"use strict";var r=n(50667),o=n(63520);r.V.setBatchNotifyFunction(o.m)},94091:(e,t,n)=>{"use strict";var r=n(53579),o=n(51733);(0,r.E)(o.k)},96744:(e,t,n)=>{"use strict";n.d(t,{r:()=>c});var r=n(99196),o=n.n(r),i=n(50667),s=n(4578),a=n(77639),u=n(13774);function c(e,t){var n=o().useRef(!1),r=o().useState(0)[1],c=(0,a.N)(),l=(0,s._)(),d=c.defaultQueryObserverOptions(e);d.optimisticResults=!0,d.onError&&(d.onError=i.V.batchCalls(d.onError)),d.onSuccess&&(d.onSuccess=i.V.batchCalls(d.onSuccess)),d.onSettled&&(d.onSettled=i.V.batchCalls(d.onSettled)),d.suspense&&("number"!=typeof d.staleTime&&(d.staleTime=1e3),0===d.cacheTime&&(d.cacheTime=1)),(d.suspense||d.useErrorBoundary)&&(l.isReset()||(d.retryOnMount=!1));var p=o().useState((function(){return new t(c,d)}))[0],f=p.getOptimisticResult(d);if(o().useEffect((function(){n.current=!0,l.clearReset();var e=p.subscribe(i.V.batchCalls((function(){n.current&&r((function(e){return e+1}))})));return p.updateResult(),function(){n.current=!1,e()}}),[l,p]),o().useEffect((function(){p.setOptions(d,{listeners:!1})}),[d,p]),d.suspense&&f.isLoading)throw p.fetchOptimistic(d).then((function(e){var t=e.data;null==d.onSuccess||d.onSuccess(t),null==d.onSettled||d.onSettled(t,null)})).catch((function(e){l.clearReset(),null==d.onError||d.onError(e),null==d.onSettled||d.onSettled(void 0,e)}));if(f.isError&&!f.isFetching&&(0,u.L)(d.suspense,d.useErrorBoundary,f.error))throw f.error;return"tracked"===d.notifyOnChangeProps&&(f=p.trackResult(f)),f}},82127:(e,t,n)=>{"use strict";n.d(t,{D:()=>d});var r=n(7896),o=n(99196),i=n.n(o),s=n(50667),a=n(10774),u=n(74856),c=n(77639),l=n(13774);function d(e,t,n){var o=i().useRef(!1),d=i().useState(0)[1],p=(0,a.lV)(e,t,n),f=(0,c.N)(),h=i().useRef();h.current?h.current.setOptions(p):h.current=new u.X(f,p);var m=h.current.getCurrentResult();i().useEffect((function(){o.current=!0;var e=h.current.subscribe(s.V.batchCalls((function(){o.current&&d((function(e){return e+1}))})));return function(){o.current=!1,e()}}),[]);var g=i().useCallback((function(e,t){h.current.mutate(e,t).catch(a.ZT)}),[]);if(m.error&&(0,l.L)(void 0,h.current.options.useErrorBoundary,m.error))throw m.error;return(0,r.Z)({},m,{mutate:g,mutateAsync:m.mutate})}},18067:(e,t,n)=>{"use strict";n.d(t,{a:()=>s});var r=n(24198),o=n(10774),i=n(96744);function s(e,t,n){var s=(0,o._v)(e,t,n);return(0,i.r)(s,r.z)}},13774:(e,t,n)=>{"use strict";function r(e,t,n){return"function"==typeof t?t(n):"boolean"==typeof t?t:!!e}n.d(t,{L:()=>r})},81346:(e,t,n)=>{"use strict";n.d(t,{E:()=>o});var r=n(99196),o=n.n(r)().createContext(null)},42533:(e,t,n)=>{"use strict";n.d(t,{Z:()=>u});var r=n(99196),o=n.n(r),i=n(81346),s=n(82062),a=n(44282);const u=function(e){var t=e.store,n=e.context,u=e.children,c=(0,r.useMemo)((function(){var e=(0,s.X)(t);return e.onStateChange=e.notifyNestedSubs,{store:t,subscription:e}}),[t]),l=(0,r.useMemo)((function(){return t.getState()}),[t]);(0,a.L)((function(){var e=c.subscription;return e.trySubscribe(),l!==t.getState()&&e.notifyNestedSubs(),function(){e.tryUnsubscribe(),e.onStateChange=null}}),[c,l]);var d=n||i.E;return o().createElement(d.Provider,{value:c},u)}},49484:(e,t,n)=>{"use strict";n.d(t,{Z:()=>E});var r=n(7896),o=n(31461),i=n(73463),s=n.n(i),a=n(99196),u=n.n(a),c=n(48570),l=n(82062),d=n(44282),p=n(81346),f=["getDisplayName","methodName","renderCountProp","shouldHandleStateChanges","storeKey","withRef","forwardRef","context"],h=["reactReduxForwardedRef"],m=[],g=[null,null];function y(e,t){var n=e[1];return[t.payload,n+1]}function v(e,t,n){(0,d.L)((function(){return e.apply(void 0,t)}),n)}function b(e,t,n,r,o,i,s){e.current=r,t.current=o,n.current=!1,i.current&&(i.current=null,s())}function w(e,t,n,r,o,i,s,a,u,c){if(e){var l=!1,d=null,p=function(){if(!l){var e,n,p=t.getState();try{e=r(p,o.current)}catch(f){n=f,d=f}n||(d=null),e===i.current?s.current||u():(i.current=e,a.current=e,s.current=!0,c({type:"STORE_UPDATED",payload:{error:n}}))}};n.onStateChange=p,n.trySubscribe(),p();return function(){if(l=!0,n.tryUnsubscribe(),n.onStateChange=null,d)throw d}}}var _=function(){return[null,0]};function E(e,t){void 0===t&&(t={});var n=t,i=n.getDisplayName,d=void 0===i?function(e){return"ConnectAdvanced("+e+")"}:i,E=n.methodName,S=void 0===E?"connectAdvanced":E,C=n.renderCountProp,P=void 0===C?void 0:C,k=n.shouldHandleStateChanges,I=void 0===k||k,A=n.storeKey,T=void 0===A?"store":A,R=(n.withRef,n.forwardRef),O=void 0!==R&&R,x=n.context,F=void 0===x?p.E:x,L=(0,o.Z)(n,f),U=F;return function(t){var n=t.displayName||t.name||"Component",i=d(n),p=(0,r.Z)({},L,{getDisplayName:d,methodName:S,renderCountProp:P,shouldHandleStateChanges:I,storeKey:T,displayName:i,wrappedComponentName:n,WrappedComponent:t}),f=L.pure;var E=f?a.useMemo:function(e){return e()};function C(n){var i=(0,a.useMemo)((function(){var e=n.reactReduxForwardedRef,t=(0,o.Z)(n,h);return[n.context,e,t]}),[n]),s=i[0],d=i[1],f=i[2],S=(0,a.useMemo)((function(){return s&&s.Consumer&&(0,c.isContextConsumer)(u().createElement(s.Consumer,null))?s:U}),[s,U]),C=(0,a.useContext)(S),P=Boolean(n.store)&&Boolean(n.store.getState)&&Boolean(n.store.dispatch);Boolean(C)&&Boolean(C.store);var k=P?n.store:C.store,A=(0,a.useMemo)((function(){return function(t){return e(t.dispatch,p)}(k)}),[k]),T=(0,a.useMemo)((function(){if(!I)return g;var e=(0,l.X)(k,P?null:C.subscription),t=e.notifyNestedSubs.bind(e);return[e,t]}),[k,P,C]),R=T[0],O=T[1],x=(0,a.useMemo)((function(){return P?C:(0,r.Z)({},C,{subscription:R})}),[P,C,R]),F=(0,a.useReducer)(y,m,_),L=F[0][0],Z=F[1];if(L&&L.error)throw L.error;var D=(0,a.useRef)(),j=(0,a.useRef)(f),N=(0,a.useRef)(),M=(0,a.useRef)(!1),q=E((function(){return N.current&&f===j.current?N.current:A(k.getState(),f)}),[k,L,f]);v(b,[j,D,M,f,q,N,O]),v(w,[I,k,R,A,j,D,M,N,O,Z],[k,R,A]);var B=(0,a.useMemo)((function(){return u().createElement(t,(0,r.Z)({},q,{ref:d}))}),[d,t,q]);return(0,a.useMemo)((function(){return I?u().createElement(S.Provider,{value:x},B):B}),[S,B,x])}var k=f?u().memo(C):C;if(k.WrappedComponent=t,k.displayName=C.displayName=i,O){var A=u().forwardRef((function(e,t){return u().createElement(k,(0,r.Z)({},e,{reactReduxForwardedRef:t}))}));return A.displayName=i,A.WrappedComponent=t,s()(A,t)}return s()(k,t)}}},55443:(e,t,n)=>{"use strict";n.d(t,{Z:()=>m});var r=n(7896),o=n(31461),i=n(49484),s=n(74570),a=n(99174),u=n(79600),c=n(79553),l=n(77405),d=["pure","areStatesEqual","areOwnPropsEqual","areStatePropsEqual","areMergedPropsEqual"];function p(e,t,n){for(var r=t.length-1;r>=0;r--){var o=t[r](e);if(o)return o}return function(t,r){throw new Error("Invalid value of type "+typeof e+" for "+n+" argument when connecting component "+r.wrappedComponentName+".")}}function f(e,t){return e===t}function h(e){var t=void 0===e?{}:e,n=t.connectHOC,h=void 0===n?i.Z:n,m=t.mapStateToPropsFactories,g=void 0===m?u.ZP:m,y=t.mapDispatchToPropsFactories,v=void 0===y?a.ZP:y,b=t.mergePropsFactories,w=void 0===b?c.ZP:b,_=t.selectorFactory,E=void 0===_?l.ZP:_;return function(e,t,n,i){void 0===i&&(i={});var a=i,u=a.pure,c=void 0===u||u,l=a.areStatesEqual,m=void 0===l?f:l,y=a.areOwnPropsEqual,b=void 0===y?s.Z:y,_=a.areStatePropsEqual,S=void 0===_?s.Z:_,C=a.areMergedPropsEqual,P=void 0===C?s.Z:C,k=(0,o.Z)(a,d),I=p(e,g,"mapStateToProps"),A=p(t,v,"mapDispatchToProps"),T=p(n,w,"mergeProps");return h(E,(0,r.Z)({methodName:"connect",getDisplayName:function(e){return"Connect("+e+")"},shouldHandleStateChanges:Boolean(e),initMapStateToProps:I,initMapDispatchToProps:A,initMergeProps:T,pure:c,areStatesEqual:m,areOwnPropsEqual:b,areStatePropsEqual:S,areMergedPropsEqual:P},k))}}const m=h()},99174:(e,t,n)=>{"use strict";n.d(t,{ZP:()=>i});var r=n(56750),o=n(8528);const i=[function(e){return"function"==typeof e?(0,o.xv)(e,"mapDispatchToProps"):void 0},function(e){return e?void 0:(0,o.dX)((function(e){return{dispatch:e}}))},function(e){return e&&"object"==typeof e?(0,o.dX)((function(t){return(0,r.Z)(e,t)})):void 0}]},79600:(e,t,n)=>{"use strict";n.d(t,{ZP:()=>o});var r=n(8528);const o=[function(e){return"function"==typeof e?(0,r.xv)(e,"mapStateToProps"):void 0},function(e){return e?void 0:(0,r.dX)((function(){return{}}))}]},79553:(e,t,n)=>{"use strict";n.d(t,{ZP:()=>i});var r=n(7896);function o(e,t,n){return(0,r.Z)({},n,e,t)}const i=[function(e){return"function"==typeof e?function(e){return function(t,n){n.displayName;var r,o=n.pure,i=n.areMergedPropsEqual,s=!1;return function(t,n,a){var u=e(t,n,a);return s?o&&i(u,r)||(r=u):(s=!0,r=u),r}}}(e):void 0},function(e){return e?void 0:function(){return o}}]},77405:(e,t,n)=>{"use strict";n.d(t,{ZP:()=>a});var r=n(31461),o=["initMapStateToProps","initMapDispatchToProps","initMergeProps"];function i(e,t,n,r){return function(o,i){return n(e(o,i),t(r,i),i)}}function s(e,t,n,r,o){var i,s,a,u,c,l=o.areStatesEqual,d=o.areOwnPropsEqual,p=o.areStatePropsEqual,f=!1;function h(o,f){var h,m,g=!d(f,s),y=!l(o,i);return i=o,s=f,g&&y?(a=e(i,s),t.dependsOnOwnProps&&(u=t(r,s)),c=n(a,u,s)):g?(e.dependsOnOwnProps&&(a=e(i,s)),t.dependsOnOwnProps&&(u=t(r,s)),c=n(a,u,s)):y?(h=e(i,s),m=!p(h,a),a=h,m&&(c=n(a,u,s)),c):c}return function(o,l){return f?h(o,l):(a=e(i=o,s=l),u=t(r,s),c=n(a,u,s),f=!0,c)}}function a(e,t){var n=t.initMapStateToProps,a=t.initMapDispatchToProps,u=t.initMergeProps,c=(0,r.Z)(t,o),l=n(e,c),d=a(e,c),p=u(e,c);return(c.pure?s:i)(l,d,p,e,c)}},8528:(e,t,n)=>{"use strict";function r(e){return function(t,n){var r=e(t,n);function o(){return r}return o.dependsOnOwnProps=!1,o}}function o(e){return null!==e.dependsOnOwnProps&&void 0!==e.dependsOnOwnProps?Boolean(e.dependsOnOwnProps):1!==e.length}function i(e,t){return function(t,n){n.displayName;var r=function(e,t){return r.dependsOnOwnProps?r.mapToProps(e,t):r.mapToProps(e)};return r.dependsOnOwnProps=!0,r.mapToProps=function(t,n){r.mapToProps=e,r.dependsOnOwnProps=o(e);var i=r(t,n);return"function"==typeof i&&(r.mapToProps=i,r.dependsOnOwnProps=o(i),i=r(t,n)),i},r}}n.d(t,{dX:()=>r,xv:()=>i})},14283:(e,t,n)=>{"use strict";n.d(t,{zt:()=>r.Z,$j:()=>o.Z,I0:()=>i.I,v9:()=>s.v});var r=n(42533),o=(n(49484),n(81346),n(55443)),i=n(23102),s=n(85247);n(87166)},23102:(e,t,n)=>{"use strict";n.d(t,{I:()=>s});var r=n(81346),o=n(87166);function i(e){void 0===e&&(e=r.E);var t=e===r.E?o.o:(0,o.f)(e);return function(){return t().dispatch}}var s=i()},24274:(e,t,n)=>{"use strict";n.d(t,{x:()=>i});var r=n(99196),o=n(81346);function i(){return(0,r.useContext)(o.E)}},85247:(e,t,n)=>{"use strict";n.d(t,{v:()=>l});var r=n(99196),o=n(24274),i=n(82062),s=n(44282),a=n(81346),u=function(e,t){return e===t};function c(e){void 0===e&&(e=a.E);var t=e===a.E?o.x:function(){return(0,r.useContext)(e)};return function(e,n){void 0===n&&(n=u);var o=t(),a=function(e,t,n,o){var a,u=(0,r.useReducer)((function(e){return e+1}),0)[1],c=(0,r.useMemo)((function(){return(0,i.X)(n,o)}),[n,o]),l=(0,r.useRef)(),d=(0,r.useRef)(),p=(0,r.useRef)(),f=(0,r.useRef)(),h=n.getState();try{if(e!==d.current||h!==p.current||l.current){var m=e(h);a=void 0!==f.current&&t(m,f.current)?f.current:m}else a=f.current}catch(g){throw l.current&&(g.message+="\nThe error may be correlated with this previous error:\n"+l.current.stack+"\n\n"),g}return(0,s.L)((function(){d.current=e,p.current=h,f.current=a,l.current=void 0})),(0,s.L)((function(){function e(){try{var e=n.getState();if(e===p.current)return;var r=d.current(e);if(t(r,f.current))return;f.current=r,p.current=e}catch(g){l.current=g}u()}return c.onStateChange=e,c.trySubscribe(),e(),function(){return c.tryUnsubscribe()}}),[n,c]),a}(e,n,o.store,o.subscription);return(0,r.useDebugValue)(a),a}}var l=c()},87166:(e,t,n)=>{"use strict";n.d(t,{f:()=>s,o:()=>a});var r=n(99196),o=n(81346),i=n(24274);function s(e){void 0===e&&(e=o.E);var t=e===o.E?i.x:function(){return(0,r.useContext)(e)};return function(){return t().store}}var a=s()},4792:(e,t,n)=>{"use strict";n.d(t,{zt:()=>r.zt,$j:()=>r.$j,I0:()=>r.I0,v9:()=>r.v9});var r=n(14283),o=n(41369);(0,n(14210).F)(o.m)},82062:(e,t,n)=>{"use strict";n.d(t,{X:()=>i});var r=n(14210);var o={notify:function(){},get:function(){return[]}};function i(e,t){var n,i=o;function s(){u.onStateChange&&u.onStateChange()}function a(){n||(n=t?t.addNestedSub(s):e.subscribe(s),i=function(){var e=(0,r.k)(),t=null,n=null;return{clear:function(){t=null,n=null},notify:function(){e((function(){for(var e=t;e;)e.callback(),e=e.next}))},get:function(){for(var e=[],n=t;n;)e.push(n),n=n.next;return e},subscribe:function(e){var r=!0,o=n={callback:e,next:null,prev:n};return o.prev?o.prev.next=o:t=o,function(){r&&null!==t&&(r=!1,o.next?o.next.prev=o.prev:n=o.prev,o.prev?o.prev.next=o.next:t=o.next)}}}}())}var u={addNestedSub:function(e){return a(),i.subscribe(e)},notifyNestedSubs:function(){i.notify()},handleChangeWrapper:s,isSubscribed:function(){return Boolean(n)},trySubscribe:a,tryUnsubscribe:function(){n&&(n(),n=void 0,i.clear(),i=o)},getListeners:function(){return i}};return u}},14210:(e,t,n)=>{"use strict";n.d(t,{F:()=>o,k:()=>i});var r=function(e){e()},o=function(e){return r=e},i=function(){return r}},56750:(e,t,n)=>{"use strict";function r(e,t){var n={},r=function(r){var o=e[r];"function"==typeof o&&(n[r]=function(){return t(o.apply(void 0,arguments))})};for(var o in e)r(o);return n}n.d(t,{Z:()=>r})},41369:(e,t,n)=>{"use strict";n.d(t,{m:()=>r.unstable_batchedUpdates});var r=n(91850)},74570:(e,t,n)=>{"use strict";function r(e,t){return e===t?0!==e||0!==t||1/e==1/t:e!=e&&t!=t}function o(e,t){if(r(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;var n=Object.keys(e),o=Object.keys(t);if(n.length!==o.length)return!1;for(var i=0;i<n.length;i++)if(!Object.prototype.hasOwnProperty.call(t,n[i])||!r(e[n[i]],t[n[i]]))return!1;return!0}n.d(t,{Z:()=>o})},44282:(e,t,n)=>{"use strict";n.d(t,{L:()=>o});var r=n(99196),o="undefined"!=typeof window&&void 0!==window.document&&void 0!==window.document.createElement?r.useLayoutEffect:r.useEffect},47933:(e,t,n)=>{"use strict";n.d(t,{rU:()=>g});var r=n(29175),o=n(81665),i=n(99196),s=n.n(i),a=n(95878),u=n(7896),c=n(31461),l=n(61898);s().Component;s().Component;var d=function(e,t){return"function"==typeof e?e(t):e},p=function(e,t){return"string"==typeof e?(0,a.ob)(e,null,null,t):e},f=function(e){return e},h=s().forwardRef;void 0===h&&(h=f);var m=h((function(e,t){var n=e.innerRef,r=e.navigate,o=e.onClick,i=(0,c.Z)(e,["innerRef","navigate","onClick"]),a=i.target,l=(0,u.Z)({},i,{onClick:function(e){try{o&&o(e)}catch(t){throw e.preventDefault(),t}e.defaultPrevented||0!==e.button||a&&"_self"!==a||function(e){return!!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)}(e)||(e.preventDefault(),r())}});return l.ref=f!==h&&t||n,s().createElement("a",l)}));var g=h((function(e,t){var n=e.component,o=void 0===n?m:n,i=e.replace,a=e.to,g=e.innerRef,y=(0,c.Z)(e,["component","replace","to","innerRef"]);return s().createElement(r.s6.Consumer,null,(function(e){e||(0,l.Z)(!1);var n=e.history,r=p(d(a,e.location),e.location),c=r?n.createHref(r):"",m=(0,u.Z)({},y,{href:c,navigate:function(){var t=d(a,e.location);(i?n.replace:n.push)(t)}});return f!==h?m.ref=t||g:m.innerRef=g,s().createElement(o,m)}))})),y=function(e){return e},v=s().forwardRef;void 0===v&&(v=y);v((function(e,t){var n=e["aria-current"],o=void 0===n?"page":n,i=e.activeClassName,a=void 0===i?"active":i,f=e.activeStyle,h=e.className,m=e.exact,b=e.isActive,w=e.location,_=e.sensitive,E=e.strict,S=e.style,C=e.to,P=e.innerRef,k=(0,c.Z)(e,["aria-current","activeClassName","activeStyle","className","exact","isActive","location","sensitive","strict","style","to","innerRef"]);return s().createElement(r.s6.Consumer,null,(function(e){e||(0,l.Z)(!1);var n=w||e.location,i=p(d(C,n),n),c=i.pathname,I=c&&c.replace(/([.+*?=^!:${}()[\]|/\\])/g,"\\$1"),A=I?(0,r.LX)(n.pathname,{path:I,exact:m,sensitive:_,strict:E}):null,T=!!(b?b(A,n):A),R=T?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(" ")}(h,a):h,O=T?(0,u.Z)({},S,{},f):S,x=(0,u.Z)({"aria-current":T&&o||null,className:R,style:O,to:i},k);return y!==v?x.ref=t||P:x.innerRef=P,s().createElement(g,x)}))}))},95878:(e,t,n)=>{"use strict";n.d(t,{lX:()=>w,q_:()=>k,PP:()=>A,ob:()=>p,Hp:()=>f,Ep:()=>d});var r=n(7896),o=n(57613),i=n(60838),s=n(61898);function a(e){return"/"===e.charAt(0)?e:"/"+e}function u(e){return"/"===e.charAt(0)?e.substr(1):e}function c(e,t){return function(e,t){return 0===e.toLowerCase().indexOf(t.toLowerCase())&&-1!=="/?#".indexOf(e.charAt(t.length))}(e,t)?e.substr(t.length):e}function l(e){return"/"===e.charAt(e.length-1)?e.slice(0,-1):e}function d(e){var t=e.pathname,n=e.search,r=e.hash,o=t||"/";return n&&"?"!==n&&(o+="?"===n.charAt(0)?n:"?"+n),r&&"#"!==r&&(o+="#"===r.charAt(0)?r:"#"+r),o}function p(e,t,n,i){var s;"string"==typeof e?(s=function(e){var t=e||"/",n="",r="",o=t.indexOf("#");-1!==o&&(r=t.substr(o),t=t.substr(0,o));var i=t.indexOf("?");return-1!==i&&(n=t.substr(i),t=t.substr(0,i)),{pathname:t,search:"?"===n?"":n,hash:"#"===r?"":r}}(e),s.state=t):(void 0===(s=(0,r.Z)({},e)).pathname&&(s.pathname=""),s.search?"?"!==s.search.charAt(0)&&(s.search="?"+s.search):s.search="",s.hash?"#"!==s.hash.charAt(0)&&(s.hash="#"+s.hash):s.hash="",void 0!==t&&void 0===s.state&&(s.state=t));try{s.pathname=decodeURI(s.pathname)}catch(a){throw a instanceof URIError?new URIError('Pathname "'+s.pathname+'" could not be decoded. This is likely caused by an invalid percent-encoding.'):a}return n&&(s.key=n),i?s.pathname?"/"!==s.pathname.charAt(0)&&(s.pathname=(0,o.Z)(s.pathname,i.pathname)):s.pathname=i.pathname:s.pathname||(s.pathname="/"),s}function f(e,t){return e.pathname===t.pathname&&e.search===t.search&&e.hash===t.hash&&e.key===t.key&&(0,i.Z)(e.state,t.state)}function h(){var e=null;var t=[];return{setPrompt:function(t){return e=t,function(){e===t&&(e=null)}},confirmTransitionTo:function(t,n,r,o){if(null!=e){var i="function"==typeof e?e(t,n):e;"string"==typeof i?"function"==typeof r?r(i,o):o(!0):o(!1!==i)}else o(!0)},appendListener:function(e){var n=!0;function r(){n&&e.apply(void 0,arguments)}return t.push(r),function(){n=!1,t=t.filter((function(e){return e!==r}))}},notifyListeners:function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];t.forEach((function(e){return e.apply(void 0,n)}))}}}var m=!("undefined"==typeof window||!window.document||!window.document.createElement);function g(e,t){t(window.confirm(e))}var y="popstate",v="hashchange";function b(){try{return window.history.state||{}}catch(e){return{}}}function w(e){void 0===e&&(e={}),m||(0,s.Z)(!1);var t,n=window.history,o=(-1===(t=window.navigator.userAgent).indexOf("Android 2.")&&-1===t.indexOf("Android 4.0")||-1===t.indexOf("Mobile Safari")||-1!==t.indexOf("Chrome")||-1!==t.indexOf("Windows Phone"))&&window.history&&"pushState"in window.history,i=!(-1===window.navigator.userAgent.indexOf("Trident")),u=e,f=u.forceRefresh,w=void 0!==f&&f,_=u.getUserConfirmation,E=void 0===_?g:_,S=u.keyLength,C=void 0===S?6:S,P=e.basename?l(a(e.basename)):"";function k(e){var t=e||{},n=t.key,r=t.state,o=window.location,i=o.pathname+o.search+o.hash;return P&&(i=c(i,P)),p(i,r,n)}function I(){return Math.random().toString(36).substr(2,C)}var A=h();function T(e){(0,r.Z)(q,e),q.length=n.length,A.notifyListeners(q.location,q.action)}function R(e){(function(e){return void 0===e.state&&-1===navigator.userAgent.indexOf("CriOS")})(e)||F(k(e.state))}function O(){F(k(b()))}var x=!1;function F(e){if(x)x=!1,T();else{A.confirmTransitionTo(e,"POP",E,(function(t){t?T({action:"POP",location:e}):function(e){var t=q.location,n=U.indexOf(t.key);-1===n&&(n=0);var r=U.indexOf(e.key);-1===r&&(r=0);var o=n-r;o&&(x=!0,D(o))}(e)}))}}var L=k(b()),U=[L.key];function Z(e){return P+d(e)}function D(e){n.go(e)}var j=0;function N(e){1===(j+=e)&&1===e?(window.addEventListener(y,R),i&&window.addEventListener(v,O)):0===j&&(window.removeEventListener(y,R),i&&window.removeEventListener(v,O))}var M=!1;var q={length:n.length,action:"POP",location:L,createHref:Z,push:function(e,t){var r="PUSH",i=p(e,t,I(),q.location);A.confirmTransitionTo(i,r,E,(function(e){if(e){var t=Z(i),s=i.key,a=i.state;if(o)if(n.pushState({key:s,state:a},null,t),w)window.location.href=t;else{var u=U.indexOf(q.location.key),c=U.slice(0,u+1);c.push(i.key),U=c,T({action:r,location:i})}else window.location.href=t}}))},replace:function(e,t){var r="REPLACE",i=p(e,t,I(),q.location);A.confirmTransitionTo(i,r,E,(function(e){if(e){var t=Z(i),s=i.key,a=i.state;if(o)if(n.replaceState({key:s,state:a},null,t),w)window.location.replace(t);else{var u=U.indexOf(q.location.key);-1!==u&&(U[u]=i.key),T({action:r,location:i})}else window.location.replace(t)}}))},go:D,goBack:function(){D(-1)},goForward:function(){D(1)},block:function(e){void 0===e&&(e=!1);var t=A.setPrompt(e);return M||(N(1),M=!0),function(){return M&&(M=!1,N(-1)),t()}},listen:function(e){var t=A.appendListener(e);return N(1),function(){N(-1),t()}}};return q}var _="hashchange",E={hashbang:{encodePath:function(e){return"!"===e.charAt(0)?e:"!/"+u(e)},decodePath:function(e){return"!"===e.charAt(0)?e.substr(1):e}},noslash:{encodePath:u,decodePath:a},slash:{encodePath:a,decodePath:a}};function S(e){var t=e.indexOf("#");return-1===t?e:e.slice(0,t)}function C(){var e=window.location.href,t=e.indexOf("#");return-1===t?"":e.substring(t+1)}function P(e){window.location.replace(S(window.location.href)+"#"+e)}function k(e){void 0===e&&(e={}),m||(0,s.Z)(!1);var t=window.history,n=(window.navigator.userAgent.indexOf("Firefox"),e),o=n.getUserConfirmation,i=void 0===o?g:o,u=n.hashType,f=void 0===u?"slash":u,y=e.basename?l(a(e.basename)):"",v=E[f],b=v.encodePath,w=v.decodePath;function k(){var e=w(C());return y&&(e=c(e,y)),p(e)}var I=h();function A(e){(0,r.Z)(M,e),M.length=t.length,I.notifyListeners(M.location,M.action)}var T=!1,R=null;function O(){var e,t,n=C(),r=b(n);if(n!==r)P(r);else{var o=k(),s=M.location;if(!T&&(t=o,(e=s).pathname===t.pathname&&e.search===t.search&&e.hash===t.hash))return;if(R===d(o))return;R=null,function(e){if(T)T=!1,A();else{var t="POP";I.confirmTransitionTo(e,t,i,(function(n){n?A({action:t,location:e}):function(e){var t=M.location,n=U.lastIndexOf(d(t));-1===n&&(n=0);var r=U.lastIndexOf(d(e));-1===r&&(r=0);var o=n-r;o&&(T=!0,Z(o))}(e)}))}}(o)}}var x=C(),F=b(x);x!==F&&P(F);var L=k(),U=[d(L)];function Z(e){t.go(e)}var D=0;function j(e){1===(D+=e)&&1===e?window.addEventListener(_,O):0===D&&window.removeEventListener(_,O)}var N=!1;var M={length:t.length,action:"POP",location:L,createHref:function(e){var t=document.querySelector("base"),n="";return t&&t.getAttribute("href")&&(n=S(window.location.href)),n+"#"+b(y+d(e))},push:function(e,t){var n="PUSH",r=p(e,void 0,void 0,M.location);I.confirmTransitionTo(r,n,i,(function(e){if(e){var t=d(r),o=b(y+t);if(C()!==o){R=t,function(e){window.location.hash=e}(o);var i=U.lastIndexOf(d(M.location)),s=U.slice(0,i+1);s.push(t),U=s,A({action:n,location:r})}else A()}}))},replace:function(e,t){var n="REPLACE",r=p(e,void 0,void 0,M.location);I.confirmTransitionTo(r,n,i,(function(e){if(e){var t=d(r),o=b(y+t);C()!==o&&(R=t,P(o));var i=U.indexOf(d(M.location));-1!==i&&(U[i]=t),A({action:n,location:r})}}))},go:Z,goBack:function(){Z(-1)},goForward:function(){Z(1)},block:function(e){void 0===e&&(e=!1);var t=I.setPrompt(e);return N||(j(1),N=!0),function(){return N&&(N=!1,j(-1)),t()}},listen:function(e){var t=I.appendListener(e);return j(1),function(){j(-1),t()}}};return M}function I(e,t,n){return Math.min(Math.max(e,t),n)}function A(e){void 0===e&&(e={});var t=e,n=t.getUserConfirmation,o=t.initialEntries,i=void 0===o?["/"]:o,s=t.initialIndex,a=void 0===s?0:s,u=t.keyLength,c=void 0===u?6:u,l=h();function f(e){(0,r.Z)(w,e),w.length=w.entries.length,l.notifyListeners(w.location,w.action)}function m(){return Math.random().toString(36).substr(2,c)}var g=I(a,0,i.length-1),y=i.map((function(e){return p(e,void 0,"string"==typeof e?m():e.key||m())})),v=d;function b(e){var t=I(w.index+e,0,w.entries.length-1),r=w.entries[t];l.confirmTransitionTo(r,"POP",n,(function(e){e?f({action:"POP",location:r,index:t}):f()}))}var w={length:y.length,action:"POP",location:y[g],index:g,entries:y,createHref:v,push:function(e,t){var r="PUSH",o=p(e,t,m(),w.location);l.confirmTransitionTo(o,r,n,(function(e){if(e){var t=w.index+1,n=w.entries.slice(0);n.length>t?n.splice(t,n.length-t,o):n.push(o),f({action:r,location:o,index:t,entries:n})}}))},replace:function(e,t){var r="REPLACE",o=p(e,t,m(),w.location);l.confirmTransitionTo(o,r,n,(function(e){e&&(w.entries[w.index]=o,f({action:r,location:o}))}))},go:b,goBack:function(){b(-1)},goForward:function(){b(1)},canGo:function(e){var t=w.index+e;return t>=0&&t<w.entries.length},block:function(e){return void 0===e&&(e=!1),l.setPrompt(e)},listen:function(e){return l.appendListener(e)}};return w}},86141:(e,t)=>{"use strict";var n="function"==typeof Symbol&&Symbol.for,r=n?Symbol.for("react.element"):60103,o=n?Symbol.for("react.portal"):60106,i=n?Symbol.for("react.fragment"):60107,s=n?Symbol.for("react.strict_mode"):60108,a=n?Symbol.for("react.profiler"):60114,u=n?Symbol.for("react.provider"):60109,c=n?Symbol.for("react.context"):60110,l=n?Symbol.for("react.async_mode"):60111,d=n?Symbol.for("react.concurrent_mode"):60111,p=n?Symbol.for("react.forward_ref"):60112,f=n?Symbol.for("react.suspense"):60113,h=n?Symbol.for("react.suspense_list"):60120,m=n?Symbol.for("react.memo"):60115,g=n?Symbol.for("react.lazy"):60116,y=n?Symbol.for("react.block"):60121,v=n?Symbol.for("react.fundamental"):60117,b=n?Symbol.for("react.responder"):60118,w=n?Symbol.for("react.scope"):60119;
9
  * Copyright(c) 2012-2014 Roman Shtylman
10
  * Copyright(c) 2015 Douglas Christopher Wilson
11
  * MIT Licensed
12
+ */t.parse=function(e,t){if("string"!=typeof e)throw new TypeError("argument str must be a string");for(var r={},i=t||{},a=e.split(o),u=i.decode||n,c=0;c<a.length;c++){var l=a[c],d=l.indexOf("=");if(!(d<0)){var p=l.substr(0,d).trim(),f=l.substr(++d,l.length).trim();'"'==f[0]&&(f=f.slice(1,-1)),null==r[p]&&(r[p]=s(f,u))}}return r},t.serialize=function(e,t,n){var o=n||{},s=o.encode||r;if("function"!=typeof s)throw new TypeError("option encode is invalid");if(!i.test(e))throw new TypeError("argument name is invalid");var a=s(t);if(a&&!i.test(a))throw new TypeError("argument val is invalid");var u=e+"="+a;if(null!=o.maxAge){var c=o.maxAge-0;if(isNaN(c)||!isFinite(c))throw new TypeError("option maxAge is invalid");u+="; Max-Age="+Math.floor(c)}if(o.domain){if(!i.test(o.domain))throw new TypeError("option domain is invalid");u+="; Domain="+o.domain}if(o.path){if(!i.test(o.path))throw new TypeError("option path is invalid");u+="; Path="+o.path}if(o.expires){if("function"!=typeof o.expires.toUTCString)throw new TypeError("option expires is invalid");u+="; Expires="+o.expires.toUTCString()}o.httpOnly&&(u+="; HttpOnly");o.secure&&(u+="; Secure");if(o.sameSite){switch("string"==typeof o.sameSite?o.sameSite.toLowerCase():o.sameSite){case!0:u+="; SameSite=Strict";break;case"lax":u+="; SameSite=Lax";break;case"strict":u+="; SameSite=Strict";break;case"none":u+="; SameSite=None";break;default:throw new TypeError("option sameSite is invalid")}}return u};var n=decodeURIComponent,r=encodeURIComponent,o=/; */,i=/^[\u0009\u0020-\u007e\u0080-\u00ff]+$/;function s(e,t){try{return t(e)}catch(n){return e}}},77111:(e,t,n)=>{var r=n(9859),o=n(26733),i=n(59821),s=r.TypeError;e.exports=function(e){if(o(e))return e;throw s(i(e)+" is not a function")}},88505:(e,t,n)=>{var r=n(9859),o=n(26733),i=r.String,s=r.TypeError;e.exports=function(e){if("object"==typeof e||o(e))return e;throw s("Can't set "+i(e)+" as a prototype")}},21176:(e,t,n)=>{var r=n(9859),o=n(85052),i=r.String,s=r.TypeError;e.exports=function(e){if(o(e))return e;throw s(i(e)+" is not an object")}},53339:e=>{e.exports="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof DataView},9918:(e,t,n)=>{"use strict";var r,o,i,s=n(53339),a=n(7400),u=n(9859),c=n(26733),l=n(85052),d=n(98270),p=n(81589),f=n(59821),h=n(75762),m=n(27487),g=n(31787).f,y=n(91321),v=n(67567),b=n(56540),w=n(70095),_=n(81441),E=u.Int8Array,S=E&&E.prototype,C=u.Uint8ClampedArray,P=C&&C.prototype,k=E&&v(E),I=S&&v(S),A=Object.prototype,T=u.TypeError,R=w("toStringTag"),O=_("TYPED_ARRAY_TAG"),x=_("TYPED_ARRAY_CONSTRUCTOR"),L=s&&!!b&&"Opera"!==p(u.opera),F=!1,U={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},D={BigInt64Array:8,BigUint64Array:8},Z=function(e){if(!l(e))return!1;var t=p(e);return d(U,t)||d(D,t)};for(r in U)(i=(o=u[r])&&o.prototype)?h(i,x,o):L=!1;for(r in D)(i=(o=u[r])&&o.prototype)&&h(i,x,o);if((!L||!c(k)||k===Function.prototype)&&(k=function(){throw T("Incorrect invocation")},L))for(r in U)u[r]&&b(u[r],k);if((!L||!I||I===A)&&(I=k.prototype,L))for(r in U)u[r]&&b(u[r].prototype,I);if(L&&v(P)!==I&&b(P,I),a&&!d(I,R))for(r in F=!0,g(I,R,{get:function(){return l(this)?this[O]:void 0}}),U)u[r]&&h(u[r],O,r);e.exports={NATIVE_ARRAY_BUFFER_VIEWS:L,TYPED_ARRAY_CONSTRUCTOR:x,TYPED_ARRAY_TAG:F&&O,aTypedArray:function(e){if(Z(e))return e;throw T("Target is not a typed array")},aTypedArrayConstructor:function(e){if(c(e)&&(!b||y(k,e)))return e;throw T(f(e)+" is not a typed array constructor")},exportTypedArrayMethod:function(e,t,n){if(a){if(n)for(var r in U){var o=u[r];if(o&&d(o.prototype,e))try{delete o.prototype[e]}catch(i){}}I[e]&&!n||m(I,e,n?t:L&&S[e]||t)}},exportTypedArrayStaticMethod:function(e,t,n){var r,o;if(a){if(b){if(n)for(r in U)if((o=u[r])&&d(o,e))try{delete o[e]}catch(i){}if(k[e]&&!n)return;try{return m(k,e,n?t:L&&k[e]||t)}catch(i){}}for(r in U)!(o=u[r])||o[e]&&!n||m(o,e,t)}},isView:function(e){if(!l(e))return!1;var t=p(e);return"DataView"===t||d(U,t)||d(D,t)},isTypedArray:Z,TypedArray:k,TypedArrayPrototype:I}},19540:(e,t,n)=>{var r=n(10905),o=n(43231),i=n(39646),s=function(e){return function(t,n,s){var a,u=r(t),c=i(u),l=o(s,c);if(e&&n!=n){for(;c>l;)if((a=u[l++])!=a)return!0}else for(;c>l;l++)if((e||l in u)&&u[l]===n)return e||l||0;return!e&&-1}};e.exports={includes:s(!0),indexOf:s(!1)}},1909:(e,t,n)=>{var r=n(65968);e.exports=r([].slice)},27079:(e,t,n)=>{var r=n(65968),o=r({}.toString),i=r("".slice);e.exports=function(e){return i(o(e),8,-1)}},81589:(e,t,n)=>{var r=n(9859),o=n(71601),i=n(26733),s=n(27079),a=n(70095)("toStringTag"),u=r.Object,c="Arguments"==s(function(){return arguments}());e.exports=o?s:function(e){var t,n,r;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(n=function(e,t){try{return e[t]}catch(n){}}(t=u(e),a))?n:c?s(t):"Object"==(r=s(t))&&i(t.callee)?"Arguments":r}},77081:(e,t,n)=>{var r=n(98270),o=n(4826),i=n(97933),s=n(31787);e.exports=function(e,t){for(var n=o(t),a=s.f,u=i.f,c=0;c<n.length;c++){var l=n[c];r(e,l)||a(e,l,u(t,l))}}},27528:(e,t,n)=>{var r=n(24229);e.exports=!r((function(){function e(){}return e.prototype.constructor=null,Object.getPrototypeOf(new e)!==e.prototype}))},75762:(e,t,n)=>{var r=n(7400),o=n(31787),i=n(65358);e.exports=r?function(e,t,n){return o.f(e,t,i(1,n))}:function(e,t,n){return e[t]=n,e}},65358:e=>{e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},7400:(e,t,n)=>{var r=n(24229);e.exports=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},22635:(e,t,n)=>{var r=n(9859),o=n(85052),i=r.document,s=o(i)&&o(i.createElement);e.exports=function(e){return s?i.createElement(e):{}}},32023:(e,t,n)=>{var r=n(80598);e.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(r)},28801:(e,t,n)=>{var r=n(27079),o=n(9859);e.exports="process"==r(o.process)},80598:(e,t,n)=>{var r=n(31333);e.exports=r("navigator","userAgent")||""},6358:(e,t,n)=>{var r,o,i=n(9859),s=n(80598),a=i.process,u=i.Deno,c=a&&a.versions||u&&u.version,l=c&&c.v8;l&&(o=(r=l.split("."))[0]>0&&r[0]<4?1:+(r[0]+r[1])),!o&&s&&(!(r=s.match(/Edge\/(\d+)/))||r[1]>=74)&&(r=s.match(/Chrome\/(\d+)/))&&(o=+r[1]),e.exports=o},13837:e=>{e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},23103:(e,t,n)=>{var r=n(9859),o=n(97933).f,i=n(75762),s=n(27487),a=n(12079),u=n(77081),c=n(46541);e.exports=function(e,t){var n,l,d,p,f,h=e.target,m=e.global,g=e.stat;if(n=m?r:g?r[h]||a(h,{}):(r[h]||{}).prototype)for(l in t){if(p=t[l],d=e.noTargetGet?(f=o(n,l))&&f.value:n[l],!c(m?l:h+(g?".":"#")+l,e.forced)&&void 0!==d){if(typeof p==typeof d)continue;u(p,d)}(e.sham||d&&d.sham)&&i(p,"sham",!0),s(n,l,p,e)}}},24229:e=>{e.exports=function(e){try{return!!e()}catch(t){return!0}}},53171:e=>{var t=Function.prototype,n=t.apply,r=t.bind,o=t.call;e.exports="object"==typeof Reflect&&Reflect.apply||(r?o.bind(n):function(){return o.apply(n,arguments)})},97636:(e,t,n)=>{var r=n(65968),o=n(77111),i=r(r.bind);e.exports=function(e,t){return o(e),void 0===t?e:i?i(e,t):function(){return e.apply(t,arguments)}}},20266:e=>{var t=Function.prototype.call;e.exports=t.bind?t.bind(t):function(){return t.apply(t,arguments)}},51805:(e,t,n)=>{var r=n(7400),o=n(98270),i=Function.prototype,s=r&&Object.getOwnPropertyDescriptor,a=o(i,"name"),u=a&&"something"===function(){}.name,c=a&&(!r||r&&s(i,"name").configurable);e.exports={EXISTS:a,PROPER:u,CONFIGURABLE:c}},65968:e=>{var t=Function.prototype,n=t.bind,r=t.call,o=n&&n.bind(r);e.exports=n?function(e){return e&&o(r,e)}:function(e){return e&&function(){return r.apply(e,arguments)}}},31333:(e,t,n)=>{var r=n(9859),o=n(26733),i=function(e){return o(e)?e:void 0};e.exports=function(e,t){return arguments.length<2?i(r[e]):r[e]&&r[e][t]}},55300:(e,t,n)=>{var r=n(77111);e.exports=function(e,t){var n=e[t];return null==n?void 0:r(n)}},9859:e=>{var t=function(e){return e&&e.Math==Math&&e};e.exports=t("object"==typeof globalThis&&globalThis)||t("object"==typeof window&&window)||t("object"==typeof self&&self)||t("object"==typeof window&&window)||function(){return this}()||Function("return this")()},98270:(e,t,n)=>{var r=n(65968),o=n(92991),i=r({}.hasOwnProperty);e.exports=Object.hasOwn||function(e,t){return i(o(e),t)}},95977:e=>{e.exports={}},53777:(e,t,n)=>{var r=n(31333);e.exports=r("document","documentElement")},64394:(e,t,n)=>{var r=n(7400),o=n(24229),i=n(22635);e.exports=!r&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},9337:(e,t,n)=>{var r=n(9859),o=n(65968),i=n(24229),s=n(27079),a=r.Object,u=o("".split);e.exports=i((function(){return!a("z").propertyIsEnumerable(0)}))?function(e){return"String"==s(e)?u(e,""):a(e)}:a},8511:(e,t,n)=>{var r=n(65968),o=n(26733),i=n(85353),s=r(Function.toString);o(i.inspectSource)||(i.inspectSource=function(e){return s(e)}),e.exports=i.inspectSource},56407:(e,t,n)=>{var r,o,i,s=n(18694),a=n(9859),u=n(65968),c=n(85052),l=n(75762),d=n(98270),p=n(85353),f=n(44399),h=n(95977),m="Object already initialized",g=a.TypeError,y=a.WeakMap;if(s||p.state){var v=p.state||(p.state=new y),b=u(v.get),w=u(v.has),_=u(v.set);r=function(e,t){if(w(v,e))throw new g(m);return t.facade=e,_(v,e,t),t},o=function(e){return b(v,e)||{}},i=function(e){return w(v,e)}}else{var E=f("state");h[E]=!0,r=function(e,t){if(d(e,E))throw new g(m);return t.facade=e,l(e,E,t),t},o=function(e){return d(e,E)?e[E]:{}},i=function(e){return d(e,E)}}e.exports={set:r,get:o,has:i,enforce:function(e){return i(e)?o(e):r(e,{})},getterFor:function(e){return function(t){var n;if(!c(t)||(n=o(t)).type!==e)throw g("Incompatible receiver, "+e+" required");return n}}}},26733:e=>{e.exports=function(e){return"function"==typeof e}},46541:(e,t,n)=>{var r=n(24229),o=n(26733),i=/#|\.prototype\./,s=function(e,t){var n=u[a(e)];return n==l||n!=c&&(o(t)?r(t):!!t)},a=s.normalize=function(e){return String(e).replace(i,".").toLowerCase()},u=s.data={},c=s.NATIVE="N",l=s.POLYFILL="P";e.exports=s},85052:(e,t,n)=>{var r=n(26733);e.exports=function(e){return"object"==typeof e?null!==e:r(e)}},24231:e=>{e.exports=!1},49395:(e,t,n)=>{var r=n(9859),o=n(31333),i=n(26733),s=n(91321),a=n(66969),u=r.Object;e.exports=a?function(e){return"symbol"==typeof e}:function(e){var t=o("Symbol");return i(t)&&s(t.prototype,u(e))}},39646:(e,t,n)=>{var r=n(34237);e.exports=function(e){return r(e.length)}},63839:(e,t,n)=>{var r=n(6358),o=n(24229);e.exports=!!Object.getOwnPropertySymbols&&!o((function(){var e=Symbol();return!String(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&r&&r<41}))},18694:(e,t,n)=>{var r=n(9859),o=n(26733),i=n(8511),s=r.WeakMap;e.exports=o(s)&&/native code/.test(i(s))},31787:(e,t,n)=>{var r=n(9859),o=n(7400),i=n(64394),s=n(21176),a=n(39310),u=r.TypeError,c=Object.defineProperty;t.f=o?c:function(e,t,n){if(s(e),t=a(t),s(n),i)try{return c(e,t,n)}catch(r){}if("get"in n||"set"in n)throw u("Accessors not supported");return"value"in n&&(e[t]=n.value),e}},97933:(e,t,n)=>{var r=n(7400),o=n(20266),i=n(19195),s=n(65358),a=n(10905),u=n(39310),c=n(98270),l=n(64394),d=Object.getOwnPropertyDescriptor;t.f=r?d:function(e,t){if(e=a(e),t=u(t),l)try{return d(e,t)}catch(n){}if(c(e,t))return s(!o(i.f,e,t),e[t])}},78151:(e,t,n)=>{var r=n(90140),o=n(13837).concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return r(e,o)}},10894:(e,t)=>{t.f=Object.getOwnPropertySymbols},67567:(e,t,n)=>{var r=n(9859),o=n(98270),i=n(26733),s=n(92991),a=n(44399),u=n(27528),c=a("IE_PROTO"),l=r.Object,d=l.prototype;e.exports=u?l.getPrototypeOf:function(e){var t=s(e);if(o(t,c))return t[c];var n=t.constructor;return i(n)&&t instanceof n?n.prototype:t instanceof l?d:null}},91321:(e,t,n)=>{var r=n(65968);e.exports=r({}.isPrototypeOf)},90140:(e,t,n)=>{var r=n(65968),o=n(98270),i=n(10905),s=n(19540).indexOf,a=n(95977),u=r([].push);e.exports=function(e,t){var n,r=i(e),c=0,l=[];for(n in r)!o(a,n)&&o(r,n)&&u(l,n);for(;t.length>c;)o(r,n=t[c++])&&(~s(l,n)||u(l,n));return l}},19195:(e,t)=>{"use strict";var n={}.propertyIsEnumerable,r=Object.getOwnPropertyDescriptor,o=r&&!n.call({1:2},1);t.f=o?function(e){var t=r(this,e);return!!t&&t.enumerable}:n},56540:(e,t,n)=>{var r=n(65968),o=n(21176),i=n(88505);e.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var e,t=!1,n={};try{(e=r(Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set))(n,[]),t=n instanceof Array}catch(s){}return function(n,r){return o(n),i(r),t?e(n,r):n.__proto__=r,n}}():void 0)},32914:(e,t,n)=>{var r=n(9859),o=n(20266),i=n(26733),s=n(85052),a=r.TypeError;e.exports=function(e,t){var n,r;if("string"===t&&i(n=e.toString)&&!s(r=o(n,e)))return r;if(i(n=e.valueOf)&&!s(r=o(n,e)))return r;if("string"!==t&&i(n=e.toString)&&!s(r=o(n,e)))return r;throw a("Can't convert object to primitive value")}},4826:(e,t,n)=>{var r=n(31333),o=n(65968),i=n(78151),s=n(10894),a=n(21176),u=o([].concat);e.exports=r("Reflect","ownKeys")||function(e){var t=i.f(a(e)),n=s.f;return n?u(t,n(e)):t}},27487:(e,t,n)=>{var r=n(9859),o=n(26733),i=n(98270),s=n(75762),a=n(12079),u=n(8511),c=n(56407),l=n(51805).CONFIGURABLE,d=c.get,p=c.enforce,f=String(String).split("String");(e.exports=function(e,t,n,u){var c,d=!!u&&!!u.unsafe,h=!!u&&!!u.enumerable,m=!!u&&!!u.noTargetGet,g=u&&void 0!==u.name?u.name:t;o(n)&&("Symbol("===String(g).slice(0,7)&&(g="["+String(g).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),(!i(n,"name")||l&&n.name!==g)&&s(n,"name",g),(c=p(n)).source||(c.source=f.join("string"==typeof g?g:""))),e!==r?(d?!m&&e[t]&&(h=!0):delete e[t],h?e[t]=n:s(e,t,n)):h?e[t]=n:a(t,n)})(Function.prototype,"toString",(function(){return o(this)&&d(this).source||u(this)}))},58885:(e,t,n)=>{var r=n(9859).TypeError;e.exports=function(e){if(null==e)throw r("Can't call method on "+e);return e}},12079:(e,t,n)=>{var r=n(9859),o=Object.defineProperty;e.exports=function(e,t){try{o(r,e,{value:t,configurable:!0,writable:!0})}catch(n){r[e]=t}return t}},44399:(e,t,n)=>{var r=n(33036),o=n(81441),i=r("keys");e.exports=function(e){return i[e]||(i[e]=o(e))}},85353:(e,t,n)=>{var r=n(9859),o=n(12079),i="__core-js_shared__",s=r[i]||o(i,{});e.exports=s},33036:(e,t,n)=>{var r=n(24231),o=n(85353);(e.exports=function(e,t){return o[e]||(o[e]=void 0!==t?t:{})})("versions",[]).push({version:"3.19.1",mode:r?"pure":"global",copyright:"© 2021 Denis Pushkarev (zloirock.ru)"})},55795:(e,t,n)=>{var r,o,i,s,a=n(9859),u=n(53171),c=n(97636),l=n(26733),d=n(98270),p=n(24229),f=n(53777),h=n(1909),m=n(22635),g=n(32023),y=n(28801),v=a.setImmediate,b=a.clearImmediate,w=a.process,_=a.Dispatch,E=a.Function,S=a.MessageChannel,C=a.String,P=0,k={},I="onreadystatechange";try{r=a.location}catch(x){}var A=function(e){if(d(k,e)){var t=k[e];delete k[e],t()}},T=function(e){return function(){A(e)}},R=function(e){A(e.data)},O=function(e){a.postMessage(C(e),r.protocol+"//"+r.host)};v&&b||(v=function(e){var t=h(arguments,1);return k[++P]=function(){u(l(e)?e:E(e),void 0,t)},o(P),P},b=function(e){delete k[e]},y?o=function(e){w.nextTick(T(e))}:_&&_.now?o=function(e){_.now(T(e))}:S&&!g?(s=(i=new S).port2,i.port1.onmessage=R,o=c(s.postMessage,s)):a.addEventListener&&l(a.postMessage)&&!a.importScripts&&r&&"file:"!==r.protocol&&!p(O)?(o=O,a.addEventListener("message",R,!1)):o=I in m("script")?function(e){f.appendChild(m("script")).onreadystatechange=function(){f.removeChild(this),A(e)}}:function(e){setTimeout(T(e),0)}),e.exports={set:v,clear:b}},43231:(e,t,n)=>{var r=n(43329),o=Math.max,i=Math.min;e.exports=function(e,t){var n=r(e);return n<0?o(n+t,0):i(n,t)}},10905:(e,t,n)=>{var r=n(9337),o=n(58885);e.exports=function(e){return r(o(e))}},43329:e=>{var t=Math.ceil,n=Math.floor;e.exports=function(e){var r=+e;return r!=r||0===r?0:(r>0?n:t)(r)}},34237:(e,t,n)=>{var r=n(43329),o=Math.min;e.exports=function(e){return e>0?o(r(e),9007199254740991):0}},92991:(e,t,n)=>{var r=n(9859),o=n(58885),i=r.Object;e.exports=function(e){return i(o(e))}},84262:(e,t,n)=>{var r=n(9859),o=n(72002),i=r.RangeError;e.exports=function(e,t){var n=o(e);if(n%t)throw i("Wrong offset");return n}},72002:(e,t,n)=>{var r=n(9859),o=n(43329),i=r.RangeError;e.exports=function(e){var t=o(e);if(t<0)throw i("The argument can't be less than 0");return t}},92066:(e,t,n)=>{var r=n(9859),o=n(20266),i=n(85052),s=n(49395),a=n(55300),u=n(32914),c=n(70095),l=r.TypeError,d=c("toPrimitive");e.exports=function(e,t){if(!i(e)||s(e))return e;var n,r=a(e,d);if(r){if(void 0===t&&(t="default"),n=o(r,e,t),!i(n)||s(n))return n;throw l("Can't convert object to primitive value")}return void 0===t&&(t="number"),u(e,t)}},39310:(e,t,n)=>{var r=n(92066),o=n(49395);e.exports=function(e){var t=r(e,"string");return o(t)?t:t+""}},71601:(e,t,n)=>{var r={};r[n(70095)("toStringTag")]="z",e.exports="[object z]"===String(r)},59821:(e,t,n)=>{var r=n(9859).String;e.exports=function(e){try{return r(e)}catch(t){return"Object"}}},81441:(e,t,n)=>{var r=n(65968),o=0,i=Math.random(),s=r(1..toString);e.exports=function(e){return"Symbol("+(void 0===e?"":e)+")_"+s(++o+i,36)}},66969:(e,t,n)=>{var r=n(63839);e.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},70095:(e,t,n)=>{var r=n(9859),o=n(33036),i=n(98270),s=n(81441),a=n(63839),u=n(66969),c=o("wks"),l=r.Symbol,d=l&&l.for,p=u?l:l&&l.withoutSetter||s;e.exports=function(e){if(!i(c,e)||!a&&"string"!=typeof c[e]){var t="Symbol."+e;a&&i(l,e)?c[e]=l[e]:c[e]=u&&d?d(t):p(t)}return c[e]}},65688:(e,t,n)=>{"use strict";var r=n(9859),o=n(9918),i=n(39646),s=n(84262),a=n(92991),u=n(24229),c=r.RangeError,l=o.aTypedArray;(0,o.exportTypedArrayMethod)("set",(function(e){l(this);var t=s(arguments.length>1?arguments[1]:void 0,1),n=this.length,r=a(e),o=i(r),u=0;if(o+t>n)throw c("Wrong length");for(;u<o;)this[t+u]=r[u++]}),u((function(){new Int8Array(1).set({})})))},46106:(e,t,n)=>{var r=n(23103),o=n(9859),i=n(55795);r({global:!0,bind:!0,enumerable:!0,forced:!o.setImmediate||!o.clearImmediate},{setImmediate:i.set,clearImmediate:i.clear})},74334:e=>{!function(){"use strict";var t=[],n=3988292384;function r(e){var t,r,o,i,s=-1;for(t=0,o=e.length;t<o;t+=1){for(i=255&(s^e[t]),r=0;r<8;r+=1)1==(1&i)?i=i>>>1^n:i>>>=1;s=s>>>8^i}return-1^s}function o(e,n){var r,i,s;if(void 0!==o.crc&&n&&e||(o.crc=-1,e)){for(r=o.crc,i=0,s=e.length;i<s;i+=1)r=r>>>8^t[255&(r^e[i])];return o.crc=r,-1^r}}!function(){var e,r,o;for(r=0;r<256;r+=1){for(e=r,o=0;o<8;o+=1)1&e?e=n^e>>>1:e>>>=1;t[r]=e>>>0}}(),e.exports=function(e,t){var n;e="string"==typeof e?(n=e,Array.prototype.map.call(n,(function(e){return e.charCodeAt(0)}))):e;return((t?r(e):o(e))>>>0).toString(16)},e.exports.direct=r,e.exports.table=o}()},65881:e=>{var t=1e3,n=60*t,r=60*n,o=24*r,i=7*o,s=365.25*o;function a(e,t,n,r){var o=t>=1.5*n;return Math.round(e/n)+" "+r+(o?"s":"")}e.exports=function(e,u){u=u||{};var c=typeof e;if("string"===c&&e.length>0)return function(e){if((e=String(e)).length>100)return;var a=/^(-?(?:\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(!a)return;var u=parseFloat(a[1]);switch((a[2]||"ms").toLowerCase()){case"years":case"year":case"yrs":case"yr":case"y":return u*s;case"weeks":case"week":case"w":return u*i;case"days":case"day":case"d":return u*o;case"hours":case"hour":case"hrs":case"hr":case"h":return u*r;case"minutes":case"minute":case"mins":case"min":case"m":return u*n;case"seconds":case"second":case"secs":case"sec":case"s":return u*t;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return u;default:return}}(e);if("number"===c&&isFinite(e))return u.long?function(e){var i=Math.abs(e);if(i>=o)return a(e,i,o,"day");if(i>=r)return a(e,i,r,"hour");if(i>=n)return a(e,i,n,"minute");if(i>=t)return a(e,i,t,"second");return e+" ms"}(e):function(e){var i=Math.abs(e);if(i>=o)return Math.round(e/o)+"d";if(i>=r)return Math.round(e/r)+"h";if(i>=n)return Math.round(e/n)+"m";if(i>=t)return Math.round(e/t)+"s";return e+"ms"}(e);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(e))}},24869:e=>{e.exports=function e(t){return Object.freeze(t),Object.getOwnPropertyNames(t).forEach((function(n){!t.hasOwnProperty(n)||null===t[n]||"object"!=typeof t[n]&&"function"!=typeof t[n]||Object.isFrozen(t[n])||e(t[n])})),t}},44065:(e,t,n)=>{e.exports=n(14980),e.exports.parser=n(90820)},14980:(e,t,n)=>{var r=n(8113),o=n(17056),i=n(39712)("engine.io-client:socket"),s=n(92543),a=n(90820),u=n(14243),c=n(54355);function l(e,t){if(!(this instanceof l))return new l(e,t);t=t||{},e&&"object"==typeof e&&(t=e,e=null),e?(e=u(e),t.hostname=e.host,t.secure="https"===e.protocol||"wss"===e.protocol,t.port=e.port,e.query&&(t.query=e.query)):t.host&&(t.hostname=u(t.host).host),this.secure=null!=t.secure?t.secure:"undefined"!=typeof location&&"https:"===location.protocol,t.hostname&&!t.port&&(t.port=this.secure?"443":"80"),this.agent=t.agent||!1,this.hostname=t.hostname||("undefined"!=typeof location?location.hostname:"localhost"),this.port=t.port||("undefined"!=typeof location&&location.port?location.port:this.secure?443:80),this.query=t.query||{},"string"==typeof this.query&&(this.query=c.decode(this.query)),this.upgrade=!1!==t.upgrade,this.path=(t.path||"/engine.io").replace(/\/$/,"")+"/",this.forceJSONP=!!t.forceJSONP,this.jsonp=!1!==t.jsonp,this.forceBase64=!!t.forceBase64,this.enablesXDR=!!t.enablesXDR,this.withCredentials=!1!==t.withCredentials,this.timestampParam=t.timestampParam||"t",this.timestampRequests=t.timestampRequests,this.transports=t.transports||["polling","websocket"],this.transportOptions=t.transportOptions||{},this.readyState="",this.writeBuffer=[],this.prevBufferLen=0,this.policyPort=t.policyPort||843,this.rememberUpgrade=t.rememberUpgrade||!1,this.binaryType=null,this.onlyBinaryUpgrades=t.onlyBinaryUpgrades,this.perMessageDeflate=!1!==t.perMessageDeflate&&(t.perMessageDeflate||{}),!0===this.perMessageDeflate&&(this.perMessageDeflate={}),this.perMessageDeflate&&null==this.perMessageDeflate.threshold&&(this.perMessageDeflate.threshold=1024),this.pfx=t.pfx||null,this.key=t.key||null,this.passphrase=t.passphrase||null,this.cert=t.cert||null,this.ca=t.ca||null,this.ciphers=t.ciphers||null,this.rejectUnauthorized=void 0===t.rejectUnauthorized||t.rejectUnauthorized,this.forceNode=!!t.forceNode,this.isReactNative="undefined"!=typeof navigator&&"string"==typeof navigator.product&&"reactnative"===navigator.product.toLowerCase(),("undefined"==typeof self||this.isReactNative)&&(t.extraHeaders&&Object.keys(t.extraHeaders).length>0&&(this.extraHeaders=t.extraHeaders),t.localAddress&&(this.localAddress=t.localAddress)),this.id=null,this.upgrades=null,this.pingInterval=null,this.pingTimeout=null,this.pingIntervalTimer=null,this.pingTimeoutTimer=null,this.open()}e.exports=l,l.priorWebsocketSuccess=!1,o(l.prototype),l.protocol=a.protocol,l.Socket=l,l.Transport=n(5344),l.transports=n(8113),l.parser=n(90820),l.prototype.createTransport=function(e){i('creating transport "%s"',e);var t=function(e){var t={};for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}(this.query);t.EIO=a.protocol,t.transport=e;var n=this.transportOptions[e]||{};return this.id&&(t.sid=this.id),new r[e]({query:t,socket:this,agent:n.agent||this.agent,hostname:n.hostname||this.hostname,port:n.port||this.port,secure:n.secure||this.secure,path:n.path||this.path,forceJSONP:n.forceJSONP||this.forceJSONP,jsonp:n.jsonp||this.jsonp,forceBase64:n.forceBase64||this.forceBase64,enablesXDR:n.enablesXDR||this.enablesXDR,withCredentials:n.withCredentials||this.withCredentials,timestampRequests:n.timestampRequests||this.timestampRequests,timestampParam:n.timestampParam||this.timestampParam,policyPort:n.policyPort||this.policyPort,pfx:n.pfx||this.pfx,key:n.key||this.key,passphrase:n.passphrase||this.passphrase,cert:n.cert||this.cert,ca:n.ca||this.ca,ciphers:n.ciphers||this.ciphers,rejectUnauthorized:n.rejectUnauthorized||this.rejectUnauthorized,perMessageDeflate:n.perMessageDeflate||this.perMessageDeflate,extraHeaders:n.extraHeaders||this.extraHeaders,forceNode:n.forceNode||this.forceNode,localAddress:n.localAddress||this.localAddress,requestTimeout:n.requestTimeout||this.requestTimeout,protocols:n.protocols||void 0,isReactNative:this.isReactNative})},l.prototype.open=function(){var e;if(this.rememberUpgrade&&l.priorWebsocketSuccess&&-1!==this.transports.indexOf("websocket"))e="websocket";else{if(0===this.transports.length){var t=this;return void setTimeout((function(){t.emit("error","No transports available")}),0)}e=this.transports[0]}this.readyState="opening";try{e=this.createTransport(e)}catch(n){return this.transports.shift(),void this.open()}e.open(),this.setTransport(e)},l.prototype.setTransport=function(e){i("setting transport %s",e.name);var t=this;this.transport&&(i("clearing existing transport %s",this.transport.name),this.transport.removeAllListeners()),this.transport=e,e.on("drain",(function(){t.onDrain()})).on("packet",(function(e){t.onPacket(e)})).on("error",(function(e){t.onError(e)})).on("close",(function(){t.onClose("transport close")}))},l.prototype.probe=function(e){i('probing transport "%s"',e);var t=this.createTransport(e,{probe:1}),n=!1,r=this;function o(){if(r.onlyBinaryUpgrades){var o=!this.supportsBinary&&r.transport.supportsBinary;n=n||o}n||(i('probe transport "%s" opened',e),t.send([{type:"ping",data:"probe"}]),t.once("packet",(function(o){if(!n)if("pong"===o.type&&"probe"===o.data){if(i('probe transport "%s" pong',e),r.upgrading=!0,r.emit("upgrading",t),!t)return;l.priorWebsocketSuccess="websocket"===t.name,i('pausing current transport "%s"',r.transport.name),r.transport.pause((function(){n||"closed"!==r.readyState&&(i("changing transport and sending upgrade packet"),p(),r.setTransport(t),t.send([{type:"upgrade"}]),r.emit("upgrade",t),t=null,r.upgrading=!1,r.flush())}))}else{i('probe transport "%s" failed',e);var s=new Error("probe error");s.transport=t.name,r.emit("upgradeError",s)}})))}function s(){n||(n=!0,p(),t.close(),t=null)}function a(n){var o=new Error("probe error: "+n);o.transport=t.name,s(),i('probe transport "%s" failed because of error: %s',e,n),r.emit("upgradeError",o)}function u(){a("transport closed")}function c(){a("socket closed")}function d(e){t&&e.name!==t.name&&(i('"%s" works - aborting "%s"',e.name,t.name),s())}function p(){t.removeListener("open",o),t.removeListener("error",a),t.removeListener("close",u),r.removeListener("close",c),r.removeListener("upgrading",d)}l.priorWebsocketSuccess=!1,t.once("open",o),t.once("error",a),t.once("close",u),this.once("close",c),this.once("upgrading",d),t.open()},l.prototype.onOpen=function(){if(i("socket open"),this.readyState="open",l.priorWebsocketSuccess="websocket"===this.transport.name,this.emit("open"),this.flush(),"open"===this.readyState&&this.upgrade&&this.transport.pause){i("starting upgrade probes");for(var e=0,t=this.upgrades.length;e<t;e++)this.probe(this.upgrades[e])}},l.prototype.onPacket=function(e){if("opening"===this.readyState||"open"===this.readyState||"closing"===this.readyState)switch(i('socket receive: type "%s", data "%s"',e.type,e.data),this.emit("packet",e),this.emit("heartbeat"),e.type){case"open":this.onHandshake(JSON.parse(e.data));break;case"pong":this.setPing(),this.emit("pong");break;case"error":var t=new Error("server error");t.code=e.data,this.onError(t);break;case"message":this.emit("data",e.data),this.emit("message",e.data)}else i('packet received with socket readyState "%s"',this.readyState)},l.prototype.onHandshake=function(e){this.emit("handshake",e),this.id=e.sid,this.transport.query.sid=e.sid,this.upgrades=this.filterUpgrades(e.upgrades),this.pingInterval=e.pingInterval,this.pingTimeout=e.pingTimeout,this.onOpen(),"closed"!==this.readyState&&(this.setPing(),this.removeListener("heartbeat",this.onHeartbeat),this.on("heartbeat",this.onHeartbeat))},l.prototype.onHeartbeat=function(e){clearTimeout(this.pingTimeoutTimer);var t=this;t.pingTimeoutTimer=setTimeout((function(){"closed"!==t.readyState&&t.onClose("ping timeout")}),e||t.pingInterval+t.pingTimeout)},l.prototype.setPing=function(){var e=this;clearTimeout(e.pingIntervalTimer),e.pingIntervalTimer=setTimeout((function(){i("writing ping packet - expecting pong within %sms",e.pingTimeout),e.ping(),e.onHeartbeat(e.pingTimeout)}),e.pingInterval)},l.prototype.ping=function(){var e=this;this.sendPacket("ping",(function(){e.emit("ping")}))},l.prototype.onDrain=function(){this.writeBuffer.splice(0,this.prevBufferLen),this.prevBufferLen=0,0===this.writeBuffer.length?this.emit("drain"):this.flush()},l.prototype.flush=function(){"closed"!==this.readyState&&this.transport.writable&&!this.upgrading&&this.writeBuffer.length&&(i("flushing %d packets in socket",this.writeBuffer.length),this.transport.send(this.writeBuffer),this.prevBufferLen=this.writeBuffer.length,this.emit("flush"))},l.prototype.write=l.prototype.send=function(e,t,n){return this.sendPacket("message",e,t,n),this},l.prototype.sendPacket=function(e,t,n,r){if("function"==typeof t&&(r=t,t=void 0),"function"==typeof n&&(r=n,n=null),"closing"!==this.readyState&&"closed"!==this.readyState){(n=n||{}).compress=!1!==n.compress;var o={type:e,data:t,options:n};this.emit("packetCreate",o),this.writeBuffer.push(o),r&&this.once("flush",r),this.flush()}},l.prototype.close=function(){if("opening"===this.readyState||"open"===this.readyState){this.readyState="closing";var e=this;this.writeBuffer.length?this.once("drain",(function(){this.upgrading?r():t()})):this.upgrading?r():t()}function t(){e.onClose("forced close"),i("socket closing - telling transport to close"),e.transport.close()}function n(){e.removeListener("upgrade",n),e.removeListener("upgradeError",n),t()}function r(){e.once("upgrade",n),e.once("upgradeError",n)}return this},l.prototype.onError=function(e){i("socket error %j",e),l.priorWebsocketSuccess=!1,this.emit("error",e),this.onClose("transport error",e)},l.prototype.onClose=function(e,t){if("opening"===this.readyState||"open"===this.readyState||"closing"===this.readyState){i('socket close with reason: "%s"',e);clearTimeout(this.pingIntervalTimer),clearTimeout(this.pingTimeoutTimer),this.transport.removeAllListeners("close"),this.transport.close(),this.transport.removeAllListeners(),this.readyState="closed",this.id=null,this.emit("close",e,t),this.writeBuffer=[],this.prevBufferLen=0}},l.prototype.filterUpgrades=function(e){for(var t=[],n=0,r=e.length;n<r;n++)~s(this.transports,e[n])&&t.push(e[n]);return t}},5344:(e,t,n)=>{var r=n(90820),o=n(17056);function i(e){this.path=e.path,this.hostname=e.hostname,this.port=e.port,this.secure=e.secure,this.query=e.query,this.timestampParam=e.timestampParam,this.timestampRequests=e.timestampRequests,this.readyState="",this.agent=e.agent||!1,this.socket=e.socket,this.enablesXDR=e.enablesXDR,this.withCredentials=e.withCredentials,this.pfx=e.pfx,this.key=e.key,this.passphrase=e.passphrase,this.cert=e.cert,this.ca=e.ca,this.ciphers=e.ciphers,this.rejectUnauthorized=e.rejectUnauthorized,this.forceNode=e.forceNode,this.isReactNative=e.isReactNative,this.extraHeaders=e.extraHeaders,this.localAddress=e.localAddress}e.exports=i,o(i.prototype),i.prototype.onError=function(e,t){var n=new Error(e);return n.type="TransportError",n.description=t,this.emit("error",n),this},i.prototype.open=function(){return"closed"!==this.readyState&&""!==this.readyState||(this.readyState="opening",this.doOpen()),this},i.prototype.close=function(){return"opening"!==this.readyState&&"open"!==this.readyState||(this.doClose(),this.onClose()),this},i.prototype.send=function(e){if("open"!==this.readyState)throw new Error("Transport not open");this.write(e)},i.prototype.onOpen=function(){this.readyState="open",this.writable=!0,this.emit("open")},i.prototype.onData=function(e){var t=r.decodePacket(e,this.socket.binaryType);this.onPacket(t)},i.prototype.onPacket=function(e){this.emit("packet",e)},i.prototype.onClose=function(){this.readyState="closed",this.emit("close")}},8113:(e,t,n)=>{var r=n(26891),o=n(91962),i=n(18320),s=n(68479);t.polling=function(e){var t=!1,n=!1,s=!1!==e.jsonp;if("undefined"!=typeof location){var a="https:"===location.protocol,u=location.port;u||(u=a?443:80),t=e.hostname!==location.hostname||u!==e.port,n=e.secure!==a}if(e.xdomain=t,e.xscheme=n,"open"in new r(e)&&!e.forceJSONP)return new o(e);if(!s)throw new Error("JSONP disabled");return new i(e)},t.websocket=s},18320:(e,t,n)=>{var r=n(65869),o=n(99238);e.exports=l;var i,s=/\n/g,a=/\\n/g;function u(){}function c(){return"undefined"!=typeof self?self:"undefined"!=typeof window||"undefined"!=typeof window?window:{}}function l(e){if(r.call(this,e),this.query=this.query||{},!i){var t=c();i=t.___eio=t.___eio||[]}this.index=i.length;var n=this;i.push((function(e){n.onData(e)})),this.query.j=this.index,"function"==typeof addEventListener&&addEventListener("beforeunload",(function(){n.script&&(n.script.onerror=u)}),!1)}o(l,r),l.prototype.supportsBinary=!1,l.prototype.doClose=function(){this.script&&(this.script.parentNode.removeChild(this.script),this.script=null),this.form&&(this.form.parentNode.removeChild(this.form),this.form=null,this.iframe=null),r.prototype.doClose.call(this)},l.prototype.doPoll=function(){var e=this,t=document.createElement("script");this.script&&(this.script.parentNode.removeChild(this.script),this.script=null),t.async=!0,t.src=this.uri(),t.onerror=function(t){e.onError("jsonp poll error",t)};var n=document.getElementsByTagName("script")[0];n?n.parentNode.insertBefore(t,n):(document.head||document.body).appendChild(t),this.script=t,"undefined"!=typeof navigator&&/gecko/i.test(navigator.userAgent)&&setTimeout((function(){var e=document.createElement("iframe");document.body.appendChild(e),document.body.removeChild(e)}),100)},l.prototype.doWrite=function(e,t){var n=this;if(!this.form){var r,o=document.createElement("form"),i=document.createElement("textarea"),u=this.iframeId="eio_iframe_"+this.index;o.className="socketio",o.style.position="absolute",o.style.top="-1000px",o.style.left="-1000px",o.target=u,o.method="POST",o.setAttribute("accept-charset","utf-8"),i.name="d",o.appendChild(i),document.body.appendChild(o),this.form=o,this.area=i}function c(){l(),t()}function l(){if(n.iframe)try{n.form.removeChild(n.iframe)}catch(t){n.onError("jsonp polling iframe removal error",t)}try{var e='<iframe src="javascript:0" name="'+n.iframeId+'">';r=document.createElement(e)}catch(t){(r=document.createElement("iframe")).name=n.iframeId,r.src="javascript:0"}r.id=n.iframeId,n.form.appendChild(r),n.iframe=r}this.form.action=this.uri(),l(),e=e.replace(a,"\\\n"),this.area.value=e.replace(s,"\\n");try{this.form.submit()}catch(d){}this.iframe.attachEvent?this.iframe.onreadystatechange=function(){"complete"===n.iframe.readyState&&c()}:this.iframe.onload=c}},91962:(e,t,n)=>{var r=n(26891),o=n(65869),i=n(17056),s=n(99238),a=n(39712)("engine.io-client:polling-xhr");function u(){}function c(e){if(o.call(this,e),this.requestTimeout=e.requestTimeout,this.extraHeaders=e.extraHeaders,"undefined"!=typeof location){var t="https:"===location.protocol,n=location.port;n||(n=t?443:80),this.xd="undefined"!=typeof location&&e.hostname!==location.hostname||n!==e.port,this.xs=e.secure!==t}}function l(e){this.method=e.method||"GET",this.uri=e.uri,this.xd=!!e.xd,this.xs=!!e.xs,this.async=!1!==e.async,this.data=void 0!==e.data?e.data:null,this.agent=e.agent,this.isBinary=e.isBinary,this.supportsBinary=e.supportsBinary,this.enablesXDR=e.enablesXDR,this.withCredentials=e.withCredentials,this.requestTimeout=e.requestTimeout,this.pfx=e.pfx,this.key=e.key,this.passphrase=e.passphrase,this.cert=e.cert,this.ca=e.ca,this.ciphers=e.ciphers,this.rejectUnauthorized=e.rejectUnauthorized,this.extraHeaders=e.extraHeaders,this.create()}if(e.exports=c,e.exports.Request=l,s(c,o),c.prototype.supportsBinary=!0,c.prototype.request=function(e){return(e=e||{}).uri=this.uri(),e.xd=this.xd,e.xs=this.xs,e.agent=this.agent||!1,e.supportsBinary=this.supportsBinary,e.enablesXDR=this.enablesXDR,e.withCredentials=this.withCredentials,e.pfx=this.pfx,e.key=this.key,e.passphrase=this.passphrase,e.cert=this.cert,e.ca=this.ca,e.ciphers=this.ciphers,e.rejectUnauthorized=this.rejectUnauthorized,e.requestTimeout=this.requestTimeout,e.extraHeaders=this.extraHeaders,new l(e)},c.prototype.doWrite=function(e,t){var n="string"!=typeof e&&void 0!==e,r=this.request({method:"POST",data:e,isBinary:n}),o=this;r.on("success",t),r.on("error",(function(e){o.onError("xhr post error",e)})),this.sendXhr=r},c.prototype.doPoll=function(){a("xhr poll");var e=this.request(),t=this;e.on("data",(function(e){t.onData(e)})),e.on("error",(function(e){t.onError("xhr poll error",e)})),this.pollXhr=e},i(l.prototype),l.prototype.create=function(){var e={agent:this.agent,xdomain:this.xd,xscheme:this.xs,enablesXDR:this.enablesXDR};e.pfx=this.pfx,e.key=this.key,e.passphrase=this.passphrase,e.cert=this.cert,e.ca=this.ca,e.ciphers=this.ciphers,e.rejectUnauthorized=this.rejectUnauthorized;var t=this.xhr=new r(e),n=this;try{a("xhr open %s: %s",this.method,this.uri),t.open(this.method,this.uri,this.async);try{if(this.extraHeaders)for(var o in t.setDisableHeaderCheck&&t.setDisableHeaderCheck(!0),this.extraHeaders)this.extraHeaders.hasOwnProperty(o)&&t.setRequestHeader(o,this.extraHeaders[o])}catch(i){}if("POST"===this.method)try{this.isBinary?t.setRequestHeader("Content-type","application/octet-stream"):t.setRequestHeader("Content-type","text/plain;charset=UTF-8")}catch(i){}try{t.setRequestHeader("Accept","*/*")}catch(i){}"withCredentials"in t&&(t.withCredentials=this.withCredentials),this.requestTimeout&&(t.timeout=this.requestTimeout),this.hasXDR()?(t.onload=function(){n.onLoad()},t.onerror=function(){n.onError(t.responseText)}):t.onreadystatechange=function(){if(2===t.readyState)try{var e=t.getResponseHeader("Content-Type");(n.supportsBinary&&"application/octet-stream"===e||"application/octet-stream; charset=UTF-8"===e)&&(t.responseType="arraybuffer")}catch(i){}4===t.readyState&&(200===t.status||1223===t.status?n.onLoad():setTimeout((function(){n.onError("number"==typeof t.status?t.status:0)}),0))},a("xhr data %s",this.data),t.send(this.data)}catch(i){return void setTimeout((function(){n.onError(i)}),0)}"undefined"!=typeof document&&(this.index=l.requestsCount++,l.requests[this.index]=this)},l.prototype.onSuccess=function(){this.emit("success"),this.cleanup()},l.prototype.onData=function(e){this.emit("data",e),this.onSuccess()},l.prototype.onError=function(e){this.emit("error",e),this.cleanup(!0)},l.prototype.cleanup=function(e){if(void 0!==this.xhr&&null!==this.xhr){if(this.hasXDR()?this.xhr.onload=this.xhr.onerror=u:this.xhr.onreadystatechange=u,e)try{this.xhr.abort()}catch(t){}"undefined"!=typeof document&&delete l.requests[this.index],this.xhr=null}},l.prototype.onLoad=function(){var e;try{var t;try{t=this.xhr.getResponseHeader("Content-Type")}catch(n){}e=("application/octet-stream"===t||"application/octet-stream; charset=UTF-8"===t)&&this.xhr.response||this.xhr.responseText}catch(n){this.onError(n)}null!=e&&this.onData(e)},l.prototype.hasXDR=function(){return"undefined"!=typeof XDomainRequest&&!this.xs&&this.enablesXDR},l.prototype.abort=function(){this.cleanup()},l.requestsCount=0,l.requests={},"undefined"!=typeof document)if("function"==typeof attachEvent)attachEvent("onunload",p);else if("function"==typeof addEventListener){var d="onpagehide"in self?"pagehide":"unload";addEventListener(d,p,!1)}function p(){for(var e in l.requests)l.requests.hasOwnProperty(e)&&l.requests[e].abort()}},65869:(e,t,n)=>{var r=n(5344),o=n(54355),i=n(90820),s=n(99238),a=n(34973),u=n(39712)("engine.io-client:polling");e.exports=l;var c=null!=new(n(26891))({xdomain:!1}).responseType;function l(e){var t=e&&e.forceBase64;c&&!t||(this.supportsBinary=!1),r.call(this,e)}s(l,r),l.prototype.name="polling",l.prototype.doOpen=function(){this.poll()},l.prototype.pause=function(e){var t=this;function n(){u("paused"),t.readyState="paused",e()}if(this.readyState="pausing",this.polling||!this.writable){var r=0;this.polling&&(u("we are currently polling - waiting to pause"),r++,this.once("pollComplete",(function(){u("pre-pause polling complete"),--r||n()}))),this.writable||(u("we are currently writing - waiting to pause"),r++,this.once("drain",(function(){u("pre-pause writing complete"),--r||n()})))}else n()},l.prototype.poll=function(){u("polling"),this.polling=!0,this.doPoll(),this.emit("poll")},l.prototype.onData=function(e){var t=this;u("polling got data %s",e);i.decodePayload(e,this.socket.binaryType,(function(e,n,r){if("opening"===t.readyState&&t.onOpen(),"close"===e.type)return t.onClose(),!1;t.onPacket(e)})),"closed"!==this.readyState&&(this.polling=!1,this.emit("pollComplete"),"open"===this.readyState?this.poll():u('ignoring poll - transport state "%s"',this.readyState))},l.prototype.doClose=function(){var e=this;function t(){u("writing close packet"),e.write([{type:"close"}])}"open"===this.readyState?(u("transport open - closing"),t()):(u("transport not open - deferring close"),this.once("open",t))},l.prototype.write=function(e){var t=this;this.writable=!1;var n=function(){t.writable=!0,t.emit("drain")};i.encodePayload(e,this.supportsBinary,(function(e){t.doWrite(e,n)}))},l.prototype.uri=function(){var e=this.query||{},t=this.secure?"https":"http",n="";return!1!==this.timestampRequests&&(e[this.timestampParam]=a()),this.supportsBinary||e.sid||(e.b64=1),e=o.encode(e),this.port&&("https"===t&&443!==Number(this.port)||"http"===t&&80!==Number(this.port))&&(n=":"+this.port),e.length&&(e="?"+e),t+"://"+(-1!==this.hostname.indexOf(":")?"["+this.hostname+"]":this.hostname)+n+this.path+e}},68479:(e,t,n)=>{var r,o,i=n(5344),s=n(90820),a=n(54355),u=n(99238),c=n(34973),l=n(39712)("engine.io-client:websocket");if("undefined"!=typeof WebSocket?r=WebSocket:"undefined"!=typeof self&&(r=self.WebSocket||self.MozWebSocket),"undefined"==typeof window)try{o=n(18864)}catch(f){}var d=r||o;function p(e){e&&e.forceBase64&&(this.supportsBinary=!1),this.perMessageDeflate=e.perMessageDeflate,this.usingBrowserWebSocket=r&&!e.forceNode,this.protocols=e.protocols,this.usingBrowserWebSocket||(d=o),i.call(this,e)}e.exports=p,u(p,i),p.prototype.name="websocket",p.prototype.supportsBinary=!0,p.prototype.doOpen=function(){if(this.check()){var e=this.uri(),t=this.protocols,n={agent:this.agent,perMessageDeflate:this.perMessageDeflate};n.pfx=this.pfx,n.key=this.key,n.passphrase=this.passphrase,n.cert=this.cert,n.ca=this.ca,n.ciphers=this.ciphers,n.rejectUnauthorized=this.rejectUnauthorized,this.extraHeaders&&(n.headers=this.extraHeaders),this.localAddress&&(n.localAddress=this.localAddress);try{this.ws=this.usingBrowserWebSocket&&!this.isReactNative?t?new d(e,t):new d(e):new d(e,t,n)}catch(r){return this.emit("error",r)}void 0===this.ws.binaryType&&(this.supportsBinary=!1),this.ws.supports&&this.ws.supports.binary?(this.supportsBinary=!0,this.ws.binaryType="nodebuffer"):this.ws.binaryType="arraybuffer",this.addEventListeners()}},p.prototype.addEventListeners=function(){var e=this;this.ws.onopen=function(){e.onOpen()},this.ws.onclose=function(){e.onClose()},this.ws.onmessage=function(t){e.onData(t.data)},this.ws.onerror=function(t){e.onError("websocket error",t)}},p.prototype.write=function(e){var t=this;this.writable=!1;for(var n=e.length,r=0,o=n;r<o;r++)!function(e){s.encodePacket(e,t.supportsBinary,(function(r){if(!t.usingBrowserWebSocket){var o={};if(e.options&&(o.compress=e.options.compress),t.perMessageDeflate)("string"==typeof r?Buffer.byteLength(r):r.length)<t.perMessageDeflate.threshold&&(o.compress=!1)}try{t.usingBrowserWebSocket?t.ws.send(r):t.ws.send(r,o)}catch(f){l("websocket closed before onclose event")}--n||i()}))}(e[r]);function i(){t.emit("flush"),setTimeout((function(){t.writable=!0,t.emit("drain")}),0)}},p.prototype.onClose=function(){i.prototype.onClose.call(this)},p.prototype.doClose=function(){void 0!==this.ws&&this.ws.close()},p.prototype.uri=function(){var e=this.query||{},t=this.secure?"wss":"ws",n="";return this.port&&("wss"===t&&443!==Number(this.port)||"ws"===t&&80!==Number(this.port))&&(n=":"+this.port),this.timestampRequests&&(e[this.timestampParam]=c()),this.supportsBinary||(e.b64=1),(e=a.encode(e)).length&&(e="?"+e),t+"://"+(-1!==this.hostname.indexOf(":")?"["+this.hostname+"]":this.hostname)+n+this.path+e},p.prototype.check=function(){return!(!d||"__initialize"in d&&this.name===p.prototype.name)}},26891:(e,t,n)=>{var r=n(95460);e.exports=function(e){var t=e.xdomain,n=e.xscheme,o=e.enablesXDR;try{if("undefined"!=typeof XMLHttpRequest&&(!t||r))return new XMLHttpRequest}catch(i){}try{if("undefined"!=typeof XDomainRequest&&!n&&o)return new XDomainRequest}catch(i){}if(!t)try{return new(self[["Active"].concat("Object").join("X")])("Microsoft.XMLHTTP")}catch(i){}}},17056:e=>{function t(e){if(e)return function(e){for(var n in t.prototype)e[n]=t.prototype[n];return e}(e)}e.exports=t,t.prototype.on=t.prototype.addEventListener=function(e,t){return this._callbacks=this._callbacks||{},(this._callbacks["$"+e]=this._callbacks["$"+e]||[]).push(t),this},t.prototype.once=function(e,t){function n(){this.off(e,n),t.apply(this,arguments)}return n.fn=t,this.on(e,n),this},t.prototype.off=t.prototype.removeListener=t.prototype.removeAllListeners=t.prototype.removeEventListener=function(e,t){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var n,r=this._callbacks["$"+e];if(!r)return this;if(1==arguments.length)return delete this._callbacks["$"+e],this;for(var o=0;o<r.length;o++)if((n=r[o])===t||n.fn===t){r.splice(o,1);break}return this},t.prototype.emit=function(e){this._callbacks=this._callbacks||{};var t=[].slice.call(arguments,1),n=this._callbacks["$"+e];if(n)for(var r=0,o=(n=n.slice(0)).length;r<o;++r)n[r].apply(this,t);return this},t.prototype.listeners=function(e){return this._callbacks=this._callbacks||{},this._callbacks["$"+e]||[]},t.prototype.hasListeners=function(e){return!!this.listeners(e).length}},90820:(e,t,n)=>{var r,o=n(62298),i=n(54632),s=n(50696),a=n(61777),u=n(68544);"undefined"!=typeof ArrayBuffer&&(r=n(28328));var c="undefined"!=typeof navigator&&/Android/i.test(navigator.userAgent),l="undefined"!=typeof navigator&&/PhantomJS/i.test(navigator.userAgent),d=c||l;t.protocol=3;var p=t.packets={open:0,close:1,ping:2,pong:3,message:4,upgrade:5,noop:6},f=o(p),h={type:"error",data:"parser error"},m=n(23055);function g(e,t,n){for(var r=new Array(e.length),o=a(e.length,n),i=function(e,n,o){t(n,(function(t,n){r[e]=n,o(t,r)}))},s=0;s<e.length;s++)i(s,e[s],o)}t.encodePacket=function(e,n,r,o){"function"==typeof n&&(o=n,n=!1),"function"==typeof r&&(o=r,r=null);var i=void 0===e.data?void 0:e.data.buffer||e.data;if("undefined"!=typeof ArrayBuffer&&i instanceof ArrayBuffer)return function(e,n,r){if(!n)return t.encodeBase64Packet(e,r);var o=e.data,i=new Uint8Array(o),s=new Uint8Array(1+o.byteLength);s[0]=p[e.type];for(var a=0;a<i.length;a++)s[a+1]=i[a];return r(s.buffer)}(e,n,o);if(void 0!==m&&i instanceof m)return function(e,n,r){if(!n)return t.encodeBase64Packet(e,r);if(d)return function(e,n,r){if(!n)return t.encodeBase64Packet(e,r);var o=new FileReader;return o.onload=function(){t.encodePacket({type:e.type,data:o.result},n,!0,r)},o.readAsArrayBuffer(e.data)}(e,n,r);var o=new Uint8Array(1);o[0]=p[e.type];var i=new m([o.buffer,e.data]);return r(i)}(e,n,o);if(i&&i.base64)return function(e,n){var r="b"+t.packets[e.type]+e.data.data;return n(r)}(e,o);var s=p[e.type];return void 0!==e.data&&(s+=r?u.encode(String(e.data),{strict:!1}):String(e.data)),o(""+s)},t.encodeBase64Packet=function(e,n){var r,o="b"+t.packets[e.type];if(void 0!==m&&e.data instanceof m){var i=new FileReader;return i.onload=function(){var e=i.result.split(",")[1];n(o+e)},i.readAsDataURL(e.data)}try{r=String.fromCharCode.apply(null,new Uint8Array(e.data))}catch(c){for(var s=new Uint8Array(e.data),a=new Array(s.length),u=0;u<s.length;u++)a[u]=s[u];r=String.fromCharCode.apply(null,a)}return o+=btoa(r),n(o)},t.decodePacket=function(e,n,r){if(void 0===e)return h;if("string"==typeof e){if("b"===e.charAt(0))return t.decodeBase64Packet(e.substr(1),n);if(r&&!1===(e=function(e){try{e=u.decode(e,{strict:!1})}catch(t){return!1}return e}(e)))return h;var o=e.charAt(0);return Number(o)==o&&f[o]?e.length>1?{type:f[o],data:e.substring(1)}:{type:f[o]}:h}o=new Uint8Array(e)[0];var i=s(e,1);return m&&"blob"===n&&(i=new m([i])),{type:f[o],data:i}},t.decodeBase64Packet=function(e,t){var n=f[e.charAt(0)];if(!r)return{type:n,data:{base64:!0,data:e.substr(1)}};var o=r.decode(e.substr(1));return"blob"===t&&m&&(o=new m([o])),{type:n,data:o}},t.encodePayload=function(e,n,r){"function"==typeof n&&(r=n,n=null);var o=i(e);if(n&&o)return m&&!d?t.encodePayloadAsBlob(e,r):t.encodePayloadAsArrayBuffer(e,r);if(!e.length)return r("0:");g(e,(function(e,r){t.encodePacket(e,!!o&&n,!1,(function(e){r(null,function(e){return e.length+":"+e}(e))}))}),(function(e,t){return r(t.join(""))}))},t.decodePayload=function(e,n,r){if("string"!=typeof e)return t.decodePayloadAsBinary(e,n,r);var o;if("function"==typeof n&&(r=n,n=null),""===e)return r(h,0,1);for(var i,s,a="",u=0,c=e.length;u<c;u++){var l=e.charAt(u);if(":"===l){if(""===a||a!=(i=Number(a)))return r(h,0,1);if(a!=(s=e.substr(u+1,i)).length)return r(h,0,1);if(s.length){if(o=t.decodePacket(s,n,!1),h.type===o.type&&h.data===o.data)return r(h,0,1);if(!1===r(o,u+i,c))return}u+=i,a=""}else a+=l}return""!==a?r(h,0,1):void 0},t.encodePayloadAsArrayBuffer=function(e,n){if(!e.length)return n(new ArrayBuffer(0));g(e,(function(e,n){t.encodePacket(e,!0,!0,(function(e){return n(null,e)}))}),(function(e,t){var r=t.reduce((function(e,t){var n;return e+(n="string"==typeof t?t.length:t.byteLength).toString().length+n+2}),0),o=new Uint8Array(r),i=0;return t.forEach((function(e){var t="string"==typeof e,n=e;if(t){for(var r=new Uint8Array(e.length),s=0;s<e.length;s++)r[s]=e.charCodeAt(s);n=r.buffer}o[i++]=t?0:1;var a=n.byteLength.toString();for(s=0;s<a.length;s++)o[i++]=parseInt(a[s]);o[i++]=255;for(r=new Uint8Array(n),s=0;s<r.length;s++)o[i++]=r[s]})),n(o.buffer)}))},t.encodePayloadAsBlob=function(e,n){g(e,(function(e,n){t.encodePacket(e,!0,!0,(function(e){var t=new Uint8Array(1);if(t[0]=1,"string"==typeof e){for(var r=new Uint8Array(e.length),o=0;o<e.length;o++)r[o]=e.charCodeAt(o);e=r.buffer,t[0]=0}var i=(e instanceof ArrayBuffer?e.byteLength:e.size).toString(),s=new Uint8Array(i.length+1);for(o=0;o<i.length;o++)s[o]=parseInt(i[o]);if(s[i.length]=255,m){var a=new m([t.buffer,s.buffer,e]);n(null,a)}}))}),(function(e,t){return n(new m(t))}))},t.decodePayloadAsBinary=function(e,n,r){"function"==typeof n&&(r=n,n=null);for(var o=e,i=[];o.byteLength>0;){for(var a=new Uint8Array(o),u=0===a[0],c="",l=1;255!==a[l];l++){if(c.length>310)return r(h,0,1);c+=a[l]}o=s(o,2+c.length),c=parseInt(c);var d=s(o,0,c);if(u)try{d=String.fromCharCode.apply(null,new Uint8Array(d))}catch(m){var p=new Uint8Array(d);d="";for(l=0;l<p.length;l++)d+=String.fromCharCode(p[l])}i.push(d),o=s(o,c)}var f=i.length;i.forEach((function(e,o){r(t.decodePacket(e,n,!0),o,f)}))}},62298:e=>{e.exports=Object.keys||function(e){var t=[],n=Object.prototype.hasOwnProperty;for(var r in e)n.call(e,r)&&t.push(r);return t}},68544:e=>{
13
  /*! https://mths.be/utf8js v2.1.2 by @mathias */
14
  var t,n,r,o=String.fromCharCode;function i(e){for(var t,n,r=[],o=0,i=e.length;o<i;)(t=e.charCodeAt(o++))>=55296&&t<=56319&&o<i?56320==(64512&(n=e.charCodeAt(o++)))?r.push(((1023&t)<<10)+(1023&n)+65536):(r.push(t),o--):r.push(t);return r}function s(e,t){if(e>=55296&&e<=57343){if(t)throw Error("Lone surrogate U+"+e.toString(16).toUpperCase()+" is not a scalar value");return!1}return!0}function a(e,t){return o(e>>t&63|128)}function u(e,t){if(0==(4294967168&e))return o(e);var n="";return 0==(4294965248&e)?n=o(e>>6&31|192):0==(4294901760&e)?(s(e,t)||(e=65533),n=o(e>>12&15|224),n+=a(e,6)):0==(4292870144&e)&&(n=o(e>>18&7|240),n+=a(e,12),n+=a(e,6)),n+=o(63&e|128)}function c(){if(r>=n)throw Error("Invalid byte index");var e=255&t[r];if(r++,128==(192&e))return 63&e;throw Error("Invalid continuation byte")}function l(e){var o,i;if(r>n)throw Error("Invalid byte index");if(r==n)return!1;if(o=255&t[r],r++,0==(128&o))return o;if(192==(224&o)){if((i=(31&o)<<6|c())>=128)return i;throw Error("Invalid continuation byte")}if(224==(240&o)){if((i=(15&o)<<12|c()<<6|c())>=2048)return s(i,e)?i:65533;throw Error("Invalid continuation byte")}if(240==(248&o)&&(i=(7&o)<<18|c()<<12|c()<<6|c())>=65536&&i<=1114111)return i;throw Error("Invalid UTF-8 detected")}e.exports={version:"2.1.2",encode:function(e,t){for(var n=!1!==(t=t||{}).strict,r=i(e),o=r.length,s=-1,a="";++s<o;)a+=u(r[s],n);return a},decode:function(e,s){var a=!1!==(s=s||{}).strict;t=i(e),n=t.length,r=0;for(var u,c=[];!1!==(u=l(a));)c.push(u);return function(e){for(var t,n=e.length,r=-1,i="";++r<n;)(t=e[r])>65535&&(i+=o((t-=65536)>>>10&1023|55296),t=56320|1023&t),i+=o(t);return i}(c)}}},22699: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 o=Number.isNaN||function(e){return e!=e};function i(){i.init.call(this)}e.exports=i,e.exports.once=function(e,t){return new Promise((function(n,r){function o(n){e.removeListener(t,i),r(n)}function i(){"function"==typeof e.removeListener&&e.removeListener("error",o),n([].slice.call(arguments))}m(e,t,i,{once:!0}),"error"!==t&&function(e,t,n){"function"==typeof e.on&&m(e,"error",t,n)}(e,o,{once:!0})}))},i.EventEmitter=i,i.prototype._events=void 0,i.prototype._eventsCount=0,i.prototype._maxListeners=void 0;var s=10;function a(e){if("function"!=typeof e)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof e)}function u(e){return void 0===e._maxListeners?i.defaultMaxListeners:e._maxListeners}function c(e,t,n,r){var o,i,s,c;if(a(n),void 0===(i=e._events)?(i=e._events=Object.create(null),e._eventsCount=0):(void 0!==i.newListener&&(e.emit("newListener",t,n.listener?n.listener:n),i=e._events),s=i[t]),void 0===s)s=i[t]=n,++e._eventsCount;else if("function"==typeof s?s=i[t]=r?[n,s]:[s,n]:r?s.unshift(n):s.push(n),(o=u(e))>0&&s.length>o&&!s.warned){s.warned=!0;var l=new Error("Possible EventEmitter memory leak detected. "+s.length+" "+String(t)+" listeners added. Use emitter.setMaxListeners() to increase limit");l.name="MaxListenersExceededWarning",l.emitter=e,l.type=t,l.count=s.length,c=l,console&&console.warn&&console.warn(c)}return e}function l(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function d(e,t,n){var r={fired:!1,wrapFn:void 0,target:e,type:t,listener:n},o=l.bind(r);return o.listener=n,r.wrapFn=o,o}function p(e,t,n){var r=e._events;if(void 0===r)return[];var o=r[t];return void 0===o?[]:"function"==typeof o?n?[o.listener||o]:[o]: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}(o):h(o,o.length)}function f(e){var t=this._events;if(void 0!==t){var n=t[e];if("function"==typeof n)return 1;if(void 0!==n)return n.length}return 0}function h(e,t){for(var n=new Array(t),r=0;r<t;++r)n[r]=e[r];return n}function m(e,t,n,r){if("function"==typeof e.on)r.once?e.once(t,n):e.on(t,n);else{if("function"!=typeof e.addEventListener)throw new TypeError('The "emitter" argument must be of type EventEmitter. Received type '+typeof e);e.addEventListener(t,(function o(i){r.once&&e.removeEventListener(t,o),n(i)}))}}Object.defineProperty(i,"defaultMaxListeners",{enumerable:!0,get:function(){return s},set:function(e){if("number"!=typeof e||e<0||o(e))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+e+".");s=e}}),i.init=function(){void 0!==this._events&&this._events!==Object.getPrototypeOf(this)._events||(this._events=Object.create(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0},i.prototype.setMaxListeners=function(e){if("number"!=typeof e||e<0||o(e))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+e+".");return this._maxListeners=e,this},i.prototype.getMaxListeners=function(){return u(this)},i.prototype.emit=function(e){for(var t=[],n=1;n<arguments.length;n++)t.push(arguments[n]);var o="error"===e,i=this._events;if(void 0!==i)o=o&&void 0===i.error;else if(!o)return!1;if(o){var s;if(t.length>0&&(s=t[0]),s instanceof Error)throw s;var a=new Error("Unhandled error."+(s?" ("+s.message+")":""));throw a.context=s,a}var u=i[e];if(void 0===u)return!1;if("function"==typeof u)r(u,this,t);else{var c=u.length,l=h(u,c);for(n=0;n<c;++n)r(l[n],this,t)}return!0},i.prototype.addListener=function(e,t){return c(this,e,t,!1)},i.prototype.on=i.prototype.addListener,i.prototype.prependListener=function(e,t){return c(this,e,t,!0)},i.prototype.once=function(e,t){return a(t),this.on(e,d(this,e,t)),this},i.prototype.prependOnceListener=function(e,t){return a(t),this.prependListener(e,d(this,e,t)),this},i.prototype.removeListener=function(e,t){var n,r,o,i,s;if(a(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(o=-1,i=n.length-1;i>=0;i--)if(n[i]===t||n[i].listener===t){s=n[i].listener,o=i;break}if(o<0)return this;0===o?n.shift():function(e,t){for(;t+1<e.length;t++)e[t]=e[t+1];e.pop()}(n,o),1===n.length&&(r[e]=n[0]),void 0!==r.removeListener&&this.emit("removeListener",e,s||t)}return this},i.prototype.off=i.prototype.removeListener,i.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 o,i=Object.keys(n);for(r=0;r<i.length;++r)"removeListener"!==(o=i[r])&&this.removeAllListeners(o);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},i.prototype.listeners=function(e){return p(this,e,!0)},i.prototype.rawListeners=function(e){return p(this,e,!1)},i.listenerCount=function(e,t){return"function"==typeof e.listenerCount?e.listenerCount(t):f.call(e,t)},i.prototype.listenerCount=f,i.prototype.eventNames=function(){return this._eventsCount>0?t(this._events):[]}},85695: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,o=t.cmp&&(n=t.cmp,function(e){return function(t,r){var o={key:t,value:e[t]},i={key:r,value:e[r]};return n(o,i)}}),i=[];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,s;if(Array.isArray(t)){for(s="[",n=0;n<t.length;n++)n&&(s+=","),s+=e(t[n])||"null";return s+"]"}if(null===t)return"null";if(-1!==i.indexOf(t)){if(r)return JSON.stringify("__cycle__");throw new TypeError("Converting circular structure to JSON")}var a=i.push(t)-1,u=Object.keys(t).sort(o&&o(t));for(s="",n=0;n<u.length;n++){var c=u[n],l=e(t[c]);l&&(s&&(s+=","),s+=JSON.stringify(c)+":"+l)}return i.splice(a,1),"{"+s+"}"}}(e)}},46388:e=>{var t=Object.prototype.hasOwnProperty,n=Object.prototype.toString;e.exports=function(e,r,o){if("[object Function]"!==n.call(r))throw new TypeError("iterator must be a function");var i=e.length;if(i===+i)for(var s=0;s<i;s++)r.call(o,e[s],s,e);else for(var a in e)t.call(e,a)&&r.call(o,e[a],a,e)}},37795:e=>{"use strict";var t="Function.prototype.bind called on incompatible ",n=Array.prototype.slice,r=Object.prototype.toString,o="[object Function]";e.exports=function(e){var i=this;if("function"!=typeof i||r.call(i)!==o)throw new TypeError(t+i);for(var s,a=n.call(arguments,1),u=function(){if(this instanceof s){var t=i.apply(this,a.concat(n.call(arguments)));return Object(t)===t?t:this}return i.apply(e,a.concat(n.call(arguments)))},c=Math.max(0,i.length-a.length),l=[],d=0;d<c;d++)l.push("$"+d);if(s=Function("binder","return function ("+l.join(",")+"){ return binder.apply(this,arguments); }")(u),i.prototype){var p=function(){};p.prototype=i.prototype,s.prototype=new p,p.prototype=null}return s}},4090:(e,t,n)=>{"use strict";var r=n(37795);e.exports=Function.prototype.bind||r},88616:(e,t,n)=>{for(var r=n(43335),o=n(30892),i=/[\{\[]/,s=/[\}\]]/,a=["do","if","in","for","let","new","try","var","case","else","enum","eval","null","this","true","void","with","await","break","catch","class","const","false","super","throw","while","yield","delete","export","import","public","return","static","switch","typeof","default","extends","finally","package","private","continue","debugger","function","arguments","interface","protected","implements","instanceof","NaN","undefined"],u={},c=0;c<a.length;c++)u[a[c]]=!0;var l=function(e){return o(e)&&!u.hasOwnProperty(e)},d={s:function(e){return""+e},d:function(e){return""+Number(e)},o:function(e){return JSON.stringify(e)}},p=function(){var e=[],t=0,n={},a=function(n){for(var r="";r.length<2*t;)r+=" ";e.push(r+n)},u=function(e){return s.test(e.trim()[0])&&i.test(e[e.length-1])?(t--,a(e),void t++):i.test(e[e.length-1])?(a(e),void t++):s.test(e.trim()[0])?(t--,void a(e)):void a(e)},c=function(e){if(!e)return c;if(1===arguments.length&&e.indexOf("\n")>-1)for(var t=e.trim().split("\n"),n=0;n<t.length;n++)u(t[n].trim());else u(r.format.apply(r,arguments));return c};return c.scope={},c.formats=d,c.sym=function(e){return e&&l(e)||(e="tmp"),n[e]||(n[e]=0),e+(n[e]++||"")},c.property=function(e,t){return 1===arguments.length&&(t=e,e=""),o(t+="")?e?e+"."+t:t:e?e+"["+JSON.stringify(t)+"]":JSON.stringify(t)},c.toString=function(){return e.join("\n")},c.toFunction=function(e){e||(e={});var t="return ("+c.toString()+")";Object.keys(c.scope).forEach((function(t){e[t]||(e[t]=c.scope[t])}));var n=Object.keys(e).map((function(e){return e})),r=n.map((function(t){return e[t]}));return Function.apply(null,n.concat(t)).apply(null,r)},arguments.length&&c.apply(null,arguments),c};p.formats=d,e.exports=p},6e3:(e,t,n)=>{var r=n(30892),o=function(e,t){return r(t)?e+"."+t:e+"["+JSON.stringify(t)+"]"};o.valid=r,o.property=function(e){return r(e)?e:JSON.stringify(e)},e.exports=o},67286:(e,t,n)=>{"use strict";var r,o=SyntaxError,i=Function,s=TypeError,a=function(e){try{return i('"use strict"; return ('+e+").constructor;")()}catch(t){}},u=Object.getOwnPropertyDescriptor;if(u)try{u({},"")}catch(A){u=null}var c=function(){throw new s},l=u?function(){try{return c}catch(e){try{return u(arguments,"callee").get}catch(t){return c}}}():c,d=n(32636)(),p=Object.getPrototypeOf||function(e){return e.__proto__},f={},h="undefined"==typeof Uint8Array?r:p(Uint8Array),m={"%AggregateError%":"undefined"==typeof AggregateError?r:AggregateError,"%Array%":Array,"%ArrayBuffer%":"undefined"==typeof ArrayBuffer?r:ArrayBuffer,"%ArrayIteratorPrototype%":d?p([][Symbol.iterator]()):r,"%AsyncFromSyncIteratorPrototype%":r,"%AsyncFunction%":f,"%AsyncGenerator%":f,"%AsyncGeneratorFunction%":f,"%AsyncIteratorPrototype%":f,"%Atomics%":"undefined"==typeof Atomics?r:Atomics,"%BigInt%":"undefined"==typeof BigInt?r:BigInt,"%Boolean%":Boolean,"%DataView%":"undefined"==typeof DataView?r:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":Error,"%eval%":eval,"%EvalError%":EvalError,"%Float32Array%":"undefined"==typeof Float32Array?r:Float32Array,"%Float64Array%":"undefined"==typeof Float64Array?r:Float64Array,"%FinalizationRegistry%":"undefined"==typeof FinalizationRegistry?r:FinalizationRegistry,"%Function%":i,"%GeneratorFunction%":f,"%Int8Array%":"undefined"==typeof Int8Array?r:Int8Array,"%Int16Array%":"undefined"==typeof Int16Array?r:Int16Array,"%Int32Array%":"undefined"==typeof Int32Array?r:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":d?p(p([][Symbol.iterator]())):r,"%JSON%":"object"==typeof JSON?JSON:r,"%Map%":"undefined"==typeof Map?r:Map,"%MapIteratorPrototype%":"undefined"!=typeof Map&&d?p((new Map)[Symbol.iterator]()):r,"%Math%":Math,"%Number%":Number,"%Object%":Object,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":"undefined"==typeof Promise?r:Promise,"%Proxy%":"undefined"==typeof Proxy?r:Proxy,"%RangeError%":RangeError,"%ReferenceError%":ReferenceError,"%Reflect%":"undefined"==typeof Reflect?r:Reflect,"%RegExp%":RegExp,"%Set%":"undefined"==typeof Set?r:Set,"%SetIteratorPrototype%":"undefined"!=typeof Set&&d?p((new Set)[Symbol.iterator]()):r,"%SharedArrayBuffer%":"undefined"==typeof SharedArrayBuffer?r:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":d?p(""[Symbol.iterator]()):r,"%Symbol%":d?Symbol:r,"%SyntaxError%":o,"%ThrowTypeError%":l,"%TypedArray%":h,"%TypeError%":s,"%Uint8Array%":"undefined"==typeof Uint8Array?r:Uint8Array,"%Uint8ClampedArray%":"undefined"==typeof Uint8ClampedArray?r:Uint8ClampedArray,"%Uint16Array%":"undefined"==typeof Uint16Array?r:Uint16Array,"%Uint32Array%":"undefined"==typeof Uint32Array?r:Uint32Array,"%URIError%":URIError,"%WeakMap%":"undefined"==typeof WeakMap?r:WeakMap,"%WeakRef%":"undefined"==typeof WeakRef?r:WeakRef,"%WeakSet%":"undefined"==typeof WeakSet?r:WeakSet},g=function e(t){var n;if("%AsyncFunction%"===t)n=a("async function () {}");else if("%GeneratorFunction%"===t)n=a("function* () {}");else if("%AsyncGeneratorFunction%"===t)n=a("async function* () {}");else if("%AsyncGenerator%"===t){var r=e("%AsyncGeneratorFunction%");r&&(n=r.prototype)}else if("%AsyncIteratorPrototype%"===t){var o=e("%AsyncGenerator%");o&&(n=p(o.prototype))}return m[t]=n,n},y={"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},v=n(4090),b=n(23198),w=v.call(Function.call,Array.prototype.concat),_=v.call(Function.apply,Array.prototype.splice),E=v.call(Function.call,String.prototype.replace),S=v.call(Function.call,String.prototype.slice),C=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,P=/\\(\\)?/g,k=function(e){var t=S(e,0,1),n=S(e,-1);if("%"===t&&"%"!==n)throw new o("invalid intrinsic syntax, expected closing `%`");if("%"===n&&"%"!==t)throw new o("invalid intrinsic syntax, expected opening `%`");var r=[];return E(e,C,(function(e,t,n,o){r[r.length]=n?E(o,P,"$1"):t||e})),r},I=function(e,t){var n,r=e;if(b(y,r)&&(r="%"+(n=y[r])[0]+"%"),b(m,r)){var i=m[r];if(i===f&&(i=g(r)),void 0===i&&!t)throw new s("intrinsic "+e+" exists, but is not available. Please file an issue!");return{alias:n,name:r,value:i}}throw new o("intrinsic "+e+" does not exist!")};e.exports=function(e,t){if("string"!=typeof e||0===e.length)throw new s("intrinsic name must be a non-empty string");if(arguments.length>1&&"boolean"!=typeof t)throw new s('"allowMissing" argument must be a boolean');var n=k(e),r=n.length>0?n[0]:"",i=I("%"+r+"%",t),a=i.name,c=i.value,l=!1,d=i.alias;d&&(r=d[0],_(n,w([0,1],d)));for(var p=1,f=!0;p<n.length;p+=1){var h=n[p],g=S(h,0,1),y=S(h,-1);if(('"'===g||"'"===g||"`"===g||'"'===y||"'"===y||"`"===y)&&g!==y)throw new o("property names with quotes must have matching quotes");if("constructor"!==h&&f||(l=!0),b(m,a="%"+(r+="."+h)+"%"))c=m[a];else if(null!=c){if(!(h in c)){if(!t)throw new s("base intrinsic for "+e+" exists, but the property is not available.");return}if(u&&p+1>=n.length){var v=u(c,h);c=(f=!!v)&&"get"in v&&!("originalValue"in v.get)?v.get:c[h]}else f=b(c,h),c=c[h];f&&!l&&(m[a]=c)}}return c}},88111:e=>{"use strict";e.exports=function(e){if("string"!=typeof e)throw new TypeError("get-src expected a string");var t=/src="(.*?)"/gm.exec(e);if(t&&t.length>=2)return t[1]}},17451:(e,t,n)=>{"use strict";var r=n(88111);function o(e){var t,n;e.indexOf("#")>-1&&(e=e.split("#")[0]),e.indexOf("?")>-1&&-1===e.indexOf("clip_id=")&&(e=e.split("?")[0]);var r=["https?://vimeo.com/[0-9]+$","https?://player.vimeo.com/video/[0-9]+$","https?://vimeo.com/channels","groups","album"].join("|");return new RegExp(r,"gim").test(e)?(n=e.split("/"))&&n.length&&(t=n.pop()):/clip_id=/gim.test(e)&&(n=e.split("clip_id="))&&n.length&&(t=n[1].split("&")[0]),t}function i(e){var t=/https:\/\/vine\.co\/v\/([a-zA-Z0-9]*)\/?/.exec(e);return t&&t[1]}function s(e){var t=/youtube:\/\/|https?:\/\/youtu\.be\/|http:\/\/y2u\.be\//g;if(t.test(e))return u(e.split(t)[1]);var n=/\/v\/|\/vi\//g;if(n.test(e))return u(e.split(n)[1]);var r=/v=|vi=/g;if(r.test(e))return e.split(r)[1].split("&")[0];var o=/\/an_webp\//g;if(o.test(e))return u(e.split(o)[1]);var i=/\/embed\//g;if(i.test(e))return u(e.split(i)[1]);if(!/\/user\/([a-zA-Z0-9]*)$/g.test(e)){if(/\/user\/(?!.*videos)/g.test(e))return u(e.split("/").pop());var s=/\/attribution_link\?.*v%3D([^%&]*)(%26|&|$)/;return s.test(e)?e.match(s)[1]:void 0}}function a(e){var t;if(e.indexOf("embed")>-1)return t=/embed\/(\w{8})/,e.match(t)[1];t=/\/v\/(\w{8})/;var n=e.match(t);return n&&n.length>0?e.match(t)[1]:void 0}function u(e){return e.indexOf("?")>-1?e.split("?")[0]:e.indexOf("/")>-1?e.split("/")[0]:e}e.exports=function(e){if("string"!=typeof e)throw new TypeError("get-video-id expects a string");/<iframe/gi.test(e)&&(e=r(e)),e=(e=(e=e.trim()).replace("-nocookie","")).replace("/www.","/");var t={};if(/\/\/google/.test(e)){var n=e.match(/url=([^&]+)&/);n&&(e=decodeURIComponent(n[1]))}return/youtube|youtu\.be|y2u\.be|i.ytimg\./.test(e)?t={id:s(e),service:"youtube"}:/vimeo/.test(e)?t={id:o(e),service:"vimeo"}:/vine/.test(e)?t={id:i(e),service:"vine"}:/videopress/.test(e)&&(t={id:a(e),service:"videopress"}),t}},54632:(e,t,n)=>{var r=n(28992),o=Object.prototype.toString,i="function"==typeof Blob||"undefined"!=typeof Blob&&"[object BlobConstructor]"===o.call(Blob),s="function"==typeof File||"undefined"!=typeof File&&"[object FileConstructor]"===o.call(File);e.exports=function e(t){if(!t||"object"!=typeof t)return!1;if(r(t)){for(var n=0,o=t.length;n<o;n++)if(e(t[n]))return!0;return!1}if("function"==typeof Buffer&&Buffer.isBuffer&&Buffer.isBuffer(t)||"function"==typeof ArrayBuffer&&t instanceof ArrayBuffer||i&&t instanceof Blob||s&&t instanceof File)return!0;if(t.toJSON&&"function"==typeof t.toJSON&&1===arguments.length)return e(t.toJSON(),!0);for(var a in t)if(Object.prototype.hasOwnProperty.call(t,a)&&e(t[a]))return!0;return!1}},28992:e=>{var t={}.toString;e.exports=Array.isArray||function(e){return"[object Array]"==t.call(e)}},95460:e=>{try{e.exports="undefined"!=typeof XMLHttpRequest&&"withCredentials"in new XMLHttpRequest}catch(t){e.exports=!1}},32636:(e,t,n)=>{"use strict";var r="undefined"!=typeof Symbol&&Symbol,o=n(66679);e.exports=function(){return"function"==typeof r&&("function"==typeof Symbol&&("symbol"==typeof r("foo")&&("symbol"==typeof Symbol("bar")&&o())))}},66679:e=>{"use strict";e.exports=function(){if("function"!=typeof Symbol||"function"!=typeof Object.getOwnPropertySymbols)return!1;if("symbol"==typeof Symbol.iterator)return!0;var e={},t=Symbol("test"),n=Object(t);if("string"==typeof t)return!1;if("[object Symbol]"!==Object.prototype.toString.call(t))return!1;if("[object Symbol]"!==Object.prototype.toString.call(n))return!1;for(t in e[t]=42,e)return!1;if("function"==typeof Object.keys&&0!==Object.keys(e).length)return!1;if("function"==typeof Object.getOwnPropertyNames&&0!==Object.getOwnPropertyNames(e).length)return!1;var r=Object.getOwnPropertySymbols(e);if(1!==r.length||r[0]!==t)return!1;if(!Object.prototype.propertyIsEnumerable.call(e,t))return!1;if("function"==typeof Object.getOwnPropertyDescriptor){var o=Object.getOwnPropertyDescriptor(e,t);if(42!==o.value||!0!==o.enumerable)return!1}return!0}},23198:(e,t,n)=>{"use strict";var r=n(4090);e.exports=r.call(Function.call,Object.prototype.hasOwnProperty)},74495:(e,t,n)=>{"use strict";var r=n(50212),o=n(79561);function i(){this.pending=null,this.pendingTotal=0,this.blockSize=this.constructor.blockSize,this.outSize=this.constructor.outSize,this.hmacStrength=this.constructor.hmacStrength,this.padLength=this.constructor.padLength/8,this.endian="big",this._delta8=this.blockSize/8,this._delta32=this.blockSize/32}t.BlockHash=i,i.prototype.update=function(e,t){if(e=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 o=0;o<e.length;o+=this._delta32)this._update(e,o,o+this._delta32)}return this},i.prototype.digest=function(e){return this.update(this._pad()),o(null===this.pending),this._digest(e)},i.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 o=1;o<n;o++)r[o]=0;if(e<<=3,"big"===this.endian){for(var i=8;i<this.padLength;i++)r[o++]=0;r[o++]=0,r[o++]=0,r[o++]=0,r[o++]=0,r[o++]=e>>>24&255,r[o++]=e>>>16&255,r[o++]=e>>>8&255,r[o++]=255&e}else for(r[o++]=255&e,r[o++]=e>>>8&255,r[o++]=e>>>16&255,r[o++]=e>>>24&255,r[o++]=0,r[o++]=0,r[o++]=0,r[o++]=0,i=8;i<this.padLength;i++)r[o++]=0;return r}},35079:(e,t,n)=>{"use strict";var r=n(50212),o=n(74495),i=n(40713),s=r.rotl32,a=r.sum32,u=r.sum32_5,c=i.ft_1,l=o.BlockHash,d=[1518500249,1859775393,2400959708,3395469782];function p(){if(!(this instanceof p))return new p;l.call(this),this.h=[1732584193,4023233417,2562383102,271733878,3285377520],this.W=new Array(80)}r.inherits(p,l),e.exports=p,p.blockSize=512,p.outSize=160,p.hmacStrength=80,p.padLength=64,p.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(n[r-3]^n[r-8]^n[r-14]^n[r-16],1);var o=this.h[0],i=this.h[1],l=this.h[2],p=this.h[3],f=this.h[4];for(r=0;r<n.length;r++){var h=~~(r/20),m=u(s(o,5),c(h,i,l,p),f,n[r],d[h]);f=p,p=l,l=s(i,30),i=o,o=m}this.h[0]=a(this.h[0],o),this.h[1]=a(this.h[1],i),this.h[2]=a(this.h[2],l),this.h[3]=a(this.h[3],p),this.h[4]=a(this.h[4],f)},p.prototype._digest=function(e){return"hex"===e?r.toHex32(this.h,"big"):r.split32(this.h,"big")}},68032:(e,t,n)=>{"use strict";var r=n(50212),o=n(74495),i=n(40713),s=n(79561),a=r.sum32,u=r.sum32_4,c=r.sum32_5,l=i.ch32,d=i.maj32,p=i.s0_256,f=i.s1_256,h=i.g0_256,m=i.g1_256,g=o.BlockHash,y=[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 v(){if(!(this instanceof v))return new v;g.call(this),this.h=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],this.k=y,this.W=new Array(64)}r.inherits(v,g),e.exports=v,v.blockSize=512,v.outSize=256,v.hmacStrength=192,v.padLength=64,v.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]=u(m(n[r-2]),n[r-7],h(n[r-15]),n[r-16]);var o=this.h[0],i=this.h[1],g=this.h[2],y=this.h[3],v=this.h[4],b=this.h[5],w=this.h[6],_=this.h[7];for(s(this.k.length===n.length),r=0;r<n.length;r++){var E=c(_,f(v),l(v,b,w),this.k[r],n[r]),S=a(p(o),d(o,i,g));_=w,w=b,b=v,v=a(y,E),y=g,g=i,i=o,o=a(E,S)}this.h[0]=a(this.h[0],o),this.h[1]=a(this.h[1],i),this.h[2]=a(this.h[2],g),this.h[3]=a(this.h[3],y),this.h[4]=a(this.h[4],v),this.h[5]=a(this.h[5],b),this.h[6]=a(this.h[6],w),this.h[7]=a(this.h[7],_)},v.prototype._digest=function(e){return"hex"===e?r.toHex32(this.h,"big"):r.split32(this.h,"big")}},40713:(e,t,n)=>{"use strict";var r=n(50212).rotr32;function o(e,t,n){return e&t^~e&n}function i(e,t,n){return e&t^e&n^t&n}function s(e,t,n){return e^t^n}t.ft_1=function(e,t,n,r){return 0===e?o(t,n,r):1===e||3===e?s(t,n,r):2===e?i(t,n,r):void 0},t.ch32=o,t.maj32=i,t.p32=s,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}},50212:(e,t,n)=>{"use strict";var r=n(79561),o=n(91285);function i(e,t){return 55296==(64512&e.charCodeAt(t))&&(!(t<0||t+1>=e.length)&&56320==(64512&e.charCodeAt(t+1)))}function s(e){return(e>>>24|e>>>8&65280|e<<8&16711680|(255&e)<<24)>>>0}function a(e){return 1===e.length?"0"+e:e}function u(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=o,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),o=0;o<e.length;o+=2)n.push(parseInt(e[o]+e[o+1],16))}else for(var r=0,o=0;o<e.length;o++){var s=e.charCodeAt(o);s<128?n[r++]=s:s<2048?(n[r++]=s>>6|192,n[r++]=63&s|128):i(e,o)?(s=65536+((1023&s)<<10)+(1023&e.charCodeAt(++o)),n[r++]=s>>18|240,n[r++]=s>>12&63|128,n[r++]=s>>6&63|128,n[r++]=63&s|128):(n[r++]=s>>12|224,n[r++]=s>>6&63|128,n[r++]=63&s|128)}else for(o=0;o<e.length;o++)n[o]=0|e[o];return n},t.toHex=function(e){for(var t="",n=0;n<e.length;n++)t+=a(e[n].toString(16));return t},t.htonl=s,t.toHex32=function(e,t){for(var n="",r=0;r<e.length;r++){var o=e[r];"little"===t&&(o=s(o)),n+=u(o.toString(16))}return n},t.zero2=a,t.zero8=u,t.join32=function(e,t,n,o){var i=n-t;r(i%4==0);for(var s=new Array(i/4),a=0,u=t;a<s.length;a++,u+=4){var c;c="big"===o?e[u]<<24|e[u+1]<<16|e[u+2]<<8|e[u+3]:e[u+3]<<24|e[u+2]<<16|e[u+1]<<8|e[u],s[a]=c>>>0}return s},t.split32=function(e,t){for(var n=new Array(4*e.length),r=0,o=0;r<e.length;r++,o+=4){var i=e[r];"big"===t?(n[o]=i>>>24,n[o+1]=i>>>16&255,n[o+2]=i>>>8&255,n[o+3]=255&i):(n[o+3]=i>>>24,n[o+2]=i>>>16&255,n[o+1]=i>>>8&255,n[o]=255&i)}return n},t.rotr32=function(e,t){return e>>>t|e<<32-t},t.rotl32=function(e,t){return e<<t|e>>>32-t},t.sum32=function(e,t){return e+t>>>0},t.sum32_3=function(e,t,n){return e+t+n>>>0},t.sum32_4=function(e,t,n,r){return e+t+n+r>>>0},t.sum32_5=function(e,t,n,r,o){return e+t+n+r+o>>>0},t.sum64=function(e,t,n,r){var o=e[t],i=r+e[t+1]>>>0,s=(i<r?1:0)+n+o;e[t]=s>>>0,e[t+1]=i},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,o,i,s,a){var u=0,c=t;return u+=(c=c+r>>>0)<t?1:0,u+=(c=c+i>>>0)<i?1:0,e+n+o+s+(u+=(c=c+a>>>0)<a?1:0)>>>0},t.sum64_4_lo=function(e,t,n,r,o,i,s,a){return t+r+i+a>>>0},t.sum64_5_hi=function(e,t,n,r,o,i,s,a,u,c){var l=0,d=t;return l+=(d=d+r>>>0)<t?1:0,l+=(d=d+i>>>0)<i?1:0,l+=(d=d+a>>>0)<a?1:0,e+n+o+s+u+(l+=(d=d+c>>>0)<c?1:0)>>>0},t.sum64_5_lo=function(e,t,n,r,o,i,s,a,u,c){return t+r+i+a+c>>>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}},73463:(e,t,n)=>{"use strict";var r=n(73887),o={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},i={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},s={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},a={};function u(e){return r.isMemo(e)?s:a[e.$$typeof]||o}a[r.ForwardRef]={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},a[r.Memo]=s;var c=Object.defineProperty,l=Object.getOwnPropertyNames,d=Object.getOwnPropertySymbols,p=Object.getOwnPropertyDescriptor,f=Object.getPrototypeOf,h=Object.prototype;e.exports=function e(t,n,r){if("string"!=typeof n){if(h){var o=f(n);o&&o!==h&&e(t,o,r)}var s=l(n);d&&(s=s.concat(d(n)));for(var a=u(t),m=u(n),g=0;g<s.length;++g){var y=s[g];if(!(i[y]||r&&r[y]||m&&m[y]||a&&a[y])){var v=p(n,y);try{c(t,y,v)}catch(b){}}}}return t}},43459:(e,t)=>{"use strict";
15
  /** @license React v16.13.1
19
  *
20
  * This source code is licensed under the MIT license found in the
21
  * LICENSE file in the root directory of this source tree.
22
+ */var n="function"==typeof Symbol&&Symbol.for,r=n?Symbol.for("react.element"):60103,o=n?Symbol.for("react.portal"):60106,i=n?Symbol.for("react.fragment"):60107,s=n?Symbol.for("react.strict_mode"):60108,a=n?Symbol.for("react.profiler"):60114,u=n?Symbol.for("react.provider"):60109,c=n?Symbol.for("react.context"):60110,l=n?Symbol.for("react.async_mode"):60111,d=n?Symbol.for("react.concurrent_mode"):60111,p=n?Symbol.for("react.forward_ref"):60112,f=n?Symbol.for("react.suspense"):60113,h=n?Symbol.for("react.suspense_list"):60120,m=n?Symbol.for("react.memo"):60115,g=n?Symbol.for("react.lazy"):60116,y=n?Symbol.for("react.block"):60121,v=n?Symbol.for("react.fundamental"):60117,b=n?Symbol.for("react.responder"):60118,w=n?Symbol.for("react.scope"):60119;function _(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case r:switch(e=e.type){case l:case d:case i:case a:case s:case f:return e;default:switch(e=e&&e.$$typeof){case c:case p:case g:case m:case u:return e;default:return t}}case o:return t}}}function E(e){return _(e)===d}t.AsyncMode=l,t.ConcurrentMode=d,t.ContextConsumer=c,t.ContextProvider=u,t.Element=r,t.ForwardRef=p,t.Fragment=i,t.Lazy=g,t.Memo=m,t.Portal=o,t.Profiler=a,t.StrictMode=s,t.Suspense=f,t.isAsyncMode=function(e){return E(e)||_(e)===l},t.isConcurrentMode=E,t.isContextConsumer=function(e){return _(e)===c},t.isContextProvider=function(e){return _(e)===u},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===r},t.isForwardRef=function(e){return _(e)===p},t.isFragment=function(e){return _(e)===i},t.isLazy=function(e){return _(e)===g},t.isMemo=function(e){return _(e)===m},t.isPortal=function(e){return _(e)===o},t.isProfiler=function(e){return _(e)===a},t.isStrictMode=function(e){return _(e)===s},t.isSuspense=function(e){return _(e)===f},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===i||e===d||e===a||e===s||e===f||e===h||"object"==typeof e&&null!==e&&(e.$$typeof===g||e.$$typeof===m||e.$$typeof===u||e.$$typeof===c||e.$$typeof===p||e.$$typeof===v||e.$$typeof===b||e.$$typeof===w||e.$$typeof===y)},t.typeOf=_},73887:(e,t,n)=>{"use strict";e.exports=n(43459)},92543:e=>{var t=[].indexOf;e.exports=function(e,n){if(t)return e.indexOf(n);for(var r=0;r<e.length;++r)if(e[r]===n)return r;return-1}},91285: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}}},52635:e=>{"use strict";var t="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag,n=Object.prototype.toString,r=function(e){return!(t&&e&&"object"==typeof e&&Symbol.toStringTag in e)&&"[object Arguments]"===n.call(e)},o=function(e){return!!r(e)||null!==e&&"object"==typeof e&&"number"==typeof e.length&&e.length>=0&&"[object Array]"!==n.call(e)&&"[object Function]"===n.call(e.callee)},i=function(){return r(arguments)}();r.isLegacyArguments=o,e.exports=i?r:o},43138:e=>{"use strict";var t=Object.prototype.toString,n=Function.prototype.toString,r=/^\s*(?:function)?\*/,o="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag,i=Object.getPrototypeOf,s=function(){if(!o)return!1;try{return Function("return function*() {}")()}catch(e){}}(),a=!(!i||!s)&&i(s);e.exports=function(e){return"function"==typeof e&&(!!r.test(n.call(e))||(o?i&&i(e)===a:"[object GeneratorFunction]"===t.call(e)))}},12653:e=>{var t=/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/,n=/\/\d{1,3}(?=%|$)/,r=/\//,o=/%.*$/,i=/([^0-9a-f:/%])/i,s=/([0-9a-f]{5,}|:{3,}|[^:]:$|^:[^:]|\/$)/i;function a(e){if(!t.test(e))return!1;var n=e.split(".");if(4!==n.length)return!1;if("0"===n[0][0]&&n[0].length>1)return!1;if("0"===n[1][0]&&n[1].length>1)return!1;if("0"===n[2][0]&&n[2].length>1)return!1;if("0"===n[3][0]&&n[3].length>1)return!1;var r=Number(n[0]),o=Number(n[1]),i=Number(n[2]),s=Number(n[3]);return r>=0&&r<256&&o>=0&&o<256&&i>=0&&i<256&&s>=0&&s<256}function u(e){var t=e.replace(n,""),u=e.length!==t.length;if(u)return!1;if(!u&&r.test(e))return!1;var c=t.replace(o,""),l=c.lastIndexOf(":");if(-1===l)return!1;var d=a(c.substring(l+1))?c.substring(0,l+1)+"1234:5678":c;if(i.test(d))return!1;if(s.test(d))return!1;var p=d.split("::");if(p.length>2)return!1;if(2===p.length){var f=""===p[0]?[]:p[0].split(":"),h=""===p[1]?[]:p[1].split(":");if(8-(f.length+h.length)<=0)return!1}else if(8!==d.split(":").length)return!1;return!0}function c(e){return a(e)||u(e)}e.exports=function(e){if(e||(e={}),4===e.version)return a;if(6===e.version)return u;if(null==e.version)return c;throw new Error("Unknown version: "+e.version)},e.exports.__all_regexes__=[t,n,r,o,i,s]},77465:(e,t,n)=>{var r=n(12653),o=/\s/,i=/^[a-zA-Z0-9.-]+$/,s=/^([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9-]{0,61}[a-zA-Z0-9])$/,a=/^\+[0-9][0-9 ]{5,27}[0-9]$/,u=/ {2}/,c=/ /g;t["date-time"]=/^\d{4}-(?:0[0-9]{1}|1[0-2]{1})-[0-9]{2}[tT ]\d{2}:\d{2}:\d{2}(?:\.\d+|)([zZ]|[+-]\d{2}:\d{2})$/,t.date=/^\d{4}-(?:0[0-9]{1}|1[0-2]{1})-[0-9]{2}$/,t.time=/^\d{2}:\d{2}:\d{2}$/,t.email=function(e){return-1!==e.indexOf("@")&&!o.test(e)},t["ip-address"]=t.ipv4=r({version:4}),t.ipv6=r({version:6}),t.uri=/^[a-zA-Z][a-zA-Z0-9+\-.]*:[^\s]*$/,t.color=/(#?([0-9A-Fa-f]{3,6})\b)|(aqua)|(black)|(blue)|(fuchsia)|(gray)|(green)|(lime)|(maroon)|(navy)|(olive)|(orange)|(purple)|(red)|(silver)|(teal)|(white)|(yellow)|(rgb\(\s*\b([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\b\s*,\s*\b([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\b\s*,\s*\b([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\b\s*\))|(rgb\(\s*(\d?\d%|100%)+\s*,\s*(\d?\d%|100%)+\s*,\s*(\d?\d%|100%)+\s*\))/,t.hostname=function(e){if(!i.test(e))return!1;for(var t=e.split("."),n=0;n<t.length;n++)if(!s.test(t[n]))return!1;return!0},t.alpha=/^[a-zA-Z]+$/,t.alphanumeric=/^[a-zA-Z0-9]+$/,t.style=/.:\s*[^;]/g,t.phone=function(e){if(!a.test(e))return!1;if(u.test(e))return!1;var t=e.substring(1).replace(c,"").length;return t>=7&&t<=15},t["utc-millisec"]=/^[0-9]{1,15}\.?[0-9]{0,15}$/},60772:(e,t,n)=>{var r=n(6e3),o=n(88616),i=n(404),s=n(51960),a=n(77465),u={any:function(){return"true"},null:function(e){return e+" === null"},boolean:function(e){return"typeof "+e+' === "boolean"'},array:function(e){return"Array.isArray("+e+")"},object:function(e){return"typeof "+e+' === "object" && '+e+" && !Array.isArray("+e+")"},number:function(e){return"typeof "+e+' === "number" && isFinite('+e+")"},integer:function(e){return"typeof "+e+' === "number" && (Math.floor('+e+") === "+e+" || "+e+" > 9007199254740992 || "+e+" < -9007199254740992)"},string:function(e){return"typeof "+e+' === "string"'}},c=function(e,t){t=Math.min(-1===t?e.length:t,e.length);for(var n=[],r=0;r<t;r++)n.push("object"==typeof e[r]?JSON.stringify(e[r]):e[r]);for(r=1;r<n.length;r++)if(n.indexOf(n[r])!==r)return!1;return!0},l=function(e,t){var n,r=(0|t)!==t?Math.pow(10,t.toString().split(".").pop().length):1;r>1?n=((0|e)!==e?Math.pow(10,e.toString().split(".").pop().length):1)>r||Math.round(r*e)%(r*t):n=e%t;return!n},d=function(e,t,n){return n>-1&&t.length>n||e.test(t)},p=function(e,t,n,f,h){var m=h?s(a,h.formats):a,g={unique:c,formats:m,isMultipleOf:l,testLimitedRegex:d},y=!!h&&!!h.verbose,v=!(!h||void 0===h.greedy)&&h.greedy,b={},w=[],_=function(e){var t=e+(b[e]=(b[e]||0)+1);return w.push(t),t},E=function(e){var t=JSON.stringify(e);try{for(var n=/\[([^\[\]"]+)\]/;n.test(t);)t=t.replace(n,r);return t}catch(o){return JSON.stringify(e)}function r(e,t){if(-1===w.indexOf(t))throw new Error("Unreplaceable");return'." + '+t+' + "'}},S={},C=function(e){if(S[e])return S[e];var t=_("pattern");return g[t]=new RegExp(e),S[e]=t,t},P=["i","j","k","l","m","n","o","p","q","r","s","t","u","v","x","y","z"],k=function(){var e=P.shift();return P.push(e+e[0]),w.push(e),e},I=function(e,o,s,c,l){var d=o.properties,f=o.type,b=!1;Array.isArray(o.items)&&(d={},o.items.forEach((function(e,t){d[t]=e})),f="array",b=!0);var w=0,S=function(t,n,r){A("errors++"),!0===s&&(A("if (validate.errors === null) validate.errors = []"),y?A("validate.errors.push({field:%s,message:%s,value:%s,type:%s,schemaPath:%s})",E(n||e),JSON.stringify(t),r||e,JSON.stringify(f),JSON.stringify(l)):A("validate.errors.push({field:%s,message:%s})",E(n||e),JSON.stringify(t)))};!0===o.required?(w++,A("if (%s === undefined) {",e),S("is required"),A("} else {")):(w++,A("if (%s !== undefined) {",e));var P=[].concat(f).map((function(t){if(t&&!u.hasOwnProperty(t))throw new Error("Unknown type: "+t);return u[t||"any"](e)})).join(" || ")||"true";if("true"!==P&&(w++,A("if (!(%s)) {",P),S("is the wrong type"),A("} else {")),b)if(!1===o.additionalItems)A("if (%s.length > %d) {",e,o.items.length),S("has additional items"),A("}");else if(o.additionalItems){var T=k();A("for (var %s = %d; %s < %s.length; %s++) {",T,o.items.length,T,e,T),I(e+"["+T+"]",o.additionalItems,s,c,l.concat("additionalItems")),A("}")}if(o.format&&m[o.format]){"string"!==f&&a[o.format]&&A("if (%s) {",u.string(e));var R=_("format");g[R]=m[o.format],"function"==typeof g[R]?A("if (!%s(%s)) {",R,e):A("if (!testLimitedRegex(%s, %s, %d)) {",R,e,void 0===o.maxLength?-1:o.maxLength),S("must be "+o.format+" format"),A("}"),"string"!==f&&a[o.format]&&A("}")}if(Array.isArray(o.required)){R=_("missing");A("var %s = 0",R);A("if ((%s)) {","object"!==f?u.object(e):"true"),o.required.map((function(t){var n=r(e,t);A("if (%s === undefined) {",n),S("is required",n),A("%s++",R),A("}")})),A("}"),v||(A("if (%s === 0) {",R),w++)}if(o.uniqueItems&&("array"!==f&&A("if (%s) {",u.array(e)),A("if (!(unique(%s, %d))) {",e,o.maxItems||-1),S("must be unique"),A("}"),"array"!==f&&A("}")),o.enum){var O=o.enum.some((function(e){return"object"==typeof e}))?function(t){return"JSON.stringify("+e+") !== JSON.stringify("+JSON.stringify(t)+")"}:function(t){return e+" !== "+JSON.stringify(t)};A("if (%s) {",o.enum.map(O).join(" && ")||"false"),S("must be an enum value"),A("}")}if(o.dependencies&&("object"!==f&&A("if (%s) {",u.object(e)),Object.keys(o.dependencies).forEach((function(t){var n=o.dependencies[t];"string"==typeof n&&(n=[n]);Array.isArray(n)&&(A("if (%s !== undefined && !(%s)) {",r(e,t),n.map((function(t){return r(e,t)+" !== undefined"})).join(" && ")||"true"),S("dependencies not set"),A("}")),"object"==typeof n&&(A("if (%s !== undefined) {",r(e,t)),I(e,n,s,c,l.concat(["dependencies",t])),A("}"))})),"object"!==f&&A("}")),o.additionalProperties||!1===o.additionalProperties){"object"!==f&&A("if (%s) {",u.object(e));T=k();var x=_("keys"),L=Object.keys(d||{}).map((function(e){return x+"["+T+"] !== "+JSON.stringify(e)})).concat(Object.keys(o.patternProperties||{}).map((function(e){return"!"+C(e)+".test("+x+"["+T+"])"}))).join(" && ")||"true";A("var %s = Object.keys(%s)",x,e)("for (var %s = 0; %s < %s.length; %s++) {",T,T,x,T)("if (%s) {",L),!1===o.additionalProperties?(c&&A("delete %s",e+"["+x+"["+T+"]]"),S("has additional properties",null,JSON.stringify(e+".")+" + "+x+"["+T+"]")):I(e+"["+x+"["+T+"]]",o.additionalProperties,s,c,l.concat(["additionalProperties"])),A("}")("}"),"object"!==f&&A("}")}if(o.$ref){var F=function(e,t,n){var r=function(e){return e&&e.id===n?e:"object"==typeof e&&e?Object.keys(e).reduce((function(t,n){return t||r(e[n])}),null):null},o=r(e);if(o)return o;n=(n=n.replace(/^#/,"")).replace(/\/$/,"");try{return i.get(e,decodeURI(n))}catch(c){var s,a=n.indexOf("#");if(0!==a)if(-1===a)s=t[n];else{s=t[n.slice(0,a)];var u=n.slice(a).replace(/^#/,"");try{return i.get(s,u)}catch(c){}}else s=t[n];return s||null}}(n,h&&h.schemas||{},o.$ref);if(F){var U=t[o.$ref];U||(t[o.$ref]=function(e){return U(e)},U=p(F,t,n,!1,h));R=_("ref");g[R]=U,A("if (!(%s(%s))) {",R,e),S("referenced schema does not match"),A("}")}}if(o.not){var D=_("prev");A("var %s = errors",D),I(e,o.not,!1,c,l.concat("not")),A("if (%s === errors) {",D),S("negative schema matches"),A("} else {")("errors = %s",D)("}")}if(o.items&&!b){"array"!==f&&A("if (%s) {",u.array(e));T=k();A("for (var %s = 0; %s < %s.length; %s++) {",T,T,e,T),I(e+"["+T+"]",o.items,s,c,l.concat("items")),A("}"),"array"!==f&&A("}")}if(o.patternProperties){"object"!==f&&A("if (%s) {",u.object(e));x=_("keys"),T=k();A("var %s = Object.keys(%s)",x,e)("for (var %s = 0; %s < %s.length; %s++) {",T,T,x,T),Object.keys(o.patternProperties).forEach((function(t){var n=C(t);A("if (%s.test(%s)) {",n,x+"["+T+"]"),I(e+"["+x+"["+T+"]]",o.patternProperties[t],s,c,l.concat(["patternProperties",t])),A("}")})),A("}"),"object"!==f&&A("}")}if(o.pattern){var Z=C(o.pattern);"string"!==f&&A("if (%s) {",u.string(e)),A("if (!(testLimitedRegex(%s, %s, %d))) {",Z,e,void 0===o.maxLength?-1:o.maxLength),S("pattern mismatch"),A("}"),"string"!==f&&A("}")}if(o.allOf&&o.allOf.forEach((function(t,n){I(e,t,s,c,l.concat(["allOf",n]))})),o.anyOf&&o.anyOf.length){D=_("prev");o.anyOf.forEach((function(t,n){0===n?A("var %s = errors",D):A("if (errors !== %s) {",D)("errors = %s",D),I(e,t,!1,!1,l)})),o.anyOf.forEach((function(e,t){t&&A("}")})),A("if (%s !== errors) {",D),S("no schemas match"),A("}")}if(o.oneOf&&o.oneOf.length){D=_("prev");var j=_("passes");A("var %s = errors",D)("var %s = 0",j),o.oneOf.forEach((function(t,n){I(e,t,!1,!1,l),A("if (%s === errors) {",D)("%s++",j)("} else {")("errors = %s",D)("}")})),A("if (%s !== 1) {",j),S("no (or more than one) schemas match"),A("}")}for(void 0!==o.multipleOf&&("number"!==f&&"integer"!==f&&A("if (%s) {",u.number(e)),A("if (!isMultipleOf(%s, %d)) {",e,o.multipleOf),S("has a remainder"),A("}"),"number"!==f&&"integer"!==f&&A("}")),void 0!==o.maxProperties&&("object"!==f&&A("if (%s) {",u.object(e)),A("if (Object.keys(%s).length > %d) {",e,o.maxProperties),S("has more properties than allowed"),A("}"),"object"!==f&&A("}")),void 0!==o.minProperties&&("object"!==f&&A("if (%s) {",u.object(e)),A("if (Object.keys(%s).length < %d) {",e,o.minProperties),S("has less properties than allowed"),A("}"),"object"!==f&&A("}")),void 0!==o.maxItems&&("array"!==f&&A("if (%s) {",u.array(e)),A("if (%s.length > %d) {",e,o.maxItems),S("has more items than allowed"),A("}"),"array"!==f&&A("}")),void 0!==o.minItems&&("array"!==f&&A("if (%s) {",u.array(e)),A("if (%s.length < %d) {",e,o.minItems),S("has less items than allowed"),A("}"),"array"!==f&&A("}")),void 0!==o.maxLength&&("string"!==f&&A("if (%s) {",u.string(e)),A("if (%s.length > %d) {",e,o.maxLength),S("has longer length than allowed"),A("}"),"string"!==f&&A("}")),void 0!==o.minLength&&("string"!==f&&A("if (%s) {",u.string(e)),A("if (%s.length < %d) {",e,o.minLength),S("has less length than allowed"),A("}"),"string"!==f&&A("}")),void 0!==o.minimum&&("number"!==f&&"integer"!==f&&A("if (%s) {",u.number(e)),A("if (%s %s %d) {",e,o.exclusiveMinimum?"<=":"<",o.minimum),S("is less than minimum"),A("}"),"number"!==f&&"integer"!==f&&A("}")),void 0!==o.maximum&&("number"!==f&&"integer"!==f&&A("if (%s) {",u.number(e)),A("if (%s %s %d) {",e,o.exclusiveMaximum?">=":">",o.maximum),S("is more than maximum"),A("}"),"number"!==f&&"integer"!==f&&A("}")),d&&Object.keys(d).forEach((function(t){Array.isArray(f)&&-1!==f.indexOf("null")&&A("if (%s !== null) {",e),I(r(e,t),d[t],s,c,l.concat(b?t:["properties",t])),Array.isArray(f)&&-1!==f.indexOf("null")&&A("}")}));w--;)A("}")},A=o("function validate(data) {")("if (data === undefined) data = null")("validate.errors = null")("var errors = 0");return I("data",e,f,h&&h.filter,[]),A("return errors === 0")("}"),(A=A.toFunction(g)).errors=null,Object.defineProperty&&Object.defineProperty(A,"error",{get:function(){return A.errors?A.errors.map((function(e){return e.field+" "+e.message})).join("\n"):""}}),A.toJSON=function(){return e},A};e.exports=function(e,t){return"string"==typeof e&&(e=JSON.parse(e)),p(e,{},e,!0,t)},e.exports.filter=function(t,n){var r=e.exports(t,s(n,{filter:!0}));return function(e){return r(e),e}}},30892:e=>{"use strict";e.exports=function(e){return/^[$A-Z\_a-z\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0370-\u0374\u0376\u0377\u037a-\u037d\u0386\u0388-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u048a-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05d0-\u05ea\u05f0-\u05f2\u0620-\u064a\u066e\u066f\u0671-\u06d3\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u07f4\u07f5\u07fa\u0800-\u0815\u081a\u0824\u0828\u0840-\u0858\u08a0\u08a2-\u08ac\u0904-\u0939\u093d\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097f\u0985-\u098c\u098f\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc\u09dd\u09df-\u09e1\u09f0\u09f1\u0a05-\u0a0a\u0a0f\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0\u0ae1\u0b05-\u0b0c\u0b0f\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32\u0b33\u0b35-\u0b39\u0b3d\u0b5c\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99\u0b9a\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c33\u0c35-\u0c39\u0c3d\u0c58\u0c59\u0c60\u0c61\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d05-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d60\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0e01-\u0e30\u0e32\u0e33\u0e40-\u0e46\u0e81\u0e82\u0e84\u0e87\u0e88\u0e8a\u0e8d\u0e94-\u0e97\u0e99-\u0e9f\u0ea1-\u0ea3\u0ea5\u0ea7\u0eaa\u0eab\u0ead-\u0eb0\u0eb2\u0eb3\u0ebd\u0ec0-\u0ec4\u0ec6\u0edc-\u0edf\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u1000-\u102a\u103f\u1050-\u1055\u105a-\u105d\u1061\u1065\u1066\u106e-\u1070\u1075-\u1081\u108e\u10a0-\u10c5\u10c7\u10cd\u10d0-\u10fa\u10fc-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u13a0-\u13f4\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f0\u1700-\u170c\u170e-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1780-\u17b3\u17d7\u17dc\u1820-\u1877\u1880-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191c\u1950-\u196d\u1970-\u1974\u1980-\u19ab\u19c1-\u19c7\u1a00-\u1a16\u1a20-\u1a54\u1aa7\u1b05-\u1b33\u1b45-\u1b4b\u1b83-\u1ba0\u1bae\u1baf\u1bba-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c7d\u1ce9-\u1cec\u1cee-\u1cf1\u1cf5\u1cf6\u1d00-\u1dbf\u1e00-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u2071\u207f\u2090-\u209c\u2102\u2107\u210a-\u2113\u2115\u2119-\u211d\u2124\u2126\u2128\u212a-\u212d\u212f-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u2c00-\u2c2e\u2c30-\u2c5e\u2c60-\u2ce4\u2ceb-\u2cee\u2cf2\u2cf3\u2d00-\u2d25\u2d27\u2d2d\u2d30-\u2d67\u2d6f\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u2e2f\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303c\u3041-\u3096\u309d-\u309f\u30a1-\u30fa\u30fc-\u30ff\u3105-\u312d\u3131-\u318e\u31a0-\u31ba\u31f0-\u31ff\u3400-\u4db5\u4e00-\u9fcc\ua000-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua61f\ua62a\ua62b\ua640-\ua66e\ua67f-\ua697\ua6a0-\ua6ef\ua717-\ua71f\ua722-\ua788\ua78b-\ua78e\ua790-\ua793\ua7a0-\ua7aa\ua7f8-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9cf\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uaa60-\uaa76\uaa7a\uaa80-\uaaaf\uaab1\uaab5\uaab6\uaab9-\uaabd\uaac0\uaac2\uaadb-\uaadd\uaae0-\uaaea\uaaf2-\uaaf4\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uabc0-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\uf900-\ufa6d\ufa70-\ufad9\ufb00-\ufb06\ufb13-\ufb17\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40\ufb41\ufb43\ufb44\ufb46-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\uff21-\uff3a\uff41-\uff5a\uff66-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc][$A-Z\_a-z\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0370-\u0374\u0376\u0377\u037a-\u037d\u0386\u0388-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u048a-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05d0-\u05ea\u05f0-\u05f2\u0620-\u064a\u066e\u066f\u0671-\u06d3\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u07f4\u07f5\u07fa\u0800-\u0815\u081a\u0824\u0828\u0840-\u0858\u08a0\u08a2-\u08ac\u0904-\u0939\u093d\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097f\u0985-\u098c\u098f\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc\u09dd\u09df-\u09e1\u09f0\u09f1\u0a05-\u0a0a\u0a0f\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0\u0ae1\u0b05-\u0b0c\u0b0f\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32\u0b33\u0b35-\u0b39\u0b3d\u0b5c\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99\u0b9a\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c33\u0c35-\u0c39\u0c3d\u0c58\u0c59\u0c60\u0c61\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d05-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d60\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0e01-\u0e30\u0e32\u0e33\u0e40-\u0e46\u0e81\u0e82\u0e84\u0e87\u0e88\u0e8a\u0e8d\u0e94-\u0e97\u0e99-\u0e9f\u0ea1-\u0ea3\u0ea5\u0ea7\u0eaa\u0eab\u0ead-\u0eb0\u0eb2\u0eb3\u0ebd\u0ec0-\u0ec4\u0ec6\u0edc-\u0edf\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u1000-\u102a\u103f\u1050-\u1055\u105a-\u105d\u1061\u1065\u1066\u106e-\u1070\u1075-\u1081\u108e\u10a0-\u10c5\u10c7\u10cd\u10d0-\u10fa\u10fc-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u13a0-\u13f4\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f0\u1700-\u170c\u170e-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1780-\u17b3\u17d7\u17dc\u1820-\u1877\u1880-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191c\u1950-\u196d\u1970-\u1974\u1980-\u19ab\u19c1-\u19c7\u1a00-\u1a16\u1a20-\u1a54\u1aa7\u1b05-\u1b33\u1b45-\u1b4b\u1b83-\u1ba0\u1bae\u1baf\u1bba-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c7d\u1ce9-\u1cec\u1cee-\u1cf1\u1cf5\u1cf6\u1d00-\u1dbf\u1e00-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u2071\u207f\u2090-\u209c\u2102\u2107\u210a-\u2113\u2115\u2119-\u211d\u2124\u2126\u2128\u212a-\u212d\u212f-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u2c00-\u2c2e\u2c30-\u2c5e\u2c60-\u2ce4\u2ceb-\u2cee\u2cf2\u2cf3\u2d00-\u2d25\u2d27\u2d2d\u2d30-\u2d67\u2d6f\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u2e2f\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303c\u3041-\u3096\u309d-\u309f\u30a1-\u30fa\u30fc-\u30ff\u3105-\u312d\u3131-\u318e\u31a0-\u31ba\u31f0-\u31ff\u3400-\u4db5\u4e00-\u9fcc\ua000-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua61f\ua62a\ua62b\ua640-\ua66e\ua67f-\ua697\ua6a0-\ua6ef\ua717-\ua71f\ua722-\ua788\ua78b-\ua78e\ua790-\ua793\ua7a0-\ua7aa\ua7f8-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9cf\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uaa60-\uaa76\uaa7a\uaa80-\uaaaf\uaab1\uaab5\uaab6\uaab9-\uaabd\uaac0\uaac2\uaadb-\uaadd\uaae0-\uaaea\uaaf2-\uaaf4\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uabc0-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\uf900-\ufa6d\ufa70-\ufad9\ufb00-\ufb06\ufb13-\ufb17\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40\ufb41\ufb43\ufb44\ufb46-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\uff21-\uff3a\uff41-\uff5a\uff66-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc0-9\u0300-\u036f\u0483-\u0487\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u0669\u0670\u06d6-\u06dc\u06df-\u06e4\u06e7\u06e8\u06ea-\u06ed\u06f0-\u06f9\u0711\u0730-\u074a\u07a6-\u07b0\u07c0-\u07c9\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0859-\u085b\u08e4-\u08fe\u0900-\u0903\u093a-\u093c\u093e-\u094f\u0951-\u0957\u0962\u0963\u0966-\u096f\u0981-\u0983\u09bc\u09be-\u09c4\u09c7\u09c8\u09cb-\u09cd\u09d7\u09e2\u09e3\u09e6-\u09ef\u0a01-\u0a03\u0a3c\u0a3e-\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a66-\u0a71\u0a75\u0a81-\u0a83\u0abc\u0abe-\u0ac5\u0ac7-\u0ac9\u0acb-\u0acd\u0ae2\u0ae3\u0ae6-\u0aef\u0b01-\u0b03\u0b3c\u0b3e-\u0b44\u0b47\u0b48\u0b4b-\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b66-\u0b6f\u0b82\u0bbe-\u0bc2\u0bc6-\u0bc8\u0bca-\u0bcd\u0bd7\u0be6-\u0bef\u0c01-\u0c03\u0c3e-\u0c44\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0c66-\u0c6f\u0c82\u0c83\u0cbc\u0cbe-\u0cc4\u0cc6-\u0cc8\u0cca-\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0ce6-\u0cef\u0d02\u0d03\u0d3e-\u0d44\u0d46-\u0d48\u0d4a-\u0d4d\u0d57\u0d62\u0d63\u0d66-\u0d6f\u0d82\u0d83\u0dca\u0dcf-\u0dd4\u0dd6\u0dd8-\u0ddf\u0df2\u0df3\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0e50-\u0e59\u0eb1\u0eb4-\u0eb9\u0ebb\u0ebc\u0ec8-\u0ecd\u0ed0-\u0ed9\u0f18\u0f19\u0f20-\u0f29\u0f35\u0f37\u0f39\u0f3e\u0f3f\u0f71-\u0f84\u0f86\u0f87\u0f8d-\u0f97\u0f99-\u0fbc\u0fc6\u102b-\u103e\u1040-\u1049\u1056-\u1059\u105e-\u1060\u1062-\u1064\u1067-\u106d\u1071-\u1074\u1082-\u108d\u108f-\u109d\u135d-\u135f\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b4-\u17d3\u17dd\u17e0-\u17e9\u180b-\u180d\u1810-\u1819\u18a9\u1920-\u192b\u1930-\u193b\u1946-\u194f\u19b0-\u19c0\u19c8\u19c9\u19d0-\u19d9\u1a17-\u1a1b\u1a55-\u1a5e\u1a60-\u1a7c\u1a7f-\u1a89\u1a90-\u1a99\u1b00-\u1b04\u1b34-\u1b44\u1b50-\u1b59\u1b6b-\u1b73\u1b80-\u1b82\u1ba1-\u1bad\u1bb0-\u1bb9\u1be6-\u1bf3\u1c24-\u1c37\u1c40-\u1c49\u1c50-\u1c59\u1cd0-\u1cd2\u1cd4-\u1ce8\u1ced\u1cf2-\u1cf4\u1dc0-\u1de6\u1dfc-\u1dff\u200c\u200d\u203f\u2040\u2054\u20d0-\u20dc\u20e1\u20e5-\u20f0\u2cef-\u2cf1\u2d7f\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua620-\ua629\ua66f\ua674-\ua67d\ua69f\ua6f0\ua6f1\ua802\ua806\ua80b\ua823-\ua827\ua880\ua881\ua8b4-\ua8c4\ua8d0-\ua8d9\ua8e0-\ua8f1\ua900-\ua909\ua926-\ua92d\ua947-\ua953\ua980-\ua983\ua9b3-\ua9c0\ua9d0-\ua9d9\uaa29-\uaa36\uaa43\uaa4c\uaa4d\uaa50-\uaa59\uaa7b\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uaaeb-\uaaef\uaaf5\uaaf6\uabe3-\uabea\uabec\uabed\uabf0-\uabf9\ufb1e\ufe00-\ufe0f\ufe20-\ufe26\ufe33\ufe34\ufe4d-\ufe4f\uff10-\uff19\uff3f]*$/.test(e)}},50198:(e,t,n)=>{"use strict";var r=n(46388),o=n(62191),i=n(62680),s=i("Object.prototype.toString"),a=n(32636)()&&"symbol"==typeof Symbol.toStringTag,u=o(),c=i("Array.prototype.indexOf",!0)||function(e,t){for(var n=0;n<e.length;n+=1)if(e[n]===t)return n;return-1},l=i("String.prototype.slice"),d={},p=n(29765),f=Object.getPrototypeOf;a&&p&&f&&r(u,(function(e){var t=new window[e];if(!(Symbol.toStringTag in t))throw new EvalError("this engine has support for Symbol.toStringTag, but "+e+" does not have the property! Please report this.");var n=f(t),r=p(n,Symbol.toStringTag);if(!r){var o=f(n);r=p(o,Symbol.toStringTag)}d[e]=r.get}));e.exports=function(e){if(!e||"object"!=typeof e)return!1;if(!a){var t=l(s(e),8,-1);return c(u,t)>-1}return!!p&&function(e){var t=!1;return r(d,(function(n,r){if(!t)try{t=n.call(e)===r}catch(o){}})),t}(e)}},95978:function(e,t){var n,r;r="undefined"!=typeof self?self:"undefined"!=typeof window||"undefined"!=typeof window?window:this,e.exports=function(r){"use strict";var o,i=(r=r||{}).Base64,s="2.6.4",a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",u=function(e){for(var t={},n=0,r=e.length;n<r;n++)t[e.charAt(n)]=n;return t}(a),c=String.fromCharCode,l=function(e){if(e.length<2)return(t=e.charCodeAt(0))<128?e:t<2048?c(192|t>>>6)+c(128|63&t):c(224|t>>>12&15)+c(128|t>>>6&63)+c(128|63&t);var t=65536+1024*(e.charCodeAt(0)-55296)+(e.charCodeAt(1)-56320);return c(240|t>>>18&7)+c(128|t>>>12&63)+c(128|t>>>6&63)+c(128|63&t)},d=/[\uD800-\uDBFF][\uDC00-\uDFFFF]|[^\x00-\x7F]/g,p=function(e){return e.replace(d,l)},f=function(e){var t=[0,2,1][e.length%3],n=e.charCodeAt(0)<<16|(e.length>1?e.charCodeAt(1):0)<<8|(e.length>2?e.charCodeAt(2):0);return[a.charAt(n>>>18),a.charAt(n>>>12&63),t>=2?"=":a.charAt(n>>>6&63),t>=1?"=":a.charAt(63&n)].join("")},h=r.btoa&&"function"==typeof r.btoa?function(e){return r.btoa(e)}:function(e){if(e.match(/[^\x00-\xFF]/))throw new RangeError("The string contains invalid characters.");return e.replace(/[\s\S]{1,3}/g,f)},m=function(e){return h(p(String(e)))},g=function(e){return e.replace(/[+\/]/g,(function(e){return"+"==e?"-":"_"})).replace(/=/g,"")},y=function(e,t){return t?g(m(e)):m(e)},v=function(e){return y(e,!0)};r.Uint8Array&&(o=function(e,t){for(var n="",r=0,o=e.length;r<o;r+=3){var i=e[r],s=e[r+1],u=e[r+2],c=i<<16|s<<8|u;n+=a.charAt(c>>>18)+a.charAt(c>>>12&63)+(void 0!==s?a.charAt(c>>>6&63):"=")+(void 0!==u?a.charAt(63&c):"=")}return t?g(n):n});var b,w=/[\xC0-\xDF][\x80-\xBF]|[\xE0-\xEF][\x80-\xBF]{2}|[\xF0-\xF7][\x80-\xBF]{3}/g,_=function(e){switch(e.length){case 4:var t=((7&e.charCodeAt(0))<<18|(63&e.charCodeAt(1))<<12|(63&e.charCodeAt(2))<<6|63&e.charCodeAt(3))-65536;return c(55296+(t>>>10))+c(56320+(1023&t));case 3:return c((15&e.charCodeAt(0))<<12|(63&e.charCodeAt(1))<<6|63&e.charCodeAt(2));default:return c((31&e.charCodeAt(0))<<6|63&e.charCodeAt(1))}},E=function(e){return e.replace(w,_)},S=function(e){var t=e.length,n=t%4,r=(t>0?u[e.charAt(0)]<<18:0)|(t>1?u[e.charAt(1)]<<12:0)|(t>2?u[e.charAt(2)]<<6:0)|(t>3?u[e.charAt(3)]:0),o=[c(r>>>16),c(r>>>8&255),c(255&r)];return o.length-=[0,0,2,1][n],o.join("")},C=r.atob&&"function"==typeof r.atob?function(e){return r.atob(e)}:function(e){return e.replace(/\S{1,4}/g,S)},P=function(e){return C(String(e).replace(/[^A-Za-z0-9\+\/]/g,""))},k=function(e){return E(C(e))},I=function(e){return String(e).replace(/[-_]/g,(function(e){return"-"==e?"+":"/"})).replace(/[^A-Za-z0-9\+\/]/g,"")},A=function(e){return k(I(e))};r.Uint8Array&&(b=function(e){return Uint8Array.from(P(I(e)),(function(e){return e.charCodeAt(0)}))});var T=function(){var e=r.Base64;return r.Base64=i,e};if(r.Base64={VERSION:s,atob:P,btoa:h,fromBase64:A,toBase64:y,utob:p,encode:y,encodeURI:v,btou:E,decode:A,noConflict:T,fromUint8Array:o,toUint8Array:b},"function"==typeof Object.defineProperty){var R=function(e){return{value:e,enumerable:!1,writable:!0,configurable:!0}};r.Base64.extendString=function(){Object.defineProperty(String.prototype,"fromBase64",R((function(){return A(this)}))),Object.defineProperty(String.prototype,"toBase64",R((function(e){return y(this,e)}))),Object.defineProperty(String.prototype,"toBase64URI",R((function(){return y(this,!0)})))}}return r.Meteor&&(Base64=r.Base64),e.exports?e.exports.Base64=r.Base64:void 0===(n=function(){return r.Base64}.apply(t,[]))||(e.exports=n),{Base64:r.Base64}}(r)},404:(e,t)=>{var n=/~/,r=/~[01]/g;function o(e){switch(e){case"~1":return"/";case"~0":return"~"}throw new Error("Invalid tilde escape: "+e)}function i(e){return n.test(e)?e.replace(r,o):e}function s(e){if("string"==typeof e){if(""===(e=e.split("/"))[0])return e;throw new Error("Invalid JSON pointer.")}if(Array.isArray(e))return e;throw new Error("Invalid JSON pointer.")}function a(e,t){if("object"!=typeof e)throw new Error("Invalid input object.");var n=(t=s(t)).length;if(1===n)return e;for(var r=1;r<n;){if(e=e[i(t[r++])],n===r)return e;if("object"!=typeof e)return}}function u(e,t,n){if("object"!=typeof e)throw new Error("Invalid input object.");if(0===(t=s(t)).length)throw new Error("Invalid JSON pointer for set.");return function(e,t,n){for(var r,o,s=1,a=t.length;s<a&&(r=i(t[s++]),o=a>s,void 0===e[r]&&(Array.isArray(e)&&"-"===r&&(r=e.length),o&&(""!==t[s]&&t[s]<1/0||"-"===t[s]?e[r]=[]:e[r]={})),o);)e=e[r];var u=e[r];return void 0===n?delete e[r]:e[r]=n,u}(e,t,n)}t.get=a,t.set=u,t.compile=function(e){var t=s(e);return{get:function(e){return a(e,t)},set:function(e,n){return u(e,t,n)}}}},7839:(e,t,n)=>{var r=n(22699),o=n(91285);function i(e){if(!(this instanceof i))return new i(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=i,o(i,r.EventEmitter),Object.defineProperty(i.prototype,"keys",{get:function(){return Object.keys(this.cache)}}),i.prototype.clear=function(){this.cache={},this.head=this.tail=null,this.length=0},i.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}},i.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)},i.prototype.peek=function(e){if(this.cache.hasOwnProperty(e)){var t=this.cache[e];if(this._checkAge(e,t))return t.value}},i.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},i.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)},i.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}},i.prototype.evict=function(){if(this.tail){var e=this.tail,t=this.remove(this.tail);this.emit("evict",{key:e,value:t})}}},81549:(e,t,n)=>{"use strict";n.d(t,{Z:()=>d});var r=n(99196),o=n.n(r),i=n(81665),s=n(13980),a=n.n(s),u=1073741823,c="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window||"undefined"!=typeof window?window:{};function l(e){var t=[];return{on:function(e){t.push(e)},off:function(e){t=t.filter((function(t){return t!==e}))},get:function(){return e},set:function(n,r){e=n,t.forEach((function(t){return t(e,r)}))}}}const d=o().createContext||function(e,t){var n,o,s,d="__create-react-context-"+((c[s="__global_unique_id__"]=(c[s]||0)+1)+"__"),p=function(e){function n(){var t;return(t=e.apply(this,arguments)||this).emitter=l(t.props.value),t}(0,i.Z)(n,e);var r=n.prototype;return r.getChildContext=function(){var e;return(e={})[d]=this.emitter,e},r.componentWillReceiveProps=function(e){if(this.props.value!==e.value){var n,r=this.props.value,o=e.value;((i=r)===(s=o)?0!==i||1/i==1/s:i!=i&&s!=s)?n=0:(n="function"==typeof t?t(r,o):u,0!==(n|=0)&&this.emitter.set(e.value,n))}var i,s},r.render=function(){return this.props.children},n}(r.Component);p.childContextTypes=((n={})[d]=a().object.isRequired,n);var f=function(t){function n(){var e;return(e=t.apply(this,arguments)||this).state={value:e.getValue()},e.onUpdate=function(t,n){0!=((0|e.observedBits)&n)&&e.setState({value:e.getValue()})},e}(0,i.Z)(n,t);var r=n.prototype;return r.componentWillReceiveProps=function(e){var t=e.observedBits;this.observedBits=null==t?u:t},r.componentDidMount=function(){this.context[d]&&this.context[d].on(this.onUpdate);var e=this.props.observedBits;this.observedBits=null==e?u:e},r.componentWillUnmount=function(){this.context[d]&&this.context[d].off(this.onUpdate)},r.getValue=function(){return this.context[d]?this.context[d].get():e},r.render=function(){return(e=this.props.children,Array.isArray(e)?e[0]:e)(this.state.value);var e},n}(r.Component);return f.contextTypes=((o={})[d]=a().object,o),{Provider:p,Consumer:f}}},39142:()=>{},43261:()=>{},53616:()=>{},81712:()=>{},32014:()=>{},17228:()=>{},9723:()=>{},80418:()=>{},50436:()=>{},21586:()=>{},27427:()=>{},96459:()=>{},6128:()=>{},25827:()=>{},23980:()=>{},62829:()=>{},19201:()=>{},46590:()=>{},79561: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)}},11378:e=>{var t=1e3,n=60*t,r=60*n,o=24*r,i=7*o,s=365.25*o;function a(e,t,n,r){var o=t>=1.5*n;return Math.round(e/n)+" "+r+(o?"s":"")}e.exports=function(e,u){u=u||{};var c=typeof e;if("string"===c&&e.length>0)return function(e){if((e=String(e)).length>100)return;var a=/^(-?(?:\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(!a)return;var u=parseFloat(a[1]);switch((a[2]||"ms").toLowerCase()){case"years":case"year":case"yrs":case"yr":case"y":return u*s;case"weeks":case"week":case"w":return u*i;case"days":case"day":case"d":return u*o;case"hours":case"hour":case"hrs":case"hr":case"h":return u*r;case"minutes":case"minute":case"mins":case"min":case"m":return u*n;case"seconds":case"second":case"secs":case"sec":case"s":return u*t;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return u;default:return}}(e);if("number"===c&&isFinite(e))return u.long?function(e){var i=Math.abs(e);if(i>=o)return a(e,i,o,"day");if(i>=r)return a(e,i,r,"hour");if(i>=n)return a(e,i,n,"minute");if(i>=t)return a(e,i,t,"second");return e+" ms"}(e):function(e){var i=Math.abs(e);if(i>=o)return Math.round(e/o)+"d";if(i>=r)return Math.round(e/r)+"h";if(i>=n)return Math.round(e/n)+"m";if(i>=t)return Math.round(e/t)+"s";return e+"ms"}(e);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(e))}},37320:e=>{"use strict";
23
  /*
24
  object-assign
25
  (c) Sindre Sorhus
26
  @license MIT
27
+ */var t=Object.getOwnPropertySymbols,n=Object.prototype.hasOwnProperty,r=Object.prototype.propertyIsEnumerable;function o(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach((function(e){r[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(o){return!1}}()?Object.assign:function(e,i){for(var s,a,u=o(e),c=1;c<arguments.length;c++){for(var l in s=Object(arguments[c]))n.call(s,l)&&(u[l]=s[l]);if(t){a=t(s);for(var d=0;d<a.length;d++)r.call(s,a[d])&&(u[a[d]]=s[a[d]])}}return u}},99500:(e,t,n)=>{var r="function"==typeof Map&&Map.prototype,o=Object.getOwnPropertyDescriptor&&r?Object.getOwnPropertyDescriptor(Map.prototype,"size"):null,i=r&&o&&"function"==typeof o.get?o.get:null,s=r&&Map.prototype.forEach,a="function"==typeof Set&&Set.prototype,u=Object.getOwnPropertyDescriptor&&a?Object.getOwnPropertyDescriptor(Set.prototype,"size"):null,c=a&&u&&"function"==typeof u.get?u.get:null,l=a&&Set.prototype.forEach,d="function"==typeof WeakMap&&WeakMap.prototype?WeakMap.prototype.has:null,p="function"==typeof WeakSet&&WeakSet.prototype?WeakSet.prototype.has:null,f="function"==typeof WeakRef&&WeakRef.prototype?WeakRef.prototype.deref:null,h=Boolean.prototype.valueOf,m=Object.prototype.toString,g=Function.prototype.toString,y=String.prototype.match,v="function"==typeof BigInt?BigInt.prototype.valueOf:null,b=Object.getOwnPropertySymbols,w="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?Symbol.prototype.toString:null,_="function"==typeof Symbol&&"object"==typeof Symbol.iterator,E=Object.prototype.propertyIsEnumerable,S=("function"==typeof Reflect?Reflect.getPrototypeOf:Object.getPrototypeOf)||([].__proto__===Array.prototype?function(e){return e.__proto__}:null),C=n(53260).custom,P=C&&R(C)?C:null,k="function"==typeof Symbol&&void 0!==Symbol.toStringTag?Symbol.toStringTag:null;function I(e,t,n){var r="double"===(n.quoteStyle||t)?'"':"'";return r+e+r}function A(e){return String(e).replace(/"/g,"&quot;")}function T(e){return!("[object Array]"!==L(e)||k&&"object"==typeof e&&k in e)}function R(e){if(_)return e&&"object"==typeof e&&e instanceof Symbol;if("symbol"==typeof e)return!0;if(!e||"object"!=typeof e||!w)return!1;try{return w.call(e),!0}catch(t){}return!1}e.exports=function e(t,n,r,o){var a=n||{};if(x(a,"quoteStyle")&&"single"!==a.quoteStyle&&"double"!==a.quoteStyle)throw new TypeError('option "quoteStyle" must be "single" or "double"');if(x(a,"maxStringLength")&&("number"==typeof a.maxStringLength?a.maxStringLength<0&&a.maxStringLength!==1/0:null!==a.maxStringLength))throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`');var u=!x(a,"customInspect")||a.customInspect;if("boolean"!=typeof u&&"symbol"!==u)throw new TypeError("option \"customInspect\", if provided, must be `true`, `false`, or `'symbol'`");if(x(a,"indent")&&null!==a.indent&&"\t"!==a.indent&&!(parseInt(a.indent,10)===a.indent&&a.indent>0))throw new TypeError('options "indent" must be "\\t", an integer > 0, or `null`');if(void 0===t)return"undefined";if(null===t)return"null";if("boolean"==typeof t)return t?"true":"false";if("string"==typeof t)return U(t,a);if("number"==typeof t)return 0===t?1/0/t>0?"0":"-0":String(t);if("bigint"==typeof t)return String(t)+"n";var m=void 0===a.depth?5:a.depth;if(void 0===r&&(r=0),r>=m&&m>0&&"object"==typeof t)return T(t)?"[Array]":"[Object]";var b=function(e,t){var n;if("\t"===e.indent)n="\t";else{if(!("number"==typeof e.indent&&e.indent>0))return null;n=Array(e.indent+1).join(" ")}return{base:n,prev:Array(t+1).join(n)}}(a,r);if(void 0===o)o=[];else if(F(o,t)>=0)return"[Circular]";function E(t,n,i){if(n&&(o=o.slice()).push(n),i){var s={depth:a.depth};return x(a,"quoteStyle")&&(s.quoteStyle=a.quoteStyle),e(t,s,r+1,o)}return e(t,a,r+1,o)}if("function"==typeof t){var C=function(e){if(e.name)return e.name;var t=y.call(g.call(e),/^function\s*([\w$]+)/);if(t)return t[1];return null}(t),O=q(t,E);return"[Function"+(C?": "+C:" (anonymous)")+"]"+(O.length>0?" { "+O.join(", ")+" }":"")}if(R(t)){var D=_?String(t).replace(/^(Symbol\(.*\))_[^)]*$/,"$1"):w.call(t);return"object"!=typeof t||_?D:Z(D)}if(function(e){if(!e||"object"!=typeof e)return!1;if("undefined"!=typeof HTMLElement&&e instanceof HTMLElement)return!0;return"string"==typeof e.nodeName&&"function"==typeof e.getAttribute}(t)){for(var B="<"+String(t.nodeName).toLowerCase(),H=t.attributes||[],V=0;V<H.length;V++)B+=" "+H[V].name+"="+I(A(H[V].value),"double",a);return B+=">",t.childNodes&&t.childNodes.length&&(B+="..."),B+="</"+String(t.nodeName).toLowerCase()+">"}if(T(t)){if(0===t.length)return"[]";var W=q(t,E);return b&&!function(e){for(var t=0;t<e.length;t++)if(F(e[t],"\n")>=0)return!1;return!0}(W)?"["+M(W,b)+"]":"[ "+W.join(", ")+" ]"}if(function(e){return!("[object Error]"!==L(e)||k&&"object"==typeof e&&k in e)}(t)){var $=q(t,E);return 0===$.length?"["+String(t)+"]":"{ ["+String(t)+"] "+$.join(", ")+" }"}if("object"==typeof t&&u){if(P&&"function"==typeof t[P])return t[P]();if("symbol"!==u&&"function"==typeof t.inspect)return t.inspect()}if(function(e){if(!i||!e||"object"!=typeof e)return!1;try{i.call(e);try{c.call(e)}catch(B){return!0}return e instanceof Map}catch(t){}return!1}(t)){var z=[];return s.call(t,(function(e,n){z.push(E(n,t,!0)+" => "+E(e,t))})),N("Map",i.call(t),z,b)}if(function(e){if(!c||!e||"object"!=typeof e)return!1;try{c.call(e);try{i.call(e)}catch(t){return!0}return e instanceof Set}catch(n){}return!1}(t)){var G=[];return l.call(t,(function(e){G.push(E(e,t))})),N("Set",c.call(t),G,b)}if(function(e){if(!d||!e||"object"!=typeof e)return!1;try{d.call(e,d);try{p.call(e,p)}catch(B){return!0}return e instanceof WeakMap}catch(t){}return!1}(t))return j("WeakMap");if(function(e){if(!p||!e||"object"!=typeof e)return!1;try{p.call(e,p);try{d.call(e,d)}catch(B){return!0}return e instanceof WeakSet}catch(t){}return!1}(t))return j("WeakSet");if(function(e){if(!f||!e||"object"!=typeof e)return!1;try{return f.call(e),!0}catch(t){}return!1}(t))return j("WeakRef");if(function(e){return!("[object Number]"!==L(e)||k&&"object"==typeof e&&k in e)}(t))return Z(E(Number(t)));if(function(e){if(!e||"object"!=typeof e||!v)return!1;try{return v.call(e),!0}catch(t){}return!1}(t))return Z(E(v.call(t)));if(function(e){return!("[object Boolean]"!==L(e)||k&&"object"==typeof e&&k in e)}(t))return Z(h.call(t));if(function(e){return!("[object String]"!==L(e)||k&&"object"==typeof e&&k in e)}(t))return Z(E(String(t)));if(!function(e){return!("[object Date]"!==L(e)||k&&"object"==typeof e&&k in e)}(t)&&!function(e){return!("[object RegExp]"!==L(e)||k&&"object"==typeof e&&k in e)}(t)){var Q=q(t,E),Y=S?S(t)===Object.prototype:t instanceof Object||t.constructor===Object,J=t instanceof Object?"":"null prototype",K=!Y&&k&&Object(t)===t&&k in t?L(t).slice(8,-1):J?"Object":"",X=(Y||"function"!=typeof t.constructor?"":t.constructor.name?t.constructor.name+" ":"")+(K||J?"["+[].concat(K||[],J||[]).join(": ")+"] ":"");return 0===Q.length?X+"{}":b?X+"{"+M(Q,b)+"}":X+"{ "+Q.join(", ")+" }"}return String(t)};var O=Object.prototype.hasOwnProperty||function(e){return e in this};function x(e,t){return O.call(e,t)}function L(e){return m.call(e)}function F(e,t){if(e.indexOf)return e.indexOf(t);for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1}function U(e,t){if(e.length>t.maxStringLength){var n=e.length-t.maxStringLength,r="... "+n+" more character"+(n>1?"s":"");return U(e.slice(0,t.maxStringLength),t)+r}return I(e.replace(/(['\\])/g,"\\$1").replace(/[\x00-\x1f]/g,D),"single",t)}function D(e){var t=e.charCodeAt(0),n={8:"b",9:"t",10:"n",12:"f",13:"r"}[t];return n?"\\"+n:"\\x"+(t<16?"0":"")+t.toString(16).toUpperCase()}function Z(e){return"Object("+e+")"}function j(e){return e+" { ? }"}function N(e,t,n,r){return e+" ("+t+") {"+(r?M(n,r):n.join(", "))+"}"}function M(e,t){if(0===e.length)return"";var n="\n"+t.prev+t.base;return n+e.join(","+n)+"\n"+t.prev}function q(e,t){var n=T(e),r=[];if(n){r.length=e.length;for(var o=0;o<e.length;o++)r[o]=x(e,o)?t(e[o],e):""}var i,s="function"==typeof b?b(e):[];if(_){i={};for(var a=0;a<s.length;a++)i["$"+s[a]]=s[a]}for(var u in e)x(e,u)&&(n&&String(Number(u))===u&&u<e.length||_&&i["$"+u]instanceof Symbol||(/[^\w$]/.test(u)?r.push(t(u,e)+": "+t(e[u],e)):r.push(u+": "+t(e[u],e))));if("function"==typeof b)for(var c=0;c<s.length;c++)E.call(e,s[c])&&r.push("["+t(s[c])+"]: "+t(e[s[c]],e));return r}},78319:function(e){e.exports=function(){"use strict";var e=Array.isArray||function(e){return"[object Array]"==Object.prototype.toString.call(e)},t=v,n=a,r=u,o=c,i=y,s=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^()])+)\\))?|\\(((?:\\\\.|[^()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function a(e){for(var t,n=[],r=0,o=0,i="";null!=(t=s.exec(e));){var a=t[0],u=t[1],c=t.index;if(i+=e.slice(o,c),o=c+a.length,u)i+=u[1];else{i&&(n.push(i),i="");var l=t[2],p=t[3],f=t[4],h=t[5],m=t[6],g=t[7],y="+"===m||"*"===m,v="?"===m||"*"===m,b=l||"/",w=f||h||(g?".*":"[^"+b+"]+?");n.push({name:p||r++,prefix:l||"",delimiter:b,optional:v,repeat:y,pattern:d(w)})}}return o<e.length&&(i+=e.substr(o)),i&&n.push(i),n}function u(e){return c(a(e))}function c(t){for(var n=new Array(t.length),r=0;r<t.length;r++)"object"==typeof t[r]&&(n[r]=new RegExp("^"+t[r].pattern+"$"));return function(r){for(var o="",i=r||{},s=0;s<t.length;s++){var a=t[s];if("string"!=typeof a){var u,c=i[a.name];if(null==c){if(a.optional)continue;throw new TypeError('Expected "'+a.name+'" to be defined')}if(e(c)){if(!a.repeat)throw new TypeError('Expected "'+a.name+'" to not repeat, but received "'+c+'"');if(0===c.length){if(a.optional)continue;throw new TypeError('Expected "'+a.name+'" to not be empty')}for(var l=0;l<c.length;l++){if(u=encodeURIComponent(c[l]),!n[s].test(u))throw new TypeError('Expected all "'+a.name+'" to match "'+a.pattern+'", but received "'+u+'"');o+=(0===l?a.prefix:a.delimiter)+u}}else{if(u=encodeURIComponent(c),!n[s].test(u))throw new TypeError('Expected "'+a.name+'" to match "'+a.pattern+'", but received "'+u+'"');o+=a.prefix+u}}else o+=a}return o}}function l(e){return e.replace(/([.+*?=^!:${}()[\]|\/])/g,"\\$1")}function d(e){return e.replace(/([=!:$\/()])/g,"\\$1")}function p(e,t){return e.keys=t,e}function f(e){return e.sensitive?"":"i"}function h(e,t){var n=e.source.match(/\((?!\?)/g);if(n)for(var r=0;r<n.length;r++)t.push({name:r,prefix:null,delimiter:null,optional:!1,repeat:!1,pattern:null});return p(e,t)}function m(e,t,n){for(var r=[],o=0;o<e.length;o++)r.push(v(e[o],t,n).source);return p(new RegExp("(?:"+r.join("|")+")",f(n)),t)}function g(e,t,n){for(var r=a(e),o=y(r,n),i=0;i<r.length;i++)"string"!=typeof r[i]&&t.push(r[i]);return p(o,t)}function y(e,t){for(var n=(t=t||{}).strict,r=!1!==t.end,o="",i=e[e.length-1],s="string"==typeof i&&/\/$/.test(i),a=0;a<e.length;a++){var u=e[a];if("string"==typeof u)o+=l(u);else{var c=l(u.prefix),d=u.pattern;u.repeat&&(d+="(?:"+c+d+")*"),o+=d=u.optional?c?"(?:"+c+"("+d+"))?":"("+d+")?":c+"("+d+")"}}return n||(o=(s?o.slice(0,-2):o)+"(?:\\/(?=$))?"),o+=r?"$":n&&s?"":"(?=\\/|$)",new RegExp("^"+o,f(t))}function v(t,n,r){return e(n=n||[])?r||(r={}):(r=n,n=[]),t instanceof RegExp?h(t,n,r):e(t)?m(t,n,r):g(t,n,r)}t.parse=n,t.compile=r,t.tokensToFunction=o,t.tokensToRegExp=i;var b,w="undefined"!=typeof document,_="undefined"!=typeof window,E="undefined"!=typeof history,S="undefined"!=typeof process,C=w&&document.ontouchstart?"touchstart":"click",P=_&&!(!window.history.location&&!window.location);function k(){this.callbacks=[],this.exits=[],this.current="",this.len=0,this._decodeURLComponents=!0,this._base="",this._strict=!1,this._running=!1,this._hashbang=!1,this.clickHandler=this.clickHandler.bind(this),this._onpopstate=this._onpopstate.bind(this)}function I(){var e=new k;function t(){return A.apply(e,arguments)}return t.callbacks=e.callbacks,t.exits=e.exits,t.base=e.base.bind(e),t.strict=e.strict.bind(e),t.start=e.start.bind(e),t.stop=e.stop.bind(e),t.show=e.show.bind(e),t.back=e.back.bind(e),t.redirect=e.redirect.bind(e),t.replace=e.replace.bind(e),t.dispatch=e.dispatch.bind(e),t.exit=e.exit.bind(e),t.configure=e.configure.bind(e),t.sameOrigin=e.sameOrigin.bind(e),t.clickHandler=e.clickHandler.bind(e),t.create=I,Object.defineProperty(t,"len",{get:function(){return e.len},set:function(t){e.len=t}}),Object.defineProperty(t,"current",{get:function(){return e.current},set:function(t){e.current=t}}),t.Context=O,t.Route=x,t}function A(e,t){if("function"==typeof e)return A.call(this,"*",e);if("function"==typeof t)for(var n=new x(e,null,this),r=1;r<arguments.length;++r)this.callbacks.push(n.middleware(arguments[r]));else"string"==typeof e?this["string"==typeof t?"redirect":"show"](e,t):this.start(e)}function T(e){if(!e.handled){var t=this,n=t._window;(t._hashbang?P&&this._getBase()+n.location.hash.replace("#!",""):P&&n.location.pathname+n.location.search)!==e.canonicalPath&&(t.stop(),e.handled=!1,P&&(n.location.href=e.canonicalPath))}}function R(e){return e.replace(/([.+*?=^!:${}()[\]|/\\])/g,"\\$1")}function O(e,t,n){var r=this.page=n||A,o=r._window,i=r._hashbang,s=r._getBase();"/"===e[0]&&0!==e.indexOf(s)&&(e=s+(i?"#!":"")+e);var a=e.indexOf("?");this.canonicalPath=e;var u=new RegExp("^"+R(s));if(this.path=e.replace(u,"")||"/",i&&(this.path=this.path.replace("#!","")||"/"),this.title=w&&o.document.title,this.state=t||{},this.state.path=e,this.querystring=~a?r._decodeURLEncodedURIComponent(e.slice(a+1)):"",this.pathname=r._decodeURLEncodedURIComponent(~a?e.slice(0,a):e),this.params={},this.hash="",!i){if(!~this.path.indexOf("#"))return;var c=this.path.split("#");this.path=this.pathname=c[0],this.hash=r._decodeURLEncodedURIComponent(c[1])||"",this.querystring=this.querystring.split("#")[0]}}function x(e,n,r){this.page=r||L;var o=n||{};o.strict=o.strict||r._strict,this.path="*"===e?"(.*)":e,this.method="GET",this.regexp=t(this.path,this.keys=[],o)}k.prototype.configure=function(e){var t=e||{};this._window=t.window||_&&window,this._decodeURLComponents=!1!==t.decodeURLComponents,this._popstate=!1!==t.popstate&&_,this._click=!1!==t.click&&w,this._hashbang=!!t.hashbang;var n=this._window;this._popstate?n.addEventListener("popstate",this._onpopstate,!1):_&&n.removeEventListener("popstate",this._onpopstate,!1),this._click?n.document.addEventListener(C,this.clickHandler,!1):w&&n.document.removeEventListener(C,this.clickHandler,!1),this._hashbang&&_&&!E?n.addEventListener("hashchange",this._onpopstate,!1):_&&n.removeEventListener("hashchange",this._onpopstate,!1)},k.prototype.base=function(e){if(0===arguments.length)return this._base;this._base=e},k.prototype._getBase=function(){var e=this._base;if(e)return e;var t=_&&this._window&&this._window.location;return _&&this._hashbang&&t&&"file:"===t.protocol&&(e=t.pathname),e},k.prototype.strict=function(e){if(0===arguments.length)return this._strict;this._strict=e},k.prototype.start=function(e){var t=e||{};if(this.configure(t),!1!==t.dispatch){var n;if(this._running=!0,P){var r=this._window.location;n=this._hashbang&&~r.hash.indexOf("#!")?r.hash.substr(2)+r.search:this._hashbang?r.search+r.hash:r.pathname+r.search+r.hash}this.replace(n,null,!0,t.dispatch)}},k.prototype.stop=function(){if(this._running){this.current="",this.len=0,this._running=!1;var e=this._window;this._click&&e.document.removeEventListener(C,this.clickHandler,!1),_&&e.removeEventListener("popstate",this._onpopstate,!1),_&&e.removeEventListener("hashchange",this._onpopstate,!1)}},k.prototype.show=function(e,t,n,r){var o=new O(e,t,this),i=this.prevContext;return this.prevContext=o,this.current=o.path,!1!==n&&this.dispatch(o,i),!1!==o.handled&&!1!==r&&o.pushState(),o},k.prototype.back=function(e,t){var n=this;if(this.len>0){var r=this._window;E&&r.history.back(),this.len--}else e?setTimeout((function(){n.show(e,t)})):setTimeout((function(){n.show(n._getBase(),t)}))},k.prototype.redirect=function(e,t){var n=this;"string"==typeof e&&"string"==typeof t&&A.call(this,e,(function(e){setTimeout((function(){n.replace(t)}),0)})),"string"==typeof e&&void 0===t&&setTimeout((function(){n.replace(e)}),0)},k.prototype.replace=function(e,t,n,r){var o=new O(e,t,this),i=this.prevContext;return this.prevContext=o,this.current=o.path,o.init=n,o.save(),!1!==r&&this.dispatch(o,i),o},k.prototype.dispatch=function(e,t){var n=0,r=0,o=this;function i(){var e=o.exits[r++];if(!e)return s();e(t,i)}function s(){var t=o.callbacks[n++];if(e.path===o.current)return t?void t(e,s):T.call(o,e);e.handled=!1}t?i():s()},k.prototype.exit=function(e,t){if("function"==typeof e)return this.exit("*",e);for(var n=new x(e,null,this),r=1;r<arguments.length;++r)this.exits.push(n.middleware(arguments[r]))},k.prototype.clickHandler=function(e){if(1===this._which(e)&&!(e.metaKey||e.ctrlKey||e.shiftKey||e.defaultPrevented)){var t=e.target,n=e.path||(e.composedPath?e.composedPath():null);if(n)for(var r=0;r<n.length;r++)if(n[r].nodeName&&"A"===n[r].nodeName.toUpperCase()&&n[r].href){t=n[r];break}for(;t&&"A"!==t.nodeName.toUpperCase();)t=t.parentNode;if(t&&"A"===t.nodeName.toUpperCase()){var o="object"==typeof t.href&&"SVGAnimatedString"===t.href.constructor.name;if(!t.hasAttribute("download")&&"external"!==t.getAttribute("rel")){var i=t.getAttribute("href");if((this._hashbang||!this._samePath(t)||!t.hash&&"#"!==i)&&!(i&&i.indexOf("mailto:")>-1)&&!(o?t.target.baseVal:t.target)&&(o||this.sameOrigin(t.href))){var s=o?t.href.baseVal:t.pathname+t.search+(t.hash||"");s="/"!==s[0]?"/"+s:s,S&&s.match(/^\/[a-zA-Z]:\//)&&(s=s.replace(/^\/[a-zA-Z]:\//,"/"));var a=s,u=this._getBase();0===s.indexOf(u)&&(s=s.substr(u.length)),this._hashbang&&(s=s.replace("#!","")),(!u||a!==s||P&&"file:"===this._window.location.protocol)&&(e.preventDefault(),this.show(a))}}}}},k.prototype._onpopstate=(b=!1,_?(w&&"complete"===document.readyState?b=!0:window.addEventListener("load",(function(){setTimeout((function(){b=!0}),0)})),function(e){if(b){var t=this;if(e.state){var n=e.state.path;t.replace(n,e.state)}else if(P){var r=t._window.location;t.show(r.pathname+r.search+r.hash,void 0,void 0,!1)}}}):function(){}),k.prototype._which=function(e){return null==(e=e||_&&this._window.event).which?e.button:e.which},k.prototype._toURL=function(e){var t=this._window;if("function"==typeof URL&&P)return new URL(e,t.location.toString());if(w){var n=t.document.createElement("a");return n.href=e,n}},k.prototype.sameOrigin=function(e){if(!e||!P)return!1;var t=this._toURL(e),n=this._window.location;return n.protocol===t.protocol&&n.hostname===t.hostname&&(n.port===t.port||""===n.port&&80===t.port)},k.prototype._samePath=function(e){if(!P)return!1;var t=this._window.location;return e.pathname===t.pathname&&e.search===t.search},k.prototype._decodeURLEncodedURIComponent=function(e){return"string"!=typeof e?e:this._decodeURLComponents?decodeURIComponent(e.replace(/\+/g," ")):e},O.prototype.pushState=function(){var e=this.page,t=e._window,n=e._hashbang;e.len++,E&&t.history.pushState(this.state,this.title,n&&"/"!==this.path?"#!"+this.path:this.canonicalPath)},O.prototype.save=function(){var e=this.page;E&&e._window.history.replaceState(this.state,this.title,e._hashbang&&"/"!==this.path?"#!"+this.path:this.canonicalPath)},x.prototype.middleware=function(e){var t=this;return function(n,r){if(t.match(n.path,n.params))return e(n,r);r()}},x.prototype.match=function(e,t){var n=this.keys,r=e.indexOf("?"),o=~r?e.slice(0,r):e,i=this.regexp.exec(decodeURIComponent(o));if(!i)return!1;delete t[0];for(var s=1,a=i.length;s<a;++s){var u=n[s-1],c=this.page._decodeURLEncodedURIComponent(i[s]);void 0===c&&hasOwnProperty.call(t,u.name)||(t[u.name]=c)}return!0};var L=I(),F=L,U=L;return F.default=U,F}()},54355:(e,t)=>{t.encode=function(e){var t="";for(var n in e)e.hasOwnProperty(n)&&(t.length&&(t+="&"),t+=encodeURIComponent(n)+"="+encodeURIComponent(e[n]));return t},t.decode=function(e){for(var t={},n=e.split("&"),r=0,o=n.length;r<o;r++){var i=n[r].split("=");t[decodeURIComponent(i[0])]=decodeURIComponent(i[1])}return t}},14243:e=>{var t=/^(?:(?![^:@]+:[^:@\/]*@)(http|https|ws|wss):\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/,n=["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"];e.exports=function(e){var r=e,o=e.indexOf("["),i=e.indexOf("]");-1!=o&&-1!=i&&(e=e.substring(0,o)+e.substring(o,i).replace(/:/g,";")+e.substring(i,e.length));for(var s=t.exec(e||""),a={},u=14;u--;)a[n[u]]=s[u]||"";return-1!=o&&-1!=i&&(a.source=r,a.host=a.host.substring(1,a.host.length-1).replace(/;/g,":"),a.authority=a.authority.replace("[","").replace("]","").replace(/;/g,":"),a.ipv6uri=!0),a}},20099:(e,t,n)=>{var r=n(30243);e.exports=f,e.exports.parse=i,e.exports.compile=function(e,t){return a(i(e,t),t)},e.exports.tokensToFunction=a,e.exports.tokensToRegExp=p;var o=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function i(e,t){for(var n,r=[],i=0,s=0,a="",l=t&&t.delimiter||"/";null!=(n=o.exec(e));){var d=n[0],p=n[1],f=n.index;if(a+=e.slice(s,f),s=f+d.length,p)a+=p[1];else{var h=e[s],m=n[2],g=n[3],y=n[4],v=n[5],b=n[6],w=n[7];a&&(r.push(a),a="");var _=null!=m&&null!=h&&h!==m,E="+"===b||"*"===b,S="?"===b||"*"===b,C=n[2]||l,P=y||v;r.push({name:g||i++,prefix:m||"",delimiter:C,optional:S,repeat:E,partial:_,asterisk:!!w,pattern:P?c(P):w?".*":"[^"+u(C)+"]+?"})}}return s<e.length&&(a+=e.substr(s)),a&&r.push(a),r}function s(e){return encodeURI(e).replace(/[\/?#]/g,(function(e){return"%"+e.charCodeAt(0).toString(16).toUpperCase()}))}function a(e,t){for(var n=new Array(e.length),o=0;o<e.length;o++)"object"==typeof e[o]&&(n[o]=new RegExp("^(?:"+e[o].pattern+")$",d(t)));return function(t,o){for(var i="",a=t||{},u=(o||{}).pretty?s:encodeURIComponent,c=0;c<e.length;c++){var l=e[c];if("string"!=typeof l){var d,p=a[l.name];if(null==p){if(l.optional){l.partial&&(i+=l.prefix);continue}throw new TypeError('Expected "'+l.name+'" to be defined')}if(r(p)){if(!l.repeat)throw new TypeError('Expected "'+l.name+'" to not repeat, but received `'+JSON.stringify(p)+"`");if(0===p.length){if(l.optional)continue;throw new TypeError('Expected "'+l.name+'" to not be empty')}for(var f=0;f<p.length;f++){if(d=u(p[f]),!n[c].test(d))throw new TypeError('Expected all "'+l.name+'" to match "'+l.pattern+'", but received `'+JSON.stringify(d)+"`");i+=(0===f?l.prefix:l.delimiter)+d}}else{if(d=l.asterisk?encodeURI(p).replace(/[?#]/g,(function(e){return"%"+e.charCodeAt(0).toString(16).toUpperCase()})):u(p),!n[c].test(d))throw new TypeError('Expected "'+l.name+'" to match "'+l.pattern+'", but received "'+d+'"');i+=l.prefix+d}}else i+=l}return i}}function u(e){return e.replace(/([.+*?=^!:${}()[\]|\/\\])/g,"\\$1")}function c(e){return e.replace(/([=!:$\/()])/g,"\\$1")}function l(e,t){return e.keys=t,e}function d(e){return e&&e.sensitive?"":"i"}function p(e,t,n){r(t)||(n=t||n,t=[]);for(var o=(n=n||{}).strict,i=!1!==n.end,s="",a=0;a<e.length;a++){var c=e[a];if("string"==typeof c)s+=u(c);else{var p=u(c.prefix),f="(?:"+c.pattern+")";t.push(c),c.repeat&&(f+="(?:"+p+f+")*"),s+=f=c.optional?c.partial?p+"("+f+")?":"(?:"+p+"("+f+"))?":p+"("+f+")"}}var h=u(n.delimiter||"/"),m=s.slice(-h.length)===h;return o||(s=(m?s.slice(0,-h.length):s)+"(?:"+h+"(?=$))?"),s+=i?"$":o&&m?"":"(?="+h+"|$)",l(new RegExp("^"+s,d(n)),t)}function f(e,t,n){return r(t)||(n=t||n,t=[]),n=n||{},e instanceof RegExp?function(e,t){var n=e.source.match(/\((?!\?)/g);if(n)for(var r=0;r<n.length;r++)t.push({name:r,prefix:null,delimiter:null,optional:!1,repeat:!1,partial:!1,asterisk:!1,pattern:null});return l(e,t)}(e,t):r(e)?function(e,t,n){for(var r=[],o=0;o<e.length;o++)r.push(f(e[o],t,n).source);return l(new RegExp("(?:"+r.join("|")+")",d(n)),t)}(e,t,n):function(e,t,n){return p(i(e,n),t,n)}(e,t,n)}},30243:e=>{e.exports=Array.isArray||function(e){return"[object Array]"==Object.prototype.toString.call(e)}},48650:e=>{var t,n=window.ProgressEvent,r=!!n;try{t=new n("loaded"),r="loaded"===t.type,t=null}catch(o){r=!1}e.exports=r?n:"function"==typeof document.createEvent?function(e,t){var n=document.createEvent("Event");return n.initEvent(e,!1,!1),t?(n.lengthComputable=Boolean(t.lengthComputable),n.loaded=Number(t.loaded)||0,n.total=Number(t.total)||0):(n.lengthComputable=!1,n.loaded=n.total=0),n}:function(e,t){var n=document.createEventObject();return n.type=e,t?(n.lengthComputable=Boolean(t.lengthComputable),n.loaded=Number(t.loaded)||0,n.total=Number(t.total)||0):(n.lengthComputable=!1,n.loaded=n.total=0),n}},68262:(e,t,n)=>{"use strict";var r=n(23586);function o(){}function i(){}i.resetWarningCache=o,e.exports=function(){function e(e,t,n,o,i,s){if(s!==r){var a=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw a.name="Invariant Violation",a}}function t(){return e}e.isRequired=e;var n={array:e,bigint:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:i,resetWarningCache:o};return n.PropTypes=n,n}},13980:(e,t,n)=>{e.exports=n(68262)()},23586:e=>{"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},85527:e=>{"use strict";var t=String.prototype.replace,n=/%20/g,r="RFC1738",o="RFC3986";e.exports={default:o,formatters:{RFC1738:function(e){return t.call(e,n,"+")},RFC3986:function(e){return String(e)}},RFC1738:r,RFC3986:o}},19126:(e,t,n)=>{"use strict";var r=n(66845),o=n(29166),i=n(85527);e.exports={formats:i,parse:o,stringify:r}},29166:(e,t,n)=>{"use strict";var r=n(12493),o=Object.prototype.hasOwnProperty,i=Array.isArray,s={allowDots:!1,allowPrototypes:!1,allowSparse:!1,arrayLimit:20,charset:"utf-8",charsetSentinel:!1,comma:!1,decoder:r.decode,delimiter:"&",depth:5,ignoreQueryPrefix:!1,interpretNumericEntities:!1,parameterLimit:1e3,parseArrays:!0,plainObjects:!1,strictNullHandling:!1},a=function(e){return e.replace(/&#(\d+);/g,(function(e,t){return String.fromCharCode(parseInt(t,10))}))},u=function(e,t){return e&&"string"==typeof e&&t.comma&&e.indexOf(",")>-1?e.split(","):e},c=function(e,t,n,r){if(e){var i=n.allowDots?e.replace(/\.([^.[]+)/g,"[$1]"):e,s=/(\[[^[\]]*])/g,a=n.depth>0&&/(\[[^[\]]*])/.exec(i),c=a?i.slice(0,a.index):i,l=[];if(c){if(!n.plainObjects&&o.call(Object.prototype,c)&&!n.allowPrototypes)return;l.push(c)}for(var d=0;n.depth>0&&null!==(a=s.exec(i))&&d<n.depth;){if(d+=1,!n.plainObjects&&o.call(Object.prototype,a[1].slice(1,-1))&&!n.allowPrototypes)return;l.push(a[1])}return a&&l.push("["+i.slice(a.index)+"]"),function(e,t,n,r){for(var o=r?t:u(t,n),i=e.length-1;i>=0;--i){var s,a=e[i];if("[]"===a&&n.parseArrays)s=[].concat(o);else{s=n.plainObjects?Object.create(null):{};var c="["===a.charAt(0)&&"]"===a.charAt(a.length-1)?a.slice(1,-1):a,l=parseInt(c,10);n.parseArrays||""!==c?!isNaN(l)&&a!==c&&String(l)===c&&l>=0&&n.parseArrays&&l<=n.arrayLimit?(s=[])[l]=o:"__proto__"!==c&&(s[c]=o):s={0:o}}o=s}return o}(l,t,n,r)}};e.exports=function(e,t){var n=function(e){if(!e)return s;if(null!==e.decoder&&void 0!==e.decoder&&"function"!=typeof e.decoder)throw new TypeError("Decoder has to be a function.");if(void 0!==e.charset&&"utf-8"!==e.charset&&"iso-8859-1"!==e.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var t=void 0===e.charset?s.charset:e.charset;return{allowDots:void 0===e.allowDots?s.allowDots:!!e.allowDots,allowPrototypes:"boolean"==typeof e.allowPrototypes?e.allowPrototypes:s.allowPrototypes,allowSparse:"boolean"==typeof e.allowSparse?e.allowSparse:s.allowSparse,arrayLimit:"number"==typeof e.arrayLimit?e.arrayLimit:s.arrayLimit,charset:t,charsetSentinel:"boolean"==typeof e.charsetSentinel?e.charsetSentinel:s.charsetSentinel,comma:"boolean"==typeof e.comma?e.comma:s.comma,decoder:"function"==typeof e.decoder?e.decoder:s.decoder,delimiter:"string"==typeof e.delimiter||r.isRegExp(e.delimiter)?e.delimiter:s.delimiter,depth:"number"==typeof e.depth||!1===e.depth?+e.depth:s.depth,ignoreQueryPrefix:!0===e.ignoreQueryPrefix,interpretNumericEntities:"boolean"==typeof e.interpretNumericEntities?e.interpretNumericEntities:s.interpretNumericEntities,parameterLimit:"number"==typeof e.parameterLimit?e.parameterLimit:s.parameterLimit,parseArrays:!1!==e.parseArrays,plainObjects:"boolean"==typeof e.plainObjects?e.plainObjects:s.plainObjects,strictNullHandling:"boolean"==typeof e.strictNullHandling?e.strictNullHandling:s.strictNullHandling}}(t);if(""===e||null==e)return n.plainObjects?Object.create(null):{};for(var l="string"==typeof e?function(e,t){var n,c={},l=t.ignoreQueryPrefix?e.replace(/^\?/,""):e,d=t.parameterLimit===1/0?void 0:t.parameterLimit,p=l.split(t.delimiter,d),f=-1,h=t.charset;if(t.charsetSentinel)for(n=0;n<p.length;++n)0===p[n].indexOf("utf8=")&&("utf8=%E2%9C%93"===p[n]?h="utf-8":"utf8=%26%2310003%3B"===p[n]&&(h="iso-8859-1"),f=n,n=p.length);for(n=0;n<p.length;++n)if(n!==f){var m,g,y=p[n],v=y.indexOf("]="),b=-1===v?y.indexOf("="):v+1;-1===b?(m=t.decoder(y,s.decoder,h,"key"),g=t.strictNullHandling?null:""):(m=t.decoder(y.slice(0,b),s.decoder,h,"key"),g=r.maybeMap(u(y.slice(b+1),t),(function(e){return t.decoder(e,s.decoder,h,"value")}))),g&&t.interpretNumericEntities&&"iso-8859-1"===h&&(g=a(g)),y.indexOf("[]=")>-1&&(g=i(g)?[g]:g),o.call(c,m)?c[m]=r.combine(c[m],g):c[m]=g}return c}(e,n):e,d=n.plainObjects?Object.create(null):{},p=Object.keys(l),f=0;f<p.length;++f){var h=p[f],m=c(h,l[h],n,"string"==typeof e);d=r.merge(d,m,n)}return!0===n.allowSparse?d:r.compact(d)}},66845:(e,t,n)=>{"use strict";var r=n(74294),o=n(12493),i=n(85527),s=Object.prototype.hasOwnProperty,a={brackets:function(e){return e+"[]"},comma:"comma",indices:function(e,t){return e+"["+t+"]"},repeat:function(e){return e}},u=Array.isArray,c=String.prototype.split,l=Array.prototype.push,d=function(e,t){l.apply(e,u(t)?t:[t])},p=Date.prototype.toISOString,f=i.default,h={addQueryPrefix:!1,allowDots:!1,charset:"utf-8",charsetSentinel:!1,delimiter:"&",encode:!0,encoder:o.encode,encodeValuesOnly:!1,format:f,formatter:i.formatters[f],indices:!1,serializeDate:function(e){return p.call(e)},skipNulls:!1,strictNullHandling:!1},m={},g=function e(t,n,i,s,a,l,p,f,g,y,v,b,w,_,E){for(var S,C=t,P=E,k=0,I=!1;void 0!==(P=P.get(m))&&!I;){var A=P.get(t);if(k+=1,void 0!==A){if(A===k)throw new RangeError("Cyclic object value");I=!0}void 0===P.get(m)&&(k=0)}if("function"==typeof p?C=p(n,C):C instanceof Date?C=y(C):"comma"===i&&u(C)&&(C=o.maybeMap(C,(function(e){return e instanceof Date?y(e):e}))),null===C){if(s)return l&&!w?l(n,h.encoder,_,"key",v):n;C=""}if("string"==typeof(S=C)||"number"==typeof S||"boolean"==typeof S||"symbol"==typeof S||"bigint"==typeof S||o.isBuffer(C)){if(l){var T=w?n:l(n,h.encoder,_,"key",v);if("comma"===i&&w){for(var R=c.call(String(C),","),O="",x=0;x<R.length;++x)O+=(0===x?"":",")+b(l(R[x],h.encoder,_,"value",v));return[b(T)+"="+O]}return[b(T)+"="+b(l(C,h.encoder,_,"value",v))]}return[b(n)+"="+b(String(C))]}var L,F=[];if(void 0===C)return F;if("comma"===i&&u(C))L=[{value:C.length>0?C.join(",")||null:void 0}];else if(u(p))L=p;else{var U=Object.keys(C);L=f?U.sort(f):U}for(var D=0;D<L.length;++D){var Z=L[D],j="object"==typeof Z&&void 0!==Z.value?Z.value:C[Z];if(!a||null!==j){var N=u(C)?"function"==typeof i?i(n,Z):n:n+(g?"."+Z:"["+Z+"]");E.set(t,k);var M=r();M.set(m,E),d(F,e(j,N,i,s,a,l,p,f,g,y,v,b,w,_,M))}}return F};e.exports=function(e,t){var n,o=e,c=function(e){if(!e)return h;if(null!==e.encoder&&void 0!==e.encoder&&"function"!=typeof e.encoder)throw new TypeError("Encoder has to be a function.");var t=e.charset||h.charset;if(void 0!==e.charset&&"utf-8"!==e.charset&&"iso-8859-1"!==e.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var n=i.default;if(void 0!==e.format){if(!s.call(i.formatters,e.format))throw new TypeError("Unknown format option provided.");n=e.format}var r=i.formatters[n],o=h.filter;return("function"==typeof e.filter||u(e.filter))&&(o=e.filter),{addQueryPrefix:"boolean"==typeof e.addQueryPrefix?e.addQueryPrefix:h.addQueryPrefix,allowDots:void 0===e.allowDots?h.allowDots:!!e.allowDots,charset:t,charsetSentinel:"boolean"==typeof e.charsetSentinel?e.charsetSentinel:h.charsetSentinel,delimiter:void 0===e.delimiter?h.delimiter:e.delimiter,encode:"boolean"==typeof e.encode?e.encode:h.encode,encoder:"function"==typeof e.encoder?e.encoder:h.encoder,encodeValuesOnly:"boolean"==typeof e.encodeValuesOnly?e.encodeValuesOnly:h.encodeValuesOnly,filter:o,format:n,formatter:r,serializeDate:"function"==typeof e.serializeDate?e.serializeDate:h.serializeDate,skipNulls:"boolean"==typeof e.skipNulls?e.skipNulls:h.skipNulls,sort:"function"==typeof e.sort?e.sort:null,strictNullHandling:"boolean"==typeof e.strictNullHandling?e.strictNullHandling:h.strictNullHandling}}(t);"function"==typeof c.filter?o=(0,c.filter)("",o):u(c.filter)&&(n=c.filter);var l,p=[];if("object"!=typeof o||null===o)return"";l=t&&t.arrayFormat in a?t.arrayFormat:t&&"indices"in t?t.indices?"indices":"repeat":"indices";var f=a[l];n||(n=Object.keys(o)),c.sort&&n.sort(c.sort);for(var m=r(),y=0;y<n.length;++y){var v=n[y];c.skipNulls&&null===o[v]||d(p,g(o[v],v,f,c.strictNullHandling,c.skipNulls,c.encode?c.encoder:null,c.filter,c.sort,c.allowDots,c.serializeDate,c.format,c.formatter,c.encodeValuesOnly,c.charset,m))}var b=p.join(c.delimiter),w=!0===c.addQueryPrefix?"?":"";return c.charsetSentinel&&("iso-8859-1"===c.charset?w+="utf8=%26%2310003%3B&":w+="utf8=%E2%9C%93&"),b.length>0?w+b:""}},12493:(e,t,n)=>{"use strict";var r=n(85527),o=Object.prototype.hasOwnProperty,i=Array.isArray,s=function(){for(var e=[],t=0;t<256;++t)e.push("%"+((t<16?"0":"")+t.toString(16)).toUpperCase());return e}(),a=function(e,t){for(var n=t&&t.plainObjects?Object.create(null):{},r=0;r<e.length;++r)void 0!==e[r]&&(n[r]=e[r]);return n};e.exports={arrayToObject:a,assign:function(e,t){return Object.keys(t).reduce((function(e,n){return e[n]=t[n],e}),e)},combine:function(e,t){return[].concat(e,t)},compact:function(e){for(var t=[{obj:{o:e},prop:"o"}],n=[],r=0;r<t.length;++r)for(var o=t[r],s=o.obj[o.prop],a=Object.keys(s),u=0;u<a.length;++u){var c=a[u],l=s[c];"object"==typeof l&&null!==l&&-1===n.indexOf(l)&&(t.push({obj:s,prop:c}),n.push(l))}return function(e){for(;e.length>1;){var t=e.pop(),n=t.obj[t.prop];if(i(n)){for(var r=[],o=0;o<n.length;++o)void 0!==n[o]&&r.push(n[o]);t.obj[t.prop]=r}}}(t),e},decode:function(e,t,n){var r=e.replace(/\+/g," ");if("iso-8859-1"===n)return r.replace(/%[0-9a-f]{2}/gi,unescape);try{return decodeURIComponent(r)}catch(o){return r}},encode:function(e,t,n,o,i){if(0===e.length)return e;var a=e;if("symbol"==typeof e?a=Symbol.prototype.toString.call(e):"string"!=typeof e&&(a=String(e)),"iso-8859-1"===n)return escape(a).replace(/%u[0-9a-f]{4}/gi,(function(e){return"%26%23"+parseInt(e.slice(2),16)+"%3B"}));for(var u="",c=0;c<a.length;++c){var l=a.charCodeAt(c);45===l||46===l||95===l||126===l||l>=48&&l<=57||l>=65&&l<=90||l>=97&&l<=122||i===r.RFC1738&&(40===l||41===l)?u+=a.charAt(c):l<128?u+=s[l]:l<2048?u+=s[192|l>>6]+s[128|63&l]:l<55296||l>=57344?u+=s[224|l>>12]+s[128|l>>6&63]+s[128|63&l]:(c+=1,l=65536+((1023&l)<<10|1023&a.charCodeAt(c)),u+=s[240|l>>18]+s[128|l>>12&63]+s[128|l>>6&63]+s[128|63&l])}return u},isBuffer:function(e){return!(!e||"object"!=typeof e)&&!!(e.constructor&&e.constructor.isBuffer&&e.constructor.isBuffer(e))},isRegExp:function(e){return"[object RegExp]"===Object.prototype.toString.call(e)},maybeMap:function(e,t){if(i(e)){for(var n=[],r=0;r<e.length;r+=1)n.push(t(e[r]));return n}return t(e)},merge:function e(t,n,r){if(!n)return t;if("object"!=typeof n){if(i(t))t.push(n);else{if(!t||"object"!=typeof t)return[t,n];(r&&(r.plainObjects||r.allowPrototypes)||!o.call(Object.prototype,n))&&(t[n]=!0)}return t}if(!t||"object"!=typeof t)return[t].concat(n);var s=t;return i(t)&&!i(n)&&(s=a(t,r)),i(t)&&i(n)?(n.forEach((function(n,i){if(o.call(t,i)){var s=t[i];s&&"object"==typeof s&&n&&"object"==typeof n?t[i]=e(s,n,r):t.push(n)}else t[i]=n})),t):Object.keys(n).reduce((function(t,i){var s=n[i];return o.call(t,i)?t[i]=e(t[i],s,r):t[i]=s,t}),s)}}},97375:(e,t)=>{"use strict";var n=Object.prototype.hasOwnProperty;function r(e){try{return decodeURIComponent(e.replace(/\+/g," "))}catch(t){return null}}function o(e){try{return encodeURIComponent(e)}catch(t){return null}}t.stringify=function(e,t){t=t||"";var r,i,s=[];for(i in"string"!=typeof t&&(t="?"),e)if(n.call(e,i)){if((r=e[i])||null!=r&&!isNaN(r)||(r=""),i=o(i),r=o(r),null===i||null===r)continue;s.push(i+"="+r)}return s.length?t+s.join("&"):""},t.parse=function(e){for(var t,n=/([^=?#&]+)=?([^&]*)/g,o={};t=n.exec(e);){var i=r(t[1]),s=r(t[2]);null===i||null===s||i in o||(o[i]=s)}return o}},11997:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"DraggableCore",{enumerable:!0,get:function(){return d.default}}),t.default=void 0;var o=function(e,t){if(!t&&e&&e.__esModule)return e;if(null===e||"object"!==r(e)&&"function"!=typeof e)return{default:e};var n=m(t);if(n&&n.has(e))return n.get(e);var o={},i=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var s in e)if("default"!==s&&Object.prototype.hasOwnProperty.call(e,s)){var a=i?Object.getOwnPropertyDescriptor(e,s):null;a&&(a.get||a.set)?Object.defineProperty(o,s,a):o[s]=e[s]}o.default=e,n&&n.set(e,o);return o}(n(99196)),i=h(n(13980)),s=h(n(91850)),a=h(n(6277)),u=n(54688),c=n(93585),l=n(40136),d=h(n(93816)),p=h(n(81177)),f=["axis","bounds","children","defaultPosition","defaultClassName","defaultClassNameDragging","defaultClassNameDragged","position","positionOffset","scale"];function h(e){return e&&e.__esModule?e:{default:e}}function m(e){if("function"!=typeof WeakMap)return null;var t=new WeakMap,n=new WeakMap;return(m=function(e){return e?n:t})(e)}function g(){return g=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},g.apply(this,arguments)}function y(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function v(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function b(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?v(Object(n),!0).forEach((function(t){A(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):v(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function w(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null==n)return;var r,o,i=[],_n=!0,s=!1;try{for(n=n.call(e);!(_n=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);_n=!0);}catch(a){s=!0,o=a}finally{try{_n||null==n.return||n.return()}finally{if(s)throw o}}return i}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return _(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return _(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function _(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function E(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function S(e,t){return S=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},S(e,t)}function C(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=I(e);if(t){var o=I(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return P(this,n)}}function P(e,t){if(t&&("object"===r(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return k(e)}function k(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function I(e){return I=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},I(e)}function A(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var T=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&S(e,t)}(l,e);var t,n,r,i=C(l);function l(e){var t;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,l),A(k(t=i.call(this,e)),"onDragStart",(function(e,n){if((0,p.default)("Draggable: onDragStart: %j",n),!1===t.props.onStart(e,(0,c.createDraggableData)(k(t),n)))return!1;t.setState({dragging:!0,dragged:!0})})),A(k(t),"onDrag",(function(e,n){if(!t.state.dragging)return!1;(0,p.default)("Draggable: onDrag: %j",n);var r=(0,c.createDraggableData)(k(t),n),o={x:r.x,y:r.y};if(t.props.bounds){var i=o.x,s=o.y;o.x+=t.state.slackX,o.y+=t.state.slackY;var a=w((0,c.getBoundPosition)(k(t),o.x,o.y),2),u=a[0],l=a[1];o.x=u,o.y=l,o.slackX=t.state.slackX+(i-o.x),o.slackY=t.state.slackY+(s-o.y),r.x=o.x,r.y=o.y,r.deltaX=o.x-t.state.x,r.deltaY=o.y-t.state.y}if(!1===t.props.onDrag(e,r))return!1;t.setState(o)})),A(k(t),"onDragStop",(function(e,n){if(!t.state.dragging)return!1;if(!1===t.props.onStop(e,(0,c.createDraggableData)(k(t),n)))return!1;(0,p.default)("Draggable: onDragStop: %j",n);var r={dragging:!1,slackX:0,slackY:0};if(Boolean(t.props.position)){var o=t.props.position,i=o.x,s=o.y;r.x=i,r.y=s}t.setState(r)})),t.state={dragging:!1,dragged:!1,x:e.position?e.position.x:e.defaultPosition.x,y:e.position?e.position.y:e.defaultPosition.y,prevPropsPosition:b({},e.position),slackX:0,slackY:0,isElementSVG:!1},!e.position||e.onDrag||e.onStop||console.warn("A `position` was applied to this <Draggable>, without drag handlers. This will make this component effectively undraggable. Please attach `onDrag` or `onStop` handlers so you can adjust the `position` of this element."),t}return t=l,r=[{key:"getDerivedStateFromProps",value:function(e,t){var n=e.position,r=t.prevPropsPosition;return!n||r&&n.x===r.x&&n.y===r.y?null:((0,p.default)("Draggable: getDerivedStateFromProps %j",{position:n,prevPropsPosition:r}),{x:n.x,y:n.y,prevPropsPosition:b({},n)})}}],(n=[{key:"componentDidMount",value:function(){void 0!==window.SVGElement&&this.findDOMNode()instanceof window.SVGElement&&this.setState({isElementSVG:!0})}},{key:"componentWillUnmount",value:function(){this.setState({dragging:!1})}},{key:"findDOMNode",value:function(){var e,t,n;return null!==(e=null===(t=this.props)||void 0===t||null===(n=t.nodeRef)||void 0===n?void 0:n.current)&&void 0!==e?e:s.default.findDOMNode(this)}},{key:"render",value:function(){var e,t=this.props,n=(t.axis,t.bounds,t.children),r=t.defaultPosition,i=t.defaultClassName,s=t.defaultClassNameDragging,l=t.defaultClassNameDragged,p=t.position,h=t.positionOffset,m=(t.scale,y(t,f)),v={},w=null,_=!Boolean(p)||this.state.dragging,E=p||r,S={x:(0,c.canDragX)(this)&&_?this.state.x:E.x,y:(0,c.canDragY)(this)&&_?this.state.y:E.y};this.state.isElementSVG?w=(0,u.createSVGTransform)(S,h):v=(0,u.createCSSTransform)(S,h);var C=(0,a.default)(n.props.className||"",i,(A(e={},s,this.state.dragging),A(e,l,this.state.dragged),e));return o.createElement(d.default,g({},m,{onStart:this.onDragStart,onDrag:this.onDrag,onStop:this.onDragStop}),o.cloneElement(o.Children.only(n),{className:C,style:b(b({},n.props.style),v),transform:w}))}}])&&E(t.prototype,n),r&&E(t,r),l}(o.Component);t.default=T,A(T,"displayName","Draggable"),A(T,"propTypes",b(b({},d.default.propTypes),{},{axis:i.default.oneOf(["both","x","y","none"]),bounds:i.default.oneOfType([i.default.shape({left:i.default.number,right:i.default.number,top:i.default.number,bottom:i.default.number}),i.default.string,i.default.oneOf([!1])]),defaultClassName:i.default.string,defaultClassNameDragging:i.default.string,defaultClassNameDragged:i.default.string,defaultPosition:i.default.shape({x:i.default.number,y:i.default.number}),positionOffset:i.default.shape({x:i.default.oneOfType([i.default.number,i.default.string]),y:i.default.oneOfType([i.default.number,i.default.string])}),position:i.default.shape({x:i.default.number,y:i.default.number}),className:l.dontSetMe,style:l.dontSetMe,transform:l.dontSetMe})),A(T,"defaultProps",b(b({},d.default.defaultProps),{},{axis:"both",bounds:!1,defaultClassName:"react-draggable",defaultClassNameDragging:"react-draggable-dragging",defaultClassNameDragged:"react-draggable-dragged",defaultPosition:{x:0,y:0},scale:1}))},93816:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=function(e,t){if(!t&&e&&e.__esModule)return e;if(null===e||"object"!==r(e)&&"function"!=typeof e)return{default:e};var n=p(t);if(n&&n.has(e))return n.get(e);var o={},i=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var s in e)if("default"!==s&&Object.prototype.hasOwnProperty.call(e,s)){var a=i?Object.getOwnPropertyDescriptor(e,s):null;a&&(a.get||a.set)?Object.defineProperty(o,s,a):o[s]=e[s]}o.default=e,n&&n.set(e,o);return o}(n(99196)),i=d(n(13980)),s=d(n(91850)),a=n(54688),u=n(93585),c=n(40136),l=d(n(81177));function d(e){return e&&e.__esModule?e:{default:e}}function p(e){if("function"!=typeof WeakMap)return null;var t=new WeakMap,n=new WeakMap;return(p=function(e){return e?n:t})(e)}function f(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null==n)return;var r,o,i=[],_n=!0,s=!1;try{for(n=n.call(e);!(_n=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);_n=!0);}catch(a){s=!0,o=a}finally{try{_n||null==n.return||n.return()}finally{if(s)throw o}}return i}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return h(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return h(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function m(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function g(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function y(e,t){return y=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},y(e,t)}function v(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=_(e);if(t){var o=_(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return b(this,n)}}function b(e,t){if(t&&("object"===r(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return w(e)}function w(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function _(e){return _=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},_(e)}function E(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var S={start:"touchstart",move:"touchmove",stop:"touchend"},C={start:"mousedown",move:"mousemove",stop:"mouseup"},P=C,k=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&y(e,t)}(c,e);var t,n,r,i=v(c);function c(){var e;m(this,c);for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];return E(w(e=i.call.apply(i,[this].concat(n))),"state",{dragging:!1,lastX:NaN,lastY:NaN,touchIdentifier:null}),E(w(e),"mounted",!1),E(w(e),"handleDragStart",(function(t){if(e.props.onMouseDown(t),!e.props.allowAnyClick&&"number"==typeof t.button&&0!==t.button)return!1;var n=e.findDOMNode();if(!n||!n.ownerDocument||!n.ownerDocument.body)throw new Error("<DraggableCore> not mounted on DragStart!");var r=n.ownerDocument;if(!(e.props.disabled||!(t.target instanceof r.defaultView.Node)||e.props.handle&&!(0,a.matchesSelectorAndParentsTo)(t.target,e.props.handle,n)||e.props.cancel&&(0,a.matchesSelectorAndParentsTo)(t.target,e.props.cancel,n))){"touchstart"===t.type&&t.preventDefault();var o=(0,a.getTouchIdentifier)(t);e.setState({touchIdentifier:o});var i=(0,u.getControlPosition)(t,o,w(e));if(null!=i){var s=i.x,c=i.y,d=(0,u.createCoreData)(w(e),s,c);(0,l.default)("DraggableCore: handleDragStart: %j",d),(0,l.default)("calling",e.props.onStart),!1!==e.props.onStart(t,d)&&!1!==e.mounted&&(e.props.enableUserSelectHack&&(0,a.addUserSelectStyles)(r),e.setState({dragging:!0,lastX:s,lastY:c}),(0,a.addEvent)(r,P.move,e.handleDrag),(0,a.addEvent)(r,P.stop,e.handleDragStop))}}})),E(w(e),"handleDrag",(function(t){var n=(0,u.getControlPosition)(t,e.state.touchIdentifier,w(e));if(null!=n){var r=n.x,o=n.y;if(Array.isArray(e.props.grid)){var i=r-e.state.lastX,s=o-e.state.lastY,a=f((0,u.snapToGrid)(e.props.grid,i,s),2);if(i=a[0],s=a[1],!i&&!s)return;r=e.state.lastX+i,o=e.state.lastY+s}var c=(0,u.createCoreData)(w(e),r,o);if((0,l.default)("DraggableCore: handleDrag: %j",c),!1!==e.props.onDrag(t,c)&&!1!==e.mounted)e.setState({lastX:r,lastY:o});else try{e.handleDragStop(new MouseEvent("mouseup"))}catch(p){var d=document.createEvent("MouseEvents");d.initMouseEvent("mouseup",!0,!0,window,0,0,0,0,0,!1,!1,!1,!1,0,null),e.handleDragStop(d)}}})),E(w(e),"handleDragStop",(function(t){if(e.state.dragging){var n=(0,u.getControlPosition)(t,e.state.touchIdentifier,w(e));if(null!=n){var r=n.x,o=n.y,i=(0,u.createCoreData)(w(e),r,o);if(!1===e.props.onStop(t,i)||!1===e.mounted)return!1;var s=e.findDOMNode();s&&e.props.enableUserSelectHack&&(0,a.removeUserSelectStyles)(s.ownerDocument),(0,l.default)("DraggableCore: handleDragStop: %j",i),e.setState({dragging:!1,lastX:NaN,lastY:NaN}),s&&((0,l.default)("DraggableCore: Removing handlers"),(0,a.removeEvent)(s.ownerDocument,P.move,e.handleDrag),(0,a.removeEvent)(s.ownerDocument,P.stop,e.handleDragStop))}}})),E(w(e),"onMouseDown",(function(t){return P=C,e.handleDragStart(t)})),E(w(e),"onMouseUp",(function(t){return P=C,e.handleDragStop(t)})),E(w(e),"onTouchStart",(function(t){return P=S,e.handleDragStart(t)})),E(w(e),"onTouchEnd",(function(t){return P=S,e.handleDragStop(t)})),e}return t=c,(n=[{key:"componentDidMount",value:function(){this.mounted=!0;var e=this.findDOMNode();e&&(0,a.addEvent)(e,S.start,this.onTouchStart,{passive:!1})}},{key:"componentWillUnmount",value:function(){this.mounted=!1;var e=this.findDOMNode();if(e){var t=e.ownerDocument;(0,a.removeEvent)(t,C.move,this.handleDrag),(0,a.removeEvent)(t,S.move,this.handleDrag),(0,a.removeEvent)(t,C.stop,this.handleDragStop),(0,a.removeEvent)(t,S.stop,this.handleDragStop),(0,a.removeEvent)(e,S.start,this.onTouchStart,{passive:!1}),this.props.enableUserSelectHack&&(0,a.removeUserSelectStyles)(t)}}},{key:"findDOMNode",value:function(){var e,t,n;return null!==(e=null===(t=this.props)||void 0===t||null===(n=t.nodeRef)||void 0===n?void 0:n.current)&&void 0!==e?e:s.default.findDOMNode(this)}},{key:"render",value:function(){return o.cloneElement(o.Children.only(this.props.children),{onMouseDown:this.onMouseDown,onMouseUp:this.onMouseUp,onTouchEnd:this.onTouchEnd})}}])&&g(t.prototype,n),r&&g(t,r),c}(o.Component);t.default=k,E(k,"displayName","DraggableCore"),E(k,"propTypes",{allowAnyClick:i.default.bool,disabled:i.default.bool,enableUserSelectHack:i.default.bool,offsetParent:function(e,t){if(e[t]&&1!==e[t].nodeType)throw new Error("Draggable's offsetParent must be a DOM Node.")},grid:i.default.arrayOf(i.default.number),handle:i.default.string,cancel:i.default.string,nodeRef:i.default.object,onStart:i.default.func,onDrag:i.default.func,onStop:i.default.func,onMouseDown:i.default.func,scale:i.default.number,className:c.dontSetMe,style:c.dontSetMe,transform:c.dontSetMe}),E(k,"defaultProps",{allowAnyClick:!1,disabled:!1,enableUserSelectHack:!0,onStart:function(){},onDrag:function(){},onStop:function(){},onMouseDown:function(){},scale:1})},41327:(e,t,n)=>{"use strict";var r=n(11997),o=r.default,i=r.DraggableCore;e.exports=o,e.exports.default=o,e.exports.DraggableCore=i},54688:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}Object.defineProperty(t,"__esModule",{value:!0}),t.matchesSelector=d,t.matchesSelectorAndParentsTo=function(e,t,n){var r=e;do{if(d(r,t))return!0;if(r===n)return!1;r=r.parentNode}while(r);return!1},t.addEvent=function(e,t,n,r){if(!e)return;var o=u({capture:!0},r);e.addEventListener?e.addEventListener(t,n,o):e.attachEvent?e.attachEvent("on"+t,n):e["on"+t]=n},t.removeEvent=function(e,t,n,r){if(!e)return;var o=u({capture:!0},r);e.removeEventListener?e.removeEventListener(t,n,o):e.detachEvent?e.detachEvent("on"+t,n):e["on"+t]=null},t.outerHeight=function(e){var t=e.clientHeight,n=e.ownerDocument.defaultView.getComputedStyle(e);return t+=(0,o.int)(n.borderTopWidth),t+=(0,o.int)(n.borderBottomWidth)},t.outerWidth=function(e){var t=e.clientWidth,n=e.ownerDocument.defaultView.getComputedStyle(e);return t+=(0,o.int)(n.borderLeftWidth),t+=(0,o.int)(n.borderRightWidth)},t.innerHeight=function(e){var t=e.clientHeight,n=e.ownerDocument.defaultView.getComputedStyle(e);return t-=(0,o.int)(n.paddingTop),t-=(0,o.int)(n.paddingBottom)},t.innerWidth=function(e){var t=e.clientWidth,n=e.ownerDocument.defaultView.getComputedStyle(e);return t-=(0,o.int)(n.paddingLeft),t-=(0,o.int)(n.paddingRight)},t.offsetXYFromParent=function(e,t,n){var r=t===t.ownerDocument.body?{left:0,top:0}:t.getBoundingClientRect(),o=(e.clientX+t.scrollLeft-r.left)/n,i=(e.clientY+t.scrollTop-r.top)/n;return{x:o,y:i}},t.createCSSTransform=function(e,t){var n=p(e,t,"px");return c({},(0,i.browserPrefixToKey)("transform",i.default),n)},t.createSVGTransform=function(e,t){return p(e,t,"")},t.getTranslation=p,t.getTouch=function(e,t){return e.targetTouches&&(0,o.findInArray)(e.targetTouches,(function(e){return t===e.identifier}))||e.changedTouches&&(0,o.findInArray)(e.changedTouches,(function(e){return t===e.identifier}))},t.getTouchIdentifier=function(e){if(e.targetTouches&&e.targetTouches[0])return e.targetTouches[0].identifier;if(e.changedTouches&&e.changedTouches[0])return e.changedTouches[0].identifier},t.addUserSelectStyles=function(e){if(!e)return;var t=e.getElementById("react-draggable-style-el");t||((t=e.createElement("style")).type="text/css",t.id="react-draggable-style-el",t.innerHTML=".react-draggable-transparent-selection *::-moz-selection {all: inherit;}\n",t.innerHTML+=".react-draggable-transparent-selection *::selection {all: inherit;}\n",e.getElementsByTagName("head")[0].appendChild(t));e.body&&f(e.body,"react-draggable-transparent-selection")},t.removeUserSelectStyles=function(e){if(!e)return;try{if(e.body&&h(e.body,"react-draggable-transparent-selection"),e.selection)e.selection.empty();else{var t=(e.defaultView||window).getSelection();t&&"Caret"!==t.type&&t.removeAllRanges()}}catch(n){}},t.addClassName=f,t.removeClassName=h;var o=n(40136),i=function(e,t){if(!t&&e&&e.__esModule)return e;if(null===e||"object"!==r(e)&&"function"!=typeof e)return{default:e};var n=s(t);if(n&&n.has(e))return n.get(e);var o={},i=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var a in e)if("default"!==a&&Object.prototype.hasOwnProperty.call(e,a)){var u=i?Object.getOwnPropertyDescriptor(e,a):null;u&&(u.get||u.set)?Object.defineProperty(o,a,u):o[a]=e[a]}o.default=e,n&&n.set(e,o);return o}(n(92185));function s(e){if("function"!=typeof WeakMap)return null;var t=new WeakMap,n=new WeakMap;return(s=function(e){return e?n:t})(e)}function a(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function u(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?a(Object(n),!0).forEach((function(t){c(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):a(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function c(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var l="";function d(e,t){return l||(l=(0,o.findInArray)(["matches","webkitMatchesSelector","mozMatchesSelector","msMatchesSelector","oMatchesSelector"],(function(t){return(0,o.isFunction)(e[t])}))),!!(0,o.isFunction)(e[l])&&e[l](t)}function p(e,t,n){var r=e.x,o=e.y,i="translate(".concat(r).concat(n,",").concat(o).concat(n,")");if(t){var s="".concat("string"==typeof t.x?t.x:t.x+n),a="".concat("string"==typeof t.y?t.y:t.y+n);i="translate(".concat(s,", ").concat(a,")")+i}return i}function f(e,t){e.classList?e.classList.add(t):e.className.match(new RegExp("(?:^|\\s)".concat(t,"(?!\\S)")))||(e.className+=" ".concat(t))}function h(e,t){e.classList?e.classList.remove(t):e.className=e.className.replace(new RegExp("(?:^|\\s)".concat(t,"(?!\\S)"),"g"),"")}},92185:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getPrefix=r,t.browserPrefixToKey=o,t.browserPrefixToStyle=function(e,t){return t?"-".concat(t.toLowerCase(),"-").concat(e):e},t.default=void 0;var n=["Moz","Webkit","O","ms"];function r(){var e,t,r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"transform";if("undefined"==typeof window)return"";var i=null===(e=window.document)||void 0===e||null===(t=e.documentElement)||void 0===t?void 0:t.style;if(!i)return"";if(r in i)return"";for(var s=0;s<n.length;s++)if(o(r,n[s])in i)return n[s];return""}function o(e,t){return t?"".concat(t).concat(function(e){for(var t="",n=!0,r=0;r<e.length;r++)n?(t+=e[r].toUpperCase(),n=!1):"-"===e[r]?n=!0:t+=e[r];return t}(e)):e}var i=r();t.default=i},81177:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(){0}},93585:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getBoundPosition=function(e,t,n){if(!e.props.bounds)return[t,n];var s=e.props.bounds;s="string"==typeof s?s:function(e){return{left:e.left,top:e.top,right:e.right,bottom:e.bottom}}(s);var a=i(e);if("string"==typeof s){var u,c=a.ownerDocument,l=c.defaultView;if(!((u="parent"===s?a.parentNode:c.querySelector(s))instanceof l.HTMLElement))throw new Error('Bounds selector "'+s+'" could not find an element.');var d=u,p=l.getComputedStyle(a),f=l.getComputedStyle(d);s={left:-a.offsetLeft+(0,r.int)(f.paddingLeft)+(0,r.int)(p.marginLeft),top:-a.offsetTop+(0,r.int)(f.paddingTop)+(0,r.int)(p.marginTop),right:(0,o.innerWidth)(d)-(0,o.outerWidth)(a)-a.offsetLeft+(0,r.int)(f.paddingRight)-(0,r.int)(p.marginRight),bottom:(0,o.innerHeight)(d)-(0,o.outerHeight)(a)-a.offsetTop+(0,r.int)(f.paddingBottom)-(0,r.int)(p.marginBottom)}}(0,r.isNum)(s.right)&&(t=Math.min(t,s.right));(0,r.isNum)(s.bottom)&&(n=Math.min(n,s.bottom));(0,r.isNum)(s.left)&&(t=Math.max(t,s.left));(0,r.isNum)(s.top)&&(n=Math.max(n,s.top));return[t,n]},t.snapToGrid=function(e,t,n){var r=Math.round(t/e[0])*e[0],o=Math.round(n/e[1])*e[1];return[r,o]},t.canDragX=function(e){return"both"===e.props.axis||"x"===e.props.axis},t.canDragY=function(e){return"both"===e.props.axis||"y"===e.props.axis},t.getControlPosition=function(e,t,n){var r="number"==typeof t?(0,o.getTouch)(e,t):null;if("number"==typeof t&&!r)return null;var s=i(n),a=n.props.offsetParent||s.offsetParent||s.ownerDocument.body;return(0,o.offsetXYFromParent)(r||e,a,n.props.scale)},t.createCoreData=function(e,t,n){var o=e.state,s=!(0,r.isNum)(o.lastX),a=i(e);return s?{node:a,deltaX:0,deltaY:0,lastX:t,lastY:n,x:t,y:n}:{node:a,deltaX:t-o.lastX,deltaY:n-o.lastY,lastX:o.lastX,lastY:o.lastY,x:t,y:n}},t.createDraggableData=function(e,t){var n=e.props.scale;return{node:t.node,x:e.state.x+t.deltaX/n,y:e.state.y+t.deltaY/n,deltaX:t.deltaX/n,deltaY:t.deltaY/n,lastX:e.state.x,lastY:e.state.y}};var r=n(40136),o=n(54688);function i(e){var t=e.findDOMNode();if(!t)throw new Error("<DraggableCore>: Unmounted during event!");return t}},40136:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.findInArray=function(e,t){for(var n=0,r=e.length;n<r;n++)if(t.apply(t,[e[n],n,e]))return e[n]},t.isFunction=function(e){return"function"==typeof e||"[object Function]"===Object.prototype.toString.call(e)},t.isNum=function(e){return"number"==typeof e&&!isNaN(e)},t.int=function(e){return parseInt(e,10)},t.dontSetMe=function(e,t,n){if(e[t])return new Error("Invalid prop ".concat(t," passed to ").concat(n," - do not set this, set it on the child."))}},66866:(e,t)=>{"use strict";var n=60103,r=60106,o=60107,i=60108,s=60114,a=60109,u=60110,c=60112,l=60113,d=60120,p=60115,f=60116,h=60121,m=60122,g=60117,y=60129,v=60131;
28
  /** @license React v17.0.2
29
  * react-is.production.min.js
30
  *
32
  *
33
  * This source code is licensed under the MIT license found in the
34
  * LICENSE file in the root directory of this source tree.
35
+ */if("function"==typeof Symbol&&Symbol.for){var b=Symbol.for;n=b("react.element"),r=b("react.portal"),o=b("react.fragment"),i=b("react.strict_mode"),s=b("react.profiler"),a=b("react.provider"),u=b("react.context"),c=b("react.forward_ref"),l=b("react.suspense"),d=b("react.suspense_list"),p=b("react.memo"),f=b("react.lazy"),h=b("react.block"),m=b("react.server.block"),g=b("react.fundamental"),y=b("react.debug_trace_mode"),v=b("react.legacy_hidden")}function w(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case n:switch(e=e.type){case o:case s:case i:case l:case d:return e;default:switch(e=e&&e.$$typeof){case u:case c:case f:case p:case a:return e;default:return t}}case r:return t}}}t.isContextConsumer=function(e){return w(e)===u}},48570:(e,t,n)=>{"use strict";e.exports=n(66866)},27483:(e,t,n)=>{"use strict";n.d(t,{j:()=>s});var r=n(81665),o=n(92693),i=n(10774),s=new(function(e){function t(){return e.apply(this,arguments)||this}(0,r.Z)(t,e);var n=t.prototype;return n.onSubscribe=function(){this.removeEventListener||this.setDefaultEventListener()},n.setEventListener=function(e){var t=this;this.removeEventListener&&this.removeEventListener(),this.removeEventListener=e((function(e){"boolean"==typeof e?t.setFocused(e):t.onFocus()}))},n.setFocused=function(e){this.focused=e,e&&this.onFocus()},n.onFocus=function(){this.listeners.forEach((function(e){e()}))},n.isFocused=function(){return"boolean"==typeof this.focused?this.focused:"undefined"==typeof document||[void 0,"visible","prerender"].includes(document.visibilityState)},n.setDefaultEventListener=function(){var e;!i.sk&&(null==(e=window)?void 0:e.addEventListener)&&this.setEventListener((function(e){var t=function(){return e()};return window.addEventListener("visibilitychange",t,!1),window.addEventListener("focus",t,!1),function(){window.removeEventListener("visibilitychange",t),window.removeEventListener("focus",t)}}))},t}(o.l))},60002:(e,t,n)=>{"use strict";n.d(t,{Su:()=>r.S});var r=n(29446),o=n(77820);n.o(o,"QueryClientProvider")&&n.d(t,{QueryClientProvider:function(){return o.QueryClientProvider}}),n.o(o,"useMutation")&&n.d(t,{useMutation:function(){return o.useMutation}}),n.o(o,"useQuery")&&n.d(t,{useQuery:function(){return o.useQuery}}),n.o(o,"useQueryClient")&&n.d(t,{useQueryClient:function(){return o.useQueryClient}})},20560:(e,t,n)=>{"use strict";n.d(t,{Gm:()=>i});var r=n(22348),o=n(10774);function i(){return{onFetch:function(e){e.fetchFn=function(){var t,n,i,u,c,l,d,p=null==(t=e.fetchOptions)||null==(n=t.meta)?void 0:n.refetchPage,f=null==(i=e.fetchOptions)||null==(u=i.meta)?void 0:u.fetchMore,h=null==f?void 0:f.pageParam,m="forward"===(null==f?void 0:f.direction),g="backward"===(null==f?void 0:f.direction),y=(null==(c=e.state.data)?void 0:c.pages)||[],v=(null==(l=e.state.data)?void 0:l.pageParams)||[],b=(0,o.G9)(),w=null==b?void 0:b.signal,_=v,E=!1,S=e.options.queryFn||function(){return Promise.reject("Missing queryFn")},C=function(e,t,n,r){return _=r?[t].concat(_):[].concat(_,[t]),r?[n].concat(e):[].concat(e,[n])},P=function(t,n,o,i){if(E)return Promise.reject("Cancelled");if(void 0===o&&!n&&t.length)return Promise.resolve(t);var s={queryKey:e.queryKey,signal:w,pageParam:o,meta:e.meta},a=S(s),u=Promise.resolve(a).then((function(e){return C(t,o,e,i)}));(0,r.LE)(a)&&(u.cancel=a.cancel);return u};if(y.length)if(m){var k=void 0!==h,I=k?h:s(e.options,y);d=P(y,k,I)}else if(g){var A=void 0!==h,T=A?h:a(e.options,y);d=P(y,A,T,!0)}else!function(){_=[];var t=void 0===e.options.getNextPageParam,n=!p||!y[0]||p(y[0],0,y);d=n?P([],t,v[0]):Promise.resolve(C([],v[0],y[0]));for(var r=function(n){d=d.then((function(r){if(!p||!y[n]||p(y[n],n,y)){var o=t?v[n]:s(e.options,r);return P(r,t,o)}return Promise.resolve(C(r,v[n],y[n]))}))},o=1;o<y.length;o++)r(o)}();else d=P([]);var R=d.then((function(e){return{pages:e,pageParams:_}}));return R.cancel=function(){E=!0,null==b||b.abort(),(0,r.LE)(d)&&d.cancel()},R}}}}function s(e,t){return null==e.getNextPageParam?void 0:e.getNextPageParam(t[t.length-1],t)}function a(e,t){return null==e.getPreviousPageParam?void 0:e.getPreviousPageParam(t[0],t)}},53579:(e,t,n)=>{"use strict";n.d(t,{j:()=>i,E:()=>s});var r=n(10774),o=console||{error:r.ZT,warn:r.ZT,log:r.ZT};function i(){return o}function s(e){o=e}},3284:(e,t,n)=>{"use strict";n.d(t,{m:()=>u,R:()=>c});var r=n(7896),o=n(53579),i=n(50667),s=n(22348),a=n(10774),u=function(){function e(e){this.options=(0,r.Z)({},e.defaultOptions,e.options),this.mutationId=e.mutationId,this.mutationCache=e.mutationCache,this.observers=[],this.state=e.state||c()}var t=e.prototype;return t.setState=function(e){this.dispatch({type:"setState",state:e})},t.addObserver=function(e){-1===this.observers.indexOf(e)&&this.observers.push(e)},t.removeObserver=function(e){this.observers=this.observers.filter((function(t){return t!==e}))},t.cancel=function(){return this.retryer?(this.retryer.cancel(),this.retryer.promise.then(a.ZT).catch(a.ZT)):Promise.resolve()},t.continue=function(){return this.retryer?(this.retryer.continue(),this.retryer.promise):this.execute()},t.execute=function(){var e,t=this,n="loading"===this.state.status,r=Promise.resolve();return n||(this.dispatch({type:"loading",variables:this.options.variables}),r=r.then((function(){return null==t.options.onMutate?void 0:t.options.onMutate(t.state.variables)})).then((function(e){e!==t.state.context&&t.dispatch({type:"loading",context:e,variables:t.state.variables})}))),r.then((function(){return t.executeMutation()})).then((function(n){e=n,null==t.mutationCache.config.onSuccess||t.mutationCache.config.onSuccess(e,t.state.variables,t.state.context,t)})).then((function(){return null==t.options.onSuccess?void 0:t.options.onSuccess(e,t.state.variables,t.state.context)})).then((function(){return null==t.options.onSettled?void 0:t.options.onSettled(e,null,t.state.variables,t.state.context)})).then((function(){return t.dispatch({type:"success",data:e}),e})).catch((function(e){return null==t.mutationCache.config.onError||t.mutationCache.config.onError(e,t.state.variables,t.state.context,t),(0,o.j)().error(e),Promise.resolve().then((function(){return null==t.options.onError?void 0:t.options.onError(e,t.state.variables,t.state.context)})).then((function(){return null==t.options.onSettled?void 0:t.options.onSettled(void 0,e,t.state.variables,t.state.context)})).then((function(){throw t.dispatch({type:"error",error:e}),e}))}))},t.executeMutation=function(){var e,t=this;return this.retryer=new s.m4({fn:function(){return t.options.mutationFn?t.options.mutationFn(t.state.variables):Promise.reject("No mutationFn found")},onFail:function(){t.dispatch({type:"failed"})},onPause:function(){t.dispatch({type:"pause"})},onContinue:function(){t.dispatch({type:"continue"})},retry:null!=(e=this.options.retry)?e:0,retryDelay:this.options.retryDelay}),this.retryer.promise},t.dispatch=function(e){var t=this;this.state=function(e,t){switch(t.type){case"failed":return(0,r.Z)({},e,{failureCount:e.failureCount+1});case"pause":return(0,r.Z)({},e,{isPaused:!0});case"continue":return(0,r.Z)({},e,{isPaused:!1});case"loading":return(0,r.Z)({},e,{context:t.context,data:void 0,error:null,isPaused:!1,status:"loading",variables:t.variables});case"success":return(0,r.Z)({},e,{data:t.data,error:null,status:"success",isPaused:!1});case"error":return(0,r.Z)({},e,{data:void 0,error:t.error,failureCount:e.failureCount+1,isPaused:!1,status:"error"});case"setState":return(0,r.Z)({},e,t.state);default:return e}}(this.state,e),i.V.batch((function(){t.observers.forEach((function(t){t.onMutationUpdate(e)})),t.mutationCache.notify(t)}))},e}();function c(){return{context:void 0,data:void 0,error:null,failureCount:0,isPaused:!1,status:"idle",variables:void 0}}},9601:(e,t,n)=>{"use strict";n.d(t,{L:()=>a});var r=n(81665),o=n(50667),i=n(3284),s=n(10774),a=function(e){function t(t){var n;return(n=e.call(this)||this).config=t||{},n.mutations=[],n.mutationId=0,n}(0,r.Z)(t,e);var n=t.prototype;return n.build=function(e,t,n){var r=new i.m({mutationCache:this,mutationId:++this.mutationId,options:e.defaultMutationOptions(t),state:n,defaultOptions:t.mutationKey?e.getMutationDefaults(t.mutationKey):void 0});return this.add(r),r},n.add=function(e){this.mutations.push(e),this.notify(e)},n.remove=function(e){this.mutations=this.mutations.filter((function(t){return t!==e})),e.cancel(),this.notify(e)},n.clear=function(){var e=this;o.V.batch((function(){e.mutations.forEach((function(t){e.remove(t)}))}))},n.getAll=function(){return this.mutations},n.find=function(e){return void 0===e.exact&&(e.exact=!0),this.mutations.find((function(t){return(0,s.X7)(e,t)}))},n.findAll=function(e){return this.mutations.filter((function(t){return(0,s.X7)(e,t)}))},n.notify=function(e){var t=this;o.V.batch((function(){t.listeners.forEach((function(t){t(e)}))}))},n.onFocus=function(){this.resumePausedMutations()},n.onOnline=function(){this.resumePausedMutations()},n.resumePausedMutations=function(){var e=this.mutations.filter((function(e){return e.state.isPaused}));return o.V.batch((function(){return e.reduce((function(e,t){return e.then((function(){return t.continue().catch(s.ZT)}))}),Promise.resolve())}))},t}(n(92693).l)},74856:(e,t,n)=>{"use strict";n.d(t,{X:()=>a});var r=n(7896),o=n(81665),i=n(3284),s=n(50667),a=function(e){function t(t,n){var r;return(r=e.call(this)||this).client=t,r.setOptions(n),r.bindMethods(),r.updateResult(),r}(0,o.Z)(t,e);var n=t.prototype;return n.bindMethods=function(){this.mutate=this.mutate.bind(this),this.reset=this.reset.bind(this)},n.setOptions=function(e){this.options=this.client.defaultMutationOptions(e)},n.onUnsubscribe=function(){var e;this.listeners.length||(null==(e=this.currentMutation)||e.removeObserver(this))},n.onMutationUpdate=function(e){this.updateResult();var t={listeners:!0};"success"===e.type?t.onSuccess=!0:"error"===e.type&&(t.onError=!0),this.notify(t)},n.getCurrentResult=function(){return this.currentResult},n.reset=function(){this.currentMutation=void 0,this.updateResult(),this.notify({listeners:!0})},n.mutate=function(e,t){return this.mutateOptions=t,this.currentMutation&&this.currentMutation.removeObserver(this),this.currentMutation=this.client.getMutationCache().build(this.client,(0,r.Z)({},this.options,{variables:void 0!==e?e:this.options.variables})),this.currentMutation.addObserver(this),this.currentMutation.execute()},n.updateResult=function(){var e=this.currentMutation?this.currentMutation.state:(0,i.R)(),t=(0,r.Z)({},e,{isLoading:"loading"===e.status,isSuccess:"success"===e.status,isError:"error"===e.status,isIdle:"idle"===e.status,mutate:this.mutate,reset:this.reset});this.currentResult=t},n.notify=function(e){var t=this;s.V.batch((function(){t.mutateOptions&&(e.onSuccess?(null==t.mutateOptions.onSuccess||t.mutateOptions.onSuccess(t.currentResult.data,t.currentResult.variables,t.currentResult.context),null==t.mutateOptions.onSettled||t.mutateOptions.onSettled(t.currentResult.data,null,t.currentResult.variables,t.currentResult.context)):e.onError&&(null==t.mutateOptions.onError||t.mutateOptions.onError(t.currentResult.error,t.currentResult.variables,t.currentResult.context),null==t.mutateOptions.onSettled||t.mutateOptions.onSettled(void 0,t.currentResult.error,t.currentResult.variables,t.currentResult.context))),e.listeners&&t.listeners.forEach((function(e){e(t.currentResult)}))}))},t}(n(92693).l)},50667:(e,t,n)=>{"use strict";n.d(t,{V:()=>o});var r=n(10774),o=new(function(){function e(){this.queue=[],this.transactions=0,this.notifyFn=function(e){e()},this.batchNotifyFn=function(e){e()}}var t=e.prototype;return t.batch=function(e){this.transactions++;var t=e();return this.transactions--,this.transactions||this.flush(),t},t.schedule=function(e){var t=this;this.transactions?this.queue.push(e):(0,r.A4)((function(){t.notifyFn(e)}))},t.batchCalls=function(e){var t=this;return function(){for(var n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];t.schedule((function(){e.apply(void 0,r)}))}},t.flush=function(){var e=this,t=this.queue;this.queue=[],t.length&&(0,r.A4)((function(){e.batchNotifyFn((function(){t.forEach((function(t){e.notifyFn(t)}))}))}))},t.setNotifyFunction=function(e){this.notifyFn=e},t.setBatchNotifyFunction=function(e){this.batchNotifyFn=e},e}())},58927:(e,t,n)=>{"use strict";n.d(t,{N:()=>s});var r=n(81665),o=n(92693),i=n(10774),s=new(function(e){function t(){return e.apply(this,arguments)||this}(0,r.Z)(t,e);var n=t.prototype;return n.onSubscribe=function(){this.removeEventListener||this.setDefaultEventListener()},n.setEventListener=function(e){var t=this;this.removeEventListener&&this.removeEventListener(),this.removeEventListener=e((function(e){"boolean"==typeof e?t.setOnline(e):t.onOnline()}))},n.setOnline=function(e){this.online=e,e&&this.onOnline()},n.onOnline=function(){this.listeners.forEach((function(e){e()}))},n.isOnline=function(){return"boolean"==typeof this.online?this.online:"undefined"==typeof navigator||void 0===navigator.onLine||navigator.onLine},n.setDefaultEventListener=function(){var e;!i.sk&&(null==(e=window)?void 0:e.addEventListener)&&this.setEventListener((function(e){var t=function(){return e()};return window.addEventListener("online",t,!1),window.addEventListener("offline",t,!1),function(){window.removeEventListener("online",t),window.removeEventListener("offline",t)}}))},t}(o.l))},81257:(e,t,n)=>{"use strict";n.d(t,{A:()=>u});var r=n(7896),o=n(10774),i=n(50667),s=n(53579),a=n(22348),u=function(){function e(e){this.abortSignalConsumed=!1,this.defaultOptions=e.defaultOptions,this.setOptions(e.options),this.observers=[],this.cache=e.cache,this.queryKey=e.queryKey,this.queryHash=e.queryHash,this.initialState=e.state||this.getDefaultState(this.options),this.state=this.initialState,this.meta=e.meta,this.scheduleGc()}var t=e.prototype;return t.setOptions=function(e){var t;this.options=(0,r.Z)({},this.defaultOptions,e),this.meta=null==e?void 0:e.meta,this.cacheTime=Math.max(this.cacheTime||0,null!=(t=this.options.cacheTime)?t:3e5)},t.setDefaultOptions=function(e){this.defaultOptions=e},t.scheduleGc=function(){var e=this;this.clearGcTimeout(),(0,o.PN)(this.cacheTime)&&(this.gcTimeout=setTimeout((function(){e.optionalRemove()}),this.cacheTime))},t.clearGcTimeout=function(){clearTimeout(this.gcTimeout),this.gcTimeout=void 0},t.optionalRemove=function(){this.observers.length||this.state.isFetching||this.cache.remove(this)},t.setData=function(e,t){var n,r,i=this.state.data,s=(0,o.SE)(e,i);return(null==(n=(r=this.options).isDataEqual)?void 0:n.call(r,i,s))?s=i:!1!==this.options.structuralSharing&&(s=(0,o.Q$)(i,s)),this.dispatch({data:s,type:"success",dataUpdatedAt:null==t?void 0:t.updatedAt}),s},t.setState=function(e,t){this.dispatch({type:"setState",state:e,setStateOptions:t})},t.cancel=function(e){var t,n=this.promise;return null==(t=this.retryer)||t.cancel(e),n?n.then(o.ZT).catch(o.ZT):Promise.resolve()},t.destroy=function(){this.clearGcTimeout(),this.cancel({silent:!0})},t.reset=function(){this.destroy(),this.setState(this.initialState)},t.isActive=function(){return this.observers.some((function(e){return!1!==e.options.enabled}))},t.isFetching=function(){return this.state.isFetching},t.isStale=function(){return this.state.isInvalidated||!this.state.dataUpdatedAt||this.observers.some((function(e){return e.getCurrentResult().isStale}))},t.isStaleByTime=function(e){return void 0===e&&(e=0),this.state.isInvalidated||!this.state.dataUpdatedAt||!(0,o.Kp)(this.state.dataUpdatedAt,e)},t.onFocus=function(){var e,t=this.observers.find((function(e){return e.shouldFetchOnWindowFocus()}));t&&t.refetch(),null==(e=this.retryer)||e.continue()},t.onOnline=function(){var e,t=this.observers.find((function(e){return e.shouldFetchOnReconnect()}));t&&t.refetch(),null==(e=this.retryer)||e.continue()},t.addObserver=function(e){-1===this.observers.indexOf(e)&&(this.observers.push(e),this.clearGcTimeout(),this.cache.notify({type:"observerAdded",query:this,observer:e}))},t.removeObserver=function(e){-1!==this.observers.indexOf(e)&&(this.observers=this.observers.filter((function(t){return t!==e})),this.observers.length||(this.retryer&&(this.retryer.isTransportCancelable||this.abortSignalConsumed?this.retryer.cancel({revert:!0}):this.retryer.cancelRetry()),this.cacheTime?this.scheduleGc():this.cache.remove(this)),this.cache.notify({type:"observerRemoved",query:this,observer:e}))},t.getObserversCount=function(){return this.observers.length},t.invalidate=function(){this.state.isInvalidated||this.dispatch({type:"invalidate"})},t.fetch=function(e,t){var n,r,i,u=this;if(this.state.isFetching)if(this.state.dataUpdatedAt&&(null==t?void 0:t.cancelRefetch))this.cancel({silent:!0});else if(this.promise)return this.promise;if(e&&this.setOptions(e),!this.options.queryFn){var c=this.observers.find((function(e){return e.options.queryFn}));c&&this.setOptions(c.options)}var l=(0,o.mc)(this.queryKey),d=(0,o.G9)(),p={queryKey:l,pageParam:void 0,meta:this.meta};Object.defineProperty(p,"signal",{enumerable:!0,get:function(){if(d)return u.abortSignalConsumed=!0,d.signal}});var f,h,m={fetchOptions:t,options:this.options,queryKey:l,state:this.state,fetchFn:function(){return u.options.queryFn?(u.abortSignalConsumed=!1,u.options.queryFn(p)):Promise.reject("Missing queryFn")},meta:this.meta};(null==(n=this.options.behavior)?void 0:n.onFetch)&&(null==(f=this.options.behavior)||f.onFetch(m));(this.revertState=this.state,this.state.isFetching&&this.state.fetchMeta===(null==(r=m.fetchOptions)?void 0:r.meta))||this.dispatch({type:"fetch",meta:null==(h=m.fetchOptions)?void 0:h.meta});return this.retryer=new a.m4({fn:m.fetchFn,abort:null==d||null==(i=d.abort)?void 0:i.bind(d),onSuccess:function(e){u.setData(e),null==u.cache.config.onSuccess||u.cache.config.onSuccess(e,u),0===u.cacheTime&&u.optionalRemove()},onError:function(e){(0,a.DV)(e)&&e.silent||u.dispatch({type:"error",error:e}),(0,a.DV)(e)||(null==u.cache.config.onError||u.cache.config.onError(e,u),(0,s.j)().error(e)),0===u.cacheTime&&u.optionalRemove()},onFail:function(){u.dispatch({type:"failed"})},onPause:function(){u.dispatch({type:"pause"})},onContinue:function(){u.dispatch({type:"continue"})},retry:m.options.retry,retryDelay:m.options.retryDelay}),this.promise=this.retryer.promise,this.promise},t.dispatch=function(e){var t=this;this.state=this.reducer(this.state,e),i.V.batch((function(){t.observers.forEach((function(t){t.onQueryUpdate(e)})),t.cache.notify({query:t,type:"queryUpdated",action:e})}))},t.getDefaultState=function(e){var t="function"==typeof e.initialData?e.initialData():e.initialData,n=void 0!==e.initialData?"function"==typeof e.initialDataUpdatedAt?e.initialDataUpdatedAt():e.initialDataUpdatedAt:0,r=void 0!==t;return{data:t,dataUpdateCount:0,dataUpdatedAt:r?null!=n?n:Date.now():0,error:null,errorUpdateCount:0,errorUpdatedAt:0,fetchFailureCount:0,fetchMeta:null,isFetching:!1,isInvalidated:!1,isPaused:!1,status:r?"success":"idle"}},t.reducer=function(e,t){var n,o;switch(t.type){case"failed":return(0,r.Z)({},e,{fetchFailureCount:e.fetchFailureCount+1});case"pause":return(0,r.Z)({},e,{isPaused:!0});case"continue":return(0,r.Z)({},e,{isPaused:!1});case"fetch":return(0,r.Z)({},e,{fetchFailureCount:0,fetchMeta:null!=(n=t.meta)?n:null,isFetching:!0,isPaused:!1,status:e.dataUpdatedAt?e.status:"loading"});case"success":return(0,r.Z)({},e,{data:t.data,dataUpdateCount:e.dataUpdateCount+1,dataUpdatedAt:null!=(o=t.dataUpdatedAt)?o:Date.now(),error:null,fetchFailureCount:0,isFetching:!1,isInvalidated:!1,isPaused:!1,status:"success"});case"error":var i=t.error;return(0,a.DV)(i)&&i.revert&&this.revertState?(0,r.Z)({},this.revertState):(0,r.Z)({},e,{error:i,errorUpdateCount:e.errorUpdateCount+1,errorUpdatedAt:Date.now(),fetchFailureCount:e.fetchFailureCount+1,isFetching:!1,isPaused:!1,status:"error"});case"invalidate":return(0,r.Z)({},e,{isInvalidated:!0});case"setState":return(0,r.Z)({},e,t.state);default:return e}},e}()},10384:(e,t,n)=>{"use strict";n.d(t,{t:()=>a});var r=n(81665),o=n(10774),i=n(81257),s=n(50667),a=function(e){function t(t){var n;return(n=e.call(this)||this).config=t||{},n.queries=[],n.queriesMap={},n}(0,r.Z)(t,e);var n=t.prototype;return n.build=function(e,t,n){var r,s=t.queryKey,a=null!=(r=t.queryHash)?r:(0,o.Rm)(s,t),u=this.get(a);return u||(u=new i.A({cache:this,queryKey:s,queryHash:a,options:e.defaultQueryOptions(t),state:n,defaultOptions:e.getQueryDefaults(s),meta:t.meta}),this.add(u)),u},n.add=function(e){this.queriesMap[e.queryHash]||(this.queriesMap[e.queryHash]=e,this.queries.push(e),this.notify({type:"queryAdded",query:e}))},n.remove=function(e){var t=this.queriesMap[e.queryHash];t&&(e.destroy(),this.queries=this.queries.filter((function(t){return t!==e})),t===e&&delete this.queriesMap[e.queryHash],this.notify({type:"queryRemoved",query:e}))},n.clear=function(){var e=this;s.V.batch((function(){e.queries.forEach((function(t){e.remove(t)}))}))},n.get=function(e){return this.queriesMap[e]},n.getAll=function(){return this.queries},n.find=function(e,t){var n=(0,o.I6)(e,t)[0];return void 0===n.exact&&(n.exact=!0),this.queries.find((function(e){return(0,o._x)(n,e)}))},n.findAll=function(e,t){var n=(0,o.I6)(e,t)[0];return n?this.queries.filter((function(e){return(0,o._x)(n,e)})):this.queries},n.notify=function(e){var t=this;s.V.batch((function(){t.listeners.forEach((function(t){t(e)}))}))},n.onFocus=function(){var e=this;s.V.batch((function(){e.queries.forEach((function(e){e.onFocus()}))}))},n.onOnline=function(){var e=this;s.V.batch((function(){e.queries.forEach((function(e){e.onOnline()}))}))},t}(n(92693).l)},29446:(e,t,n)=>{"use strict";n.d(t,{S:()=>d});var r=n(7896),o=n(10774),i=n(10384),s=n(9601),a=n(27483),u=n(58927),c=n(50667),l=n(20560),d=function(){function e(e){void 0===e&&(e={}),this.queryCache=e.queryCache||new i.t,this.mutationCache=e.mutationCache||new s.L,this.defaultOptions=e.defaultOptions||{},this.queryDefaults=[],this.mutationDefaults=[]}var t=e.prototype;return t.mount=function(){var e=this;this.unsubscribeFocus=a.j.subscribe((function(){a.j.isFocused()&&u.N.isOnline()&&(e.mutationCache.onFocus(),e.queryCache.onFocus())})),this.unsubscribeOnline=u.N.subscribe((function(){a.j.isFocused()&&u.N.isOnline()&&(e.mutationCache.onOnline(),e.queryCache.onOnline())}))},t.unmount=function(){var e,t;null==(e=this.unsubscribeFocus)||e.call(this),null==(t=this.unsubscribeOnline)||t.call(this)},t.isFetching=function(e,t){var n=(0,o.I6)(e,t)[0];return n.fetching=!0,this.queryCache.findAll(n).length},t.isMutating=function(e){return this.mutationCache.findAll((0,r.Z)({},e,{fetching:!0})).length},t.getQueryData=function(e,t){var n;return null==(n=this.queryCache.find(e,t))?void 0:n.state.data},t.getQueriesData=function(e){return this.getQueryCache().findAll(e).map((function(e){return[e.queryKey,e.state.data]}))},t.setQueryData=function(e,t,n){var r=(0,o._v)(e),i=this.defaultQueryOptions(r);return this.queryCache.build(this,i).setData(t,n)},t.setQueriesData=function(e,t,n){var r=this;return c.V.batch((function(){return r.getQueryCache().findAll(e).map((function(e){var o=e.queryKey;return[o,r.setQueryData(o,t,n)]}))}))},t.getQueryState=function(e,t){var n;return null==(n=this.queryCache.find(e,t))?void 0:n.state},t.removeQueries=function(e,t){var n=(0,o.I6)(e,t)[0],r=this.queryCache;c.V.batch((function(){r.findAll(n).forEach((function(e){r.remove(e)}))}))},t.resetQueries=function(e,t,n){var i=this,s=(0,o.I6)(e,t,n),a=s[0],u=s[1],l=this.queryCache,d=(0,r.Z)({},a,{active:!0});return c.V.batch((function(){return l.findAll(a).forEach((function(e){e.reset()})),i.refetchQueries(d,u)}))},t.cancelQueries=function(e,t,n){var r=this,i=(0,o.I6)(e,t,n),s=i[0],a=i[1],u=void 0===a?{}:a;void 0===u.revert&&(u.revert=!0);var l=c.V.batch((function(){return r.queryCache.findAll(s).map((function(e){return e.cancel(u)}))}));return Promise.all(l).then(o.ZT).catch(o.ZT)},t.invalidateQueries=function(e,t,n){var i,s,a,u=this,l=(0,o.I6)(e,t,n),d=l[0],p=l[1],f=(0,r.Z)({},d,{active:null==(i=null!=(s=d.refetchActive)?s:d.active)||i,inactive:null!=(a=d.refetchInactive)&&a});return c.V.batch((function(){return u.queryCache.findAll(d).forEach((function(e){e.invalidate()})),u.refetchQueries(f,p)}))},t.refetchQueries=function(e,t,n){var i=this,s=(0,o.I6)(e,t,n),a=s[0],u=s[1],l=c.V.batch((function(){return i.queryCache.findAll(a).map((function(e){return e.fetch(void 0,(0,r.Z)({},u,{meta:{refetchPage:null==a?void 0:a.refetchPage}}))}))})),d=Promise.all(l).then(o.ZT);return(null==u?void 0:u.throwOnError)||(d=d.catch(o.ZT)),d},t.fetchQuery=function(e,t,n){var r=(0,o._v)(e,t,n),i=this.defaultQueryOptions(r);void 0===i.retry&&(i.retry=!1);var s=this.queryCache.build(this,i);return s.isStaleByTime(i.staleTime)?s.fetch(i):Promise.resolve(s.state.data)},t.prefetchQuery=function(e,t,n){return this.fetchQuery(e,t,n).then(o.ZT).catch(o.ZT)},t.fetchInfiniteQuery=function(e,t,n){var r=(0,o._v)(e,t,n);return r.behavior=(0,l.Gm)(),this.fetchQuery(r)},t.prefetchInfiniteQuery=function(e,t,n){return this.fetchInfiniteQuery(e,t,n).then(o.ZT).catch(o.ZT)},t.cancelMutations=function(){var e=this,t=c.V.batch((function(){return e.mutationCache.getAll().map((function(e){return e.cancel()}))}));return Promise.all(t).then(o.ZT).catch(o.ZT)},t.resumePausedMutations=function(){return this.getMutationCache().resumePausedMutations()},t.executeMutation=function(e){return this.mutationCache.build(this,e).execute()},t.getQueryCache=function(){return this.queryCache},t.getMutationCache=function(){return this.mutationCache},t.getDefaultOptions=function(){return this.defaultOptions},t.setDefaultOptions=function(e){this.defaultOptions=e},t.setQueryDefaults=function(e,t){var n=this.queryDefaults.find((function(t){return(0,o.yF)(e)===(0,o.yF)(t.queryKey)}));n?n.defaultOptions=t:this.queryDefaults.push({queryKey:e,defaultOptions:t})},t.getQueryDefaults=function(e){var t;return e?null==(t=this.queryDefaults.find((function(t){return(0,o.to)(e,t.queryKey)})))?void 0:t.defaultOptions:void 0},t.setMutationDefaults=function(e,t){var n=this.mutationDefaults.find((function(t){return(0,o.yF)(e)===(0,o.yF)(t.mutationKey)}));n?n.defaultOptions=t:this.mutationDefaults.push({mutationKey:e,defaultOptions:t})},t.getMutationDefaults=function(e){var t;return e?null==(t=this.mutationDefaults.find((function(t){return(0,o.to)(e,t.mutationKey)})))?void 0:t.defaultOptions:void 0},t.defaultQueryOptions=function(e){if(null==e?void 0:e._defaulted)return e;var t=(0,r.Z)({},this.defaultOptions.queries,this.getQueryDefaults(null==e?void 0:e.queryKey),e,{_defaulted:!0});return!t.queryHash&&t.queryKey&&(t.queryHash=(0,o.Rm)(t.queryKey,t)),t},t.defaultQueryObserverOptions=function(e){return this.defaultQueryOptions(e)},t.defaultMutationOptions=function(e){return(null==e?void 0:e._defaulted)?e:(0,r.Z)({},this.defaultOptions.mutations,this.getMutationDefaults(null==e?void 0:e.mutationKey),e,{_defaulted:!0})},t.clear=function(){this.queryCache.clear(),this.mutationCache.clear()},e}()},24198:(e,t,n)=>{"use strict";n.d(t,{z:()=>d});var r=n(7896),o=n(81665),i=n(10774),s=n(50667),a=n(27483),u=n(92693),c=n(53579),l=n(22348),d=function(e){function t(t,n){var r;return(r=e.call(this)||this).client=t,r.options=n,r.trackedProps=[],r.previousSelectError=null,r.bindMethods(),r.setOptions(n),r}(0,o.Z)(t,e);var n=t.prototype;return n.bindMethods=function(){this.remove=this.remove.bind(this),this.refetch=this.refetch.bind(this)},n.onSubscribe=function(){1===this.listeners.length&&(this.currentQuery.addObserver(this),p(this.currentQuery,this.options)&&this.executeFetch(),this.updateTimers())},n.onUnsubscribe=function(){this.listeners.length||this.destroy()},n.shouldFetchOnReconnect=function(){return e=this.currentQuery,!1!==(t=this.options).enabled&&("always"===t.refetchOnReconnect||!1!==t.refetchOnReconnect&&h(e,t));var e,t},n.shouldFetchOnWindowFocus=function(){return e=this.currentQuery,!1!==(t=this.options).enabled&&("always"===t.refetchOnWindowFocus||!1!==t.refetchOnWindowFocus&&h(e,t));var e,t},n.destroy=function(){this.listeners=[],this.clearTimers(),this.currentQuery.removeObserver(this)},n.setOptions=function(e,t){var n=this.options,r=this.currentQuery;if(this.options=this.client.defaultQueryObserverOptions(e),void 0!==this.options.enabled&&"boolean"!=typeof this.options.enabled)throw new Error("Expected enabled to be a boolean");this.options.queryKey||(this.options.queryKey=n.queryKey),this.updateQuery();var o=this.hasListeners();o&&f(this.currentQuery,r,this.options,n)&&this.executeFetch(),this.updateResult(t),!o||this.currentQuery===r&&this.options.enabled===n.enabled&&this.options.staleTime===n.staleTime||this.updateStaleTimeout();var i=this.computeRefetchInterval();!o||this.currentQuery===r&&this.options.enabled===n.enabled&&i===this.currentRefetchInterval||this.updateRefetchInterval(i)},n.getOptimisticResult=function(e){var t=this.client.defaultQueryObserverOptions(e),n=this.client.getQueryCache().build(this.client,t);return this.createResult(n,t)},n.getCurrentResult=function(){return this.currentResult},n.trackResult=function(e){var t=this,n={};return Object.keys(e).forEach((function(r){Object.defineProperty(n,r,{configurable:!1,enumerable:!0,get:function(){var n=r;return t.trackedProps.includes(n)||t.trackedProps.push(n),e[n]}})})),n},n.getNextResult=function(e){var t=this;return new Promise((function(n,r){var o=t.subscribe((function(t){t.isFetching||(o(),t.isError&&(null==e?void 0:e.throwOnError)?r(t.error):n(t))}))}))},n.getCurrentQuery=function(){return this.currentQuery},n.remove=function(){this.client.getQueryCache().remove(this.currentQuery)},n.refetch=function(e){return this.fetch((0,r.Z)({},e,{meta:{refetchPage:null==e?void 0:e.refetchPage}}))},n.fetchOptimistic=function(e){var t=this,n=this.client.defaultQueryObserverOptions(e),r=this.client.getQueryCache().build(this.client,n);return r.fetch().then((function(){return t.createResult(r,n)}))},n.fetch=function(e){var t=this;return this.executeFetch(e).then((function(){return t.updateResult(),t.currentResult}))},n.executeFetch=function(e){this.updateQuery();var t=this.currentQuery.fetch(this.options,e);return(null==e?void 0:e.throwOnError)||(t=t.catch(i.ZT)),t},n.updateStaleTimeout=function(){var e=this;if(this.clearStaleTimeout(),!i.sk&&!this.currentResult.isStale&&(0,i.PN)(this.options.staleTime)){var t=(0,i.Kp)(this.currentResult.dataUpdatedAt,this.options.staleTime)+1;this.staleTimeoutId=setTimeout((function(){e.currentResult.isStale||e.updateResult()}),t)}},n.computeRefetchInterval=function(){var e;return"function"==typeof this.options.refetchInterval?this.options.refetchInterval(this.currentResult.data,this.currentQuery):null!=(e=this.options.refetchInterval)&&e},n.updateRefetchInterval=function(e){var t=this;this.clearRefetchInterval(),this.currentRefetchInterval=e,!i.sk&&!1!==this.options.enabled&&(0,i.PN)(this.currentRefetchInterval)&&0!==this.currentRefetchInterval&&(this.refetchIntervalId=setInterval((function(){(t.options.refetchIntervalInBackground||a.j.isFocused())&&t.executeFetch()}),this.currentRefetchInterval))},n.updateTimers=function(){this.updateStaleTimeout(),this.updateRefetchInterval(this.computeRefetchInterval())},n.clearTimers=function(){this.clearStaleTimeout(),this.clearRefetchInterval()},n.clearStaleTimeout=function(){clearTimeout(this.staleTimeoutId),this.staleTimeoutId=void 0},n.clearRefetchInterval=function(){clearInterval(this.refetchIntervalId),this.refetchIntervalId=void 0},n.createResult=function(e,t){var n,r=this.currentQuery,o=this.options,s=this.currentResult,a=this.currentResultState,u=this.currentResultOptions,l=e!==r,d=l?e.state:this.currentQueryInitialState,m=l?this.currentResult:this.previousQueryResult,g=e.state,y=g.dataUpdatedAt,v=g.error,b=g.errorUpdatedAt,w=g.isFetching,_=g.status,E=!1,S=!1;if(t.optimisticResults){var C=this.hasListeners(),P=!C&&p(e,t),k=C&&f(e,r,t,o);(P||k)&&(w=!0,y||(_="loading"))}if(t.keepPreviousData&&!g.dataUpdateCount&&(null==m?void 0:m.isSuccess)&&"error"!==_)n=m.data,y=m.dataUpdatedAt,_=m.status,E=!0;else if(t.select&&void 0!==g.data)if(s&&g.data===(null==a?void 0:a.data)&&t.select===(null==u?void 0:u.select)&&!this.previousSelectError)n=s.data;else try{n=t.select(g.data),!1!==t.structuralSharing&&(n=(0,i.Q$)(null==s?void 0:s.data,n)),this.previousSelectError=null}catch(A){(0,c.j)().error(A),v=A,this.previousSelectError=A,b=Date.now(),_="error"}else n=g.data;if(void 0!==t.placeholderData&&void 0===n&&("loading"===_||"idle"===_)){var I;if((null==s?void 0:s.isPlaceholderData)&&t.placeholderData===(null==u?void 0:u.placeholderData))I=s.data;else if(I="function"==typeof t.placeholderData?t.placeholderData():t.placeholderData,t.select&&void 0!==I)try{I=t.select(I),!1!==t.structuralSharing&&(I=(0,i.Q$)(null==s?void 0:s.data,I)),this.previousSelectError=null}catch(A){(0,c.j)().error(A),v=A,this.previousSelectError=A,b=Date.now(),_="error"}void 0!==I&&(_="success",n=I,S=!0)}return{status:_,isLoading:"loading"===_,isSuccess:"success"===_,isError:"error"===_,isIdle:"idle"===_,data:n,dataUpdatedAt:y,error:v,errorUpdatedAt:b,failureCount:g.fetchFailureCount,isFetched:g.dataUpdateCount>0||g.errorUpdateCount>0,isFetchedAfterMount:g.dataUpdateCount>d.dataUpdateCount||g.errorUpdateCount>d.errorUpdateCount,isFetching:w,isRefetching:w&&"loading"!==_,isLoadingError:"error"===_&&0===g.dataUpdatedAt,isPlaceholderData:S,isPreviousData:E,isRefetchError:"error"===_&&0!==g.dataUpdatedAt,isStale:h(e,t),refetch:this.refetch,remove:this.remove}},n.shouldNotifyListeners=function(e,t){if(!t)return!0;if(e===t)return!1;var n=this.options,r=n.notifyOnChangeProps,o=n.notifyOnChangePropsExclusions;if(!r&&!o)return!0;if("tracked"===r&&!this.trackedProps.length)return!0;var i="tracked"===r?this.trackedProps:r;return Object.keys(e).some((function(n){var r=n,s=e[r]!==t[r],a=null==i?void 0:i.some((function(e){return e===n})),u=null==o?void 0:o.some((function(e){return e===n}));return s&&!u&&(!i||a)}))},n.updateResult=function(e){var t=this.currentResult;if(this.currentResult=this.createResult(this.currentQuery,this.options),this.currentResultState=this.currentQuery.state,this.currentResultOptions=this.options,!(0,i.VS)(this.currentResult,t)){var n={cache:!0};!1!==(null==e?void 0:e.listeners)&&this.shouldNotifyListeners(this.currentResult,t)&&(n.listeners=!0),this.notify((0,r.Z)({},n,e))}},n.updateQuery=function(){var e=this.client.getQueryCache().build(this.client,this.options);if(e!==this.currentQuery){var t=this.currentQuery;this.currentQuery=e,this.currentQueryInitialState=e.state,this.previousQueryResult=this.currentResult,this.hasListeners()&&(null==t||t.removeObserver(this),e.addObserver(this))}},n.onQueryUpdate=function(e){var t={};"success"===e.type?t.onSuccess=!0:"error"!==e.type||(0,l.DV)(e.error)||(t.onError=!0),this.updateResult(t),this.hasListeners()&&this.updateTimers()},n.notify=function(e){var t=this;s.V.batch((function(){e.onSuccess?(null==t.options.onSuccess||t.options.onSuccess(t.currentResult.data),null==t.options.onSettled||t.options.onSettled(t.currentResult.data,null)):e.onError&&(null==t.options.onError||t.options.onError(t.currentResult.error),null==t.options.onSettled||t.options.onSettled(void 0,t.currentResult.error)),e.listeners&&t.listeners.forEach((function(e){e(t.currentResult)})),e.cache&&t.client.getQueryCache().notify({query:t.currentQuery,type:"observerResultsUpdated"})}))},t}(u.l);function p(e,t){return function(e,t){return!(!1===t.enabled||e.state.dataUpdatedAt||"error"===e.state.status&&!1===t.retryOnMount)}(e,t)||function(e,t){return!1!==t.enabled&&e.state.dataUpdatedAt>0&&("always"===t.refetchOnMount||!1!==t.refetchOnMount&&h(e,t))}(e,t)}function f(e,t,n,r){return!1!==n.enabled&&(e!==t||!1===r.enabled)&&(!n.suspense||"error"!==e.state.status||!1===r.enabled)&&h(e,n)}function h(e,t){return e.isStaleByTime(t.staleTime)}},22348:(e,t,n)=>{"use strict";n.d(t,{LE:()=>a,DV:()=>c,m4:()=>l});var r=n(27483),o=n(58927),i=n(10774);function s(e){return Math.min(1e3*Math.pow(2,e),3e4)}function a(e){return"function"==typeof(null==e?void 0:e.cancel)}var u=function(e){this.revert=null==e?void 0:e.revert,this.silent=null==e?void 0:e.silent};function c(e){return e instanceof u}var l=function(e){var t,n,c,l,d=this,p=!1;this.abort=e.abort,this.cancel=function(e){return null==t?void 0:t(e)},this.cancelRetry=function(){p=!0},this.continue=function(){return null==n?void 0:n()},this.failureCount=0,this.isPaused=!1,this.isResolved=!1,this.isTransportCancelable=!1,this.promise=new Promise((function(e,t){c=e,l=t}));var f=function(t){d.isResolved||(d.isResolved=!0,null==e.onSuccess||e.onSuccess(t),null==n||n(),c(t))},h=function(t){d.isResolved||(d.isResolved=!0,null==e.onError||e.onError(t),null==n||n(),l(t))};!function c(){if(!d.isResolved){var l;try{l=e.fn()}catch(m){l=Promise.reject(m)}t=function(e){if(!d.isResolved&&(h(new u(e)),null==d.abort||d.abort(),a(l)))try{l.cancel()}catch(t){}},d.isTransportCancelable=a(l),Promise.resolve(l).then(f).catch((function(t){var a,u;if(!d.isResolved){var l=null!=(a=e.retry)?a:3,f=null!=(u=e.retryDelay)?u:s,m="function"==typeof f?f(d.failureCount,t):f,g=!0===l||"number"==typeof l&&d.failureCount<l||"function"==typeof l&&l(d.failureCount,t);!p&&g?(d.failureCount++,null==e.onFail||e.onFail(d.failureCount,t),(0,i.Gh)(m).then((function(){if(!r.j.isFocused()||!o.N.isOnline())return new Promise((function(t){n=t,d.isPaused=!0,null==e.onPause||e.onPause()})).then((function(){n=void 0,d.isPaused=!1,null==e.onContinue||e.onContinue()}))})).then((function(){p?h(t):c()}))):h(t)}}))}}()}},92693:(e,t,n)=>{"use strict";n.d(t,{l:()=>r});var r=function(){function e(){this.listeners=[]}var t=e.prototype;return t.subscribe=function(e){var t=this,n=e||function(){};return this.listeners.push(n),this.onSubscribe(),function(){t.listeners=t.listeners.filter((function(e){return e!==n})),t.onUnsubscribe()}},t.hasListeners=function(){return this.listeners.length>0},t.onSubscribe=function(){},t.onUnsubscribe=function(){},e}()},77820:()=>{},10774:(e,t,n)=>{"use strict";n.d(t,{sk:()=>o,ZT:()=>i,SE:()=>s,PN:()=>a,mc:()=>u,Kp:()=>c,_v:()=>l,lV:()=>d,I6:()=>p,_x:()=>f,X7:()=>h,Rm:()=>m,yF:()=>g,to:()=>y,Q$:()=>b,VS:()=>w,Gh:()=>C,A4:()=>P,G9:()=>k});var r=n(7896),o="undefined"==typeof window;function i(){}function s(e,t){return"function"==typeof e?e(t):e}function a(e){return"number"==typeof e&&e>=0&&e!==1/0}function u(e){return Array.isArray(e)?e:[e]}function c(e,t){return Math.max(e+(t||0)-Date.now(),0)}function l(e,t,n){return S(e)?"function"==typeof t?(0,r.Z)({},n,{queryKey:e,queryFn:t}):(0,r.Z)({},t,{queryKey:e}):e}function d(e,t,n){return S(e)?"function"==typeof t?(0,r.Z)({},n,{mutationKey:e,mutationFn:t}):(0,r.Z)({},t,{mutationKey:e}):"function"==typeof e?(0,r.Z)({},t,{mutationFn:e}):(0,r.Z)({},e)}function p(e,t,n){return S(e)?[(0,r.Z)({},t,{queryKey:e}),n]:[e||{},t]}function f(e,t){var n=e.active,r=e.exact,o=e.fetching,i=e.inactive,s=e.predicate,a=e.queryKey,u=e.stale;if(S(a))if(r){if(t.queryHash!==m(a,t.options))return!1}else if(!y(t.queryKey,a))return!1;var c=function(e,t){return!0===e&&!0===t||null==e&&null==t?"all":!1===e&&!1===t?"none":(null!=e?e:!t)?"active":"inactive"}(n,i);if("none"===c)return!1;if("all"!==c){var l=t.isActive();if("active"===c&&!l)return!1;if("inactive"===c&&l)return!1}return("boolean"!=typeof u||t.isStale()===u)&&(("boolean"!=typeof o||t.isFetching()===o)&&!(s&&!s(t)))}function h(e,t){var n=e.exact,r=e.fetching,o=e.predicate,i=e.mutationKey;if(S(i)){if(!t.options.mutationKey)return!1;if(n){if(g(t.options.mutationKey)!==g(i))return!1}else if(!y(t.options.mutationKey,i))return!1}return("boolean"!=typeof r||"loading"===t.state.status===r)&&!(o&&!o(t))}function m(e,t){return((null==t?void 0:t.queryKeyHashFn)||g)(e)}function g(e){var t,n=u(e);return t=n,JSON.stringify(t,(function(e,t){return _(t)?Object.keys(t).sort().reduce((function(e,n){return e[n]=t[n],e}),{}):t}))}function y(e,t){return v(u(e),u(t))}function v(e,t){return e===t||typeof e==typeof t&&(!(!e||!t||"object"!=typeof e||"object"!=typeof t)&&!Object.keys(t).some((function(n){return!v(e[n],t[n])})))}function b(e,t){if(e===t)return e;var n=Array.isArray(e)&&Array.isArray(t);if(n||_(e)&&_(t)){for(var r=n?e.length:Object.keys(e).length,o=n?t:Object.keys(t),i=o.length,s=n?[]:{},a=0,u=0;u<i;u++){var c=n?u:o[u];s[c]=b(e[c],t[c]),s[c]===e[c]&&a++}return r===i&&a===r?e:s}return t}function w(e,t){if(e&&!t||t&&!e)return!1;for(var n in e)if(e[n]!==t[n])return!1;return!0}function _(e){if(!E(e))return!1;var t=e.constructor;if(void 0===t)return!0;var n=t.prototype;return!!E(n)&&!!n.hasOwnProperty("isPrototypeOf")}function E(e){return"[object Object]"===Object.prototype.toString.call(e)}function S(e){return"string"==typeof e||Array.isArray(e)}function C(e){return new Promise((function(t){setTimeout(t,e)}))}function P(e){Promise.resolve().then(e).catch((function(e){return setTimeout((function(){throw e}))}))}function k(){if("function"==typeof AbortController)return new AbortController}},82066:(e,t,n)=>{"use strict";n.d(t,{QueryClient:()=>r.Su,QueryClientProvider:()=>o.aH,useMutation:()=>o.Db,useQuery:()=>o.aM,useQueryClient:()=>o.NL});var r=n(60002);n.o(r,"QueryClientProvider")&&n.d(t,{QueryClientProvider:function(){return r.QueryClientProvider}}),n.o(r,"useMutation")&&n.d(t,{useMutation:function(){return r.useMutation}}),n.o(r,"useQuery")&&n.d(t,{useQuery:function(){return r.useQuery}}),n.o(r,"useQueryClient")&&n.d(t,{useQueryClient:function(){return r.useQueryClient}});var o=n(33577)},77639:(e,t,n)=>{"use strict";n.d(t,{N:()=>u,a:()=>c});var r=n(99196),o=n.n(r),i=o().createContext(void 0),s=o().createContext(!1);function a(e){return e&&"undefined"!=typeof window?(window.ReactQueryClientContext||(window.ReactQueryClientContext=i),window.ReactQueryClientContext):i}var u=function(){var e=o().useContext(a(o().useContext(s)));if(!e)throw new Error("No QueryClient set, use QueryClientProvider to set one");return e},c=function(e){var t=e.client,n=e.contextSharing,r=void 0!==n&&n,i=e.children;o().useEffect((function(){return t.mount(),function(){t.unmount()}}),[t]);var u=a(r);return o().createElement(s.Provider,{value:r},o().createElement(u.Provider,{value:t},i))}},4578:(e,t,n)=>{"use strict";n.d(t,{_:()=>a});var r=n(99196),o=n.n(r);function i(){var e=!1;return{clearReset:function(){e=!1},reset:function(){e=!0},isReset:function(){return e}}}var s=o().createContext(i()),a=function(){return o().useContext(s)}},33577:(e,t,n)=>{"use strict";n.d(t,{aH:()=>r.a,NL:()=>r.N,Db:()=>o.D,aM:()=>i.a});n(96328),n(94091);var r=n(77639),o=n(82127),i=n(18067)},51733:(e,t,n)=>{"use strict";n.d(t,{k:()=>r});var r=console},63520:(e,t,n)=>{"use strict";n.d(t,{m:()=>o});var r=n(91850),o=n.n(r)().unstable_batchedUpdates},96328:(e,t,n)=>{"use strict";var r=n(50667),o=n(63520);r.V.setBatchNotifyFunction(o.m)},94091:(e,t,n)=>{"use strict";var r=n(53579),o=n(51733);(0,r.E)(o.k)},96744:(e,t,n)=>{"use strict";n.d(t,{r:()=>c});var r=n(99196),o=n.n(r),i=n(50667),s=n(4578),a=n(77639),u=n(13774);function c(e,t){var n=o().useRef(!1),r=o().useState(0)[1],c=(0,a.N)(),l=(0,s._)(),d=c.defaultQueryObserverOptions(e);d.optimisticResults=!0,d.onError&&(d.onError=i.V.batchCalls(d.onError)),d.onSuccess&&(d.onSuccess=i.V.batchCalls(d.onSuccess)),d.onSettled&&(d.onSettled=i.V.batchCalls(d.onSettled)),d.suspense&&("number"!=typeof d.staleTime&&(d.staleTime=1e3),0===d.cacheTime&&(d.cacheTime=1)),(d.suspense||d.useErrorBoundary)&&(l.isReset()||(d.retryOnMount=!1));var p=o().useState((function(){return new t(c,d)}))[0],f=p.getOptimisticResult(d);if(o().useEffect((function(){n.current=!0,l.clearReset();var e=p.subscribe(i.V.batchCalls((function(){n.current&&r((function(e){return e+1}))})));return p.updateResult(),function(){n.current=!1,e()}}),[l,p]),o().useEffect((function(){p.setOptions(d,{listeners:!1})}),[d,p]),d.suspense&&f.isLoading)throw p.fetchOptimistic(d).then((function(e){var t=e.data;null==d.onSuccess||d.onSuccess(t),null==d.onSettled||d.onSettled(t,null)})).catch((function(e){l.clearReset(),null==d.onError||d.onError(e),null==d.onSettled||d.onSettled(void 0,e)}));if(f.isError&&!f.isFetching&&(0,u.L)(d.suspense,d.useErrorBoundary,f.error))throw f.error;return"tracked"===d.notifyOnChangeProps&&(f=p.trackResult(f)),f}},82127:(e,t,n)=>{"use strict";n.d(t,{D:()=>d});var r=n(7896),o=n(99196),i=n.n(o),s=n(50667),a=n(10774),u=n(74856),c=n(77639),l=n(13774);function d(e,t,n){var o=i().useRef(!1),d=i().useState(0)[1],p=(0,a.lV)(e,t,n),f=(0,c.N)(),h=i().useRef();h.current?h.current.setOptions(p):h.current=new u.X(f,p);var m=h.current.getCurrentResult();i().useEffect((function(){o.current=!0;var e=h.current.subscribe(s.V.batchCalls((function(){o.current&&d((function(e){return e+1}))})));return function(){o.current=!1,e()}}),[]);var g=i().useCallback((function(e,t){h.current.mutate(e,t).catch(a.ZT)}),[]);if(m.error&&(0,l.L)(void 0,h.current.options.useErrorBoundary,m.error))throw m.error;return(0,r.Z)({},m,{mutate:g,mutateAsync:m.mutate})}},18067:(e,t,n)=>{"use strict";n.d(t,{a:()=>s});var r=n(24198),o=n(10774),i=n(96744);function s(e,t,n){var s=(0,o._v)(e,t,n);return(0,i.r)(s,r.z)}},13774:(e,t,n)=>{"use strict";function r(e,t,n){return"function"==typeof t?t(n):"boolean"==typeof t?t:!!e}n.d(t,{L:()=>r})},81346:(e,t,n)=>{"use strict";n.d(t,{E:()=>o});var r=n(99196),o=n.n(r)().createContext(null)},42533:(e,t,n)=>{"use strict";n.d(t,{Z:()=>u});var r=n(99196),o=n.n(r),i=n(81346),s=n(82062),a=n(44282);const u=function(e){var t=e.store,n=e.context,u=e.children,c=(0,r.useMemo)((function(){var e=(0,s.X)(t);return e.onStateChange=e.notifyNestedSubs,{store:t,subscription:e}}),[t]),l=(0,r.useMemo)((function(){return t.getState()}),[t]);(0,a.L)((function(){var e=c.subscription;return e.trySubscribe(),l!==t.getState()&&e.notifyNestedSubs(),function(){e.tryUnsubscribe(),e.onStateChange=null}}),[c,l]);var d=n||i.E;return o().createElement(d.Provider,{value:c},u)}},49484:(e,t,n)=>{"use strict";n.d(t,{Z:()=>E});var r=n(7896),o=n(31461),i=n(73463),s=n.n(i),a=n(99196),u=n.n(a),c=n(48570),l=n(82062),d=n(44282),p=n(81346),f=["getDisplayName","methodName","renderCountProp","shouldHandleStateChanges","storeKey","withRef","forwardRef","context"],h=["reactReduxForwardedRef"],m=[],g=[null,null];function y(e,t){var n=e[1];return[t.payload,n+1]}function v(e,t,n){(0,d.L)((function(){return e.apply(void 0,t)}),n)}function b(e,t,n,r,o,i,s){e.current=r,t.current=o,n.current=!1,i.current&&(i.current=null,s())}function w(e,t,n,r,o,i,s,a,u,c){if(e){var l=!1,d=null,p=function(){if(!l){var e,n,p=t.getState();try{e=r(p,o.current)}catch(f){n=f,d=f}n||(d=null),e===i.current?s.current||u():(i.current=e,a.current=e,s.current=!0,c({type:"STORE_UPDATED",payload:{error:n}}))}};n.onStateChange=p,n.trySubscribe(),p();return function(){if(l=!0,n.tryUnsubscribe(),n.onStateChange=null,d)throw d}}}var _=function(){return[null,0]};function E(e,t){void 0===t&&(t={});var n=t,i=n.getDisplayName,d=void 0===i?function(e){return"ConnectAdvanced("+e+")"}:i,E=n.methodName,S=void 0===E?"connectAdvanced":E,C=n.renderCountProp,P=void 0===C?void 0:C,k=n.shouldHandleStateChanges,I=void 0===k||k,A=n.storeKey,T=void 0===A?"store":A,R=(n.withRef,n.forwardRef),O=void 0!==R&&R,x=n.context,L=void 0===x?p.E:x,F=(0,o.Z)(n,f),U=L;return function(t){var n=t.displayName||t.name||"Component",i=d(n),p=(0,r.Z)({},F,{getDisplayName:d,methodName:S,renderCountProp:P,shouldHandleStateChanges:I,storeKey:T,displayName:i,wrappedComponentName:n,WrappedComponent:t}),f=F.pure;var E=f?a.useMemo:function(e){return e()};function C(n){var i=(0,a.useMemo)((function(){var e=n.reactReduxForwardedRef,t=(0,o.Z)(n,h);return[n.context,e,t]}),[n]),s=i[0],d=i[1],f=i[2],S=(0,a.useMemo)((function(){return s&&s.Consumer&&(0,c.isContextConsumer)(u().createElement(s.Consumer,null))?s:U}),[s,U]),C=(0,a.useContext)(S),P=Boolean(n.store)&&Boolean(n.store.getState)&&Boolean(n.store.dispatch);Boolean(C)&&Boolean(C.store);var k=P?n.store:C.store,A=(0,a.useMemo)((function(){return function(t){return e(t.dispatch,p)}(k)}),[k]),T=(0,a.useMemo)((function(){if(!I)return g;var e=(0,l.X)(k,P?null:C.subscription),t=e.notifyNestedSubs.bind(e);return[e,t]}),[k,P,C]),R=T[0],O=T[1],x=(0,a.useMemo)((function(){return P?C:(0,r.Z)({},C,{subscription:R})}),[P,C,R]),L=(0,a.useReducer)(y,m,_),F=L[0][0],D=L[1];if(F&&F.error)throw F.error;var Z=(0,a.useRef)(),j=(0,a.useRef)(f),N=(0,a.useRef)(),M=(0,a.useRef)(!1),q=E((function(){return N.current&&f===j.current?N.current:A(k.getState(),f)}),[k,F,f]);v(b,[j,Z,M,f,q,N,O]),v(w,[I,k,R,A,j,Z,M,N,O,D],[k,R,A]);var B=(0,a.useMemo)((function(){return u().createElement(t,(0,r.Z)({},q,{ref:d}))}),[d,t,q]);return(0,a.useMemo)((function(){return I?u().createElement(S.Provider,{value:x},B):B}),[S,B,x])}var k=f?u().memo(C):C;if(k.WrappedComponent=t,k.displayName=C.displayName=i,O){var A=u().forwardRef((function(e,t){return u().createElement(k,(0,r.Z)({},e,{reactReduxForwardedRef:t}))}));return A.displayName=i,A.WrappedComponent=t,s()(A,t)}return s()(k,t)}}},55443:(e,t,n)=>{"use strict";n.d(t,{Z:()=>m});var r=n(7896),o=n(31461),i=n(49484),s=n(74570),a=n(99174),u=n(79600),c=n(79553),l=n(77405),d=["pure","areStatesEqual","areOwnPropsEqual","areStatePropsEqual","areMergedPropsEqual"];function p(e,t,n){for(var r=t.length-1;r>=0;r--){var o=t[r](e);if(o)return o}return function(t,r){throw new Error("Invalid value of type "+typeof e+" for "+n+" argument when connecting component "+r.wrappedComponentName+".")}}function f(e,t){return e===t}function h(e){var t=void 0===e?{}:e,n=t.connectHOC,h=void 0===n?i.Z:n,m=t.mapStateToPropsFactories,g=void 0===m?u.ZP:m,y=t.mapDispatchToPropsFactories,v=void 0===y?a.ZP:y,b=t.mergePropsFactories,w=void 0===b?c.ZP:b,_=t.selectorFactory,E=void 0===_?l.ZP:_;return function(e,t,n,i){void 0===i&&(i={});var a=i,u=a.pure,c=void 0===u||u,l=a.areStatesEqual,m=void 0===l?f:l,y=a.areOwnPropsEqual,b=void 0===y?s.Z:y,_=a.areStatePropsEqual,S=void 0===_?s.Z:_,C=a.areMergedPropsEqual,P=void 0===C?s.Z:C,k=(0,o.Z)(a,d),I=p(e,g,"mapStateToProps"),A=p(t,v,"mapDispatchToProps"),T=p(n,w,"mergeProps");return h(E,(0,r.Z)({methodName:"connect",getDisplayName:function(e){return"Connect("+e+")"},shouldHandleStateChanges:Boolean(e),initMapStateToProps:I,initMapDispatchToProps:A,initMergeProps:T,pure:c,areStatesEqual:m,areOwnPropsEqual:b,areStatePropsEqual:S,areMergedPropsEqual:P},k))}}const m=h()},99174:(e,t,n)=>{"use strict";n.d(t,{ZP:()=>i});var r=n(56750),o=n(8528);const i=[function(e){return"function"==typeof e?(0,o.xv)(e,"mapDispatchToProps"):void 0},function(e){return e?void 0:(0,o.dX)((function(e){return{dispatch:e}}))},function(e){return e&&"object"==typeof e?(0,o.dX)((function(t){return(0,r.Z)(e,t)})):void 0}]},79600:(e,t,n)=>{"use strict";n.d(t,{ZP:()=>o});var r=n(8528);const o=[function(e){return"function"==typeof e?(0,r.xv)(e,"mapStateToProps"):void 0},function(e){return e?void 0:(0,r.dX)((function(){return{}}))}]},79553:(e,t,n)=>{"use strict";n.d(t,{ZP:()=>i});var r=n(7896);function o(e,t,n){return(0,r.Z)({},n,e,t)}const i=[function(e){return"function"==typeof e?function(e){return function(t,n){n.displayName;var r,o=n.pure,i=n.areMergedPropsEqual,s=!1;return function(t,n,a){var u=e(t,n,a);return s?o&&i(u,r)||(r=u):(s=!0,r=u),r}}}(e):void 0},function(e){return e?void 0:function(){return o}}]},77405:(e,t,n)=>{"use strict";n.d(t,{ZP:()=>a});var r=n(31461),o=["initMapStateToProps","initMapDispatchToProps","initMergeProps"];function i(e,t,n,r){return function(o,i){return n(e(o,i),t(r,i),i)}}function s(e,t,n,r,o){var i,s,a,u,c,l=o.areStatesEqual,d=o.areOwnPropsEqual,p=o.areStatePropsEqual,f=!1;function h(o,f){var h,m,g=!d(f,s),y=!l(o,i);return i=o,s=f,g&&y?(a=e(i,s),t.dependsOnOwnProps&&(u=t(r,s)),c=n(a,u,s)):g?(e.dependsOnOwnProps&&(a=e(i,s)),t.dependsOnOwnProps&&(u=t(r,s)),c=n(a,u,s)):y?(h=e(i,s),m=!p(h,a),a=h,m&&(c=n(a,u,s)),c):c}return function(o,l){return f?h(o,l):(a=e(i=o,s=l),u=t(r,s),c=n(a,u,s),f=!0,c)}}function a(e,t){var n=t.initMapStateToProps,a=t.initMapDispatchToProps,u=t.initMergeProps,c=(0,r.Z)(t,o),l=n(e,c),d=a(e,c),p=u(e,c);return(c.pure?s:i)(l,d,p,e,c)}},8528:(e,t,n)=>{"use strict";function r(e){return function(t,n){var r=e(t,n);function o(){return r}return o.dependsOnOwnProps=!1,o}}function o(e){return null!==e.dependsOnOwnProps&&void 0!==e.dependsOnOwnProps?Boolean(e.dependsOnOwnProps):1!==e.length}function i(e,t){return function(t,n){n.displayName;var r=function(e,t){return r.dependsOnOwnProps?r.mapToProps(e,t):r.mapToProps(e)};return r.dependsOnOwnProps=!0,r.mapToProps=function(t,n){r.mapToProps=e,r.dependsOnOwnProps=o(e);var i=r(t,n);return"function"==typeof i&&(r.mapToProps=i,r.dependsOnOwnProps=o(i),i=r(t,n)),i},r}}n.d(t,{dX:()=>r,xv:()=>i})},14283:(e,t,n)=>{"use strict";n.d(t,{zt:()=>r.Z,$j:()=>o.Z,I0:()=>i.I,v9:()=>s.v});var r=n(42533),o=(n(49484),n(81346),n(55443)),i=n(23102),s=n(85247);n(87166)},23102:(e,t,n)=>{"use strict";n.d(t,{I:()=>s});var r=n(81346),o=n(87166);function i(e){void 0===e&&(e=r.E);var t=e===r.E?o.o:(0,o.f)(e);return function(){return t().dispatch}}var s=i()},24274:(e,t,n)=>{"use strict";n.d(t,{x:()=>i});var r=n(99196),o=n(81346);function i(){return(0,r.useContext)(o.E)}},85247:(e,t,n)=>{"use strict";n.d(t,{v:()=>l});var r=n(99196),o=n(24274),i=n(82062),s=n(44282),a=n(81346),u=function(e,t){return e===t};function c(e){void 0===e&&(e=a.E);var t=e===a.E?o.x:function(){return(0,r.useContext)(e)};return function(e,n){void 0===n&&(n=u);var o=t(),a=function(e,t,n,o){var a,u=(0,r.useReducer)((function(e){return e+1}),0)[1],c=(0,r.useMemo)((function(){return(0,i.X)(n,o)}),[n,o]),l=(0,r.useRef)(),d=(0,r.useRef)(),p=(0,r.useRef)(),f=(0,r.useRef)(),h=n.getState();try{if(e!==d.current||h!==p.current||l.current){var m=e(h);a=void 0!==f.current&&t(m,f.current)?f.current:m}else a=f.current}catch(g){throw l.current&&(g.message+="\nThe error may be correlated with this previous error:\n"+l.current.stack+"\n\n"),g}return(0,s.L)((function(){d.current=e,p.current=h,f.current=a,l.current=void 0})),(0,s.L)((function(){function e(){try{var e=n.getState();if(e===p.current)return;var r=d.current(e);if(t(r,f.current))return;f.current=r,p.current=e}catch(g){l.current=g}u()}return c.onStateChange=e,c.trySubscribe(),e(),function(){return c.tryUnsubscribe()}}),[n,c]),a}(e,n,o.store,o.subscription);return(0,r.useDebugValue)(a),a}}var l=c()},87166:(e,t,n)=>{"use strict";n.d(t,{f:()=>s,o:()=>a});var r=n(99196),o=n(81346),i=n(24274);function s(e){void 0===e&&(e=o.E);var t=e===o.E?i.x:function(){return(0,r.useContext)(e)};return function(){return t().store}}var a=s()},4792:(e,t,n)=>{"use strict";n.d(t,{zt:()=>r.zt,$j:()=>r.$j,I0:()=>r.I0,v9:()=>r.v9});var r=n(14283),o=n(41369);(0,n(14210).F)(o.m)},82062:(e,t,n)=>{"use strict";n.d(t,{X:()=>i});var r=n(14210);var o={notify:function(){},get:function(){return[]}};function i(e,t){var n,i=o;function s(){u.onStateChange&&u.onStateChange()}function a(){n||(n=t?t.addNestedSub(s):e.subscribe(s),i=function(){var e=(0,r.k)(),t=null,n=null;return{clear:function(){t=null,n=null},notify:function(){e((function(){for(var e=t;e;)e.callback(),e=e.next}))},get:function(){for(var e=[],n=t;n;)e.push(n),n=n.next;return e},subscribe:function(e){var r=!0,o=n={callback:e,next:null,prev:n};return o.prev?o.prev.next=o:t=o,function(){r&&null!==t&&(r=!1,o.next?o.next.prev=o.prev:n=o.prev,o.prev?o.prev.next=o.next:t=o.next)}}}}())}var u={addNestedSub:function(e){return a(),i.subscribe(e)},notifyNestedSubs:function(){i.notify()},handleChangeWrapper:s,isSubscribed:function(){return Boolean(n)},trySubscribe:a,tryUnsubscribe:function(){n&&(n(),n=void 0,i.clear(),i=o)},getListeners:function(){return i}};return u}},14210:(e,t,n)=>{"use strict";n.d(t,{F:()=>o,k:()=>i});var r=function(e){e()},o=function(e){return r=e},i=function(){return r}},56750:(e,t,n)=>{"use strict";function r(e,t){var n={},r=function(r){var o=e[r];"function"==typeof o&&(n[r]=function(){return t(o.apply(void 0,arguments))})};for(var o in e)r(o);return n}n.d(t,{Z:()=>r})},41369:(e,t,n)=>{"use strict";n.d(t,{m:()=>r.unstable_batchedUpdates});var r=n(91850)},74570:(e,t,n)=>{"use strict";function r(e,t){return e===t?0!==e||0!==t||1/e==1/t:e!=e&&t!=t}function o(e,t){if(r(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;var n=Object.keys(e),o=Object.keys(t);if(n.length!==o.length)return!1;for(var i=0;i<n.length;i++)if(!Object.prototype.hasOwnProperty.call(t,n[i])||!r(e[n[i]],t[n[i]]))return!1;return!0}n.d(t,{Z:()=>o})},44282:(e,t,n)=>{"use strict";n.d(t,{L:()=>o});var r=n(99196),o="undefined"!=typeof window&&void 0!==window.document&&void 0!==window.document.createElement?r.useLayoutEffect:r.useEffect},47933:(e,t,n)=>{"use strict";n.d(t,{rU:()=>g});var r=n(29175),o=n(81665),i=n(99196),s=n.n(i),a=n(95878),u=n(7896),c=n(31461),l=n(61898);s().Component;s().Component;var d=function(e,t){return"function"==typeof e?e(t):e},p=function(e,t){return"string"==typeof e?(0,a.ob)(e,null,null,t):e},f=function(e){return e},h=s().forwardRef;void 0===h&&(h=f);var m=h((function(e,t){var n=e.innerRef,r=e.navigate,o=e.onClick,i=(0,c.Z)(e,["innerRef","navigate","onClick"]),a=i.target,l=(0,u.Z)({},i,{onClick:function(e){try{o&&o(e)}catch(t){throw e.preventDefault(),t}e.defaultPrevented||0!==e.button||a&&"_self"!==a||function(e){return!!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)}(e)||(e.preventDefault(),r())}});return l.ref=f!==h&&t||n,s().createElement("a",l)}));var g=h((function(e,t){var n=e.component,o=void 0===n?m:n,i=e.replace,a=e.to,g=e.innerRef,y=(0,c.Z)(e,["component","replace","to","innerRef"]);return s().createElement(r.s6.Consumer,null,(function(e){e||(0,l.Z)(!1);var n=e.history,r=p(d(a,e.location),e.location),c=r?n.createHref(r):"",m=(0,u.Z)({},y,{href:c,navigate:function(){var t=d(a,e.location);(i?n.replace:n.push)(t)}});return f!==h?m.ref=t||g:m.innerRef=g,s().createElement(o,m)}))})),y=function(e){return e},v=s().forwardRef;void 0===v&&(v=y);v((function(e,t){var n=e["aria-current"],o=void 0===n?"page":n,i=e.activeClassName,a=void 0===i?"active":i,f=e.activeStyle,h=e.className,m=e.exact,b=e.isActive,w=e.location,_=e.sensitive,E=e.strict,S=e.style,C=e.to,P=e.innerRef,k=(0,c.Z)(e,["aria-current","activeClassName","activeStyle","className","exact","isActive","location","sensitive","strict","style","to","innerRef"]);return s().createElement(r.s6.Consumer,null,(function(e){e||(0,l.Z)(!1);var n=w||e.location,i=p(d(C,n),n),c=i.pathname,I=c&&c.replace(/([.+*?=^!:${}()[\]|/\\])/g,"\\$1"),A=I?(0,r.LX)(n.pathname,{path:I,exact:m,sensitive:_,strict:E}):null,T=!!(b?b(A,n):A),R=T?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(" ")}(h,a):h,O=T?(0,u.Z)({},S,{},f):S,x=(0,u.Z)({"aria-current":T&&o||null,className:R,style:O,to:i},k);return y!==v?x.ref=t||P:x.innerRef=P,s().createElement(g,x)}))}))},95878:(e,t,n)=>{"use strict";n.d(t,{lX:()=>w,q_:()=>k,PP:()=>A,ob:()=>p,Hp:()=>f,Ep:()=>d});var r=n(7896),o=n(57613),i=n(60838),s=n(61898);function a(e){return"/"===e.charAt(0)?e:"/"+e}function u(e){return"/"===e.charAt(0)?e.substr(1):e}function c(e,t){return function(e,t){return 0===e.toLowerCase().indexOf(t.toLowerCase())&&-1!=="/?#".indexOf(e.charAt(t.length))}(e,t)?e.substr(t.length):e}function l(e){return"/"===e.charAt(e.length-1)?e.slice(0,-1):e}function d(e){var t=e.pathname,n=e.search,r=e.hash,o=t||"/";return n&&"?"!==n&&(o+="?"===n.charAt(0)?n:"?"+n),r&&"#"!==r&&(o+="#"===r.charAt(0)?r:"#"+r),o}function p(e,t,n,i){var s;"string"==typeof e?(s=function(e){var t=e||"/",n="",r="",o=t.indexOf("#");-1!==o&&(r=t.substr(o),t=t.substr(0,o));var i=t.indexOf("?");return-1!==i&&(n=t.substr(i),t=t.substr(0,i)),{pathname:t,search:"?"===n?"":n,hash:"#"===r?"":r}}(e),s.state=t):(void 0===(s=(0,r.Z)({},e)).pathname&&(s.pathname=""),s.search?"?"!==s.search.charAt(0)&&(s.search="?"+s.search):s.search="",s.hash?"#"!==s.hash.charAt(0)&&(s.hash="#"+s.hash):s.hash="",void 0!==t&&void 0===s.state&&(s.state=t));try{s.pathname=decodeURI(s.pathname)}catch(a){throw a instanceof URIError?new URIError('Pathname "'+s.pathname+'" could not be decoded. This is likely caused by an invalid percent-encoding.'):a}return n&&(s.key=n),i?s.pathname?"/"!==s.pathname.charAt(0)&&(s.pathname=(0,o.Z)(s.pathname,i.pathname)):s.pathname=i.pathname:s.pathname||(s.pathname="/"),s}function f(e,t){return e.pathname===t.pathname&&e.search===t.search&&e.hash===t.hash&&e.key===t.key&&(0,i.Z)(e.state,t.state)}function h(){var e=null;var t=[];return{setPrompt:function(t){return e=t,function(){e===t&&(e=null)}},confirmTransitionTo:function(t,n,r,o){if(null!=e){var i="function"==typeof e?e(t,n):e;"string"==typeof i?"function"==typeof r?r(i,o):o(!0):o(!1!==i)}else o(!0)},appendListener:function(e){var n=!0;function r(){n&&e.apply(void 0,arguments)}return t.push(r),function(){n=!1,t=t.filter((function(e){return e!==r}))}},notifyListeners:function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];t.forEach((function(e){return e.apply(void 0,n)}))}}}var m=!("undefined"==typeof window||!window.document||!window.document.createElement);function g(e,t){t(window.confirm(e))}var y="popstate",v="hashchange";function b(){try{return window.history.state||{}}catch(e){return{}}}function w(e){void 0===e&&(e={}),m||(0,s.Z)(!1);var t,n=window.history,o=(-1===(t=window.navigator.userAgent).indexOf("Android 2.")&&-1===t.indexOf("Android 4.0")||-1===t.indexOf("Mobile Safari")||-1!==t.indexOf("Chrome")||-1!==t.indexOf("Windows Phone"))&&window.history&&"pushState"in window.history,i=!(-1===window.navigator.userAgent.indexOf("Trident")),u=e,f=u.forceRefresh,w=void 0!==f&&f,_=u.getUserConfirmation,E=void 0===_?g:_,S=u.keyLength,C=void 0===S?6:S,P=e.basename?l(a(e.basename)):"";function k(e){var t=e||{},n=t.key,r=t.state,o=window.location,i=o.pathname+o.search+o.hash;return P&&(i=c(i,P)),p(i,r,n)}function I(){return Math.random().toString(36).substr(2,C)}var A=h();function T(e){(0,r.Z)(q,e),q.length=n.length,A.notifyListeners(q.location,q.action)}function R(e){(function(e){return void 0===e.state&&-1===navigator.userAgent.indexOf("CriOS")})(e)||L(k(e.state))}function O(){L(k(b()))}var x=!1;function L(e){if(x)x=!1,T();else{A.confirmTransitionTo(e,"POP",E,(function(t){t?T({action:"POP",location:e}):function(e){var t=q.location,n=U.indexOf(t.key);-1===n&&(n=0);var r=U.indexOf(e.key);-1===r&&(r=0);var o=n-r;o&&(x=!0,Z(o))}(e)}))}}var F=k(b()),U=[F.key];function D(e){return P+d(e)}function Z(e){n.go(e)}var j=0;function N(e){1===(j+=e)&&1===e?(window.addEventListener(y,R),i&&window.addEventListener(v,O)):0===j&&(window.removeEventListener(y,R),i&&window.removeEventListener(v,O))}var M=!1;var q={length:n.length,action:"POP",location:F,createHref:D,push:function(e,t){var r="PUSH",i=p(e,t,I(),q.location);A.confirmTransitionTo(i,r,E,(function(e){if(e){var t=D(i),s=i.key,a=i.state;if(o)if(n.pushState({key:s,state:a},null,t),w)window.location.href=t;else{var u=U.indexOf(q.location.key),c=U.slice(0,u+1);c.push(i.key),U=c,T({action:r,location:i})}else window.location.href=t}}))},replace:function(e,t){var r="REPLACE",i=p(e,t,I(),q.location);A.confirmTransitionTo(i,r,E,(function(e){if(e){var t=D(i),s=i.key,a=i.state;if(o)if(n.replaceState({key:s,state:a},null,t),w)window.location.replace(t);else{var u=U.indexOf(q.location.key);-1!==u&&(U[u]=i.key),T({action:r,location:i})}else window.location.replace(t)}}))},go:Z,goBack:function(){Z(-1)},goForward:function(){Z(1)},block:function(e){void 0===e&&(e=!1);var t=A.setPrompt(e);return M||(N(1),M=!0),function(){return M&&(M=!1,N(-1)),t()}},listen:function(e){var t=A.appendListener(e);return N(1),function(){N(-1),t()}}};return q}var _="hashchange",E={hashbang:{encodePath:function(e){return"!"===e.charAt(0)?e:"!/"+u(e)},decodePath:function(e){return"!"===e.charAt(0)?e.substr(1):e}},noslash:{encodePath:u,decodePath:a},slash:{encodePath:a,decodePath:a}};function S(e){var t=e.indexOf("#");return-1===t?e:e.slice(0,t)}function C(){var e=window.location.href,t=e.indexOf("#");return-1===t?"":e.substring(t+1)}function P(e){window.location.replace(S(window.location.href)+"#"+e)}function k(e){void 0===e&&(e={}),m||(0,s.Z)(!1);var t=window.history,n=(window.navigator.userAgent.indexOf("Firefox"),e),o=n.getUserConfirmation,i=void 0===o?g:o,u=n.hashType,f=void 0===u?"slash":u,y=e.basename?l(a(e.basename)):"",v=E[f],b=v.encodePath,w=v.decodePath;function k(){var e=w(C());return y&&(e=c(e,y)),p(e)}var I=h();function A(e){(0,r.Z)(M,e),M.length=t.length,I.notifyListeners(M.location,M.action)}var T=!1,R=null;function O(){var e,t,n=C(),r=b(n);if(n!==r)P(r);else{var o=k(),s=M.location;if(!T&&(t=o,(e=s).pathname===t.pathname&&e.search===t.search&&e.hash===t.hash))return;if(R===d(o))return;R=null,function(e){if(T)T=!1,A();else{var t="POP";I.confirmTransitionTo(e,t,i,(function(n){n?A({action:t,location:e}):function(e){var t=M.location,n=U.lastIndexOf(d(t));-1===n&&(n=0);var r=U.lastIndexOf(d(e));-1===r&&(r=0);var o=n-r;o&&(T=!0,D(o))}(e)}))}}(o)}}var x=C(),L=b(x);x!==L&&P(L);var F=k(),U=[d(F)];function D(e){t.go(e)}var Z=0;function j(e){1===(Z+=e)&&1===e?window.addEventListener(_,O):0===Z&&window.removeEventListener(_,O)}var N=!1;var M={length:t.length,action:"POP",location:F,createHref:function(e){var t=document.querySelector("base"),n="";return t&&t.getAttribute("href")&&(n=S(window.location.href)),n+"#"+b(y+d(e))},push:function(e,t){var n="PUSH",r=p(e,void 0,void 0,M.location);I.confirmTransitionTo(r,n,i,(function(e){if(e){var t=d(r),o=b(y+t);if(C()!==o){R=t,function(e){window.location.hash=e}(o);var i=U.lastIndexOf(d(M.location)),s=U.slice(0,i+1);s.push(t),U=s,A({action:n,location:r})}else A()}}))},replace:function(e,t){var n="REPLACE",r=p(e,void 0,void 0,M.location);I.confirmTransitionTo(r,n,i,(function(e){if(e){var t=d(r),o=b(y+t);C()!==o&&(R=t,P(o));var i=U.indexOf(d(M.location));-1!==i&&(U[i]=t),A({action:n,location:r})}}))},go:D,goBack:function(){D(-1)},goForward:function(){D(1)},block:function(e){void 0===e&&(e=!1);var t=I.setPrompt(e);return N||(j(1),N=!0),function(){return N&&(N=!1,j(-1)),t()}},listen:function(e){var t=I.appendListener(e);return j(1),function(){j(-1),t()}}};return M}function I(e,t,n){return Math.min(Math.max(e,t),n)}function A(e){void 0===e&&(e={});var t=e,n=t.getUserConfirmation,o=t.initialEntries,i=void 0===o?["/"]:o,s=t.initialIndex,a=void 0===s?0:s,u=t.keyLength,c=void 0===u?6:u,l=h();function f(e){(0,r.Z)(w,e),w.length=w.entries.length,l.notifyListeners(w.location,w.action)}function m(){return Math.random().toString(36).substr(2,c)}var g=I(a,0,i.length-1),y=i.map((function(e){return p(e,void 0,"string"==typeof e?m():e.key||m())})),v=d;function b(e){var t=I(w.index+e,0,w.entries.length-1),r=w.entries[t];l.confirmTransitionTo(r,"POP",n,(function(e){e?f({action:"POP",location:r,index:t}):f()}))}var w={length:y.length,action:"POP",location:y[g],index:g,entries:y,createHref:v,push:function(e,t){var r="PUSH",o=p(e,t,m(),w.location);l.confirmTransitionTo(o,r,n,(function(e){if(e){var t=w.index+1,n=w.entries.slice(0);n.length>t?n.splice(t,n.length-t,o):n.push(o),f({action:r,location:o,index:t,entries:n})}}))},replace:function(e,t){var r="REPLACE",o=p(e,t,m(),w.location);l.confirmTransitionTo(o,r,n,(function(e){e&&(w.entries[w.index]=o,f({action:r,location:o}))}))},go:b,goBack:function(){b(-1)},goForward:function(){b(1)},canGo:function(e){var t=w.index+e;return t>=0&&t<w.entries.length},block:function(e){return void 0===e&&(e=!1),l.setPrompt(e)},listen:function(e){return l.appendListener(e)}};return w}},86141:(e,t)=>{"use strict";var n="function"==typeof Symbol&&Symbol.for,r=n?Symbol.for("react.element"):60103,o=n?Symbol.for("react.portal"):60106,i=n?Symbol.for("react.fragment"):60107,s=n?Symbol.for("react.strict_mode"):60108,a=n?Symbol.for("react.profiler"):60114,u=n?Symbol.for("react.provider"):60109,c=n?Symbol.for("react.context"):60110,l=n?Symbol.for("react.async_mode"):6011