diff --git a/README.md b/README.md
index e92d5b6b..56d955cd 100644
--- a/README.md
+++ b/README.md
@@ -342,6 +342,15 @@ Laraberg.init('[id_here]', { maxHeight: '500px' })
Laraberg.init('[id_here]', { minHeight: '500px' })
```
+
+## Placeholder
+
+You can change the default Gutenberg placeholder by adding a placeholder attribute to your textarea:
+
+```html
+
+```
+
## API Routes
After publishing the vendor files you can find the 'laraberg.php' file in your config folder. This file allows you to configure the API Routes. Here you can change the URL prefix and the middleware for the routes.
diff --git a/package.json b/package.json
index 4f0f30d9..ffb2547d 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "laraberg",
- "version": "1.1.0",
+ "version": "1.1.1",
"description": "A Gutenberg implementation for Laravel",
"main": "src/resources/laraberg.js",
"directories": {
diff --git a/public/css/laraberg.css b/public/css/laraberg.css
index 9b4f00a0..6a33609e 100644
--- a/public/css/laraberg.css
+++ b/public/css/laraberg.css
@@ -39,10 +39,7 @@
* than the space allows.
*/
/**
- * Button states and focus styles
- */
-/**
- * Block Toolbar/Formatting Buttons
+ * Focus styles.
*/
/**
* Applies editor left position to the selector passed as argument
@@ -89,6 +86,8 @@
animation-duration: 1ms; } }
.components-animate__slide-in.is-from-left {
transform: translateX(100%); }
+ .components-animate__slide-in.is-from-right {
+ transform: translateX(-100%); }
@keyframes components-animate__slide-in-animation {
100% {
@@ -147,6 +146,9 @@
.components-autocomplete__result.components-button {
display: flex;
+ height: auto;
+ min-height: 36px;
+ text-align: left;
width: 100%; }
.components-autocomplete__result.components-button.is-selected {
box-shadow: 0 0 0 2px rgb(0, 124, 186); }
@@ -174,61 +176,64 @@
margin-bottom: inherit; }
.components-base-control .components-base-control__label {
display: inline-block;
- margin-bottom: 4px; }
+ margin-bottom: 8px; }
.components-base-control .components-base-control__help {
margin-top: -8px;
font-style: italic; }
.components-button-group {
- display: inline-block;
- border-radius: 2px;
- border: 1px solid #007cba; }
-
-body.admin-color-sunrise .components-button-group {
- border: 1px solid #d1864a; }
-
-body.admin-color-ocean .components-button-group {
- border: 1px solid #a3b9a2; }
-
-body.admin-color-midnight .components-button-group {
- border: 1px solid #e14d43; }
-
-body.admin-color-ectoplasm .components-button-group {
- border: 1px solid #a7b656; }
-
-body.admin-color-coffee .components-button-group {
- border: 1px solid #c2a68c; }
-
-body.admin-color-blue .components-button-group {
- border: 1px solid #d9ab59; }
-
-body.admin-color-light .components-button-group {
- border: 1px solid #0085ba; }
+ display: inline-block; }
.components-button-group .components-button {
border-radius: 0;
display: inline-flex;
- color: #007cba; }
+ color: #007cba;
+ box-shadow: inset 0 0 0 1px #007cba; }
body.admin-color-sunrise .components-button-group .components-button {
- color: #d1864a; }
+ color: #d1864a;
+ box-shadow: inset 0 0 0 1px #d1864a; }
body.admin-color-ocean .components-button-group .components-button {
- color: #a3b9a2; }
+ color: #a3b9a2;
+ box-shadow: inset 0 0 0 1px #a3b9a2; }
body.admin-color-midnight .components-button-group .components-button {
- color: #e14d43; }
+ color: #e14d43;
+ box-shadow: inset 0 0 0 1px #e14d43; }
body.admin-color-ectoplasm .components-button-group .components-button {
- color: #a7b656; }
+ color: #a7b656;
+ box-shadow: inset 0 0 0 1px #a7b656; }
body.admin-color-coffee .components-button-group .components-button {
- color: #c2a68c; }
+ color: #c2a68c;
+ box-shadow: inset 0 0 0 1px #c2a68c; }
body.admin-color-blue .components-button-group .components-button {
- color: #d9ab59; }
+ color: #d9ab59;
+ box-shadow: inset 0 0 0 1px #d9ab59; }
body.admin-color-light .components-button-group .components-button {
- color: #0085ba; }
+ color: #0085ba;
+ box-shadow: inset 0 0 0 1px #0085ba; }
.components-button-group .components-button + .components-button {
margin-left: -1px; }
+ .components-button-group .components-button:first-child {
+ border-radius: 2px 0 0 2px; }
+ .components-button-group .components-button:last-child {
+ border-radius: 0 2px 2px 0; }
.components-button-group .components-button:focus, .components-button-group .components-button.is-primary {
position: relative;
z-index: 1; }
.components-button-group .components-button.is-primary {
- box-shadow: none; }
+ box-shadow: inset 0 0 0 1px #007cba; }
+ body.admin-color-sunrise .components-button-group .components-button.is-primary {
+ box-shadow: inset 0 0 0 1px #d1864a; }
+ body.admin-color-ocean .components-button-group .components-button.is-primary {
+ box-shadow: inset 0 0 0 1px #a3b9a2; }
+ body.admin-color-midnight .components-button-group .components-button.is-primary {
+ box-shadow: inset 0 0 0 1px #e14d43; }
+ body.admin-color-ectoplasm .components-button-group .components-button.is-primary {
+ box-shadow: inset 0 0 0 1px #a7b656; }
+ body.admin-color-coffee .components-button-group .components-button.is-primary {
+ box-shadow: inset 0 0 0 1px #c2a68c; }
+ body.admin-color-blue .components-button-group .components-button.is-primary {
+ box-shadow: inset 0 0 0 1px #d9ab59; }
+ body.admin-color-light .components-button-group .components-button.is-primary {
+ box-shadow: inset 0 0 0 1px #0085ba; }
.components-button {
display: inline-flex;
@@ -284,22 +289,22 @@ body.admin-color-light .components-button-group {
.components-button[aria-disabled="true"]:hover {
color: initial; }
.components-button:focus:not(:disabled) {
- box-shadow: 0 0 0 2px rgb(0, 124, 186);
+ box-shadow: 0 0 0 1.5px #007cba;
outline: 1px solid transparent; }
body.admin-color-sunrise .components-button:focus:not(:disabled) {
- box-shadow: 0 0 0 2px rgb(209, 134, 74); }
+ box-shadow: 0 0 0 1.5px #d1864a; }
body.admin-color-ocean .components-button:focus:not(:disabled) {
- box-shadow: 0 0 0 2px rgb(163, 185, 162); }
+ box-shadow: 0 0 0 1.5px #a3b9a2; }
body.admin-color-midnight .components-button:focus:not(:disabled) {
- box-shadow: 0 0 0 2px rgb(225, 77, 67); }
+ box-shadow: 0 0 0 1.5px #e14d43; }
body.admin-color-ectoplasm .components-button:focus:not(:disabled) {
- box-shadow: 0 0 0 2px rgb(167, 182, 86); }
+ box-shadow: 0 0 0 1.5px #a7b656; }
body.admin-color-coffee .components-button:focus:not(:disabled) {
- box-shadow: 0 0 0 2px rgb(194, 166, 140); }
+ box-shadow: 0 0 0 1.5px #c2a68c; }
body.admin-color-blue .components-button:focus:not(:disabled) {
- box-shadow: 0 0 0 2px rgb(217, 171, 89); }
+ box-shadow: 0 0 0 1.5px #d9ab59; }
body.admin-color-light .components-button:focus:not(:disabled) {
- box-shadow: 0 0 0 2px rgb(0, 133, 186); }
+ box-shadow: 0 0 0 1.5px #0085ba; }
.components-button.is-primary {
white-space: nowrap;
background: rgb(0, 124, 186);
@@ -363,22 +368,22 @@ body.admin-color-light .components-button-group {
background: rgb(0, 106, 149);
border-color: rgb(0, 106, 149); }
.components-button.is-primary:focus:not(:disabled) {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(0, 124, 186);
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #007cba;
outline: 1px solid transparent; }
body.admin-color-sunrise .components-button.is-primary:focus:not(:disabled) {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(209, 134, 74); }
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #d1864a; }
body.admin-color-ocean .components-button.is-primary:focus:not(:disabled) {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(163, 185, 162); }
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #a3b9a2; }
body.admin-color-midnight .components-button.is-primary:focus:not(:disabled) {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(225, 77, 67); }
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #e14d43; }
body.admin-color-ectoplasm .components-button.is-primary:focus:not(:disabled) {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(167, 182, 86); }
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #a7b656; }
body.admin-color-coffee .components-button.is-primary:focus:not(:disabled) {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(194, 166, 140); }
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #c2a68c; }
body.admin-color-blue .components-button.is-primary:focus:not(:disabled) {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(217, 171, 89); }
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #d9ab59; }
body.admin-color-light .components-button.is-primary:focus:not(:disabled) {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(0, 133, 186); }
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #0085ba; }
.components-button.is-primary:disabled, .components-button.is-primary:disabled:active:enabled, .components-button.is-primary[aria-disabled="true"], .components-button.is-primary[aria-disabled="true"]:enabled, .components-button.is-primary[aria-disabled="true"]:active:enabled {
color: rgb(102, 176, 214);
background: rgb(25, 137, 193);
@@ -576,7 +581,7 @@ body.admin-color-light .components-button-group {
color: #00a0d2; }
.components-button.is-link:focus {
color: #124964;
- box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, 0.8); }
+ box-shadow: 0 0 0 1px #5b9dd9, 0 0 1.5px 1px rgba(30, 140, 190, 0.8); }
.components-button.is-link.is-destructive {
color: #d94f4f; }
.components-button:not([aria-disabled="true"]):active {
@@ -586,9 +591,11 @@ body.admin-color-light .components-button-group {
opacity: 0.3; }
.components-button.is-busy, .components-button.is-secondary.is-busy, .components-button.is-secondary.is-busy:disabled, .components-button.is-secondary.is-busy[aria-disabled="true"] {
animation: components-button__busy-animation 2500ms infinite linear;
+ opacity: 1;
background-size: 100px 100%;
- background-image: repeating-linear-gradient(-45deg, #e2e4e7, #fff 11px, #fff 10px, #e2e4e7 20px);
- opacity: 1; }
+ /* stylelint-disable */
+ background-image: linear-gradient(-45deg, rgb(250, 250, 250) 28%, rgb(224, 224, 224) 28%, rgb(224, 224, 224) 72%, rgb(250, 250, 250) 72%);
+ /* stylelint-enable */ }
.components-button.is-small {
height: 24px;
line-height: 22px;
@@ -607,10 +614,32 @@ body.admin-color-light .components-button-group {
justify-content: left; }
.components-button.has-icon.has-text svg {
margin-right: 8px; }
+ .components-button.is-pressed {
+ color: #fff;
+ background: #1e1e1e; }
+ .components-button.is-pressed:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #007cba;
+ outline: 2px solid transparent; }
+ body.admin-color-sunrise .components-button.is-pressed:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #d1864a; }
+ body.admin-color-ocean .components-button.is-pressed:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #a3b9a2; }
+ body.admin-color-midnight .components-button.is-pressed:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #e14d43; }
+ body.admin-color-ectoplasm .components-button.is-pressed:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #a7b656; }
+ body.admin-color-coffee .components-button.is-pressed:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #c2a68c; }
+ body.admin-color-blue .components-button.is-pressed:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #d9ab59; }
+ body.admin-color-light .components-button.is-pressed:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #0085ba; }
+ .components-button.is-pressed:hover:not(:disabled) {
+ background: #1e1e1e; }
.components-button svg {
fill: currentColor;
outline: none; }
- .components-button .screen-reader-text {
+ .components-button .components-visually-hidden {
height: auto; }
@keyframes components-button__busy-animation {
@@ -1076,16 +1105,37 @@ svg.components-checkbox-control__checked {
margin-bottom: 5px; }
.components-custom-select-control__button {
- border: 1px solid #7e8993;
- border-radius: 4px;
- color: #555d66;
+ border: 1px solid #757575;
+ border-radius: 2px;
display: inline;
min-height: 30px;
min-width: 130px;
position: relative;
text-align: left; }
- .components-custom-select-control__button:focus {
- border-color: #00a0d2; }
+ .components-custom-select-control__button:focus:not(:disabled) {
+ border-color: #007cba;
+ box-shadow: 0 0 0 0.5px #007cba; }
+ body.admin-color-sunrise .components-custom-select-control__button:focus:not(:disabled) {
+ border-color: #d1864a;
+ box-shadow: 0 0 0 0.5px #d1864a; }
+ body.admin-color-ocean .components-custom-select-control__button:focus:not(:disabled) {
+ border-color: #a3b9a2;
+ box-shadow: 0 0 0 0.5px #a3b9a2; }
+ body.admin-color-midnight .components-custom-select-control__button:focus:not(:disabled) {
+ border-color: #e14d43;
+ box-shadow: 0 0 0 0.5px #e14d43; }
+ body.admin-color-ectoplasm .components-custom-select-control__button:focus:not(:disabled) {
+ border-color: #a7b656;
+ box-shadow: 0 0 0 0.5px #a7b656; }
+ body.admin-color-coffee .components-custom-select-control__button:focus:not(:disabled) {
+ border-color: #c2a68c;
+ box-shadow: 0 0 0 0.5px #c2a68c; }
+ body.admin-color-blue .components-custom-select-control__button:focus:not(:disabled) {
+ border-color: #d9ab59;
+ box-shadow: 0 0 0 0.5px #d9ab59; }
+ body.admin-color-light .components-custom-select-control__button:focus:not(:disabled) {
+ border-color: #0085ba;
+ box-shadow: 0 0 0 0.5px #0085ba; }
.components-custom-select-control__button-icon {
height: 100%;
padding: 0 4px;
@@ -1094,13 +1144,18 @@ svg.components-checkbox-control__checked {
top: 0; }
.components-custom-select-control__menu {
- background: #fff;
+ background-color: #fff;
max-height: 400px;
min-width: 100%;
overflow: auto;
padding: 0;
position: absolute;
z-index: 1000000; }
+ .components-custom-select-control__menu:focus {
+ border: 1px solid #1e1e1e;
+ border-radius: 2px;
+ outline: none;
+ transition: none; }
.components-custom-select-control__item {
align-items: center;
@@ -1938,11 +1993,14 @@ svg.dashicon {
/*rtl:end:ignore*/
.components-datetime {
- padding: 16px; }
+ padding: 0; }
.components-datetime .components-datetime__calendar-help {
padding: 16px; }
.components-datetime .components-datetime__calendar-help h4 {
margin: 0; }
+ .components-datetime .components-datetime__buttons {
+ display: flex;
+ justify-content: space-between; }
.components-datetime .components-datetime__date-help-button {
display: block;
margin-left: auto; }
@@ -1954,8 +2012,8 @@ svg.dashicon {
.components-datetime input {
box-shadow: 0 0 0 transparent;
transition: box-shadow 0.1s linear;
- border-radius: 4px;
- border: 1px solid #7e8993; }
+ border-radius: 2px;
+ border: 1px solid #757575; }
@media (prefers-reduced-motion: reduce) {
.components-datetime select,
.components-datetime input {
@@ -1974,13 +2032,34 @@ svg.dashicon {
left: 0; }
.components-datetime__date .CalendarMonth_caption {
font-size: 13px; }
+ .components-datetime__date .CalendarMonth_table {
+ border-collapse: separate;
+ border-spacing: 2px; }
.components-datetime__date .CalendarDay {
font-size: 13px;
- border: 1px solid transparent;
+ border: none;
border-radius: 50%;
text-align: center; }
+ .components-datetime__date .CalendarDay:focus {
+ box-shadow: inset 0 0 0 1.5px #0085ba, inset 0 0 0 2.5px #fff;
+ outline: 2px solid transparent; }
+ body.admin-color-sunrise .components-datetime__date .CalendarDay:focus {
+ box-shadow: inset 0 0 0 1.5px #d1864a, inset 0 0 0 2.5px #fff; }
+ body.admin-color-ocean .components-datetime__date .CalendarDay:focus {
+ box-shadow: inset 0 0 0 1.5px #a3b9a2, inset 0 0 0 2.5px #fff; }
+ body.admin-color-midnight .components-datetime__date .CalendarDay:focus {
+ box-shadow: inset 0 0 0 1.5px #e14d43, inset 0 0 0 2.5px #fff; }
+ body.admin-color-ectoplasm .components-datetime__date .CalendarDay:focus {
+ box-shadow: inset 0 0 0 1.5px #a7b656, inset 0 0 0 2.5px #fff; }
+ body.admin-color-coffee .components-datetime__date .CalendarDay:focus {
+ box-shadow: inset 0 0 0 1.5px #c2a68c, inset 0 0 0 2.5px #fff; }
+ body.admin-color-blue .components-datetime__date .CalendarDay:focus {
+ box-shadow: inset 0 0 0 1.5px #82b4cb, inset 0 0 0 2.5px #fff; }
+ body.admin-color-light .components-datetime__date .CalendarDay:focus {
+ box-shadow: inset 0 0 0 1.5px #0085ba, inset 0 0 0 2.5px #fff; }
.components-datetime__date .CalendarDay__selected {
- background: #0085ba; }
+ background: #0085ba;
+ border: 2px solid transparent; }
body.admin-color-sunrise .components-datetime__date .CalendarDay__selected {
background: #d1864a; }
body.admin-color-ocean .components-datetime__date .CalendarDay__selected {
@@ -2011,14 +2090,36 @@ svg.dashicon {
background: rgb(111, 153, 173); }
body.admin-color-light .components-datetime__date .CalendarDay__selected:hover {
background: rgb(0, 113, 158); }
+ .components-datetime__date .CalendarDay__selected:focus {
+ box-shadow: inset 0 0 0 1px #fff; }
.components-datetime__date .DayPickerNavigation_button__horizontalDefault {
padding: 2px 8px;
top: 20px; }
.components-datetime__date .DayPickerNavigation_button__horizontalDefault:focus {
- color: #191e23;
- border-color: #007cba;
- box-shadow: 0 0 0 1px #007cba;
+ border-color: rgb(0, 124, 186);
+ box-shadow: 0 0 0 0.5px #007cba;
outline: 2px solid transparent; }
+ body.admin-color-sunrise .components-datetime__date .DayPickerNavigation_button__horizontalDefault:focus {
+ border-color: rgb(209, 134, 74);
+ box-shadow: 0 0 0 0.5px #d1864a; }
+ body.admin-color-ocean .components-datetime__date .DayPickerNavigation_button__horizontalDefault:focus {
+ border-color: rgb(163, 185, 162);
+ box-shadow: 0 0 0 0.5px #a3b9a2; }
+ body.admin-color-midnight .components-datetime__date .DayPickerNavigation_button__horizontalDefault:focus {
+ border-color: rgb(225, 77, 67);
+ box-shadow: 0 0 0 0.5px #e14d43; }
+ body.admin-color-ectoplasm .components-datetime__date .DayPickerNavigation_button__horizontalDefault:focus {
+ border-color: rgb(167, 182, 86);
+ box-shadow: 0 0 0 0.5px #a7b656; }
+ body.admin-color-coffee .components-datetime__date .DayPickerNavigation_button__horizontalDefault:focus {
+ border-color: rgb(194, 166, 140);
+ box-shadow: 0 0 0 0.5px #c2a68c; }
+ body.admin-color-blue .components-datetime__date .DayPickerNavigation_button__horizontalDefault:focus {
+ border-color: rgb(217, 171, 89);
+ box-shadow: 0 0 0 0.5px #d9ab59; }
+ body.admin-color-light .components-datetime__date .DayPickerNavigation_button__horizontalDefault:focus {
+ border-color: rgb(0, 133, 186);
+ box-shadow: 0 0 0 0.5px #0085ba; }
.components-datetime__date .DayPicker_weekHeader {
top: 50px; }
.components-datetime__date .DayPicker_weekHeader .DayPicker_weekHeader_ul {
@@ -2044,31 +2145,9 @@ svg.dashicon {
display: inline-block;
padding: 0 3px 0 0;
color: #555d66; }
- .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-am-button {
- margin-left: 8px;
- margin-right: -1px;
- border-radius: 3px 0 0 3px; }
- .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-pm-button {
- margin-left: -1px;
- border-radius: 0 3px 3px 0; }
- .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-am-button:focus,
- .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-pm-button:focus {
- position: relative;
- z-index: 1; }
- .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-am-button.is-pressed,
- .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-pm-button.is-pressed {
- background: #edeff0;
- border-color: #8f98a1;
- box-shadow: inset 0 2px 5px -3px #555d66; }
- .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-am-button.is-pressed:focus,
- .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-pm-button.is-pressed:focus {
- box-shadow: inset 0 2px 5px -3px #555d66, 0 0 0 1px #fff, 0 0 0 3px #007cba; }
.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field-time {
/*rtl:ignore*/
direction: ltr; }
- .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field.am-pm button {
- font-size: 11px;
- font-weight: 600; }
.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field select {
margin-right: 4px; }
.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field select:focus {
@@ -2086,7 +2165,7 @@ svg.dashicon {
-webkit-appearance: none;
margin: 0; }
.components-datetime__time.is-12-hour .components-datetime__time-field-day input {
- margin: 0 -4px 0 0 !important;
+ margin: -4px 0 0 !important;
border-radius: 4px 0 0 4px !important; }
.components-datetime__time.is-12-hour .components-datetime__time-field-year input {
border-radius: 0 4px 4px 0 !important; }
@@ -2255,18 +2334,17 @@ body.is-dragging-components-draggable {
left: 0;
right: 0;
height: 1px; }
- .components-dropdown-menu__menu .components-dropdown-menu__menu-item.is-active,
- .components-dropdown-menu__menu .components-menu-item.is-active {
- border: 1px solid #1e1e1e;
- border-radius: 2px;
+ .components-dropdown-menu__menu .components-dropdown-menu__menu-item.is-active svg,
+ .components-dropdown-menu__menu .components-menu-item.is-active svg {
color: #fff;
- background: #1e1e1e; }
+ background: #1e1e1e;
+ box-shadow: 0 0 0 1px #1e1e1e;
+ border-radius: 1px; }
.components-dropdown-menu__menu .components-dropdown-menu__menu-item > svg,
.components-dropdown-menu__menu .components-menu-item > svg {
- border-radius: 4px;
+ border-radius: 2px;
width: 24px;
- height: 24px;
- margin: -1px 8px -1px 0; }
+ height: 24px; }
.components-dropdown-menu__menu .components-menu-item__button,
.components-dropdown-menu__menu .components-menu-item__button.components-button {
min-height: 36px;
@@ -2487,9 +2565,23 @@ body.is-dragging-components-draggable {
background-color: #11a0d2;
border: 2px solid #11a0d2; }
.components-form-toggle__input:focus + .components-form-toggle__track {
- box-shadow: 0 0 0 2px #fff, 0 0 0 3px #6c7781;
+ box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px #007cba;
outline: 2px solid transparent;
outline-offset: 2px; }
+ body.admin-color-sunrise .components-form-toggle__input:focus + .components-form-toggle__track {
+ box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px #d1864a; }
+ body.admin-color-ocean .components-form-toggle__input:focus + .components-form-toggle__track {
+ box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px #a3b9a2; }
+ body.admin-color-midnight .components-form-toggle__input:focus + .components-form-toggle__track {
+ box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px #e14d43; }
+ body.admin-color-ectoplasm .components-form-toggle__input:focus + .components-form-toggle__track {
+ box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px #a7b656; }
+ body.admin-color-coffee .components-form-toggle__input:focus + .components-form-toggle__track {
+ box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px #c2a68c; }
+ body.admin-color-blue .components-form-toggle__input:focus + .components-form-toggle__track {
+ box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px #d9ab59; }
+ body.admin-color-light .components-form-toggle__input:focus + .components-form-toggle__track {
+ box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px #0085ba; }
.components-form-toggle.is-checked .components-form-toggle__thumb {
background-color: #fff;
border-width: 0;
@@ -2561,8 +2653,8 @@ body.is-dragging-components-draggable {
cursor: text;
box-shadow: 0 0 0 transparent;
transition: box-shadow 0.1s linear;
- border-radius: 4px;
- border: 1px solid #7e8993; }
+ border-radius: 2px;
+ border: 1px solid #757575; }
@media (prefers-reduced-motion: reduce) {
.components-form-token-field__input-container {
transition-duration: 0s; } }
@@ -2570,10 +2662,30 @@ body.is-dragging-components-draggable {
background: #e2e4e7;
border-color: #ccd0d4; }
.components-form-token-field__input-container.is-active {
- color: #191e23;
- border-color: #007cba;
- box-shadow: 0 0 0 1px #007cba;
+ border-color: rgb(0, 124, 186);
+ box-shadow: 0 0 0 0.5px #007cba;
outline: 2px solid transparent; }
+ body.admin-color-sunrise .components-form-token-field__input-container.is-active {
+ border-color: rgb(209, 134, 74);
+ box-shadow: 0 0 0 0.5px #d1864a; }
+ body.admin-color-ocean .components-form-token-field__input-container.is-active {
+ border-color: rgb(163, 185, 162);
+ box-shadow: 0 0 0 0.5px #a3b9a2; }
+ body.admin-color-midnight .components-form-token-field__input-container.is-active {
+ border-color: rgb(225, 77, 67);
+ box-shadow: 0 0 0 0.5px #e14d43; }
+ body.admin-color-ectoplasm .components-form-token-field__input-container.is-active {
+ border-color: rgb(167, 182, 86);
+ box-shadow: 0 0 0 0.5px #a7b656; }
+ body.admin-color-coffee .components-form-token-field__input-container.is-active {
+ border-color: rgb(194, 166, 140);
+ box-shadow: 0 0 0 0.5px #c2a68c; }
+ body.admin-color-blue .components-form-token-field__input-container.is-active {
+ border-color: rgb(217, 171, 89);
+ box-shadow: 0 0 0 0.5px #d9ab59; }
+ body.admin-color-light .components-form-token-field__input-container.is-active {
+ border-color: rgb(0, 133, 186);
+ box-shadow: 0 0 0 0.5px #0085ba; }
.components-form-token-field__input-container input[type="text"].components-form-token-field__input {
display: inline-block;
width: 100%;
@@ -3023,11 +3135,6 @@ body.is-dragging-components-draggable {
display: block;
margin-left: 0;
margin-top: 8px; }
- @media (min-width: 782px) {
- .components-notice-list .components-notice__action.components-button {
- float: right;
- margin-top: -4px;
- margin-bottom: -4px; } }
.components-panel {
background: #fff;
@@ -3085,8 +3192,8 @@ body.is-dragging-components-draggable {
margin-bottom: 5px; }
.components-panel__body > .components-panel__body-title:hover {
- background: #f3f4f5 !important;
- border: none !important; }
+ background: #f3f4f5;
+ border: none; }
.components-panel__body-toggle.components-button {
position: relative;
@@ -3105,16 +3212,23 @@ body.is-dragging-components-draggable {
@media (prefers-reduced-motion: reduce) {
.components-panel__body-toggle.components-button {
transition-duration: 0s; } }
- .components-panel__body-toggle.components-button:focus:not(:disabled):not([aria-disabled="true"]) {
- color: #191e23;
- border: none;
- box-shadow: none;
- outline-offset: -2px;
- outline: 1px dotted #555d66; }
- .components-panel__body-toggle.components-button:hover {
- background: transparent !important;
- border: none !important;
- box-shadow: none !important; }
+ .components-panel__body-toggle.components-button:focus {
+ box-shadow: inset 0 0 0 1.5px #007cba;
+ border-radius: 0; }
+ body.admin-color-sunrise .components-panel__body-toggle.components-button:focus {
+ box-shadow: inset 0 0 0 1.5px #d1864a; }
+ body.admin-color-ocean .components-panel__body-toggle.components-button:focus {
+ box-shadow: inset 0 0 0 1.5px #a3b9a2; }
+ body.admin-color-midnight .components-panel__body-toggle.components-button:focus {
+ box-shadow: inset 0 0 0 1.5px #e14d43; }
+ body.admin-color-ectoplasm .components-panel__body-toggle.components-button:focus {
+ box-shadow: inset 0 0 0 1.5px #a7b656; }
+ body.admin-color-coffee .components-panel__body-toggle.components-button:focus {
+ box-shadow: inset 0 0 0 1.5px #c2a68c; }
+ body.admin-color-blue .components-panel__body-toggle.components-button:focus {
+ box-shadow: inset 0 0 0 1.5px #d9ab59; }
+ body.admin-color-light .components-panel__body-toggle.components-button:focus {
+ box-shadow: inset 0 0 0 1.5px #0085ba; }
.components-panel__body-toggle.components-button .components-panel__arrow {
position: absolute;
right: 16px;
@@ -3172,7 +3286,7 @@ body.is-dragging-components-draggable {
-webkit-font-smoothing: subpixel-antialiased;
border-radius: 2px;
background-color: #fff;
- box-shadow: 0 0 0 1px #1e1e1e;
+ box-shadow: inset 0 0 0 1px #1e1e1e;
outline: 1px solid transparent; }
@supports ((position: -webkit-sticky) or (position: sticky)) {
.components-placeholder.components-placeholder {
@@ -3343,6 +3457,14 @@ body.is-dragging-components-draggable {
.components-popover[data-y-axis="middle"] {
align-items: center;
display: flex; }
+ .components-popover.is-from-top {
+ margin-top: 12px; }
+ .components-popover.is-from-bottom {
+ margin-top: -12px; }
+ .components-popover.is-from-left:not(.is-from-top):not(.is-from-bottom) {
+ margin-left: 12px; }
+ .components-popover.is-from-right:not(.is-from-top):not(.is-from-bottom) {
+ margin-right: 12px; }
.components-popover__content {
height: 100%;
@@ -3350,6 +3472,9 @@ body.is-dragging-components-draggable {
border: 1px solid #ccc;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
border-radius: 2px; }
+ .is-alternate .components-popover__content {
+ border: 1px solid #1e1e1e;
+ box-shadow: none; }
.components-popover .components-popover__content {
position: absolute;
height: auto;
@@ -3418,7 +3543,6 @@ body.is-dragging-components-draggable {
display: none;
width: 23px;
height: 23px; }
- .components-resizable-box__container.is-selected .components-resizable-box__handle,
.components-resizable-box__container.has-show-handle .components-resizable-box__handle {
display: block; }
@@ -3595,7 +3719,8 @@ body.admin-color-light .components-resizable-box__side-handle::before {
bottom: 0;
left: 0;
width: 100%;
- height: 100%; }
+ height: 100%;
+ margin: auto; }
.components-sandbox {
overflow: hidden; }
@@ -3707,6 +3832,103 @@ body.lockscroll {
to {
transform: rotate(360deg); } }
+.components-tab-panel__tabs {
+ display: flex;
+ align-items: stretch; }
+
+.components-tab-panel__tabs-item {
+ background: transparent;
+ border: none;
+ box-shadow: none;
+ border-radius: 0;
+ cursor: pointer;
+ height: 48px;
+ padding: 3px 16px;
+ margin-left: 0;
+ font-weight: 500;
+ transition: box-shadow 0.1s linear;
+ box-sizing: border-box; }
+ .components-tab-panel__tabs-item::after {
+ content: attr(data-label);
+ display: block;
+ height: 0;
+ overflow: hidden;
+ speak: none;
+ visibility: hidden; }
+ .components-tab-panel__tabs-item:focus:not(:disabled) {
+ box-shadow: inset 0 1.5px #007cba; }
+ body.admin-color-sunrise .components-tab-panel__tabs-item:focus:not(:disabled) {
+ box-shadow: inset 0 1.5px #d1864a; }
+ body.admin-color-ocean .components-tab-panel__tabs-item:focus:not(:disabled) {
+ box-shadow: inset 0 1.5px #a3b9a2; }
+ body.admin-color-midnight .components-tab-panel__tabs-item:focus:not(:disabled) {
+ box-shadow: inset 0 1.5px #e14d43; }
+ body.admin-color-ectoplasm .components-tab-panel__tabs-item:focus:not(:disabled) {
+ box-shadow: inset 0 1.5px #a7b656; }
+ body.admin-color-coffee .components-tab-panel__tabs-item:focus:not(:disabled) {
+ box-shadow: inset 0 1.5px #c2a68c; }
+ body.admin-color-blue .components-tab-panel__tabs-item:focus:not(:disabled) {
+ box-shadow: inset 0 1.5px #d9ab59; }
+ body.admin-color-light .components-tab-panel__tabs-item:focus:not(:disabled) {
+ box-shadow: inset 0 1.5px #0085ba; }
+ .components-tab-panel__tabs-item.is-active {
+ box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #007cba;
+ position: relative; }
+ body.admin-color-sunrise .components-tab-panel__tabs-item.is-active {
+ box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #d1864a; }
+ body.admin-color-ocean .components-tab-panel__tabs-item.is-active {
+ box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #a3b9a2; }
+ body.admin-color-midnight .components-tab-panel__tabs-item.is-active {
+ box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #e14d43; }
+ body.admin-color-ectoplasm .components-tab-panel__tabs-item.is-active {
+ box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #a7b656; }
+ body.admin-color-coffee .components-tab-panel__tabs-item.is-active {
+ box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #c2a68c; }
+ body.admin-color-blue .components-tab-panel__tabs-item.is-active {
+ box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #d9ab59; }
+ body.admin-color-light .components-tab-panel__tabs-item.is-active {
+ box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #0085ba; }
+ .components-tab-panel__tabs-item.is-active::before {
+ content: "";
+ position: absolute;
+ top: 0;
+ bottom: 1px;
+ right: 0;
+ left: 0;
+ border-bottom: 4px solid transparent; }
+ .components-tab-panel__tabs-item:focus {
+ box-shadow: inset 0 0 0 1.5px #007cba; }
+ body.admin-color-sunrise .components-tab-panel__tabs-item:focus {
+ box-shadow: inset 0 0 0 1.5px #d1864a; }
+ body.admin-color-ocean .components-tab-panel__tabs-item:focus {
+ box-shadow: inset 0 0 0 1.5px #a3b9a2; }
+ body.admin-color-midnight .components-tab-panel__tabs-item:focus {
+ box-shadow: inset 0 0 0 1.5px #e14d43; }
+ body.admin-color-ectoplasm .components-tab-panel__tabs-item:focus {
+ box-shadow: inset 0 0 0 1.5px #a7b656; }
+ body.admin-color-coffee .components-tab-panel__tabs-item:focus {
+ box-shadow: inset 0 0 0 1.5px #c2a68c; }
+ body.admin-color-blue .components-tab-panel__tabs-item:focus {
+ box-shadow: inset 0 0 0 1.5px #d9ab59; }
+ body.admin-color-light .components-tab-panel__tabs-item:focus {
+ box-shadow: inset 0 0 0 1.5px #0085ba; }
+ .components-tab-panel__tabs-item.is-active:focus {
+ box-shadow: inset 0 0 0 1.5px #007cba, inset 0 -4px 0 0 #007cba; }
+ body.admin-color-sunrise .components-tab-panel__tabs-item.is-active:focus {
+ box-shadow: inset 0 0 0 1.5px #d1864a, inset 0 -4px 0 0 #d1864a; }
+ body.admin-color-ocean .components-tab-panel__tabs-item.is-active:focus {
+ box-shadow: inset 0 0 0 1.5px #a3b9a2, inset 0 -4px 0 0 #a3b9a2; }
+ body.admin-color-midnight .components-tab-panel__tabs-item.is-active:focus {
+ box-shadow: inset 0 0 0 1.5px #e14d43, inset 0 -4px 0 0 #e14d43; }
+ body.admin-color-ectoplasm .components-tab-panel__tabs-item.is-active:focus {
+ box-shadow: inset 0 0 0 1.5px #a7b656, inset 0 -4px 0 0 #a7b656; }
+ body.admin-color-coffee .components-tab-panel__tabs-item.is-active:focus {
+ box-shadow: inset 0 0 0 1.5px #c2a68c, inset 0 -4px 0 0 #c2a68c; }
+ body.admin-color-blue .components-tab-panel__tabs-item.is-active:focus {
+ box-shadow: inset 0 0 0 1.5px #d9ab59, inset 0 -4px 0 0 #d9ab59; }
+ body.admin-color-light .components-tab-panel__tabs-item.is-active:focus {
+ box-shadow: inset 0 0 0 1.5px #0085ba, inset 0 -4px 0 0 #0085ba; }
+
.components-text-control__input {
width: 100%;
padding: 6px 8px; }
@@ -3739,10 +3961,93 @@ body.lockscroll {
.components-accessible-toolbar {
display: inline-flex;
+ border: 1px solid #1e1e1e;
+ border-radius: 2px;
flex-shrink: 0; }
- @supports ((position: -webkit-sticky) or (position: sticky)) {
- .components-accessible-toolbar {
- display: flex; } }
+ .components-accessible-toolbar > .components-toolbar-group:last-child {
+ border-right: none; }
+
+.components-accessible-toolbar .components-button,
+.components-toolbar .components-button {
+ position: relative;
+ height: 48px;
+ z-index: 1;
+ padding-left: 16px;
+ padding-right: 16px; }
+ .components-accessible-toolbar .components-button:focus:enabled,
+ .components-toolbar .components-button:focus:enabled {
+ box-shadow: none;
+ outline: none; }
+ .components-accessible-toolbar .components-button::before,
+ .components-toolbar .components-button::before {
+ content: "";
+ position: absolute;
+ display: block;
+ border-radius: 2px;
+ height: 32px;
+ min-width: 32px;
+ left: 8px;
+ right: 8px;
+ z-index: -1;
+ animation: components-button__appear-animation 0.1s ease;
+ animation-fill-mode: forwards; }
+ @media (prefers-reduced-motion: reduce) {
+ .components-accessible-toolbar .components-button::before,
+ .components-toolbar .components-button::before {
+ animation-duration: 1ms; } }
+ .components-accessible-toolbar .components-button svg,
+ .components-toolbar .components-button svg {
+ position: relative;
+ margin-left: auto;
+ margin-right: auto; }
+ .components-accessible-toolbar .components-button.is-pressed,
+ .components-toolbar .components-button.is-pressed {
+ background: transparent; }
+ .components-accessible-toolbar .components-button.is-pressed:hover,
+ .components-toolbar .components-button.is-pressed:hover {
+ background: transparent; }
+ .components-accessible-toolbar .components-button.is-pressed::before,
+ .components-toolbar .components-button.is-pressed::before {
+ background: #1e1e1e; }
+ .components-accessible-toolbar .components-button:focus::before,
+ .components-toolbar .components-button:focus::before {
+ box-shadow: inset 0 0 0 1.5px #007cba, inset 0 0 0 4px #fff;
+ outline: 2px solid transparent; }
+ body.admin-color-sunrise .components-accessible-toolbar .components-button:focus::before, body.admin-color-sunrise .components-toolbar .components-button:focus::before {
+ box-shadow: inset 0 0 0 1.5px #d1864a, inset 0 0 0 4px #fff; }
+ body.admin-color-ocean .components-accessible-toolbar .components-button:focus::before, body.admin-color-ocean .components-toolbar .components-button:focus::before {
+ box-shadow: inset 0 0 0 1.5px #a3b9a2, inset 0 0 0 4px #fff; }
+ body.admin-color-midnight .components-accessible-toolbar .components-button:focus::before, body.admin-color-midnight .components-toolbar .components-button:focus::before {
+ box-shadow: inset 0 0 0 1.5px #e14d43, inset 0 0 0 4px #fff; }
+ body.admin-color-ectoplasm .components-accessible-toolbar .components-button:focus::before, body.admin-color-ectoplasm .components-toolbar .components-button:focus::before {
+ box-shadow: inset 0 0 0 1.5px #a7b656, inset 0 0 0 4px #fff; }
+ body.admin-color-coffee .components-accessible-toolbar .components-button:focus::before, body.admin-color-coffee .components-toolbar .components-button:focus::before {
+ box-shadow: inset 0 0 0 1.5px #c2a68c, inset 0 0 0 4px #fff; }
+ body.admin-color-blue .components-accessible-toolbar .components-button:focus::before, body.admin-color-blue .components-toolbar .components-button:focus::before {
+ box-shadow: inset 0 0 0 1.5px #d9ab59, inset 0 0 0 4px #fff; }
+ body.admin-color-light .components-accessible-toolbar .components-button:focus::before, body.admin-color-light .components-toolbar .components-button:focus::before {
+ box-shadow: inset 0 0 0 1.5px #0085ba, inset 0 0 0 4px #fff; }
+ .components-accessible-toolbar .components-button.has-icon,
+ .components-toolbar .components-button.has-icon {
+ padding-left: 8px;
+ padding-right: 8px;
+ min-width: 48px;
+ justify-content: center; }
+ .components-accessible-toolbar .components-button.components-tab-button,
+ .components-toolbar .components-button.components-tab-button {
+ font-weight: 500; }
+ .components-accessible-toolbar .components-button.components-tab-button span,
+ .components-toolbar .components-button.components-tab-button span {
+ display: inline-block;
+ padding-left: 0;
+ padding-right: 0;
+ position: relative; }
+
+@keyframes components-button__appear-animation {
+ from {
+ transform: scaleY(0); }
+ to {
+ transform: scaleY(1); } }
.components-toolbar__control.components-button {
position: relative; }
@@ -3763,22 +4068,26 @@ body.lockscroll {
color: #fff; }
.components-toolbar-group {
- border: 1px solid #e2e4e7;
+ min-height: 48px;
+ border-right: 1px solid #1e1e1e;
background-color: #fff;
- display: flex;
+ display: inline-flex;
flex-shrink: 0;
- margin-right: -1px;
+ flex-wrap: wrap;
line-height: 0; }
.components-toolbar-group .components-toolbar-group {
border-width: 0;
margin: 0; }
.components-toolbar {
+ min-height: 48px;
margin: 0;
- border: 1px solid #e2e4e7;
+ border: 1px solid #1e1e1e;
+ border-radius: 2px;
background-color: #fff;
- display: flex;
- flex-shrink: 0; }
+ display: inline-flex;
+ flex-shrink: 0;
+ flex-wrap: wrap; }
div.components-toolbar > div {
display: block;
@@ -3803,6 +4112,55 @@ div.components-toolbar > div + div.has-left-divider::before {
width: 1px;
height: 20px; }
+.components-accessible-toolbar .components-toolbar-group > .components-button.components-button.has-icon,
+.components-toolbar div > .components-button.components-button.has-icon {
+ min-width: 36px;
+ padding-left: 6px;
+ padding-right: 6px; }
+ .components-accessible-toolbar .components-toolbar-group > .components-button.components-button.has-icon svg,
+ .components-toolbar div > .components-button.components-button.has-icon svg {
+ min-width: 24px; }
+ .components-accessible-toolbar .components-toolbar-group > .components-button.components-button.has-icon::before,
+ .components-toolbar div > .components-button.components-button.has-icon::before {
+ left: 2px;
+ right: 2px; }
+
+.components-accessible-toolbar .components-toolbar-group > .components-button:first-child.has-icon,
+.components-accessible-toolbar .components-toolbar-group > div:first-child > .components-button.has-icon,
+.components-toolbar div:first-child .components-button.has-icon {
+ min-width: 42px;
+ padding-left: 11px;
+ padding-right: 6px; }
+ .components-accessible-toolbar .components-toolbar-group > .components-button:first-child.has-icon::before,
+ .components-accessible-toolbar .components-toolbar-group > div:first-child > .components-button.has-icon::before,
+ .components-toolbar div:first-child .components-button.has-icon::before {
+ left: 8px;
+ right: 2px; }
+
+.components-accessible-toolbar .components-toolbar-group > .components-button:last-child.has-icon,
+.components-accessible-toolbar .components-toolbar-group > div:last-child > .components-button.has-icon,
+.components-toolbar div:last-child .components-button.has-icon {
+ min-width: 42px;
+ padding-left: 6px;
+ padding-right: 11px; }
+ .components-accessible-toolbar .components-toolbar-group > .components-button:last-child.has-icon::before,
+ .components-accessible-toolbar .components-toolbar-group > div:last-child > .components-button.has-icon::before,
+ .components-toolbar div:last-child .components-button.has-icon::before {
+ left: 2px;
+ right: 8px; }
+
+.components-accessible-toolbar .components-toolbar-group > .components-button:first-of-type:last-of-type.has-icon,
+.components-accessible-toolbar .components-toolbar-group > div:first-child:last-child > .components-button.has-icon,
+.components-toolbar div:first-child:last-child > .components-button.has-icon {
+ min-width: 48px;
+ padding-left: 12px;
+ padding-right: 12px; }
+ .components-accessible-toolbar .components-toolbar-group > .components-button:first-of-type:last-of-type.has-icon::before,
+ .components-accessible-toolbar .components-toolbar-group > div:first-child:last-child > .components-button.has-icon::before,
+ .components-toolbar div:first-child:last-child > .components-button.has-icon::before {
+ left: 8px;
+ right: 8px; }
+
.components-tooltip.components-popover {
z-index: 1000002; }
.components-tooltip.components-popover .components-popover__content {
@@ -3893,10 +4251,7 @@ div.components-toolbar > div + div.has-left-divider::before {
* than the space allows.
*/
/**
- * Button states and focus styles
- */
-/**
- * Block Toolbar/Formatting Buttons
+ * Focus styles.
*/
/**
* Applies editor left position to the selector passed as argument
@@ -3917,6 +4272,9 @@ div.components-toolbar > div + div.has-left-divider::before {
#start-resizable-editor-section {
display: none; }
+.block-editor-autocompleters__block .block-editor-block-icon {
+ margin-right: 8px; }
+
.block-editor-block-icon {
display: flex;
align-items: center;
@@ -3959,20 +4317,8 @@ div.components-toolbar > div + div.has-left-divider::before {
.block-editor-block-list__layout .block-editor-block-list__block .reusable-block-edit-panel * {
z-index: 1; }
-/**
- * General Post Content Layout
- */
-.block-editor-block-list__layout {
- padding-left: 14px;
- padding-right: 14px;
- position: relative; }
- @media (min-width: 600px) {
- .block-editor-block-list__layout {
- padding-left: 58px;
- padding-right: 58px; } }
- .block-editor-block-list__layout .block-editor-block-list__layout {
- padding-left: 0;
- padding-right: 0; }
+.block-editor-block-styles .block-editor-block-list__block {
+ margin: 0; }
/**
* Notices & Block Selected/Hover Styles.
@@ -4003,14 +4349,14 @@ div.components-toolbar > div + div.has-left-divider::before {
z-index: 1;
pointer-events: none;
content: "";
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- box-shadow: 0 0 0 2px #007cba;
- border-radius: 2px; }
+ top: 1px;
+ bottom: 1px;
+ left: 1px;
+ right: 1px;
+ box-shadow: 0 0 0 1.5px #007cba;
+ border-radius: 1px; }
.is-dark-theme .block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus::after {
- box-shadow: 0 0 0 2px #fff; }
+ box-shadow: 0 0 0 1.5px #fff; }
.block-editor-block-list__layout .block-editor-block-list__block.is-focus-mode:not(.is-multi-selected) {
opacity: 0.5;
transition: opacity 0.1s linear; }
@@ -4034,34 +4380,39 @@ div.components-toolbar > div + div.has-left-divider::before {
/**
* Cross-Block Selection
*/
-.is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block.is-selected::after,
-.block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected::after {
- position: absolute;
- z-index: 1;
- pointer-events: none;
- content: "";
- top: 0;
- bottom: 0;
- left: 0;
- right: 0; }
-
-.is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block.is-selected .is-block-content, .is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block.is-selected::after,
-.block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected .is-block-content,
-.block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected::after {
- box-shadow: 0 0 0 2px #007cba;
- border-radius: 2px;
- outline: 2px solid transparent; }
- .is-dark-theme .is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block.is-selected .is-block-content, .is-dark-theme .is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block.is-selected::after, .is-dark-theme
- .block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected .is-block-content, .is-dark-theme
+.block-editor-block-list__layout {
+ position: relative; }
+ .is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block.is-selected::after,
+ .block-editor-block-list__layout .block-editor-block-list__block.is-highlighted::after,
.block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected::after {
- box-shadow: 0 0 0 2px #fff; }
-
-.is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block.is-selected .components-placeholder ::selection,
-.block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected .components-placeholder ::selection {
- background: transparent; }
-
-.block-editor-block-list__layout .block-editor-block-list__block.is-block-collapsed::after {
- content: none; }
+ position: absolute;
+ z-index: 1;
+ pointer-events: none;
+ content: "";
+ top: 1px;
+ bottom: 1px;
+ left: 1px;
+ right: 1px; }
+ .is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block.is-selected::after,
+ .block-editor-block-list__layout .block-editor-block-list__block.is-highlighted::after,
+ .block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected::after {
+ box-shadow: 0 0 0 1.5px #007cba;
+ border-radius: 1px;
+ transition: box-shadow 0.2s ease-out;
+ outline: 2px solid transparent; }
+ @media (prefers-reduced-motion: reduce) {
+ .is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block.is-selected::after,
+ .block-editor-block-list__layout .block-editor-block-list__block.is-highlighted::after,
+ .block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected::after {
+ transition-duration: 0s; } }
+ .is-dark-theme .is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block.is-selected::after, .is-dark-theme
+ .block-editor-block-list__layout .block-editor-block-list__block.is-highlighted::after, .is-dark-theme
+ .block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected::after {
+ box-shadow: 0 0 0 1.5px #fff; }
+ .is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block.is-selected .components-placeholder ::selection,
+ .block-editor-block-list__layout .block-editor-block-list__block.is-highlighted .components-placeholder ::selection,
+ .block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected .components-placeholder ::selection {
+ background: transparent; }
/**
* Block styles and alignments
@@ -4069,13 +4420,28 @@ div.components-toolbar > div + div.has-left-divider::before {
.block-editor-block-list__layout .block-editor-block-list__block.has-warning {
min-height: 36px; }
-.block-editor-block-list__layout .block-editor-block-list__block.has-warning > * {
+.block-editor-block-list__layout .block-editor-block-list__block::after {
+ content: "";
pointer-events: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- user-select: none; }
-
-.block-editor-block-list__layout .block-editor-block-list__block.has-warning .block-editor-warning {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ border-radius: 2px;
+ box-shadow: 0 0 0 1.5px transparent;
+ transition: box-shadow 0.1s ease-in; }
+ @media (prefers-reduced-motion: reduce) {
+ .block-editor-block-list__layout .block-editor-block-list__block::after {
+ transition-duration: 0s; } }
+
+.block-editor-block-list__layout .block-editor-block-list__block.has-warning > * {
+ pointer-events: none;
+ -webkit-user-select: none;
+ -ms-user-select: none;
+ user-select: none; }
+
+.block-editor-block-list__layout .block-editor-block-list__block.has-warning .block-editor-warning {
pointer-events: all; }
.block-editor-block-list__layout .block-editor-block-list__block.has-warning::after {
@@ -4100,47 +4466,42 @@ div.components-toolbar > div + div.has-left-divider::before {
.is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block {
cursor: default; }
-.block-editor-block-list__layout .block-editor-block-list__block .alignleft,
-.block-editor-block-list__layout .block-editor-block-list__block .alignright {
- z-index: 21; }
+.block-editor-block-list__layout .block-editor-block-list__block[data-clear="true"] {
+ float: none; }
+
+.block-editor-block-list__layout .block-editor-block-list__block .block-editor-block-list__layout .block-editor-default-block-appender .block-editor-inserter {
+ left: auto;
+ right: 8px; }
+
+.block-editor-block-list__layout .wp-block {
+ margin-left: auto;
+ margin-right: auto; }
-.block-editor-block-list__layout .block-editor-block-list__block[data-align="left"], .block-editor-block-list__layout .block-editor-block-list__block[data-align="right"] {
- z-index: 21;
+.wp-block[data-align="left"], .wp-block[data-align="right"] {
width: 100%;
height: 0; }
- .block-editor-block-list__layout .block-editor-block-list__block[data-align="left"]::before, .block-editor-block-list__layout .block-editor-block-list__block[data-align="right"]::before {
+ .wp-block[data-align="left"]::before, .wp-block[data-align="right"]::before {
content: none; }
-.block-editor-block-list__layout .block-editor-block-list__block[data-align="left"] > .is-block-content {
+.wp-block[data-align="left"] > *,
+.wp-block[data-align="right"] > * {
+ z-index: 21; }
+
+.wp-block[data-align="left"] > * {
/*!rtl:begin:ignore*/
float: left;
margin-right: 2em;
/*!rtl:end:ignore*/ }
-.block-editor-block-list__layout .block-editor-block-list__block[data-align="right"] > .is-block-content {
+.wp-block[data-align="right"] > * {
/*!rtl:begin:ignore*/
float: right;
margin-left: 2em;
/*!rtl:end:ignore*/ }
-.block-editor-block-list__layout .block-editor-block-list__block[data-align="full"], .block-editor-block-list__layout .block-editor-block-list__block[data-align="wide"], .block-editor-block-list__layout .block-editor-block-list__block.alignfull, .block-editor-block-list__layout .block-editor-block-list__block.alignwide {
+.wp-block[data-align="full"], .wp-block[data-align="wide"] {
clear: both; }
-.block-editor-block-list__layout .block-editor-block-list__block[data-align="full"], .block-editor-block-list__layout .block-editor-block-list__block.alignfull {
- margin-left: -14px;
- margin-right: -14px; }
- @media (min-width: 600px) {
- .block-editor-block-list__layout .block-editor-block-list__block[data-align="full"], .block-editor-block-list__layout .block-editor-block-list__block.alignfull {
- margin-left: -58px;
- margin-right: -58px; } }
-
-.block-editor-block-list__layout .block-editor-block-list__block[data-clear="true"] {
- float: none; }
-
-.block-editor-block-list__layout .block-editor-block-list__block .block-editor-block-list__layout .block-editor-default-block-appender .block-editor-inserter {
- left: auto;
- right: 8px; }
-
/**
* In-Canvas Inserter
*/
@@ -4157,7 +4518,7 @@ div.components-toolbar > div + div.has-left-divider::before {
.block-editor-block-list__insertion-point-indicator {
position: absolute;
top: calc(50% - 1px);
- height: 2px;
+ height: 1.5px;
left: 0;
right: 0;
background: #0085ba; }
@@ -4224,14 +4585,6 @@ body.admin-color-light .block-editor-block-list__insertion-point-indicator {
.block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button,
.block-editor-block-list__block-popover-inserter .block-editor-inserter__toggle.components-button {
animation-duration: 1ms; } }
- .block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button:hover,
- .block-editor-block-list__block-popover-inserter .block-editor-inserter__toggle.components-button:hover {
- animation: block-editor-inserter__toggle__fade-in-animation 0.2s ease;
- animation-fill-mode: forwards; }
- @media (prefers-reduced-motion: reduce) {
- .block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button:hover,
- .block-editor-block-list__block-popover-inserter .block-editor-inserter__toggle.components-button:hover {
- animation-duration: 1ms; } }
@keyframes block-editor-inserter__toggle__fade-in-animation-delayed {
0% {
@@ -4243,9 +4596,24 @@ body.admin-color-light .block-editor-block-list__insertion-point-indicator {
@keyframes block-editor-inserter__toggle__fade-in-animation {
from {
- opacity: 0; }
+ opacity: 0;
+ transform: scale(0); }
to {
- opacity: 1; } }
+ opacity: 1;
+ transform: scale(1); } }
+
+.wp-block .block-list-appender .block-editor-inserter__toggle {
+ animation: block-editor-inserter__toggle__fade-in-animation 0.1s ease;
+ animation-fill-mode: forwards; }
+ @media (prefers-reduced-motion: reduce) {
+ .wp-block .block-list-appender .block-editor-inserter__toggle {
+ animation-duration: 1ms; } }
+
+.wp-block:not(.is-selected):not(.has-child-selected) .block-editor-default-block-appender {
+ display: none; }
+ .wp-block:not(.is-selected):not(.has-child-selected) .block-editor-default-block-appender .block-editor-inserter__toggle {
+ opacity: 0;
+ transform: scale(0); }
.block-editor-block-list__block > .block-editor-block-list__insertion-point {
position: absolute;
@@ -4280,15 +4648,6 @@ body.admin-color-light .block-editor-block-list__insertion-point-indicator {
.block-editor-block-contextual-toolbar-wrapper {
padding-left: 48px; }
-.edit-post-header-toolbar__block-toolbar .components-toolbar,
-.block-editor-block-contextual-toolbar .components-toolbar {
- height: 48px;
- background: none; }
-
-.edit-post-header-toolbar__block-toolbar .components-button,
-.block-editor-block-contextual-toolbar .components-button {
- height: 48px; }
-
/**
* Block Toolbar when contextual.
*/
@@ -4296,6 +4655,7 @@ body.admin-color-light .block-editor-block-list__insertion-point-indicator {
border: 1px solid #1e1e1e;
border-radius: 2px;
background-color: #fff; }
+ .block-editor-block-contextual-toolbar .block-editor-block-toolbar .components-toolbar-group,
.block-editor-block-contextual-toolbar .block-editor-block-toolbar .components-toolbar {
border-right-color: #1e1e1e; }
@@ -4305,34 +4665,32 @@ body.admin-color-light .block-editor-block-list__insertion-point-indicator {
.block-editor-block-list__breadcrumb {
display: block;
z-index: 22; }
- .block-editor-block-list__breadcrumb .components-toolbar {
- display: flex;
- border: none;
- background: none; }
- .block-editor-block-list__breadcrumb .components-toolbar .components-button {
- font-size: 13px;
- height: 48px;
- padding: 12px 16px;
- border: 1px solid #1e1e1e;
- border-radius: 2px;
- background-color: #fff; }
- .block-editor-block-list__breadcrumb .components-toolbar .components-button:focus {
- border: none;
- box-shadow: inset 0 0 0 1px rgb(0, 124, 186), 0 0 0 1px rgb(0, 124, 186); }
- body.admin-color-sunrise .block-editor-block-list__breadcrumb .components-toolbar .components-button:focus {
- box-shadow: inset 0 0 0 1px rgb(209, 134, 74), 0 0 0 1px rgb(209, 134, 74); }
- body.admin-color-ocean .block-editor-block-list__breadcrumb .components-toolbar .components-button:focus {
- box-shadow: inset 0 0 0 1px rgb(163, 185, 162), 0 0 0 1px rgb(163, 185, 162); }
- body.admin-color-midnight .block-editor-block-list__breadcrumb .components-toolbar .components-button:focus {
- box-shadow: inset 0 0 0 1px rgb(225, 77, 67), 0 0 0 1px rgb(225, 77, 67); }
- body.admin-color-ectoplasm .block-editor-block-list__breadcrumb .components-toolbar .components-button:focus {
- box-shadow: inset 0 0 0 1px rgb(167, 182, 86), 0 0 0 1px rgb(167, 182, 86); }
- body.admin-color-coffee .block-editor-block-list__breadcrumb .components-toolbar .components-button:focus {
- box-shadow: inset 0 0 0 1px rgb(194, 166, 140), 0 0 0 1px rgb(194, 166, 140); }
- body.admin-color-blue .block-editor-block-list__breadcrumb .components-toolbar .components-button:focus {
- box-shadow: inset 0 0 0 1px rgb(217, 171, 89), 0 0 0 1px rgb(217, 171, 89); }
- body.admin-color-light .block-editor-block-list__breadcrumb .components-toolbar .components-button:focus {
- box-shadow: inset 0 0 0 1px rgb(0, 133, 186), 0 0 0 1px rgb(0, 133, 186); }
+ .block-editor-block-list__breadcrumb .components-button {
+ font-size: 13px;
+ height: 46px;
+ padding: 12px 16px;
+ position: relative;
+ top: -1px;
+ box-shadow: 0 0 0 1px #1e1e1e;
+ border-radius: 1px;
+ background-color: #fff;
+ margin-left: 49px; }
+ .block-editor-block-list__breadcrumb .components-button:focus {
+ box-shadow: 0 0 0 1.5px #007cba; }
+ body.admin-color-sunrise .block-editor-block-list__breadcrumb .components-button:focus {
+ box-shadow: 0 0 0 1.5px #d1864a; }
+ body.admin-color-ocean .block-editor-block-list__breadcrumb .components-button:focus {
+ box-shadow: 0 0 0 1.5px #a3b9a2; }
+ body.admin-color-midnight .block-editor-block-list__breadcrumb .components-button:focus {
+ box-shadow: 0 0 0 1.5px #e14d43; }
+ body.admin-color-ectoplasm .block-editor-block-list__breadcrumb .components-button:focus {
+ box-shadow: 0 0 0 1.5px #a7b656; }
+ body.admin-color-coffee .block-editor-block-list__breadcrumb .components-button:focus {
+ box-shadow: 0 0 0 1.5px #c2a68c; }
+ body.admin-color-blue .block-editor-block-list__breadcrumb .components-button:focus {
+ box-shadow: 0 0 0 1.5px #d9ab59; }
+ body.admin-color-light .block-editor-block-list__breadcrumb .components-button:focus {
+ box-shadow: 0 0 0 1.5px #0085ba; }
/**
* Warnings.
@@ -4370,8 +4728,8 @@ body.admin-color-light .block-editor-block-list__insertion-point-indicator {
pointer-events: all; }
.components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-list__breadcrumb,
.components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-contextual-toolbar {
- margin-bottom: 16px;
- margin-left: -49px; }
+ margin-bottom: 12px;
+ margin-left: -48px; }
.components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-contextual-toolbar[data-align="full"],
.components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-list__breadcrumb[data-align="full"] {
margin-left: 0; }
@@ -4381,10 +4739,32 @@ body.admin-color-light .block-editor-block-list__insertion-point-indicator {
.is-dragging-components-draggable .components-tooltip {
display: none; }
+.block-editor-block-list__layout.is-root-container {
+ padding-left: 14px;
+ padding-right: 14px; }
+ @media (min-width: 600px) {
+ .block-editor-block-list__layout.is-root-container {
+ padding-left: 36px;
+ padding-right: 36px; } }
+ .block-editor-block-list__layout.is-root-container > .wp-block[data-align="full"] {
+ margin-left: -14px;
+ margin-right: -14px; }
+ @media (min-width: 600px) {
+ .block-editor-block-list__layout.is-root-container > .wp-block[data-align="full"] {
+ margin-left: -36px;
+ margin-right: -36px; } }
+
.block-editor-block-list__block .block-list-appender {
margin: 8px 0; }
.has-background .block-editor-block-list__block .block-list-appender {
margin: 20px 8px; }
+ .block-editor-block-list__block .block-list-appender .block-list-appender__toggle {
+ opacity: 1;
+ transform: scale(1);
+ transition: all 0.1s ease; }
+ @media (prefers-reduced-motion: reduce) {
+ .block-editor-block-list__block .block-list-appender .block-list-appender__toggle {
+ transition-duration: 0s; } }
.block-list-appender.is-drop-target > div::before {
content: "";
@@ -4420,6 +4800,10 @@ body.admin-color-light .block-list-appender.is-drop-target > div::before {
.block-list-appender > .block-editor-inserter {
display: block; }
+.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.block-editor-block-list__layout) .block-editor-block-list__layout > .block-list-appender .block-list-appender__toggle {
+ opacity: 0;
+ transform: scale(0); }
+
.block-editor-block-breadcrumb {
list-style: none;
padding: 0;
@@ -4433,16 +4817,37 @@ body.admin-color-light .block-list-appender.is-drop-target > div::before {
.block-editor-block-breadcrumb__button.components-button {
height: 24px;
line-height: 24px;
- padding: 0; }
+ padding: 0;
+ position: relative; }
.block-editor-block-breadcrumb__button.components-button:hover:not(:disabled) {
text-decoration: underline;
box-shadow: none; }
.block-editor-block-breadcrumb__button.components-button:focus {
- color: #191e23;
- outline-offset: -1px;
- outline: 1px dotted #555d66;
- outline-offset: -2px;
box-shadow: none; }
+ .block-editor-block-breadcrumb__button.components-button:focus::before {
+ content: "";
+ display: block;
+ position: absolute;
+ border-radius: 2px;
+ top: 1px;
+ right: 1px;
+ bottom: 1px;
+ left: 1px;
+ box-shadow: inset 0 0 0 1.5px #007cba; }
+ body.admin-color-sunrise .block-editor-block-breadcrumb__button.components-button:focus::before {
+ box-shadow: inset 0 0 0 1.5px #d1864a; }
+ body.admin-color-ocean .block-editor-block-breadcrumb__button.components-button:focus::before {
+ box-shadow: inset 0 0 0 1.5px #a3b9a2; }
+ body.admin-color-midnight .block-editor-block-breadcrumb__button.components-button:focus::before {
+ box-shadow: inset 0 0 0 1.5px #e14d43; }
+ body.admin-color-ectoplasm .block-editor-block-breadcrumb__button.components-button:focus::before {
+ box-shadow: inset 0 0 0 1.5px #a7b656; }
+ body.admin-color-coffee .block-editor-block-breadcrumb__button.components-button:focus::before {
+ box-shadow: inset 0 0 0 1.5px #c2a68c; }
+ body.admin-color-blue .block-editor-block-breadcrumb__button.components-button:focus::before {
+ box-shadow: inset 0 0 0 1.5px #d9ab59; }
+ body.admin-color-light .block-editor-block-breadcrumb__button.components-button:focus::before {
+ box-shadow: inset 0 0 0 1.5px #0085ba; }
.block-editor-block-breadcrumb__current {
cursor: default; }
@@ -4468,8 +4873,9 @@ body.admin-color-light .block-list-appender.is-drop-target > div::before {
flex-grow: 1; }
.block-editor-block-card__title {
- font-weight: 500;
- margin-bottom: 5px; }
+ font-weight: 500; }
+ .block-editor-block-card__title.block-editor-block-card__title {
+ margin: 0 0 5px; }
.block-editor-block-card__description {
font-size: 13px; }
@@ -4559,62 +4965,77 @@ body.admin-color-light .block-list-appender.is-drop-target > div::before {
display: inline-flex;
flex-direction: row; }
-.block-editor-block-mover__description {
+.block-editor-block-mover-button__description {
display: none; }
-.block-editor-block-mover__control.has-icon {
+.block-editor-block-mover-button.has-icon {
padding: 0; }
+.block-editor-block-mover .components-toolbar-group,
.block-editor-block-mover .components-toolbar {
- flex-direction: column; }
+ flex-direction: column;
+ flex: 1; }
+.block-editor-block-mover.is-horizontal .components-toolbar-group,
.block-editor-block-mover.is-horizontal .components-toolbar {
flex-direction: row; }
-.block-editor-block-mover .components-toolbar .block-editor-block-mover__control-up svg {
+.block-editor-block-mover .block-editor-block-mover-button {
+ height: 24px;
+ width: 48px;
+ padding: 0 !important; }
+ .block-editor-block-mover .block-editor-block-mover-button::before {
+ left: 8px !important;
+ right: 8px !important; }
+
+.block-editor-block-mover .components-toolbar-group .block-editor-block-mover-button.is-up-button svg,
+.block-editor-block-mover .components-toolbar .block-editor-block-mover-button.is-up-button svg {
margin-bottom: -8px; }
-.block-editor-block-mover .components-toolbar .block-editor-block-mover__control-up::before {
+.block-editor-block-mover .components-toolbar-group .block-editor-block-mover-button.is-up-button::before,
+.block-editor-block-mover .components-toolbar .block-editor-block-mover-button.is-up-button::before {
bottom: 0;
height: calc(100% - 8px); }
-.block-editor-block-mover .components-toolbar .block-editor-block-mover__control-down svg {
+.block-editor-block-mover .components-toolbar-group .block-editor-block-mover-button.is-down-button svg,
+.block-editor-block-mover .components-toolbar .block-editor-block-mover-button.is-down-button svg {
margin-top: -8px; }
-.block-editor-block-mover .components-toolbar .block-editor-block-mover__control-down::before {
+.block-editor-block-mover .components-toolbar-group .block-editor-block-mover-button.is-down-button::before,
+.block-editor-block-mover .components-toolbar .block-editor-block-mover-button.is-down-button::before {
top: 0;
height: calc(100% - 8px); }
-.block-editor-block-mover.is-horizontal .block-editor-block-mover__control.has-icon {
+.block-editor-block-mover.is-horizontal .block-editor-block-mover-button.has-icon {
height: 48px;
width: 24px !important;
- min-width: 24px;
+ min-width: 24px !important;
padding-left: 0;
padding-right: 0; }
- .block-editor-block-mover.is-horizontal .block-editor-block-mover__control.has-icon::before {
+ .block-editor-block-mover.is-horizontal .block-editor-block-mover-button.has-icon::before {
top: 8px;
bottom: 8px;
min-width: 0;
width: auto;
height: auto; }
-.block-editor-block-mover.is-horizontal .block-editor-block-mover__control-up.has-icon svg {
+.block-editor-block-mover.is-horizontal .block-editor-block-mover-button.is-up-button.has-icon svg {
margin-left: 0;
margin-right: -8px;
margin-bottom: 0; }
-.block-editor-block-mover.is-horizontal .block-editor-block-mover__control-up.has-icon::before {
- left: 8px;
- right: 0; }
+.block-editor-block-mover.is-horizontal .block-editor-block-mover-button.is-up-button.has-icon::before {
+ left: 8px !important;
+ right: 0 !important; }
-.block-editor-block-mover.is-horizontal .block-editor-block-mover__control-down.has-icon svg {
+.block-editor-block-mover.is-horizontal .block-editor-block-mover-button.is-down-button.has-icon svg {
margin-left: -8px;
margin-right: 0;
margin-top: 0; }
-.block-editor-block-mover.is-horizontal .block-editor-block-mover__control-down.has-icon::before {
- left: 0;
- right: 8px; }
+.block-editor-block-mover.is-horizontal .block-editor-block-mover-button.is-down-button.has-icon::before {
+ left: 0 !important;
+ right: 8px !important; }
.block-editor-block-mover:not([draggable="false"]) {
cursor: grab; }
@@ -4649,9 +5070,9 @@ body.admin-color-light .block-list-appender.is-drop-target > div::before {
margin-left: 1em; }
.block-editor-block-navigation__list .block-editor-block-navigation__list .block-editor-block-navigation__list {
margin-left: 1.5em; }
- .block-editor-block-navigation__list .block-editor-block-navigation__list .block-editor-block-navigation__item {
+ .block-editor-block-navigation__list .block-editor-block-navigation__list .block-editor-block-navigation__list-item {
position: relative; }
- .block-editor-block-navigation__list .block-editor-block-navigation__list .block-editor-block-navigation__item::before {
+ .block-editor-block-navigation__list .block-editor-block-navigation__list .block-editor-block-navigation__list-item::before {
position: absolute;
left: 0;
background: #a2aab2;
@@ -4659,7 +5080,7 @@ body.admin-color-light .block-list-appender.is-drop-target > div::before {
height: 2px;
content: "";
top: calc(50% - 1px); }
- .block-editor-block-navigation__list .block-editor-block-navigation__list .block-editor-block-navigation__item-button {
+ .block-editor-block-navigation__list .block-editor-block-navigation__list .block-editor-block-navigation__list-item-button {
margin-left: 0.8em;
width: calc(100% - 0.8em);
height: auto; }
@@ -4674,7 +5095,7 @@ body.admin-color-light .block-list-appender.is-drop-target > div::before {
left: -2px;
width: 2px; }
-.block-editor-block-navigation__item-button {
+.block-editor-block-navigation__list-item-button {
display: flex;
align-items: center;
width: 100%;
@@ -4682,59 +5103,22 @@ body.admin-color-light .block-list-appender.is-drop-target > div::before {
text-align: left;
color: #40464d;
border-radius: 2px; }
- .block-editor-block-navigation__item-button .block-editor-block-icon {
+ .block-editor-block-navigation__list-item-button .block-editor-block-icon {
margin-right: 6px; }
- .block-editor-block-navigation__item-button.is-selected, .block-editor-block-navigation__item-button.is-selected:focus {
+ .block-editor-block-navigation__list-item-button.is-selected svg,
+ .block-editor-block-navigation__list-item-button.is-selected:focus svg {
color: #fff;
- background: #1e1e1e; }
+ background: #1e1e1e;
+ box-shadow: 0 0 0 1px #1e1e1e;
+ border-radius: 1px; }
.components-popover.block-editor-block-navigation__popover {
z-index: 99998; }
-.block-editor-patterns {
- padding: 16px; }
-
-.block-editor-patterns__item {
- border-radius: 2px;
- cursor: pointer;
- margin-bottom: 16px;
- border: 1px solid #e2e4e7;
- transition: all 0.05s ease-in-out;
- position: relative; }
- .block-editor-patterns__item:hover {
- background: #fff;
- box-shadow: 0 0 0 1px #fff, 0 0 0 3px #555d66; }
- .block-editor-patterns__item:focus {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #007cba;
- outline: 2px solid transparent; }
- body.admin-color-sunrise .block-editor-patterns__item:focus {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #d1864a; }
- body.admin-color-ocean .block-editor-patterns__item:focus {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #a3b9a2; }
- body.admin-color-midnight .block-editor-patterns__item:focus {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #e14d43; }
- body.admin-color-ectoplasm .block-editor-patterns__item:focus {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #a7b656; }
- body.admin-color-coffee .block-editor-patterns__item:focus {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #c2a68c; }
- body.admin-color-blue .block-editor-patterns__item:focus {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #d9ab59; }
- body.admin-color-light .block-editor-patterns__item:focus {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #0085ba; }
-
-.block-editor-patterns__item-preview {
- padding: 16px; }
-
-.block-editor-patterns__item-title {
- text-align: center;
- padding: 10px 0; }
-
.block-editor-block-preview__container {
position: relative;
width: 100%;
overflow: hidden; }
- .block-editor-block-preview__container.is-ready {
- overflow: visible; }
.block-editor-block-preview__content {
position: absolute;
@@ -4745,14 +5129,17 @@ body.admin-color-light .block-list-appender.is-drop-target > div::before {
margin: 0;
overflow: visible;
min-height: auto; }
- .block-editor-block-preview__container .block-editor-block-preview__content.is-centered .block-editor-block-list__layout,
- .block-editor-block-preview__container .block-editor-block-preview__content.is-centered .block-editor-block-list__block {
- padding: 0; }
.block-editor-block-preview__content .block-editor-block-list__insertion-point,
.block-editor-block-preview__content .block-editor-block-drop-zone,
.block-editor-block-preview__content .reusable-block-indicator,
.block-editor-block-preview__content .block-list-appender {
display: none; }
+ .block-editor-block-preview__content .block-editor-block-list__layout.is-root-container {
+ padding-left: 0;
+ padding-right: 0; }
+ .block-editor-block-preview__content .block-editor-block-list__layout.is-root-container > .wp-block[data-align="full"] {
+ margin-left: 0;
+ margin-right: 0; }
.block-editor-block-settings-menu__popover .components-dropdown-menu__menu {
padding: 0; }
@@ -4768,66 +5155,43 @@ body.admin-color-light .block-list-appender.is-drop-target > div::before {
flex-shrink: 0;
cursor: pointer;
overflow: hidden;
- border-radius: 4px;
+ border-radius: 2px;
padding: 6px;
- padding-top: calc(50% * 0.75 - 4px * 1.5); }
+ display: flex;
+ flex-direction: column; }
.block-editor-block-styles__item:focus {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #007cba;
+ box-shadow: 0 0 0 1.5px #007cba;
outline: 2px solid transparent; }
body.admin-color-sunrise .block-editor-block-styles__item:focus {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #d1864a; }
+ box-shadow: 0 0 0 1.5px #d1864a; }
body.admin-color-ocean .block-editor-block-styles__item:focus {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #a3b9a2; }
+ box-shadow: 0 0 0 1.5px #a3b9a2; }
body.admin-color-midnight .block-editor-block-styles__item:focus {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #e14d43; }
+ box-shadow: 0 0 0 1.5px #e14d43; }
body.admin-color-ectoplasm .block-editor-block-styles__item:focus {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #a7b656; }
+ box-shadow: 0 0 0 1.5px #a7b656; }
body.admin-color-coffee .block-editor-block-styles__item:focus {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #c2a68c; }
+ box-shadow: 0 0 0 1.5px #c2a68c; }
body.admin-color-blue .block-editor-block-styles__item:focus {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #d9ab59; }
+ box-shadow: 0 0 0 1.5px #d9ab59; }
body.admin-color-light .block-editor-block-styles__item:focus {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #0085ba; }
- .block-editor-block-styles__item:hover {
- border-color: #007cba;
- color: #007cba !important; }
- body.admin-color-sunrise .block-editor-block-styles__item:hover {
- border-color: #d1864a;
- color: #d1864a !important; }
- body.admin-color-ocean .block-editor-block-styles__item:hover {
- border-color: #a3b9a2;
- color: #a3b9a2 !important; }
- body.admin-color-midnight .block-editor-block-styles__item:hover {
- border-color: #e14d43;
- color: #e14d43 !important; }
- body.admin-color-ectoplasm .block-editor-block-styles__item:hover {
- border-color: #a7b656;
- color: #a7b656 !important; }
- body.admin-color-coffee .block-editor-block-styles__item:hover {
- border-color: #c2a68c;
- color: #c2a68c !important; }
- body.admin-color-blue .block-editor-block-styles__item:hover {
- border-color: #d9ab59;
- color: #d9ab59 !important; }
- body.admin-color-light .block-editor-block-styles__item:hover {
- border-color: #0085ba;
- color: #0085ba !important; }
- .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {
- border-color: #007cba; }
- body.admin-color-sunrise .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {
- border-color: #d1864a; }
- body.admin-color-ocean .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {
- border-color: #a3b9a2; }
- body.admin-color-midnight .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {
- border-color: #e14d43; }
- body.admin-color-ectoplasm .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {
- border-color: #a7b656; }
- body.admin-color-coffee .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {
- border-color: #c2a68c; }
- body.admin-color-blue .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {
- border-color: #d9ab59; }
- body.admin-color-light .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {
- border-color: #0085ba; }
+ box-shadow: 0 0 0 1.5px #0085ba; }
+ .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {
+ border-color: #007cba; }
+ body.admin-color-sunrise .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {
+ border-color: #d1864a; }
+ body.admin-color-ocean .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {
+ border-color: #a3b9a2; }
+ body.admin-color-midnight .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {
+ border-color: #e14d43; }
+ body.admin-color-ectoplasm .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {
+ border-color: #a7b656; }
+ body.admin-color-coffee .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {
+ border-color: #c2a68c; }
+ body.admin-color-blue .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {
+ border-color: #d9ab59; }
+ body.admin-color-light .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {
+ border-color: #0085ba; }
.block-editor-block-styles__item.is-active .block-editor-block-styles__item-label {
font-weight: bold; }
.block-editor-block-styles__item.is-active .block-editor-block-styles__item-preview {
@@ -4837,16 +5201,13 @@ body.admin-color-light .block-list-appender.is-drop-target > div::before {
outline: 1px solid transparent;
padding: 0;
border: 1px solid rgba(30, 30, 30, 0.2);
- border-radius: 4px;
+ border-radius: 2px;
display: flex;
overflow: hidden;
background: #fff;
- padding-top: 75%;
- margin-top: -75%; }
- .block-editor-block-styles__item-preview .block-editor-block-preview__container {
- padding-top: 0;
- margin: 0;
- margin-top: -75%; }
+ align-items: center;
+ flex-grow: 1;
+ min-height: 80px; }
.block-editor-block-styles__item-label {
text-align: center;
@@ -4855,19 +5216,9 @@ body.admin-color-light .block-list-appender.is-drop-target > div::before {
.block-editor-block-switcher {
position: relative; }
+.block-editor-block-switcher__no-switcher-icon,
.block-editor-block-switcher__toggle {
position: relative; }
- .block-editor-block-switcher__toggle::after {
- display: none;
- content: "";
- position: absolute;
- bottom: 1px;
- right: 0;
- border-color: transparent;
- border-style: solid;
- border-width: 4px;
- border-right-color: currentColor;
- border-bottom-color: currentColor; }
.components-button.block-editor-block-switcher__toggle,
.components-button.block-editor-block-switcher__no-switcher-icon {
@@ -4885,19 +5236,23 @@ body.admin-color-light .block-list-appender.is-drop-target > div::before {
margin-left: auto; }
.components-button.block-editor-block-switcher__no-switcher-icon:disabled {
- opacity: 0.84; }
+ opacity: 1; }
+ .components-button.block-editor-block-switcher__no-switcher-icon:disabled,
.components-button.block-editor-block-switcher__no-switcher-icon:disabled .block-editor-block-icon.has-colors {
color: #1e1e1e !important; }
-.block-editor-block-toolbar .components-toolbar .components-button.block-editor-block-switcher__toggle.has-icon {
+.block-editor-block-toolbar .components-toolbar-group .components-button.block-editor-block-switcher__toggle.has-icon.has-icon,
+.block-editor-block-toolbar .components-toolbar .components-button.block-editor-block-switcher__toggle.has-icon.has-icon {
padding: 0; }
- .block-editor-block-toolbar .components-toolbar .components-button.block-editor-block-switcher__toggle.has-icon .block-editor-block-icon {
+ .block-editor-block-toolbar .components-toolbar-group .components-button.block-editor-block-switcher__toggle.has-icon.has-icon .block-editor-block-icon,
+ .block-editor-block-toolbar .components-toolbar .components-button.block-editor-block-switcher__toggle.has-icon.has-icon .block-editor-block-icon {
height: 100%;
position: relative;
margin: 0 auto;
display: flex;
align-items: center; }
- .block-editor-block-toolbar .components-toolbar .components-button.block-editor-block-switcher__toggle.has-icon::before {
+ .block-editor-block-toolbar .components-toolbar-group .components-button.block-editor-block-switcher__toggle.has-icon.has-icon::before,
+ .block-editor-block-toolbar .components-toolbar .components-button.block-editor-block-switcher__toggle.has-icon.has-icon::before {
top: 8px;
right: 8px;
bottom: 8px;
@@ -4908,7 +5263,6 @@ body.admin-color-light .block-list-appender.is-drop-target > div::before {
max-width: calc(340px * 2);
display: flex;
background: #fff;
- box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
padding: 0; }
.components-popover.block-editor-block-switcher__popover .components-popover__content .components-menu-group {
padding: 16px 24px; }
@@ -4965,9 +5319,6 @@ body.admin-color-light .block-list-appender.is-drop-target > div::before {
.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon {
width: 48px; }
-.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__toggle::after {
- display: block; }
-
.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__toggle .block-editor-block-icon,
.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__toggle .block-editor-block-switcher__transform {
width: 48px;
@@ -5008,8 +5359,16 @@ body.admin-color-light .block-list-appender.is-drop-target > div::before {
margin: 8px 8px 0 0;
flex-shrink: 1;
max-width: 100px; }
+ .block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations > li button {
+ display: flex; }
.block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations .block-editor-block-variation-picker__variation {
padding: 8px; }
+ .block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations .block-editor-block-variation-picker__variation-label {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 12px;
+ display: block;
+ margin-right: 12px;
+ text-align: center; }
.block-editor-block-variation-picker__variation {
width: 100%; }
@@ -5111,8 +5470,8 @@ body.admin-color-light .block-list-appender.is-drop-target > div::before {
.block-editor-default-block-appender[data-root-client-id=""] .block-editor-default-block-appender__content:hover {
outline: 1px solid transparent; }
.block-editor-default-block-appender textarea.block-editor-default-block-appender__content {
- font-family: "Noto Serif", serif;
- font-size: 16px;
+ font-family: inherit;
+ font-size: inherit;
border: none;
background: none;
box-shadow: none;
@@ -5140,7 +5499,7 @@ body.admin-color-light .block-list-appender.is-drop-target > div::before {
.block-editor-block-list__empty-block-inserter.block-editor-block-list__empty-block-inserter,
.block-editor-default-block-appender .block-editor-inserter {
position: absolute;
- top: 2px;
+ top: 0;
height: 32px; }
.block-editor-block-list__empty-block-inserter.block-editor-block-list__empty-block-inserter .block-editor-inserter__toggle,
.block-editor-default-block-appender .block-editor-inserter .block-editor-inserter__toggle {
@@ -5188,10 +5547,33 @@ body.admin-color-light .block-list-appender.is-drop-target > div::before {
.block-editor-link-control .block-editor-link-control__search-input.block-editor-link-control__search-input input[type="text"] {
font-size: 13px; } }
.block-editor-link-control .block-editor-link-control__search-input.block-editor-link-control__search-input input[type="text"]:focus {
- color: #191e23;
- border-color: #007cba;
- box-shadow: 0 0 0 1px #007cba;
+ border-color: rgb(0, 124, 186);
+ box-shadow: 0 0 0 0.5px #007cba;
outline: 2px solid transparent; }
+ body.admin-color-sunrise .block-editor-link-control .block-editor-link-control__search-input.block-editor-link-control__search-input input[type="text"]:focus {
+ border-color: rgb(209, 134, 74);
+ box-shadow: 0 0 0 0.5px #d1864a; }
+ body.admin-color-ocean .block-editor-link-control .block-editor-link-control__search-input.block-editor-link-control__search-input input[type="text"]:focus {
+ border-color: rgb(163, 185, 162);
+ box-shadow: 0 0 0 0.5px #a3b9a2; }
+ body.admin-color-midnight .block-editor-link-control .block-editor-link-control__search-input.block-editor-link-control__search-input input[type="text"]:focus {
+ border-color: rgb(225, 77, 67);
+ box-shadow: 0 0 0 0.5px #e14d43; }
+ body.admin-color-ectoplasm .block-editor-link-control .block-editor-link-control__search-input.block-editor-link-control__search-input input[type="text"]:focus {
+ border-color: rgb(167, 182, 86);
+ box-shadow: 0 0 0 0.5px #a7b656; }
+ body.admin-color-coffee .block-editor-link-control .block-editor-link-control__search-input.block-editor-link-control__search-input input[type="text"]:focus {
+ border-color: rgb(194, 166, 140);
+ box-shadow: 0 0 0 0.5px #c2a68c; }
+ body.admin-color-blue .block-editor-link-control .block-editor-link-control__search-input.block-editor-link-control__search-input input[type="text"]:focus {
+ border-color: rgb(217, 171, 89);
+ box-shadow: 0 0 0 0.5px #d9ab59; }
+ body.admin-color-light .block-editor-link-control .block-editor-link-control__search-input.block-editor-link-control__search-input input[type="text"]:focus {
+ border-color: rgb(0, 133, 186);
+ box-shadow: 0 0 0 0.5px #0085ba; }
+
+.block-editor-link-control .block-editor-link-control__search-input .components-base-control__field {
+ margin-bottom: 0; }
.block-editor-link-control__search-error {
margin: -8px 16px 16px; }
@@ -5242,7 +5624,7 @@ body.admin-color-light .block-list-appender.is-drop-target > div::before {
.block-editor-link-control__search-results {
margin: 0;
- padding: 8px 16px 16px;
+ padding: 8px 16px 8px;
max-height: 200px;
overflow-y: auto; }
.block-editor-link-control__search-results.is-loading {
@@ -5372,6 +5754,12 @@ body.admin-color-light .block-list-appender.is-drop-target > div::before {
margin-left: auto;
flex-shrink: 0; }
+.block-editor-line-height-control {
+ margin-bottom: 24px; }
+ .block-editor-line-height-control input {
+ display: block;
+ max-width: 60px; }
+
.block-editor-image-size-control {
margin-bottom: 1em; }
.block-editor-image-size-control .block-editor-image-size-control__row {
@@ -5405,7 +5793,7 @@ body.admin-color-light .block-list-appender.is-drop-target > div::before {
display: block;
width: 33.33%;
padding: 0;
- margin: 0 0 12px; }
+ margin: 0; }
.components-button.block-editor-block-types-list__item {
display: flex;
@@ -5413,13 +5801,13 @@ body.admin-color-light .block-list-appender.is-drop-target > div::before {
width: 100%;
font-size: 13px;
color: #32373c;
- padding: 0 4px;
+ padding: 8px;
align-items: stretch;
justify-content: center;
cursor: pointer;
background: transparent;
word-break: break-word;
- border-radius: 4px;
+ border-radius: 2px;
border: 1px solid transparent;
transition: all 0.05s ease-in-out;
position: relative;
@@ -5462,7 +5850,7 @@ body.admin-color-light .block-list-appender.is-drop-target > div::before {
.block-editor-block-types-list__item-icon {
padding: 12px 20px;
- border-radius: 4px;
+ border-radius: 2px;
color: #1e1e1e;
transition: all 0.05s ease-in-out; }
@media (prefers-reduced-motion: reduce) {
@@ -5478,26 +5866,50 @@ body.admin-color-light .block-list-appender.is-drop-target > div::before {
transition-duration: 0s; } }
.block-editor-block-types-list__item-title {
- padding: 4px 2px 8px; }
+ padding: 4px 2px 8px;
+ font-size: 12px; }
.modal-open .block-editor-media-replace-flow__options {
display: none; }
-.block-editor-media-flow__url-input {
- padding: 0 15px;
- max-width: 255px;
- padding-bottom: 10px; }
- .block-editor-media-flow__url-input input {
- max-width: 180px; }
-
-.block-editor-media-replace-flow__link-viewer .components-external-link__icon {
- display: none; }
+.block-editor-media-replace-flow__options .components-popover__content {
+ padding-top: 16px; }
-.block-editor-media-replace-flow__link-viewer .components-visually-hidden {
- position: initial; }
+.block-editor-media-replace-flow__indicator {
+ margin-left: 4px; }
-.block-editor-media-replace-flow__link-viewer .components-button {
- flex-shrink: 0; }
+.block-editor-media-flow__url-input {
+ margin-top: 16px; }
+ .block-editor-media-flow__url-input .block-editor-media-replace-flow__image-url-label {
+ top: 16px; }
+ .block-editor-media-flow__url-input .block-editor-link-control {
+ margin-top: -16px;
+ width: auto; }
+ .block-editor-media-flow__url-input .block-editor-link-control .components-base-control .components-base-control__field {
+ margin-bottom: 0; }
+ .block-editor-media-flow__url-input .block-editor-link-control .block-editor-link-control__search-item-title {
+ max-width: 180px;
+ margin-top: 16px; }
+ .block-editor-media-flow__url-input .block-editor-link-control .block-editor-link-control__search-item.is-current {
+ width: auto;
+ padding: 0; }
+ .block-editor-media-flow__url-input .block-editor-link-control .block-editor-link-control__search-input.block-editor-link-control__search-input input[type="text"] {
+ margin: 16px 0 0 0;
+ width: 100%; }
+ .block-editor-media-flow__url-input .block-editor-link-control .block-editor-link-control__search-actions {
+ right: 4px; }
+
+.block-editor-media-flow__error {
+ padding: 0 20px 20px 20px;
+ max-width: 255px; }
+ .block-editor-media-flow__error .components-with-notices-ui {
+ max-width: 255px; }
+ .block-editor-media-flow__error .components-with-notices-ui .components-notice__content {
+ overflow: hidden;
+ word-wrap: break-word; }
+ .block-editor-media-flow__error .components-with-notices-ui .components-notice__dismiss {
+ position: absolute;
+ right: 10px; }
.block-editor-media-placeholder__url-input-container .block-editor-media-placeholder__button {
margin-bottom: 0; }
@@ -5620,17 +6032,6 @@ body.admin-color-light .block-list-appender.is-drop-target > div::before {
.block-editor-rich-text__editable > p:first-child {
margin-top: 0; }
-.block-editor-rich-text__editable a {
- color: #007fac; }
-
-.block-editor-rich-text__editable code {
- padding: 2px;
- border-radius: 2px;
- color: #23282d;
- background: #f3f4f5;
- font-family: Menlo, Consolas, monaco, monospace;
- font-size: inherit; }
-
.block-editor-rich-text__editable [data-rich-text-placeholder] {
pointer-events: none; }
@@ -5658,6 +6059,7 @@ figcaption.block-editor-rich-text__editable [data-rich-text-placeholder]::before
border: 1px solid #1e1e1e;
border-radius: 2px;
background-color: #fff; }
+ .components-popover.block-editor-rich-text__inline-format-toolbar .components-toolbar-group,
.components-popover.block-editor-rich-text__inline-format-toolbar .components-toolbar {
border: none; }
.components-popover.block-editor-rich-text__inline-format-toolbar .components-toolbar__control,
@@ -5792,7 +6194,6 @@ figcaption.block-editor-rich-text__editable [data-rich-text-placeholder]::before
width: 100%;
border: none;
text-align: left;
- border: none;
box-shadow: none; }
.block-editor-url-input__suggestion:hover {
background: #e2e4e7; }
@@ -5815,6 +6216,7 @@ figcaption.block-editor-rich-text__editable [data-rich-text-placeholder]::before
body.admin-color-light .block-editor-url-input__suggestion:focus, body.admin-color-light .block-editor-url-input__suggestion.is-selected {
background: rgb(0, 113, 158); }
+.components-toolbar-group > .block-editor-url-input__button,
.components-toolbar > .block-editor-url-input__button {
position: inherit; }
@@ -5872,22 +6274,22 @@ figcaption.block-editor-rich-text__editable [data-rich-text-placeholder]::before
.block-editor-url-popover .components-button.has-icon:not(:disabled):focus {
box-shadow: none; }
.block-editor-url-popover .components-button.has-icon:not(:disabled):focus > svg {
- box-shadow: inset 0 0 0 2px rgb(0, 124, 186), inset 0 0 0 4px #fff;
+ box-shadow: inset 0 0 0 1.5px #007cba, inset 0 0 0 4px #fff;
outline: 2px solid transparent; }
body.admin-color-sunrise .block-editor-url-popover .components-button.has-icon:not(:disabled):focus > svg {
- box-shadow: inset 0 0 0 2px rgb(209, 134, 74), inset 0 0 0 4px #fff; }
+ box-shadow: inset 0 0 0 1.5px #d1864a, inset 0 0 0 4px #fff; }
body.admin-color-ocean .block-editor-url-popover .components-button.has-icon:not(:disabled):focus > svg {
- box-shadow: inset 0 0 0 2px rgb(163, 185, 162), inset 0 0 0 4px #fff; }
+ box-shadow: inset 0 0 0 1.5px #a3b9a2, inset 0 0 0 4px #fff; }
body.admin-color-midnight .block-editor-url-popover .components-button.has-icon:not(:disabled):focus > svg {
- box-shadow: inset 0 0 0 2px rgb(225, 77, 67), inset 0 0 0 4px #fff; }
+ box-shadow: inset 0 0 0 1.5px #e14d43, inset 0 0 0 4px #fff; }
body.admin-color-ectoplasm .block-editor-url-popover .components-button.has-icon:not(:disabled):focus > svg {
- box-shadow: inset 0 0 0 2px rgb(167, 182, 86), inset 0 0 0 4px #fff; }
+ box-shadow: inset 0 0 0 1.5px #a7b656, inset 0 0 0 4px #fff; }
body.admin-color-coffee .block-editor-url-popover .components-button.has-icon:not(:disabled):focus > svg {
- box-shadow: inset 0 0 0 2px rgb(194, 166, 140), inset 0 0 0 4px #fff; }
+ box-shadow: inset 0 0 0 1.5px #c2a68c, inset 0 0 0 4px #fff; }
body.admin-color-blue .block-editor-url-popover .components-button.has-icon:not(:disabled):focus > svg {
- box-shadow: inset 0 0 0 2px rgb(217, 171, 89), inset 0 0 0 4px #fff; }
+ box-shadow: inset 0 0 0 1.5px #d9ab59, inset 0 0 0 4px #fff; }
body.admin-color-light .block-editor-url-popover .components-button.has-icon:not(:disabled):focus > svg {
- box-shadow: inset 0 0 0 2px rgb(0, 133, 186), inset 0 0 0 4px #fff; }
+ box-shadow: inset 0 0 0 1.5px #0085ba, inset 0 0 0 4px #fff; }
.block-editor-url-popover__settings-toggle {
flex-shrink: 0;
@@ -5990,6 +6392,7 @@ figcaption.block-editor-rich-text__editable [data-rich-text-placeholder]::before
@media (min-width: 600px) {
.block-editor-block-toolbar {
overflow: inherit; } }
+ .block-editor-block-toolbar .components-toolbar-group,
.block-editor-block-toolbar .components-toolbar {
background: none;
line-height: 0;
@@ -5998,125 +6401,26 @@ figcaption.block-editor-rich-text__editable [data-rich-text-placeholder]::before
border: 0;
border-right: 1px solid #e2e4e7; }
.block-editor-block-toolbar > :last-child,
+ .block-editor-block-toolbar > :last-child .components-toolbar-group,
.block-editor-block-toolbar > :last-child .components-toolbar {
border-right: none; }
-.block-editor-block-toolbar .components-button,
-.block-editor-format-toolbar .components-button {
- position: relative;
- padding-left: 16px;
- padding-right: 16px; }
- .block-editor-block-toolbar .components-button:focus:enabled,
- .block-editor-format-toolbar .components-button:focus:enabled {
- box-shadow: none;
- outline: none; }
- .block-editor-block-toolbar .components-button::before,
- .block-editor-format-toolbar .components-button::before {
- content: "";
- position: absolute;
- display: block;
- border-radius: 2px;
- height: 32px;
- min-width: 32px;
- left: 8px;
- right: 8px; }
- .block-editor-block-toolbar .components-button svg,
- .block-editor-format-toolbar .components-button svg {
- position: relative;
- margin-left: auto;
- margin-right: auto; }
- .block-editor-block-toolbar .components-button.is-pressed,
- .block-editor-format-toolbar .components-button.is-pressed {
- color: #fff; }
- .block-editor-block-toolbar .components-button.is-pressed::before,
- .block-editor-format-toolbar .components-button.is-pressed::before {
- background: #1e1e1e; }
- .block-editor-block-toolbar .components-button:focus::before,
- .block-editor-format-toolbar .components-button:focus::before {
- box-shadow: inset 0 0 0 2px rgb(0, 124, 186), inset 0 0 0 4px #fff;
- outline: 2px solid transparent; }
- body.admin-color-sunrise .block-editor-block-toolbar .components-button:focus::before, body.admin-color-sunrise .block-editor-format-toolbar .components-button:focus::before {
- box-shadow: inset 0 0 0 2px rgb(209, 134, 74), inset 0 0 0 4px #fff; }
- body.admin-color-ocean .block-editor-block-toolbar .components-button:focus::before, body.admin-color-ocean .block-editor-format-toolbar .components-button:focus::before {
- box-shadow: inset 0 0 0 2px rgb(163, 185, 162), inset 0 0 0 4px #fff; }
- body.admin-color-midnight .block-editor-block-toolbar .components-button:focus::before, body.admin-color-midnight .block-editor-format-toolbar .components-button:focus::before {
- box-shadow: inset 0 0 0 2px rgb(225, 77, 67), inset 0 0 0 4px #fff; }
- body.admin-color-ectoplasm .block-editor-block-toolbar .components-button:focus::before, body.admin-color-ectoplasm .block-editor-format-toolbar .components-button:focus::before {
- box-shadow: inset 0 0 0 2px rgb(167, 182, 86), inset 0 0 0 4px #fff; }
- body.admin-color-coffee .block-editor-block-toolbar .components-button:focus::before, body.admin-color-coffee .block-editor-format-toolbar .components-button:focus::before {
- box-shadow: inset 0 0 0 2px rgb(194, 166, 140), inset 0 0 0 4px #fff; }
- body.admin-color-blue .block-editor-block-toolbar .components-button:focus::before, body.admin-color-blue .block-editor-format-toolbar .components-button:focus::before {
- box-shadow: inset 0 0 0 2px rgb(217, 171, 89), inset 0 0 0 4px #fff; }
- body.admin-color-light .block-editor-block-toolbar .components-button:focus::before, body.admin-color-light .block-editor-format-toolbar .components-button:focus::before {
- box-shadow: inset 0 0 0 2px rgb(0, 133, 186), inset 0 0 0 4px #fff; }
- .block-editor-block-toolbar .components-button.has-icon,
- .block-editor-format-toolbar .components-button.has-icon {
- padding-left: 8px;
- padding-right: 8px;
- min-width: 48px;
- justify-content: center; }
- .block-editor-block-toolbar .components-button.components-tab-button,
- .block-editor-format-toolbar .components-button.components-tab-button {
- font-weight: 500; }
- .block-editor-block-toolbar .components-button.components-tab-button span,
- .block-editor-format-toolbar .components-button.components-tab-button span {
- display: inline-block;
- padding-left: 0;
- padding-right: 0;
- position: relative; }
+.block-editor-block-toolbar .components-toolbar-group,
+.block-editor-block-toolbar .components-toolbar,
+.block-editor-format-toolbar .components-toolbar-group,
+.block-editor-format-toolbar .components-toolbar {
+ display: flex;
+ flex-wrap: nowrap; }
-.block-editor-block-toolbar .components-toolbar div > .components-button.has-icon,
-.block-editor-format-toolbar .components-toolbar div > .components-button.has-icon {
- min-width: 36px;
- padding-left: 6px;
- padding-right: 6px; }
- .block-editor-block-toolbar .components-toolbar div > .components-button.has-icon svg,
- .block-editor-format-toolbar .components-toolbar div > .components-button.has-icon svg {
- min-width: 24px; }
- .block-editor-block-toolbar .components-toolbar div > .components-button.has-icon::before,
- .block-editor-format-toolbar .components-toolbar div > .components-button.has-icon::before {
- left: 2px;
- right: 2px; }
+.block-editor-block-toolbar__slot {
+ display: inline-block;
+ line-height: 0; }
+ @supports ((position: -webkit-sticky) or (position: sticky)) {
+ .block-editor-block-toolbar__slot {
+ display: inline-flex; } }
-.block-editor-block-toolbar .components-toolbar div:first-child .components-button,
-.block-editor-format-toolbar .components-toolbar div:first-child .components-button {
- min-width: 42px;
- padding-left: 11px;
- padding-right: 6px; }
- .block-editor-block-toolbar .components-toolbar div:first-child .components-button::before,
- .block-editor-format-toolbar .components-toolbar div:first-child .components-button::before {
- left: 8px;
- right: 2px; }
-
-.block-editor-block-toolbar .components-toolbar div:last-child .components-button,
-.block-editor-format-toolbar .components-toolbar div:last-child .components-button {
- min-width: 42px;
- padding-left: 6px;
- padding-right: 11px; }
- .block-editor-block-toolbar .components-toolbar div:last-child .components-button::before,
- .block-editor-format-toolbar .components-toolbar div:last-child .components-button::before {
- left: 2px;
- right: 8px; }
-
-.block-editor-block-toolbar .components-toolbar div:first-child:last-child > .components-button,
-.block-editor-format-toolbar .components-toolbar div:first-child:last-child > .components-button {
- min-width: 48px;
- padding-left: 12px;
- padding-right: 12px; }
- .block-editor-block-toolbar .components-toolbar div:first-child:last-child > .components-button::before,
- .block-editor-format-toolbar .components-toolbar div:first-child:last-child > .components-button::before {
- left: 8px;
- right: 8px; }
-
-.block-editor-block-toolbar__slot {
- display: inline-block;
- line-height: 0; }
- @supports ((position: -webkit-sticky) or (position: sticky)) {
- .block-editor-block-toolbar__slot {
- display: inline-flex; } }
-
-.block-editor-block-toolbar__mover-switcher-container {
- display: flex; }
+.block-editor-block-toolbar__mover-switcher-container {
+ display: flex; }
.block-editor-block-toolbar__block-switcher-wrapper .block-editor-block-switcher {
display: block; }
@@ -6130,8 +6434,15 @@ figcaption.block-editor-rich-text__editable [data-rich-text-placeholder]::before
transform: translateX(-48px);
-webkit-user-select: none;
-ms-user-select: none;
- user-select: none;
- z-index: -1; } }
+ user-select: none; } }
+
+.block-editor-block-toolbar.has-responsive-movers .block-editor-block-toolbar__block-switcher-wrapper {
+ background: #fff;
+ border-left: 1px solid;
+ border-radius: 0 0 2px 2px;
+ position: relative;
+ z-index: 1;
+ margin-left: -1px; }
@media (min-width: 782px) {
.block-editor-block-toolbar.has-responsive-movers .block-editor-block-toolbar__mover-trigger-wrapper:not(:empty) {
@@ -6147,134 +6458,6 @@ figcaption.block-editor-rich-text__editable [data-rich-text-placeholder]::before
.block-editor-block-toolbar.has-responsive-movers .block-editor-block-toolbar__mover-trigger-wrapper:not(:empty) {
transition-duration: 0s; } }
-html.block-editor-editor-skeleton__html-container {
- position: fixed;
- width: 100%; }
- @media (min-width: 782px) {
- html.block-editor-editor-skeleton__html-container {
- position: initial;
- width: initial; } }
-
-.block-editor-editor-skeleton {
- display: flex;
- flex-direction: column;
- height: auto;
- max-height: 100%;
- position: fixed;
- top: 46px;
- left: 0;
- right: 0;
- bottom: 0; }
- @media (min-width: 782px) {
- .block-editor-editor-skeleton {
- top: 32px; }
- .is-fullscreen-mode .block-editor-editor-skeleton {
- top: 0; } }
-
-.block-editor-editor-skeleton {
- /* Set left position when auto-fold is not on the body element. */
- left: 0; }
- @media (min-width: 782px) {
- .block-editor-editor-skeleton {
- left: 160px; } }
-
-.auto-fold .block-editor-editor-skeleton {
- /* Auto fold is when on smaller breakpoints, nav menu auto collapses. */ }
- @media (min-width: 782px) {
- .auto-fold .block-editor-editor-skeleton {
- left: 36px; } }
- @media (min-width: 961px) {
- .auto-fold .block-editor-editor-skeleton {
- left: 160px; } }
-
-/* Sidebar manually collapsed. */
-.folded .block-editor-editor-skeleton {
- left: 0; }
- @media (min-width: 782px) {
- .folded .block-editor-editor-skeleton {
- left: 36px; } }
-
-/* Mobile menu opened. */
-@media (max-width: 782px) {
- .auto-fold .wp-responsive-open .block-editor-editor-skeleton {
- left: 190px; } }
-
-/* In small screens with responsive menu expanded there is small white space. */
-@media (max-width: 600px) {
- .auto-fold .wp-responsive-open .block-editor-editor-skeleton {
- margin-left: -18px; } }
-
-body.is-fullscreen-mode .block-editor-editor-skeleton {
- left: 0 !important; }
-
-.block-editor-editor-skeleton__body {
- flex-grow: 1;
- display: flex;
- overflow: auto;
- overscroll-behavior-y: none; }
-
-.block-editor-editor-skeleton__content {
- flex-grow: 1;
- display: flex;
- flex-direction: column;
- overflow: auto; }
-
-.block-editor-editor-skeleton__sidebar {
- display: block;
- width: auto;
- flex-shrink: 0;
- position: absolute;
- z-index: 100000;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: #fff;
- color: #1e1e1e; }
- @media (min-width: 782px) {
- .block-editor-editor-skeleton__sidebar {
- overflow: auto;
- border-left: 1px solid #e2e4e7;
- position: relative !important;
- z-index: 90; } }
-
-.block-editor-editor-skeleton__header {
- flex-shrink: 0;
- height: auto;
- border-bottom: 1px solid #e2e4e7;
- z-index: 30;
- color: #1e1e1e;
- position: -webkit-sticky;
- position: sticky;
- top: 0; }
- @media (min-width: 600px) {
- .block-editor-editor-skeleton__header {
- position: initial;
- top: 0; } }
-
-.block-editor-editor-skeleton__footer {
- height: auto;
- flex-shrink: 0;
- border-top: 1px solid #e2e4e7;
- color: #1e1e1e;
- display: none; }
- @media (min-width: 782px) {
- .block-editor-editor-skeleton__footer {
- display: block; } }
-
-.block-editor-editor-skeleton__publish {
- z-index: 100000;
- position: fixed !important;
- top: -9999em;
- bottom: auto;
- left: auto;
- right: 0;
- width: 280px;
- color: #1e1e1e; }
- .block-editor-editor-skeleton__publish:focus {
- top: auto;
- bottom: 0; }
-
.block-editor-inserter {
display: inline-block;
background: none;
@@ -6306,7 +6489,9 @@ body.is-fullscreen-mode .block-editor-editor-skeleton {
transition-duration: 0s; } }
.block-editor-inserter__menu {
- height: 100%; }
+ height: 100%;
+ position: relative;
+ overflow: visible; }
.block-editor-inserter__main-area {
width: auto;
@@ -6315,8 +6500,7 @@ body.is-fullscreen-mode .block-editor-editor-skeleton {
height: 100%; }
@media (min-width: 782px) {
.block-editor-inserter__main-area {
- width: 400px;
- position: relative; } }
+ width: 350px; } }
.block-editor-inserter__inline-elements {
margin-top: -1px; }
@@ -6327,35 +6511,111 @@ body.is-fullscreen-mode .block-editor-editor-skeleton {
.components-popover.block-editor-inserter__popover {
z-index: 99998; }
-.components-popover input[type="search"].block-editor-inserter__search {
- display: block;
- margin: 16px;
- padding: 11px 16px;
- position: relative;
+.block-editor-inserter__search {
+ padding: 16px;
z-index: 1;
- border-radius: 4px;
flex-shrink: 0;
- /* Fonts smaller than 16px causes mobile safari to zoom. */
- font-size: 16px; }
- @media (min-width: 600px) {
- .components-popover input[type="search"].block-editor-inserter__search {
- font-size: 13px; } }
- .components-popover input[type="search"].block-editor-inserter__search:focus {
- color: #191e23;
- border-color: #007cba;
- box-shadow: 0 0 0 1px #007cba;
- outline: 2px solid transparent; }
+ position: relative; }
+ .block-editor-inserter__search input[type="search"].block-editor-inserter__search-input {
+ display: block;
+ padding: 16px 48px 16px 16px;
+ border-radius: 2px;
+ background: #f3f4f5;
+ border: none;
+ width: 100%;
+ height: 48px;
+ /* Fonts smaller than 16px causes mobile safari to zoom. */
+ font-size: 16px; }
+ @media (min-width: 600px) {
+ .block-editor-inserter__search input[type="search"].block-editor-inserter__search-input {
+ font-size: 13px; } }
+ .block-editor-inserter__search input[type="search"].block-editor-inserter__search-input:focus {
+ background: #fff;
+ box-shadow: 0 0 0 1.5px #007cba; }
+ body.admin-color-sunrise .block-editor-inserter__search input[type="search"].block-editor-inserter__search-input:focus {
+ box-shadow: 0 0 0 1.5px #d1864a; }
+ body.admin-color-ocean .block-editor-inserter__search input[type="search"].block-editor-inserter__search-input:focus {
+ box-shadow: 0 0 0 1.5px #a3b9a2; }
+ body.admin-color-midnight .block-editor-inserter__search input[type="search"].block-editor-inserter__search-input:focus {
+ box-shadow: 0 0 0 1.5px #e14d43; }
+ body.admin-color-ectoplasm .block-editor-inserter__search input[type="search"].block-editor-inserter__search-input:focus {
+ box-shadow: 0 0 0 1.5px #a7b656; }
+ body.admin-color-coffee .block-editor-inserter__search input[type="search"].block-editor-inserter__search-input:focus {
+ box-shadow: 0 0 0 1.5px #c2a68c; }
+ body.admin-color-blue .block-editor-inserter__search input[type="search"].block-editor-inserter__search-input:focus {
+ box-shadow: 0 0 0 1.5px #d9ab59; }
+ body.admin-color-light .block-editor-inserter__search input[type="search"].block-editor-inserter__search-input:focus {
+ box-shadow: 0 0 0 1.5px #0085ba; }
+
+.block-editor-inserter__search-icon {
+ position: absolute;
+ top: 28px;
+ right: 28px; }
-.block-editor-inserter__results {
+.block-editor-inserter__tabs {
+ display: flex;
flex-grow: 1;
+ flex-direction: column;
+ margin-top: -8px; }
+ .block-editor-inserter__tabs .components-tab-panel__tabs {
+ border-bottom: 1px solid #e2e4e7; }
+ .block-editor-inserter__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item {
+ flex-grow: 1;
+ margin-bottom: -1px; }
+ .block-editor-inserter__tabs .components-tab-panel__tab-content {
+ display: flex;
+ flex-grow: 1;
+ flex-direction: column;
+ position: relative; }
+
+.block-editor-inserter__panel-header {
+ display: inline-flex;
+ align-items: center;
+ padding: 16px 16px 0; }
+
+.block-editor-inserter__panel-content {
+ padding: 0 16px; }
+
+.block-editor-inserter__panel-title {
+ color: #007cba;
+ text-transform: uppercase;
+ font-size: 11px;
+ font-weight: 500;
+ margin-right: 8px; }
+
+body.admin-color-sunrise .block-editor-inserter__panel-title {
+ color: #d1864a; }
+
+body.admin-color-ocean .block-editor-inserter__panel-title {
+ color: #a3b9a2; }
+
+body.admin-color-midnight .block-editor-inserter__panel-title {
+ color: #e14d43; }
+
+body.admin-color-ectoplasm .block-editor-inserter__panel-title {
+ color: #a7b656; }
+
+body.admin-color-coffee .block-editor-inserter__panel-title {
+ color: #c2a68c; }
+
+body.admin-color-blue .block-editor-inserter__panel-title {
+ color: #d9ab59; }
+
+body.admin-color-light .block-editor-inserter__panel-title {
+ color: #0085ba; }
+
+.block-editor-inserter__block-list {
+ flex-grow: 1;
+ position: relative; }
+
+.block-editor-inserter__scrollable {
overflow: auto;
- position: relative;
- z-index: 1;
- padding: 0 16px 16px 16px; }
- .block-editor-inserter__results:focus {
- outline: 1px dotted #555d66; }
- .block-editor-inserter__results [role="presentation"] + .components-panel__body {
- border-top: none; }
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ overflow-y: scroll; }
.block-editor-inserter__popover .block-editor-block-types-list {
margin: 0 -8px; }
@@ -6365,13 +6625,17 @@ body.is-fullscreen-mode .block-editor-editor-skeleton {
text-align: right; }
.block-editor-inserter__manage-reusable-blocks {
- margin: 16px 0 0 16px; }
+ display: inline-block;
+ margin: 16px; }
.block-editor-inserter__no-results {
- font-style: italic;
- padding: 24px;
+ padding: 32px;
+ margin-top: 64px;
text-align: center; }
+.block-editor-inserter__no-results-icon {
+ fill: #b5bcc2; }
+
.block-editor-inserter__child-blocks {
padding: 0 16px; }
@@ -6383,92 +6647,141 @@ body.is-fullscreen-mode .block-editor-editor-skeleton {
.block-editor-inserter__parent-block-header .block-editor-block-icon {
margin-right: 8px; }
-.block-editor-inserter__menu-help-panel {
+.block-editor-inserter__preview-container {
display: none;
- border: 1px solid #ccc;
width: 300px;
- min-height: 350px;
- margin-right: 20px;
- padding: 20px;
- background: #fff; }
+ background: #fff;
+ border-radius: 2px;
+ border: 1px solid #e2e4e7;
+ position: absolute;
+ top: 16px;
+ left: calc(100% + 16px); }
@media (min-width: 782px) {
- .block-editor-inserter__menu-help-panel {
- position: absolute;
- top: 0;
- left: calc(100% + 20px);
- display: flex;
- flex-direction: column; } }
- .block-editor-inserter__menu-help-panel .block-editor-block-card {
- padding-bottom: 20px;
- margin-bottom: 20px;
- border-bottom: 1px solid #e2e4e7;
- animation: edit-post__fade-in-animation 0.2s ease-out 0s;
- animation-fill-mode: forwards; }
- @media (prefers-reduced-motion: reduce) {
- .block-editor-inserter__menu-help-panel .block-editor-block-card {
- animation-duration: 1ms; } }
- .block-editor-inserter__menu-help-panel .block-editor-inserter__preview {
- display: flex;
- flex-grow: 1;
- overflow-y: auto; }
-
-.block-editor-inserter__menu-help-panel-no-block {
- display: flex;
- height: 100%;
- flex-direction: column;
- animation: edit-post__fade-in-animation 0.2s ease-out 0s;
- animation-fill-mode: forwards; }
- @media (prefers-reduced-motion: reduce) {
- .block-editor-inserter__menu-help-panel-no-block {
- animation-duration: 1ms; } }
- .block-editor-inserter__menu-help-panel-no-block .block-editor-inserter__menu-help-panel-no-block-text {
- flex-grow: 1; }
- .block-editor-inserter__menu-help-panel-no-block .block-editor-inserter__menu-help-panel-no-block-text h4 {
- font-size: 18px; }
- .block-editor-inserter__menu-help-panel-no-block .components-notice {
- margin: 0; }
- .block-editor-inserter__menu-help-panel-no-block h4 {
- margin-top: 0; }
-
-.block-editor-inserter__menu-help-panel-hover-area {
- flex-grow: 1;
- margin-top: 20px;
- padding: 20px;
- border: 1px dotted #e2e4e7;
- display: flex;
- align-items: center;
- text-align: center; }
-
-.block-editor-inserter__menu-help-panel-title {
- font-size: 18px;
- font-weight: 600;
- margin-bottom: 20px; }
+ .block-editor-inserter__preview-container {
+ display: block; } }
+ .block-editor-inserter__preview-container .block-editor-block-card {
+ padding: 16px; }
+ .block-editor-inserter__preview-container .block-editor-block-card__title {
+ font-size: 13px; }
.block-editor-inserter__preview-content {
- border: 1px solid #e2e4e7;
- border-radius: 4px;
- min-height: 150px;
+ min-height: 144px;
+ background: #f3f4f5;
display: -ms-grid;
display: grid;
- flex-grow: 1; }
- .block-editor-inserter__preview-content .block-editor-block-preview__container {
- margin-right: 0;
- margin-left: 0;
- padding: 10px; }
+ flex-grow: 1;
+ align-items: center; }
.block-editor-inserter__preview-content-missing {
flex: 1;
display: flex;
justify-content: center;
+ align-items: center;
+ min-height: 144px;
color: #606a73;
- border: 1px solid #e2e4e7;
- border-radius: 4px;
- align-items: center; }
+ background: #f3f4f5; }
.block-editor-inserter__tips {
+ border-top: 1px solid #e2e4e7;
padding: 16px;
flex-shrink: 0; }
+.block-editor-inserter__patterns-item {
+ border-radius: 2px;
+ cursor: pointer;
+ margin-top: 16px;
+ transition: all 0.05s ease-in-out;
+ position: relative;
+ border: 1px solid transparent; }
+ .block-editor-inserter__patterns-item:hover {
+ border: 1px solid #007cba; }
+ body.admin-color-sunrise .block-editor-inserter__patterns-item:hover {
+ border: 1px solid #d1864a; }
+ body.admin-color-ocean .block-editor-inserter__patterns-item:hover {
+ border: 1px solid #a3b9a2; }
+ body.admin-color-midnight .block-editor-inserter__patterns-item:hover {
+ border: 1px solid #e14d43; }
+ body.admin-color-ectoplasm .block-editor-inserter__patterns-item:hover {
+ border: 1px solid #a7b656; }
+ body.admin-color-coffee .block-editor-inserter__patterns-item:hover {
+ border: 1px solid #c2a68c; }
+ body.admin-color-blue .block-editor-inserter__patterns-item:hover {
+ border: 1px solid #d9ab59; }
+ body.admin-color-light .block-editor-inserter__patterns-item:hover {
+ border: 1px solid #0085ba; }
+ .block-editor-inserter__patterns-item:focus {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #007cba;
+ outline: 2px solid transparent; }
+ body.admin-color-sunrise .block-editor-inserter__patterns-item:focus {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #d1864a; }
+ body.admin-color-ocean .block-editor-inserter__patterns-item:focus {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #a3b9a2; }
+ body.admin-color-midnight .block-editor-inserter__patterns-item:focus {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #e14d43; }
+ body.admin-color-ectoplasm .block-editor-inserter__patterns-item:focus {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #a7b656; }
+ body.admin-color-coffee .block-editor-inserter__patterns-item:focus {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #c2a68c; }
+ body.admin-color-blue .block-editor-inserter__patterns-item:focus {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #d9ab59; }
+ body.admin-color-light .block-editor-inserter__patterns-item:focus {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #0085ba; }
+ .block-editor-inserter__patterns-item.is-placeholder {
+ min-height: 100px; }
+
+.block-editor-inserter__patterns-item-title {
+ padding: 4px;
+ font-size: 12px;
+ text-align: center; }
+
+.block-editor-post-preview__dropdown {
+ display: none;
+ margin-right: 12px;
+ padding: 0; }
+
+.block-editor-post-preview__button-toggle {
+ display: flex;
+ justify-content: space-between;
+ padding: 0 8px 0 12px; }
+ .block-editor-post-preview__button-toggle:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #007cba; }
+ body.admin-color-sunrise .block-editor-post-preview__button-toggle:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #d1864a; }
+ body.admin-color-ocean .block-editor-post-preview__button-toggle:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #a3b9a2; }
+ body.admin-color-midnight .block-editor-post-preview__button-toggle:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #e14d43; }
+ body.admin-color-ectoplasm .block-editor-post-preview__button-toggle:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #a7b656; }
+ body.admin-color-coffee .block-editor-post-preview__button-toggle:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #c2a68c; }
+ body.admin-color-blue .block-editor-post-preview__button-toggle:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #d9ab59; }
+ body.admin-color-light .block-editor-post-preview__button-toggle:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #0085ba; }
+ .block-editor-post-preview__button-toggle svg {
+ margin-left: 4px; }
+
+.block-editor-post-preview__button-resize.block-editor-post-preview__button-resize {
+ padding-left: 40px; }
+ .block-editor-post-preview__button-resize.block-editor-post-preview__button-resize.has-icon {
+ padding-left: 8px; }
+
+.block-editor-post-preview__dropdown-content .components-popover__content {
+ overflow-y: visible; }
+
+.block-editor-post-preview__dropdown-content .components-menu-group + .components-menu-group {
+ border-top: 1px solid #ccc;
+ padding: 8px 12px;
+ margin-left: -12px;
+ margin-right: -12px; }
+
+@media (min-width: 600px) {
+ .editor-post-preview {
+ display: none; }
+ .block-editor-post-preview__dropdown {
+ display: flex; } }
+
/**
* Colors
*/
@@ -6510,10 +6823,7 @@ body.is-fullscreen-mode .block-editor-editor-skeleton {
* than the space allows.
*/
/**
- * Button states and focus styles
- */
-/**
- * Block Toolbar/Formatting Buttons
+ * Focus styles.
*/
/**
* Applies editor left position to the selector passed as argument
@@ -6664,10 +6974,7 @@ body.is-fullscreen-mode .block-editor-editor-skeleton {
* than the space allows.
*/
/**
- * Button states and focus styles
- */
-/**
- * Block Toolbar/Formatting Buttons
+ * Focus styles.
*/
/**
* Applies editor left position to the selector passed as argument
@@ -6685,9 +6992,6 @@ body.is-fullscreen-mode .block-editor-editor-skeleton {
/**
* Reset the WP Admin page styles for Gutenberg-like pages.
*/
-.editor-autocompleters__block .block-editor-block-icon {
- margin-right: 8px; }
-
.editor-autocompleters__user .editor-autocompleters__no-avatar::before {
/* stylelint-disable */
font: normal 20px/1 dashicons;
@@ -6759,26 +7063,27 @@ body.is-fullscreen-mode .block-editor-editor-skeleton {
margin: 0 0 0 -1px;
padding: 2px 5px 2px 1px;
color: #23282d;
- text-align: left; }
+ text-align: left;
+ border-radius: 2px; }
.document-outline__button:disabled {
cursor: default; }
.document-outline__button:focus {
- box-shadow: 0 0 0 1px rgb(0, 124, 186);
- outline: 1px solid transparent; }
+ box-shadow: 0 0 0 1.5px #007cba;
+ outline: 2px solid transparent; }
body.admin-color-sunrise .document-outline__button:focus{
- box-shadow: 0 0 0 1px rgb(209, 134, 74); }
+ box-shadow: 0 0 0 1.5px #d1864a; }
body.admin-color-ocean .document-outline__button:focus{
- box-shadow: 0 0 0 1px rgb(163, 185, 162); }
+ box-shadow: 0 0 0 1.5px #a3b9a2; }
body.admin-color-midnight .document-outline__button:focus{
- box-shadow: 0 0 0 1px rgb(225, 77, 67); }
+ box-shadow: 0 0 0 1.5px #e14d43; }
body.admin-color-ectoplasm .document-outline__button:focus{
- box-shadow: 0 0 0 1px rgb(167, 182, 86); }
+ box-shadow: 0 0 0 1.5px #a7b656; }
body.admin-color-coffee .document-outline__button:focus{
- box-shadow: 0 0 0 1px rgb(194, 166, 140); }
+ box-shadow: 0 0 0 1.5px #c2a68c; }
body.admin-color-blue .document-outline__button:focus{
- box-shadow: 0 0 0 1px rgb(217, 171, 89); }
+ box-shadow: 0 0 0 1.5px #d9ab59; }
body.admin-color-light .document-outline__button:focus{
- box-shadow: 0 0 0 1px rgb(0, 133, 186); }
+ box-shadow: 0 0 0 1.5px #0085ba; }
.document-outline__level {
background: #e2e4e7;
@@ -6820,11 +7125,309 @@ body.is-fullscreen-mode .block-editor-editor-skeleton {
.components-editor-notices__snackbar {
width: 100%; }
+ @media (min-width: 782px) {
+ .components-editor-notices__snackbar {
+ width: fit-content;
+ width: -moz-fit-content; } }
-.editor-entities-saved-states__save-button {
- display: block;
- margin-left: auto;
- margin-right: 0; }
+.entities-saved-states__panel {
+ box-sizing: border-box;
+ background: #fff;
+ position: fixed;
+ z-index: 100001;
+ top: 46px;
+ bottom: 0;
+ right: 0;
+ left: 0;
+ overflow: auto;
+ box-sizing: border-box; }
+ .entities-saved-states__panel *,
+ .entities-saved-states__panel *::before,
+ .entities-saved-states__panel *::after {
+ box-sizing: inherit; }
+ .entities-saved-states__panel .input-control,
+ .entities-saved-states__panel input[type="text"],
+ .entities-saved-states__panel input[type="search"],
+ .entities-saved-states__panel input[type="radio"],
+ .entities-saved-states__panel input[type="tel"],
+ .entities-saved-states__panel input[type="time"],
+ .entities-saved-states__panel input[type="url"],
+ .entities-saved-states__panel input[type="week"],
+ .entities-saved-states__panel input[type="password"],
+ .entities-saved-states__panel input[type="checkbox"],
+ .entities-saved-states__panel input[type="color"],
+ .entities-saved-states__panel input[type="date"],
+ .entities-saved-states__panel input[type="datetime"],
+ .entities-saved-states__panel input[type="datetime-local"],
+ .entities-saved-states__panel input[type="email"],
+ .entities-saved-states__panel input[type="month"],
+ .entities-saved-states__panel input[type="number"],
+ .entities-saved-states__panel select,
+ .entities-saved-states__panel textarea {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ padding: 6px 8px;
+ box-shadow: 0 0 0 transparent;
+ transition: box-shadow 0.1s linear;
+ border-radius: 2px;
+ border: 1px solid #757575;
+ /* Fonts smaller than 16px causes mobile safari to zoom. */
+ font-size: 16px;
+ /* Override core line-height. To be reviewed. */
+ line-height: normal; }
+ @media (prefers-reduced-motion: reduce) {
+ .entities-saved-states__panel .input-control,
+ .entities-saved-states__panel input[type="text"],
+ .entities-saved-states__panel input[type="search"],
+ .entities-saved-states__panel input[type="radio"],
+ .entities-saved-states__panel input[type="tel"],
+ .entities-saved-states__panel input[type="time"],
+ .entities-saved-states__panel input[type="url"],
+ .entities-saved-states__panel input[type="week"],
+ .entities-saved-states__panel input[type="password"],
+ .entities-saved-states__panel input[type="checkbox"],
+ .entities-saved-states__panel input[type="color"],
+ .entities-saved-states__panel input[type="date"],
+ .entities-saved-states__panel input[type="datetime"],
+ .entities-saved-states__panel input[type="datetime-local"],
+ .entities-saved-states__panel input[type="email"],
+ .entities-saved-states__panel input[type="month"],
+ .entities-saved-states__panel input[type="number"],
+ .entities-saved-states__panel select,
+ .entities-saved-states__panel textarea {
+ transition-duration: 0s; } }
+ @media (min-width: 600px) {
+ .entities-saved-states__panel .input-control,
+ .entities-saved-states__panel input[type="text"],
+ .entities-saved-states__panel input[type="search"],
+ .entities-saved-states__panel input[type="radio"],
+ .entities-saved-states__panel input[type="tel"],
+ .entities-saved-states__panel input[type="time"],
+ .entities-saved-states__panel input[type="url"],
+ .entities-saved-states__panel input[type="week"],
+ .entities-saved-states__panel input[type="password"],
+ .entities-saved-states__panel input[type="checkbox"],
+ .entities-saved-states__panel input[type="color"],
+ .entities-saved-states__panel input[type="date"],
+ .entities-saved-states__panel input[type="datetime"],
+ .entities-saved-states__panel input[type="datetime-local"],
+ .entities-saved-states__panel input[type="email"],
+ .entities-saved-states__panel input[type="month"],
+ .entities-saved-states__panel input[type="number"],
+ .entities-saved-states__panel select,
+ .entities-saved-states__panel textarea {
+ font-size: 13px;
+ /* Override core line-height. To be reviewed. */
+ line-height: normal; } }
+ .entities-saved-states__panel .input-control:focus,
+ .entities-saved-states__panel input[type="text"]:focus,
+ .entities-saved-states__panel input[type="search"]:focus,
+ .entities-saved-states__panel input[type="radio"]:focus,
+ .entities-saved-states__panel input[type="tel"]:focus,
+ .entities-saved-states__panel input[type="time"]:focus,
+ .entities-saved-states__panel input[type="url"]:focus,
+ .entities-saved-states__panel input[type="week"]:focus,
+ .entities-saved-states__panel input[type="password"]:focus,
+ .entities-saved-states__panel input[type="checkbox"]:focus,
+ .entities-saved-states__panel input[type="color"]:focus,
+ .entities-saved-states__panel input[type="date"]:focus,
+ .entities-saved-states__panel input[type="datetime"]:focus,
+ .entities-saved-states__panel input[type="datetime-local"]:focus,
+ .entities-saved-states__panel input[type="email"]:focus,
+ .entities-saved-states__panel input[type="month"]:focus,
+ .entities-saved-states__panel input[type="number"]:focus,
+ .entities-saved-states__panel select:focus,
+ .entities-saved-states__panel textarea:focus {
+ border-color: rgb(0, 124, 186);
+ box-shadow: 0 0 0 0.5px #007cba;
+ outline: 2px solid transparent; }
+ body.admin-color-sunrise .entities-saved-states__panel .input-control:focus, body.admin-color-sunrise .entities-saved-states__panel input[type="text"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type="search"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type="radio"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type="tel"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type="time"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type="url"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type="week"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type="password"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type="checkbox"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type="color"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type="date"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type="datetime"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type="datetime-local"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type="email"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type="month"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type="number"]:focus, body.admin-color-sunrise .entities-saved-states__panel select:focus, body.admin-color-sunrise .entities-saved-states__panel textarea:focus{
+ border-color: rgb(209, 134, 74);
+ box-shadow: 0 0 0 0.5px #d1864a; }
+ body.admin-color-ocean .entities-saved-states__panel .input-control:focus, body.admin-color-ocean .entities-saved-states__panel input[type="text"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type="search"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type="radio"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type="tel"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type="time"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type="url"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type="week"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type="password"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type="checkbox"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type="color"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type="date"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type="datetime"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type="datetime-local"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type="email"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type="month"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type="number"]:focus, body.admin-color-ocean .entities-saved-states__panel select:focus, body.admin-color-ocean .entities-saved-states__panel textarea:focus{
+ border-color: rgb(163, 185, 162);
+ box-shadow: 0 0 0 0.5px #a3b9a2; }
+ body.admin-color-midnight .entities-saved-states__panel .input-control:focus, body.admin-color-midnight .entities-saved-states__panel input[type="text"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type="search"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type="radio"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type="tel"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type="time"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type="url"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type="week"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type="password"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type="checkbox"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type="color"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type="date"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type="datetime"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type="datetime-local"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type="email"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type="month"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type="number"]:focus, body.admin-color-midnight .entities-saved-states__panel select:focus, body.admin-color-midnight .entities-saved-states__panel textarea:focus{
+ border-color: rgb(225, 77, 67);
+ box-shadow: 0 0 0 0.5px #e14d43; }
+ body.admin-color-ectoplasm .entities-saved-states__panel .input-control:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type="text"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type="search"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type="radio"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type="tel"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type="time"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type="url"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type="week"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type="password"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type="checkbox"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type="color"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type="date"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type="datetime"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type="datetime-local"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type="email"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type="month"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type="number"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel select:focus, body.admin-color-ectoplasm .entities-saved-states__panel textarea:focus{
+ border-color: rgb(167, 182, 86);
+ box-shadow: 0 0 0 0.5px #a7b656; }
+ body.admin-color-coffee .entities-saved-states__panel .input-control:focus, body.admin-color-coffee .entities-saved-states__panel input[type="text"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type="search"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type="radio"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type="tel"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type="time"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type="url"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type="week"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type="password"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type="checkbox"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type="color"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type="date"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type="datetime"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type="datetime-local"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type="email"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type="month"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type="number"]:focus, body.admin-color-coffee .entities-saved-states__panel select:focus, body.admin-color-coffee .entities-saved-states__panel textarea:focus{
+ border-color: rgb(194, 166, 140);
+ box-shadow: 0 0 0 0.5px #c2a68c; }
+ body.admin-color-blue .entities-saved-states__panel .input-control:focus, body.admin-color-blue .entities-saved-states__panel input[type="text"]:focus, body.admin-color-blue .entities-saved-states__panel input[type="search"]:focus, body.admin-color-blue .entities-saved-states__panel input[type="radio"]:focus, body.admin-color-blue .entities-saved-states__panel input[type="tel"]:focus, body.admin-color-blue .entities-saved-states__panel input[type="time"]:focus, body.admin-color-blue .entities-saved-states__panel input[type="url"]:focus, body.admin-color-blue .entities-saved-states__panel input[type="week"]:focus, body.admin-color-blue .entities-saved-states__panel input[type="password"]:focus, body.admin-color-blue .entities-saved-states__panel input[type="checkbox"]:focus, body.admin-color-blue .entities-saved-states__panel input[type="color"]:focus, body.admin-color-blue .entities-saved-states__panel input[type="date"]:focus, body.admin-color-blue .entities-saved-states__panel input[type="datetime"]:focus, body.admin-color-blue .entities-saved-states__panel input[type="datetime-local"]:focus, body.admin-color-blue .entities-saved-states__panel input[type="email"]:focus, body.admin-color-blue .entities-saved-states__panel input[type="month"]:focus, body.admin-color-blue .entities-saved-states__panel input[type="number"]:focus, body.admin-color-blue .entities-saved-states__panel select:focus, body.admin-color-blue .entities-saved-states__panel textarea:focus{
+ border-color: rgb(217, 171, 89);
+ box-shadow: 0 0 0 0.5px #d9ab59; }
+ body.admin-color-light .entities-saved-states__panel .input-control:focus, body.admin-color-light .entities-saved-states__panel input[type="text"]:focus, body.admin-color-light .entities-saved-states__panel input[type="search"]:focus, body.admin-color-light .entities-saved-states__panel input[type="radio"]:focus, body.admin-color-light .entities-saved-states__panel input[type="tel"]:focus, body.admin-color-light .entities-saved-states__panel input[type="time"]:focus, body.admin-color-light .entities-saved-states__panel input[type="url"]:focus, body.admin-color-light .entities-saved-states__panel input[type="week"]:focus, body.admin-color-light .entities-saved-states__panel input[type="password"]:focus, body.admin-color-light .entities-saved-states__panel input[type="checkbox"]:focus, body.admin-color-light .entities-saved-states__panel input[type="color"]:focus, body.admin-color-light .entities-saved-states__panel input[type="date"]:focus, body.admin-color-light .entities-saved-states__panel input[type="datetime"]:focus, body.admin-color-light .entities-saved-states__panel input[type="datetime-local"]:focus, body.admin-color-light .entities-saved-states__panel input[type="email"]:focus, body.admin-color-light .entities-saved-states__panel input[type="month"]:focus, body.admin-color-light .entities-saved-states__panel input[type="number"]:focus, body.admin-color-light .entities-saved-states__panel select:focus, body.admin-color-light .entities-saved-states__panel textarea:focus{
+ border-color: rgb(0, 133, 186);
+ box-shadow: 0 0 0 0.5px #0085ba; }
+ .entities-saved-states__panel input[type="number"] {
+ padding-left: 4px;
+ padding-right: 4px; }
+ .entities-saved-states__panel select {
+ padding: 3px 24px 3px 8px;
+ font-size: 13px;
+ color: #555d66; }
+ .entities-saved-states__panel select:focus {
+ border-color: #008dbe;
+ outline: 2px solid transparent;
+ outline-offset: 0; }
+ .entities-saved-states__panel input[type="checkbox"],
+ .entities-saved-states__panel input[type="radio"] {
+ border: 2px solid #757575;
+ margin-right: 12px;
+ transition: none; }
+ .entities-saved-states__panel input[type="checkbox"]:focus,
+ .entities-saved-states__panel input[type="radio"]:focus {
+ border-color: #757575;
+ box-shadow: 0 0 0 1px #757575; }
+ .entities-saved-states__panel input[type="checkbox"]:checked,
+ .entities-saved-states__panel input[type="radio"]:checked {
+ background: #11a0d2;
+ border-color: #11a0d2; }
+ body.admin-color-sunrise .entities-saved-states__panel input[type="checkbox"]:checked, body.admin-color-sunrise .entities-saved-states__panel input[type="radio"]:checked{
+ background: #c8b03c;
+ border-color: #c8b03c; }
+ body.admin-color-ocean .entities-saved-states__panel input[type="checkbox"]:checked, body.admin-color-ocean .entities-saved-states__panel input[type="radio"]:checked{
+ background: #a3b9a2;
+ border-color: #a3b9a2; }
+ body.admin-color-midnight .entities-saved-states__panel input[type="checkbox"]:checked, body.admin-color-midnight .entities-saved-states__panel input[type="radio"]:checked{
+ background: #77a6b9;
+ border-color: #77a6b9; }
+ body.admin-color-ectoplasm .entities-saved-states__panel input[type="checkbox"]:checked, body.admin-color-ectoplasm .entities-saved-states__panel input[type="radio"]:checked{
+ background: #a7b656;
+ border-color: #a7b656; }
+ body.admin-color-coffee .entities-saved-states__panel input[type="checkbox"]:checked, body.admin-color-coffee .entities-saved-states__panel input[type="radio"]:checked{
+ background: #c2a68c;
+ border-color: #c2a68c; }
+ body.admin-color-blue .entities-saved-states__panel input[type="checkbox"]:checked, body.admin-color-blue .entities-saved-states__panel input[type="radio"]:checked{
+ background: #82b4cb;
+ border-color: #82b4cb; }
+ body.admin-color-light .entities-saved-states__panel input[type="checkbox"]:checked, body.admin-color-light .entities-saved-states__panel input[type="radio"]:checked{
+ background: #11a0d2;
+ border-color: #11a0d2; }
+ .entities-saved-states__panel input[type="checkbox"]:checked:focus,
+ .entities-saved-states__panel input[type="radio"]:checked:focus {
+ box-shadow: 0 0 0 1.5px #757575; }
+ .entities-saved-states__panel input[type="checkbox"] {
+ border-radius: 2px; }
+ .entities-saved-states__panel input[type="checkbox"]:checked::before, .entities-saved-states__panel input[type="checkbox"][aria-checked="mixed"]::before {
+ margin: -3px -5px;
+ color: #fff; }
+ @media (min-width: 782px) {
+ .entities-saved-states__panel input[type="checkbox"]:checked::before, .entities-saved-states__panel input[type="checkbox"][aria-checked="mixed"]::before {
+ margin: -4px 0 0 -5px; } }
+ .entities-saved-states__panel input[type="checkbox"][aria-checked="mixed"] {
+ background: #11a0d2;
+ border-color: #11a0d2; }
+ body.admin-color-sunrise .entities-saved-states__panel input[type="checkbox"][aria-checked="mixed"]{
+ background: #c8b03c;
+ border-color: #c8b03c; }
+ body.admin-color-ocean .entities-saved-states__panel input[type="checkbox"][aria-checked="mixed"]{
+ background: #a3b9a2;
+ border-color: #a3b9a2; }
+ body.admin-color-midnight .entities-saved-states__panel input[type="checkbox"][aria-checked="mixed"]{
+ background: #77a6b9;
+ border-color: #77a6b9; }
+ body.admin-color-ectoplasm .entities-saved-states__panel input[type="checkbox"][aria-checked="mixed"]{
+ background: #a7b656;
+ border-color: #a7b656; }
+ body.admin-color-coffee .entities-saved-states__panel input[type="checkbox"][aria-checked="mixed"]{
+ background: #c2a68c;
+ border-color: #c2a68c; }
+ body.admin-color-blue .entities-saved-states__panel input[type="checkbox"][aria-checked="mixed"]{
+ background: #82b4cb;
+ border-color: #82b4cb; }
+ body.admin-color-light .entities-saved-states__panel input[type="checkbox"][aria-checked="mixed"]{
+ background: #11a0d2;
+ border-color: #11a0d2; }
+ .entities-saved-states__panel input[type="checkbox"][aria-checked="mixed"]::before {
+ content: "\f460";
+ float: left;
+ display: inline-block;
+ vertical-align: middle;
+ width: 16px;
+ /* stylelint-disable */
+ font: normal 30px/1 dashicons;
+ /* stylelint-enable */
+ speak: none;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale; }
+ @media (min-width: 782px) {
+ .entities-saved-states__panel input[type="checkbox"][aria-checked="mixed"]::before {
+ float: none;
+ font-size: 21px; } }
+ .entities-saved-states__panel input[type="checkbox"][aria-checked="mixed"]:focus {
+ box-shadow: 0 0 0 1.5px #555d66; }
+ .entities-saved-states__panel input[type="radio"] {
+ border-radius: 50%; }
+ .entities-saved-states__panel input[type="radio"]:checked::before {
+ width: 6px;
+ height: 6px;
+ margin: 6px 0 0 6px;
+ background-color: #fff; }
+ @media (min-width: 782px) {
+ .entities-saved-states__panel input[type="radio"]:checked::before {
+ margin: 3px 0 0 3px; } }
+ .entities-saved-states__panel input::-webkit-input-placeholder,
+ .entities-saved-states__panel textarea::-webkit-input-placeholder {
+ color: rgba(14, 28, 46, 0.62); }
+ .entities-saved-states__panel input::-moz-placeholder,
+ .entities-saved-states__panel textarea::-moz-placeholder {
+ opacity: 1;
+ color: rgba(14, 28, 46, 0.62); }
+ .entities-saved-states__panel input:-ms-input-placeholder,
+ .entities-saved-states__panel textarea:-ms-input-placeholder {
+ color: rgba(14, 28, 46, 0.62); }
+ .is-dark-theme .entities-saved-states__panel input::-webkit-input-placeholder, .is-dark-theme
+ .entities-saved-states__panel textarea::-webkit-input-placeholder {
+ color: rgba(255, 255, 255, 0.65); }
+ .is-dark-theme .entities-saved-states__panel input::-moz-placeholder, .is-dark-theme
+ .entities-saved-states__panel textarea::-moz-placeholder {
+ opacity: 1;
+ color: rgba(255, 255, 255, 0.65); }
+ .is-dark-theme .entities-saved-states__panel input:-ms-input-placeholder, .is-dark-theme
+ .entities-saved-states__panel textarea:-ms-input-placeholder {
+ color: rgba(255, 255, 255, 0.65); }
+ .entities-saved-states__panel .entities-saved-states__find-entity {
+ display: none; }
+ .entities-saved-states__panel .entities-saved-states__find-entity-small {
+ display: block; }
+ @media (min-width: 782px) {
+ .entities-saved-states__panel {
+ z-index: 99998;
+ top: 32px;
+ left: auto;
+ width: 280px;
+ border-left: 1px solid #e2e4e7; }
+ body.is-fullscreen-mode .entities-saved-states__panel {
+ top: 0; }
+ .entities-saved-states__panel .entities-saved-states__find-entity {
+ display: block; }
+ .entities-saved-states__panel .entities-saved-states__find-entity-small {
+ display: none; } }
+ .entities-saved-states__panel .entities-saved-states__panel-header {
+ background: #fff;
+ padding-left: 8px;
+ padding-right: 8px;
+ height: 61px;
+ border-bottom: 1px solid #e2e4e7;
+ display: flex;
+ align-items: center;
+ align-content: space-between; }
+ .entities-saved-states__panel .entities-saved-states__panel-header .components-button.has-icon {
+ position: absolute;
+ right: 8px; }
+ .entities-saved-states__panel .entities-saved-states__text-prompt {
+ border-bottom: 1px solid #e2e4e7; }
+ .entities-saved-states__panel .entities-saved-states__text-prompt h2 {
+ padding: 16px;
+ padding-bottom: 12px;
+ margin: 0;
+ font-size: 18px; }
+ .entities-saved-states__panel .editor-entities-saved-states__save-button {
+ display: block;
+ margin: 12px auto; }
.editor-error-boundary {
margin: auto;
@@ -6919,18 +7522,27 @@ body.is-fullscreen-mode .block-editor-editor-skeleton {
.editor-post-last-revision__title .dashicon {
margin-right: 5px; }
-.components-button:not(:disabled):not([aria-disabled="true"]).editor-post-last-revision__title {
+.components-button.editor-post-last-revision__title {
height: auto; }
- .components-button:not(:disabled):not([aria-disabled="true"]).editor-post-last-revision__title:hover, .components-button:not(:disabled):not([aria-disabled="true"]).editor-post-last-revision__title:active {
- background: #f3f4f5 !important;
- border: none !important;
- box-shadow: none !important; }
- .components-button:not(:disabled):not([aria-disabled="true"]).editor-post-last-revision__title:focus {
- color: #191e23;
- border: none;
- box-shadow: none;
- outline-offset: -2px;
- outline: 1px dotted #555d66; }
+ .components-button.editor-post-last-revision__title:hover, .components-button.editor-post-last-revision__title:active {
+ background: #f3f4f5; }
+ .components-button.editor-post-last-revision__title:focus {
+ box-shadow: inset 0 0 0 1.5px #007cba;
+ border-radius: 0; }
+ body.admin-color-sunrise .components-button.editor-post-last-revision__title:focus{
+ box-shadow: inset 0 0 0 1.5px #d1864a; }
+ body.admin-color-ocean .components-button.editor-post-last-revision__title:focus{
+ box-shadow: inset 0 0 0 1.5px #a3b9a2; }
+ body.admin-color-midnight .components-button.editor-post-last-revision__title:focus{
+ box-shadow: inset 0 0 0 1.5px #e14d43; }
+ body.admin-color-ectoplasm .components-button.editor-post-last-revision__title:focus{
+ box-shadow: inset 0 0 0 1.5px #a7b656; }
+ body.admin-color-coffee .components-button.editor-post-last-revision__title:focus{
+ box-shadow: inset 0 0 0 1.5px #c2a68c; }
+ body.admin-color-blue .components-button.editor-post-last-revision__title:focus{
+ box-shadow: inset 0 0 0 1.5px #d9ab59; }
+ body.admin-color-light .components-button.editor-post-last-revision__title:focus{
+ box-shadow: inset 0 0 0 1.5px #0085ba; }
.editor-post-locked-modal {
height: auto;
@@ -6953,124 +7565,6 @@ body.is-fullscreen-mode .block-editor-editor-skeleton {
margin: 5px;
margin-right: 15px; }
-.editor-post-permalink {
- display: inline-flex;
- align-items: center;
- flex-wrap: wrap;
- padding: 8px 8px 0;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
- font-size: 13px;
- white-space: nowrap;
- background-clip: padding-box;
- border: 1px solid #1e1e1e;
- border-radius: 2px;
- background-color: #fff;
- margin-left: -15px;
- margin-right: -15px; }
- @media (min-width: 480px) {
- .editor-post-permalink {
- padding: 4px; } }
- @media (min-width: 600px) {
- .editor-post-permalink {
- margin-left: -1px;
- margin-right: -1px; } }
- .editor-post-permalink.editor-post-permalink > * {
- margin-bottom: 8px; }
- @media (min-width: 480px) {
- .editor-post-permalink.editor-post-permalink > * {
- margin-bottom: 0; } }
- .editor-post-permalink button {
- flex-shrink: 0; }
-
-.editor-post-permalink__copy {
- border-radius: 4px;
- padding: 6px; }
-
-.editor-post-permalink__copy.is-copied {
- opacity: 0.3; }
-
-.editor-post-permalink__label {
- margin: 0 10px 0 5px;
- font-weight: 600; }
-
-.editor-post-permalink__link {
- color: #7e8993;
- text-decoration: underline;
- margin-right: 10px;
- flex-grow: 1;
- overflow: hidden;
- position: relative;
- white-space: nowrap;
- text-align: left; }
-
-.editor-post-permalink-editor {
- width: 100%;
- min-width: 20%;
- display: inline-flex;
- align-items: center; }
- .editor-post-permalink-editor .editor-post-permalink__editor-container {
- flex: 0 1 100%;
- display: flex;
- overflow: hidden;
- padding: 1px 0; }
- .editor-post-permalink-editor .editor-post-permalink__editor-container .editor-post-permalink-editor__prefix {
- flex: 1 1 auto; }
- @media (min-width: 600px) {
- .editor-post-permalink-editor .editor-post-permalink__editor-container .editor-post-permalink-editor__prefix {
- flex: 1 0 auto; } }
- .editor-post-permalink-editor .editor-post-permalink__editor-container .editor-post-permalink-editor__edit {
- flex: 1 1 100%; }
- .editor-post-permalink-editor .editor-post-permalink-editor__save {
- margin-left: auto; }
-
-.editor-post-permalink-editor__prefix {
- color: #6c7781;
- min-width: 20%;
- overflow: hidden;
- position: relative;
- white-space: nowrap;
- text-overflow: ellipsis; }
-
-.editor-post-permalink input[type="text"].editor-post-permalink-editor__edit {
- min-width: 10%;
- width: 100%;
- margin: 0 3px;
- padding: 2px 4px; }
-
-.editor-post-permalink-editor__suffix {
- color: #6c7781;
- margin-right: 6px;
- flex: 0 0 0%; }
-
-.editor-post-permalink-editor__prefix {
- text-align: left; }
-
-/* rtl:begin:ignore */
-.editor-post-permalink__link {
- text-align: left; }
-
-.editor-post-permalink__editor-container,
-.editor-post-permalink__link {
- direction: ltr; }
-
-.editor-post-permalink__link::after {
- content: "";
- display: block;
- position: absolute;
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- user-select: none;
- pointer-events: none;
- background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff 90%);
- top: 0;
- bottom: 0;
- right: 0;
- left: auto;
- width: 20%;
- height: auto; }
-
-/* rtl:end:ignore */
.editor-post-publish-button__button.has-changes-dot::before {
background: currentcolor;
border-radius: 4px;
@@ -7092,7 +7586,7 @@ body.is-fullscreen-mode .block-editor-editor-skeleton {
background: #fff;
padding-left: 8px;
padding-right: 8px;
- height: 60px;
+ height: 61px;
border-bottom: 1px solid #e2e4e7;
display: flex;
align-items: center;
@@ -7136,8 +7630,6 @@ body.is-fullscreen-mode .block-editor-editor-skeleton {
margin-right: -16px; }
.editor-post-publish-panel__prepublish .editor-post-visibility__dialog-legend {
display: none; }
- .editor-post-publish-panel__prepublish .components-datetime {
- padding: 0; }
.post-publish-panel__postpublish .components-panel__body {
border-bottom: 1px solid #e2e4e7;
@@ -7196,7 +7688,7 @@ body.is-fullscreen-mode .block-editor-editor-skeleton {
width: auto;
padding: 8px 12px;
text-indent: inherit; }
- .editor-post-saved-state .dashicon {
+ .editor-post-saved-state svg {
margin-right: 4px; } }
.editor-post-taxonomies__hierarchical-terms-list {
@@ -7227,80 +7719,28 @@ body.is-fullscreen-mode .block-editor-editor-skeleton {
margin-bottom: 8px;
width: 100%; }
-.editor-post-text-editor {
- border: 1px solid #e2e4e7 !important;
+.edit-post-text-editor__body textarea.editor-post-text-editor {
+ border: 1px solid #ccc;
display: block;
- margin: 0 0 2em;
+ margin: 0;
width: 100%;
box-shadow: none;
resize: none;
overflow: hidden;
- font-family: Menlo, Consolas, monaco, monospace !important;
+ font-family: Menlo, Consolas, monaco, monospace;
line-height: 150%;
- border-radius: 0 !important;
+ border-radius: 0;
+ padding: 16px;
+ min-height: 200px;
/* Fonts smaller than 16px causes mobile safari to zoom. */
font-size: 16px !important; }
@media (min-width: 600px) {
- .editor-post-text-editor {
+ .edit-post-text-editor__body textarea.editor-post-text-editor {
font-size: 14px !important; } }
- .editor-post-text-editor:hover, .editor-post-text-editor:focus {
- border: 1px solid #1e1e1e !important;
- box-shadow: none !important;
- outline-offset: -2px !important; }
-
-.editor-post-text-editor__toolbar {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap; }
- .editor-post-text-editor__toolbar button {
- height: 30px;
- background: none;
- padding: 0 8px;
- margin: 3px 4px;
- text-align: center;
- cursor: pointer;
- font-family: Menlo, Consolas, monaco, monospace;
- color: #555d66;
- border: 1px solid transparent; }
- .editor-post-text-editor__toolbar button:first-child {
- margin-left: 0; }
- .editor-post-text-editor__toolbar button:hover, .editor-post-text-editor__toolbar button:focus {
- outline: none;
- border: 1px solid #555d66; }
-
-.editor-post-text-editor__bold {
- font-weight: 600; }
-
-.editor-post-text-editor__italic {
- font-style: italic; }
-
-.editor-post-text-editor__link {
- text-decoration: underline;
- color: #0085ba; }
-
-body.admin-color-sunrise .editor-post-text-editor__link{
- color: #d1864a; }
-
-body.admin-color-ocean .editor-post-text-editor__link{
- color: #a3b9a2; }
-
-body.admin-color-midnight .editor-post-text-editor__link{
- color: #e14d43; }
-
-body.admin-color-ectoplasm .editor-post-text-editor__link{
- color: #a7b656; }
-
-body.admin-color-coffee .editor-post-text-editor__link{
- color: #c2a68c; }
-
-body.admin-color-blue .editor-post-text-editor__link{
- color: #82b4cb; }
-
-body.admin-color-light .editor-post-text-editor__link{
- color: #0085ba; }
-
-.editor-post-text-editor__del {
- text-decoration: line-through; }
+ .edit-post-text-editor__body textarea.editor-post-text-editor:focus {
+ border: 1px solid #1e1e1e;
+ box-shadow: none;
+ position: relative; }
.edit-post-post-visibility__dialog,
.editor-post-visibility__dialog-fieldset {
@@ -7329,76 +7769,52 @@ body.admin-color-light .editor-post-text-editor__link{
.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-password-input {
margin-left: 28px; }
-.editor-post-title__block {
- position: relative;
- padding: 5px 0;
- font-size: 16px; }
- @media (min-width: 600px) {
- .editor-post-title__block {
- padding: 5px 2px; } }
- .editor-post-title__block .editor-post-title__input {
+.editor-post-title {
+ position: relative; }
+ .editor-post-title .editor-post-title__input {
display: block;
width: 100%;
margin: 0;
box-shadow: none;
background: transparent;
- font-family: "Noto Serif", serif;
- line-height: 1.4;
- color: #191e23;
transition: border 0.1s ease-out, box-shadow 0.1s linear;
- padding: 19px 14px;
+ padding: 19px 0;
word-break: keep-all;
+ font-family: inherit;
+ line-height: inherit;
+ color: inherit;
border: 1px solid transparent;
border-left-width: 0;
border-right-width: 0;
border-radius: 0;
outline: 1px solid transparent;
font-size: 2.44em;
- font-weight: 600; }
+ font-weight: bold; }
@media (prefers-reduced-motion: reduce) {
- .editor-post-title__block .editor-post-title__input {
+ .editor-post-title .editor-post-title__input {
transition-duration: 0s; } }
@media (min-width: 600px) {
- .editor-post-title__block .editor-post-title__input {
+ .editor-post-title .editor-post-title__input {
border-width: 1px; } }
- .editor-post-title__block .editor-post-title__input::-webkit-input-placeholder {
+ .editor-post-title .editor-post-title__input::-webkit-input-placeholder {
color: rgba(22, 36, 53, 0.55); }
- .editor-post-title__block .editor-post-title__input::-moz-placeholder {
+ .editor-post-title .editor-post-title__input::-moz-placeholder {
color: rgba(22, 36, 53, 0.55); }
- .editor-post-title__block .editor-post-title__input:-ms-input-placeholder {
+ .editor-post-title .editor-post-title__input:-ms-input-placeholder {
color: rgba(22, 36, 53, 0.55); }
- .editor-post-title__block .editor-post-title__input:focus {
+ .editor-post-title .editor-post-title__input:focus {
border: 1px solid transparent;
outline: 1px solid transparent;
box-shadow: none; }
- .editor-post-title__block.is-focus-mode .editor-post-title__input {
+ .editor-post-title.is-focus-mode .editor-post-title__input {
opacity: 0.5;
transition: opacity 0.1s linear; }
@media (prefers-reduced-motion: reduce) {
- .editor-post-title__block.is-focus-mode .editor-post-title__input {
+ .editor-post-title.is-focus-mode .editor-post-title__input {
transition-duration: 0s; } }
- .editor-post-title__block.is-focus-mode .editor-post-title__input:focus {
+ .editor-post-title.is-focus-mode .editor-post-title__input:focus {
opacity: 1; }
-.editor-post-title .editor-post-permalink {
- font-size: 13px;
- color: #191e23;
- height: auto;
- position: relative;
- top: -2px;
- width: 100%; }
- @media (min-width: 480px) {
- .editor-post-title .editor-post-permalink {
- position: absolute;
- top: -33px;
- right: 0;
- flex-wrap: nowrap;
- width: auto; } }
- @media (min-width: 600px) {
- .editor-post-title .editor-post-permalink {
- left: 2px;
- right: 2px; } }
-
.editor-post-trash.components-button {
color: #b52727;
border-color: #b52727;
@@ -7420,14 +7836,39 @@ body.admin-color-light .editor-post-text-editor__link{
max-height: calc(100vh - 120px);
overflow-y: auto; } }
-.table-of-contents__popover hr {
- margin: 10px -16px 0; }
+.table-of-contents__popover hr {
+ margin: 10px -16px 0; }
+
+.table-of-contents__wrapper:focus::before {
+ content: "";
+ display: block;
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ box-shadow: inset 0 0 0 1.5px #007cba; }
+
+body.admin-color-sunrise .table-of-contents__wrapper:focus::before{
+ box-shadow: inset 0 0 0 1.5px #d1864a; }
+
+body.admin-color-ocean .table-of-contents__wrapper:focus::before{
+ box-shadow: inset 0 0 0 1.5px #a3b9a2; }
+
+body.admin-color-midnight .table-of-contents__wrapper:focus::before{
+ box-shadow: inset 0 0 0 1.5px #e14d43; }
+
+body.admin-color-ectoplasm .table-of-contents__wrapper:focus::before{
+ box-shadow: inset 0 0 0 1.5px #a7b656; }
-.table-of-contents__wrapper:focus {
- color: #191e23;
- outline-offset: -1px;
- outline: 1px dotted #555d66;
- outline-offset: 8px; }
+body.admin-color-coffee .table-of-contents__wrapper:focus::before{
+ box-shadow: inset 0 0 0 1.5px #c2a68c; }
+
+body.admin-color-blue .table-of-contents__wrapper:focus::before{
+ box-shadow: inset 0 0 0 1.5px #d9ab59; }
+
+body.admin-color-light .table-of-contents__wrapper:focus::before{
+ box-shadow: inset 0 0 0 1.5px #0085ba; }
.table-of-contents__counts {
display: flex;
@@ -7506,10 +7947,7 @@ body.admin-color-light .editor-post-text-editor__link{
* than the space allows.
*/
/**
- * Button states and focus styles
- */
-/**
- * Block Toolbar/Formatting Buttons
+ * Focus styles.
*/
/**
* Applies editor left position to the selector passed as argument
@@ -7538,49 +7976,49 @@ body.admin-color-light .editor-post-text-editor__link{
width: 100%;
min-width: 300px; }
-.wp-block-button {
- color: #fff; }
- .wp-block-button.aligncenter {
- text-align: center; }
- .wp-block-button.alignright {
- /*rtl:ignore*/
- text-align: right; }
-
.wp-block-button__link {
+ color: #fff;
background-color: #32373c;
border: none;
border-radius: 28px;
box-shadow: none;
- color: inherit;
cursor: pointer;
display: inline-block;
font-size: 18px;
- margin: 0;
padding: 12px 24px;
text-align: center;
text-decoration: none;
overflow-wrap: break-word; }
.wp-block-button__link:hover, .wp-block-button__link:focus, .wp-block-button__link:active, .wp-block-button__link:visited {
- color: inherit; }
-
-.wp-gs .wp-block-button__link:not(.has-background) {
- background-color: var(--wp--color--primary); }
+ color: #fff; }
+ .wp-block-button__link.aligncenter {
+ text-align: center; }
+ .wp-block-button__link.alignright {
+ /*rtl:ignore*/
+ text-align: right; }
-.is-style-squared .wp-block-button__link {
+.wp-block-button.is-style-squared,
+.wp-block-button__link.wp-block-button.is-style-squared {
border-radius: 0; }
-.no-border-radius.wp-block-button__link {
+.wp-block-button.no-border-radius,
+.wp-block-button__link.wp-block-button.no-border-radius {
border-radius: 0 !important; }
-.is-style-outline {
- color: #32373c; }
- .is-style-outline .wp-block-button__link {
- background-color: transparent;
- border: 2px solid; }
+.wp-block-button.is-style-outline .wp-block-button__link,
+.wp-block-button__link.is-style-outline {
+ color: #32373c;
+ background-color: transparent;
+ border: 2px solid; }
-.wp-block-buttons .wp-block-button {
+.wp-block-buttons .wp-block-button.wp-block-button {
display: inline-block;
- margin: 4px; }
+ margin-right: 8px;
+ margin-bottom: 8px; }
+
+.wp-block-buttons.alignright .wp-block-button {
+ margin-right: none;
+ margin-left: 8px; }
.wp-block-buttons.aligncenter {
text-align: center; }
@@ -7624,7 +8062,7 @@ body.admin-color-light .editor-post-text-editor__link{
.wp-block-columns {
flex-wrap: nowrap; } }
.wp-block-columns.has-background {
- padding: 20px 30px; }
+ padding: 20px 38px; }
.wp-block-column {
flex-grow: 1;
@@ -7680,7 +8118,6 @@ body.admin-color-light .editor-post-text-editor__link{
.wp-block-cover-image,
.wp-block-cover {
position: relative;
- background-color: #000;
background-size: cover;
background-position: center center;
min-height: 430px;
@@ -7701,10 +8138,13 @@ body.admin-color-light .editor-post-text-editor__link{
.wp-block-cover-image.has-parallax,
.wp-block-cover.has-parallax {
background-attachment: scroll; } }
- .wp-block-cover-image.has-background-dim::before,
- .wp-block-cover.has-background-dim::before {
- content: "";
- background-color: inherit; }
+ .wp-block-cover-image.has-background-dim,
+ .wp-block-cover.has-background-dim {
+ background-color: #000; }
+ .wp-block-cover-image.has-background-dim::before,
+ .wp-block-cover.has-background-dim::before {
+ content: "";
+ background-color: inherit; }
.wp-block-cover-image.has-background-dim:not(.has-background-gradient)::before,
.wp-block-cover-image .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim:not(.has-background-gradient)::before,
@@ -7882,8 +8322,8 @@ section.wp-block-cover-image > h2,
padding: 14px;
text-align: center; }
-.block-editor-block-list__block[data-type="core/embed"][data-align="left"],
-.block-editor-block-list__block[data-type="core/embed"][data-align="right"],
+.wp-block[data-align="left"] > .wp-block-embed,
+.wp-block[data-align="right"] > .wp-block-embed,
.wp-block-embed.alignleft,
.wp-block-embed.alignright {
max-width: 360px;
@@ -8168,6 +8608,14 @@ section.wp-block-cover-image > h2,
.blocks-gallery-grid.aligncenter .blocks-gallery-item figure {
justify-content: center; }
+h1.has-background,
+h2.has-background,
+h3.has-background,
+h4.has-background,
+h5.has-background,
+h6.has-background {
+ padding: 20px 38px; }
+
.wp-block-image {
margin-bottom: 1em; }
.wp-block-image img {
@@ -8180,9 +8628,7 @@ section.wp-block-cover-image > h2,
.wp-block-image .alignleft,
.wp-block-image .alignright,
.wp-block-image .aligncenter, .wp-block-image.is-resized {
- display: table;
- margin-left: 0;
- margin-right: 0; }
+ display: table; }
.wp-block-image .alignleft > figcaption,
.wp-block-image .alignright > figcaption,
.wp-block-image .aligncenter > figcaption, .wp-block-image.is-resized > figcaption {
@@ -8192,12 +8638,18 @@ section.wp-block-cover-image > h2,
/*rtl:ignore*/
float: left;
/*rtl:ignore*/
- margin-right: 1em; }
+ margin-left: 0;
+ margin-right: 1em;
+ margin-top: 0.5em;
+ margin-bottom: 0.5em; }
.wp-block-image .alignright {
/*rtl:ignore*/
float: right;
/*rtl:ignore*/
- margin-left: 1em; }
+ margin-right: 0;
+ margin-left: 1em;
+ margin-top: 0.5em;
+ margin-bottom: 0.5em; }
.wp-block-image .aligncenter {
margin-left: auto;
margin-right: auto; }
@@ -8277,20 +8729,20 @@ section.wp-block-cover-image > h2,
flex-wrap: wrap;
padding: 0; }
.wp-block-latest-posts.is-grid li {
- margin: 0 16px 16px 0;
+ margin: 0 20px 20px 0;
width: 100%; }
@media (min-width: 600px) {
.wp-block-latest-posts.columns-2 li {
- width: calc((100% / 2) - 16px); }
+ width: calc((100% / 2) - 20px); }
.wp-block-latest-posts.columns-3 li {
- width: calc((100% / 3) - 16px); }
+ width: calc((100% / 3) - 20px); }
.wp-block-latest-posts.columns-4 li {
- width: calc((100% / 4) - 16px); }
+ width: calc((100% / 4) - 20px); }
.wp-block-latest-posts.columns-5 li {
- width: calc((100% / 5) - 16px); }
+ width: calc((100% / 5) - 20px); }
.wp-block-latest-posts.columns-6 li {
- width: calc((100% / 6) - 16px); } }
+ width: calc((100% / 6) - 20px); } }
.wp-block-latest-posts__post-date {
display: block;
@@ -8317,6 +8769,9 @@ section.wp-block-cover-image > h2,
margin-bottom: 1em;
text-align: center; }
+.edit-post-visual-editor .wp-block-latest-posts.is-grid li {
+ margin-bottom: 20px; }
+
.wp-block-media-text {
/*!rtl:begin:ignore*/
direction: ltr;
@@ -8384,8 +8839,8 @@ section.wp-block-cover-image > h2,
grid-row: 1;
/*!rtl:end:ignore*/ }
-.wp-block-media-text > figure > img,
-.wp-block-media-text > figure > video {
+.wp-block-media-text__media img,
+.wp-block-media-text__media video {
max-width: unset;
width: 100%;
vertical-align: middle; }
@@ -8437,181 +8892,118 @@ section.wp-block-cover-image > h2,
-ms-grid-row: 1;
grid-row: 1; } }
-/*
-* Frontend: reset the default list styles
-*/
-.wp-block-navigation > ul {
- display: block;
+.wp-block-navigation__container {
list-style: none;
margin: 0;
- padding-left: 0; }
- @media (min-width: 600px) {
- .wp-block-navigation > ul {
- display: flex;
- flex-wrap: wrap; } }
- .wp-block-navigation > ul ul {
- list-style: none;
- padding-left: 0;
- margin-top: 0;
- margin-left: 0; }
- .wp-block-navigation > ul ul li {
- margin: 0; }
+ padding-left: 0;
+ display: flex;
+ flex-wrap: wrap; }
+ .is-vertical .wp-block-navigation__container {
+ display: block; }
-/*
-* Frontend: styles for submenu flyout
-*/
-.wp-block-navigation > ul li {
- z-index: 1; }
- .wp-block-navigation > ul li:hover, .wp-block-navigation > ul li:focus-within {
- cursor: pointer;
- z-index: 99999; }
- .wp-block-navigation > ul li:hover > ul,
- .wp-block-navigation > ul li:focus-within > ul,
- .wp-block-navigation > ul li ul:hover,
- .wp-block-navigation > ul li ul:focus {
- visibility: visible;
- opacity: 1;
- display: flex;
- flex-direction: column; }
+.wp-block-navigation-link {
+ display: flex;
+ align-items: center;
+ position: relative;
+ margin: 0;
+ padding: 8px; }
+ .wp-block-navigation-link .wp-block-navigation__container:empty {
+ display: none; }
-.wp-block-navigation > ul > li ul {
+.has-child .wp-block-navigation__container {
+ border: 1px solid rgba(0, 0, 0, 0.15);
+ padding: 6px 0;
+ background-color: inherit;
+ color: inherit;
position: absolute;
left: 0;
top: 100%;
- min-width: 200px;
- max-width: 200px;
+ width: fit-content;
+ z-index: 1;
opacity: 0;
transition: opacity 0.1s linear;
visibility: hidden; }
-
-/*
-* Styles shared between editor and frontend
-*/
-.wp-block-navigation,
-.wp-block-navigation .block-editor-block-list__layout {
- display: flex;
- flex-wrap: wrap; }
-
-.wp-block-navigation .block-editor-block-list__layout .block-editor-block-list__layout {
- width: 200px; }
-
-.wp-block-navigation .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block {
- margin: 0;
- width: auto; }
-
-.wp-block-navigation,
-.wp-block-navigation > .wp-block-navigation__container {
- align-items: center;
- width: 100%; }
- .wp-block-navigation > .wp-block-navigation-link,
- .wp-block-navigation > .wp-block-navigation__container > .wp-block-navigation-link {
+ .has-child .wp-block-navigation__container > .wp-block-navigation-link {
+ font-size: 15px; }
+ .has-child .wp-block-navigation__container > .wp-block-navigation-link > .wp-block-navigation-link__content {
+ flex-grow: 1; }
+ .has-child .wp-block-navigation__container > .wp-block-navigation-link > .wp-block-navigation-link__submenu-icon {
+ padding-right: 8px; }
+ @media (min-width: 782px) {
+ .has-child .wp-block-navigation__container {
+ left: 24px; }
+ .has-child .wp-block-navigation__container .wp-block-navigation__container {
+ left: calc(100% + 8px);
+ top: -7px; }
+ .has-child .wp-block-navigation__container .wp-block-navigation__container::before {
+ content: "";
+ position: absolute;
+ right: 100%;
+ height: 100%;
+ display: block;
+ width: 8px;
+ background: transparent; }
+ .has-child .wp-block-navigation__container .wp-block-navigation-link__submenu-icon svg {
+ transform: rotate(0); } }
+
+.has-child:hover {
+ cursor: pointer; }
+ .has-child:hover > .wp-block-navigation__container {
+ visibility: visible;
+ opacity: 1;
display: flex;
- margin-top: 0;
- margin-bottom: 0; }
+ flex-direction: column; }
-.wp-block-navigation .wp-block-navigation-link {
- position: relative;
- margin: 0;
- min-height: 56px;
- display: flex;
- line-height: 1.4; }
- .wp-block-navigation .wp-block-navigation-link .wp-block,
- .wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link {
- min-height: auto;
- padding: 0; }
- .wp-block-navigation .wp-block-navigation-link .wp-block .wp-block-navigation-link {
- margin: 0; }
- .wp-block-navigation .wp-block-navigation-link > .block-editor-inner-blocks {
- display: none; }
- .wp-block-navigation .wp-block-navigation-link.has-child > .wp-block-navigation__container,
- .wp-block-navigation .wp-block-navigation-link.is-editing.has-child > .block-editor-inner-blocks {
- display: flex;
- border: 1px solid rgba(0, 0, 0, 0.15);
- position: absolute;
- z-index: 1;
- top: 100%;
- left: 0; }
- .wp-block-navigation .wp-block-navigation-link.has-child > .wp-block-navigation__container .block-editor-inner-blocks,
- .wp-block-navigation .wp-block-navigation-link.has-child > .wp-block-navigation__container .wp-block-navigation__container,
- .wp-block-navigation .wp-block-navigation-link.is-editing.has-child > .block-editor-inner-blocks .block-editor-inner-blocks,
- .wp-block-navigation .wp-block-navigation-link.is-editing.has-child > .block-editor-inner-blocks .wp-block-navigation__container {
- left: 100%;
- top: -1px; }
- .wp-block-navigation .wp-block-navigation-link .block-editor-inner-blocks,
- .wp-block-navigation .wp-block-navigation-link .wp-block-navigation__container {
- background-color: inherit;
- color: inherit; }
- .wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__content {
+.has-child:focus-within {
+ cursor: pointer; }
+ .has-child:focus-within > .wp-block-navigation__container {
+ visibility: visible;
+ opacity: 1;
display: flex;
- align-items: center;
- width: max-content;
- padding: 6px 16px; }
- .wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link:first-child:not(:only-child) .wp-block-navigation-link__content {
- padding-top: 8px; }
- .wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link:last-child .wp-block-navigation-link__content {
- padding-bottom: 8px; }
- .wp-block-navigation .wp-block-navigation-link.has-child .wp-block-navigation-link__content {
- min-width: 100%;
- padding-right: 32px;
- position: relative; }
- .wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__submenu-icon {
- position: absolute;
- right: 16px; }
- .wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__submenu-icon svg {
- fill: currentColor; }
- .wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link svg {
- transform: rotate(0); }
- .wp-block-navigation .wp-block-navigation-link.has-text-color .wp-block-navigation-link__content {
+ flex-direction: column; }
+
+.wp-block-navigation-link__content {
+ text-decoration: none;
+ padding: 6px 16px; }
+ .has-text-color .wp-block-navigation-link__content {
color: inherit; }
-.wp-block-navigation .wp-block-navigation-link:not(.has-text-color) > .block-editor-inner-blocks,
-.wp-block-navigation .wp-block-navigation-link:not(.has-text-color) > .wp-block-navigation__container,
-.wp-block-navigation.is-style-light .wp-block-navigation-link:not(.has-text-color) > .block-editor-inner-blocks,
-.wp-block-navigation.is-style-light .wp-block-navigation-link:not(.has-text-color) > .wp-block-navigation__container {
+.wp-block-navigation-link__label {
+ font-size: 17px;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ word-break: normal;
+ overflow-wrap: break-word; }
+
+.wp-block-navigation-link__submenu-icon {
+ height: inherit;
+ padding: 6px 16px; }
+ .wp-block-navigation-link__submenu-icon svg {
+ fill: currentColor; }
+ @media (min-width: 782px) {
+ .wp-block-navigation-link__submenu-icon svg {
+ transform: rotate(90deg); } }
+
+.wp-block-navigation .wp-block-navigation-link:not(.has-text-color),
+.wp-block-navigation.is-style-light .wp-block-navigation-link:not(.has-text-color) {
color: #111; }
-.wp-block-navigation .wp-block-navigation-link:not(.has-background) > .block-editor-inner-blocks,
-.wp-block-navigation .wp-block-navigation-link:not(.has-background) > .wp-block-navigation__container,
-.wp-block-navigation.is-style-light .wp-block-navigation-link:not(.has-background) > .block-editor-inner-blocks,
-.wp-block-navigation.is-style-light .wp-block-navigation-link:not(.has-background) > .wp-block-navigation__container {
+.wp-block-navigation:not(.has-background) .wp-block-navigation__container,
+.wp-block-navigation.is-style-light:not(.has-background) .wp-block-navigation__container {
background-color: #fff; }
-.wp-block-navigation.is-style-dark .wp-block-navigation-link:not(.has-text-color) > .block-editor-inner-blocks,
-.wp-block-navigation.is-style-dark .wp-block-navigation-link:not(.has-text-color) > .wp-block-navigation__container {
+.wp-block-navigation.is-style-dark .wp-block-navigation-link:not(.has-text-color) {
color: #fff; }
-.wp-block-navigation.is-style-dark .wp-block-navigation-link:not(.has-background) > .block-editor-inner-blocks,
-.wp-block-navigation.is-style-dark .wp-block-navigation-link:not(.has-background) > .wp-block-navigation__container {
+.wp-block-navigation.is-style-dark:not(.has-background) .wp-block-navigation__container {
background-color: #333; }
-/*
-* Frontend: non-shared styles & overrides
-*/
-.wp-block-navigation .wp-block-navigation-link.has-child > .wp-block-navigation__container {
- display: flex;
- flex-direction: column;
- padding: 0; }
-
-/*
-* TODO: organize/untangle styles below this line
-*/
-.wp-block-navigation > ul > li > a {
- display: flex;
- align-items: center; }
-
-.wp-block-navigation > ul > li:first-of-type > a {
- padding-left: 0; }
-
-.wp-block-navigation > ul > li:last-of-type > a {
- padding-right: 0; }
-
-.wp-block-navigation.items-justified-left > ul {
+.items-justified-left > ul {
justify-content: flex-start; }
-.wp-block-navigation.items-justified-center > ul {
+.items-justified-center > ul {
justify-content: center; }
-.wp-block-navigation.items-justified-right > ul {
+.items-justified-right > ul {
justify-content: flex-end; }
.is-small-text {
@@ -8636,11 +9028,31 @@ section.wp-block-cover-image > h2,
font-style: normal; }
p.has-background {
- padding: 20px 30px; }
+ padding: 20px 38px; }
p.has-text-color a {
color: inherit; }
+.wp-block-post-author {
+ display: flex;
+ flex-wrap: wrap;
+ line-height: 1.5; }
+ .wp-block-post-author__byline {
+ width: 100%;
+ margin-top: 0;
+ margin-bottom: 0;
+ font-size: 0.8em; }
+ .wp-block-post-author__avatar {
+ margin-right: 16px; }
+ .wp-block-post-author__bio {
+ margin-top: 8px; }
+ .wp-block-post-author__content {
+ flex-grow: 1;
+ flex-basis: 0; }
+ .wp-block-post-author__name {
+ font-weight: bold;
+ margin: 0; }
+
.wp-block-pullquote {
padding: 3em 0;
margin-left: 0;
@@ -8754,6 +9166,7 @@ p.has-text-color a {
color: currentColor;
font-size: 20px;
letter-spacing: 2em;
+ /*rtl:ignore*/
padding-left: 2em;
font-family: serif; }
@@ -8835,7 +9248,7 @@ p.has-text-color a {
color: #fff; }
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook {
- background-color: #1977f2;
+ background-color: #1778f2;
color: #fff; }
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx {
@@ -8871,7 +9284,7 @@ p.has-text-color a {
color: #fff; }
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin {
- background-color: #0577b5;
+ background-color: #0d66c2;
color: #fff; }
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon {
@@ -8924,7 +9337,7 @@ p.has-text-color a {
color: #fff; }
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter {
- background-color: #21a1f3;
+ background-color: #1da1f2;
color: #fff; }
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo {
@@ -8944,7 +9357,7 @@ p.has-text-color a {
color: #fff; }
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube {
- background-color: #ff0100;
+ background-color: #f00;
color: #fff; }
.wp-block-social-links.is-style-logos-only .wp-social-link {
@@ -8979,7 +9392,7 @@ p.has-text-color a {
color: #f45800; }
.wp-block-social-links.is-style-logos-only .wp-social-link-facebook {
- color: #1977f2; }
+ color: #1778f2; }
.wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx {
color: #000; }
@@ -9006,7 +9419,7 @@ p.has-text-color a {
color: #e21b24; }
.wp-block-social-links.is-style-logos-only .wp-social-link-linkedin {
- color: #0577b5; }
+ color: #0d66c2; }
.wp-block-social-links.is-style-logos-only .wp-social-link-mastodon {
color: #3288d4; }
@@ -9046,7 +9459,7 @@ p.has-text-color a {
color: #6440a4; }
.wp-block-social-links.is-style-logos-only .wp-social-link-twitter {
- color: #21a1f3; }
+ color: #1da1f2; }
.wp-block-social-links.is-style-logos-only .wp-social-link-vimeo {
color: #1eb7ea; }
@@ -9062,7 +9475,7 @@ p.has-text-color a {
color: #fff; }
.wp-block-social-links.is-style-logos-only .wp-social-link-youtube {
- color: #ff0100; }
+ color: #f00; }
.wp-block-social-links.is-style-pill-shape .wp-social-link {
width: auto; }
@@ -9177,12 +9590,16 @@ p.wp-block-subhead {
background-color: #0693e3; }
:root .has-vivid-purple-background-color {
background-color: #9b51e0; }
+ :root .has-white-background-color {
+ background-color: #fff; }
:root .has-very-light-gray-background-color {
background-color: #eee; }
:root .has-cyan-bluish-gray-background-color {
background-color: #abb8c3; }
:root .has-very-dark-gray-background-color {
background-color: #313131; }
+ :root .has-black-background-color {
+ background-color: #000; }
:root .has-pale-pink-color {
color: #f78da7; }
:root .has-vivid-red-color {
@@ -9201,12 +9618,16 @@ p.wp-block-subhead {
color: #0693e3; }
:root .has-vivid-purple-color {
color: #9b51e0; }
+ :root .has-white-color {
+ color: #fff; }
:root .has-very-light-gray-color {
color: #eee; }
:root .has-cyan-bluish-gray-color {
color: #abb8c3; }
:root .has-very-dark-gray-color {
color: #313131; }
+ :root .has-black-color {
+ color: #000; }
:root .has-vivid-cyan-blue-to-vivid-purple-gradient-background {
background: linear-gradient(135deg, #0693e3 0%, #9b51e0 100%); }
:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background {
@@ -9244,19 +9665,26 @@ p.wp-block-subhead {
:root .has-midnight-gradient-background {
background: linear-gradient(135deg, #020381 0%, #2874fc 100%); }
+.editor-styles-wrapper .has-small-font-size,
.has-small-font-size {
font-size: 13px; }
+.editor-styles-wrapper .has-regular-font-size,
+.editor-styles-wrapper .has-normal-font-size,
.has-regular-font-size,
.has-normal-font-size {
font-size: 16px; }
+.editor-styles-wrapper .has-medium-font-size,
.has-medium-font-size {
font-size: 20px; }
+.editor-styles-wrapper .has-large-font-size,
.has-large-font-size {
font-size: 36px; }
+.editor-styles-wrapper .has-larger-font-size,
+.editor-styles-wrapper .has-huge-font-size,
.has-larger-font-size,
.has-huge-font-size {
font-size: 42px; }
@@ -9275,6 +9703,9 @@ p.wp-block-subhead {
#end-resizable-editor-section {
display: none; }
+.aligncenter {
+ clear: both; }
+
/**
* Colors
*/
@@ -9316,10 +9747,7 @@ p.wp-block-subhead {
* than the space allows.
*/
/**
- * Button states and focus styles
- */
-/**
- * Block Toolbar/Formatting Buttons
+ * Focus styles.
*/
/**
* Applies editor left position to the selector passed as argument
@@ -9350,26 +9778,32 @@ p.wp-block-subhead {
.edit-post-visual-editor .block-library-block__reusable-block-container .block-editor-writing-flow__click-redirect {
min-height: auto; }
-.block-editor-block-list__block[data-type="core/button"][data-align="center"] {
+.edit-post-visual-editor .block-library-block__reusable-block-container .is-root-container {
+ padding-left: 0;
+ padding-right: 0; }
+
+.edit-post-visual-editor .block-library-block__reusable-block-container .block-editor-writing-flow {
+ display: block; }
+
+.wp-block[data-align="center"] > .wp-block-button {
text-align: center;
margin-left: auto;
margin-right: auto; }
-.block-editor-block-list__block[data-type="core/button"][data-align="right"] {
+.wp-block[data-align="right"] > .wp-block-button {
/*!rtl:ignore*/
text-align: right; }
.wp-block-button {
- position: relative; }
- .wp-block-button [contenteditable] {
- cursor: text; }
+ position: relative;
+ cursor: text; }
.wp-block-button:not(.has-text-color):not(.is-style-outline) [data-rich-text-placeholder]::after {
color: #fff; }
- .wp-block-button .block-editor-rich-text__editable:focus {
+ .wp-block-button:focus {
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #00a0d2;
outline: 2px solid transparent;
outline-offset: -2px; }
- .wp-block-button [data-rich-text-placeholder]::after {
+ .wp-block-button[data-rich-text-placeholder]::after {
opacity: 0.8; }
.wp-block-button__inline-link {
@@ -9401,17 +9835,17 @@ div[data-type="core/button"] {
display: inline-block;
width: auto; }
-.wp-block-buttons[data-align="center"] .block-editor-block-list__layout {
+.wp-block[data-align="center"] > .wp-block-buttons {
display: flex;
align-items: center;
flex-wrap: wrap;
justify-content: center; }
-.wp-block-buttons[data-align="right"] .block-editor-block-list__layout {
+.wp-block[data-align="right"] > .wp-block-buttons {
display: flex;
justify-content: flex-end; }
-.wp-block-buttons .block-editor-block-list__layout > div:last-child {
+.wp-block-buttons .block-list-appender {
display: inline-block; }
.block-editor .wp-block-categories ul {
@@ -9419,25 +9853,12 @@ div[data-type="core/button"] {
.block-editor .wp-block-categories ul ul {
margin-top: 6px; }
-.wp-block-code .block-editor-plain-text {
- font-family: Menlo, Consolas, monaco, monospace;
- color: #23282d;
- /* Fonts smaller than 16px causes mobile safari to zoom. */
- font-size: 16px; }
- @media (min-width: 600px) {
- .wp-block-code .block-editor-plain-text {
- font-size: 13px; } }
- .wp-block-code .block-editor-plain-text:focus {
- box-shadow: none; }
+.wp-block-code > code {
+ display: block; }
.wp-block-columns .wp-block {
max-width: none; }
-.editor-styles-wrapper .block-editor-block-list__block.wp-block-column,
-.editor-styles-wrapper .block-editor-block-list__block.wp-block-columns {
- margin-top: 0;
- margin-bottom: 0; }
-
@media (min-width: 600px) {
.editor-styles-wrapper
.block-editor-block-list__block.wp-block-column:nth-child(even) {
@@ -9448,11 +9869,9 @@ div[data-type="core/button"] {
.block-editor-block-list__block.wp-block-column:not(:first-child) {
margin-left: 32px; } }
-.wp-block-column > *:first-child {
- margin-top: 0 !important; }
-
-.wp-block-column > *:last-child {
- margin-bottom: 0 !important; }
+.block-editor-block-list__block.wp-block-column.wp-block-column {
+ margin-top: 0;
+ margin-bottom: 0; }
.wp-block-cover-image.components-placeholder h2,
.wp-block-cover.components-placeholder h2 {
@@ -9462,10 +9881,6 @@ div[data-type="core/button"] {
.wp-block-cover .block-editor-block-list__layout {
width: 100%; }
-.wp-block-cover-image .block-editor-block-list__block,
-.wp-block-cover .block-editor-block-list__block {
- color: #f8f9f9; }
-
.wp-block-cover-image .wp-block-cover__inner-container,
.wp-block-cover .wp-block-cover__inner-container {
text-align: left; }
@@ -9479,11 +9894,10 @@ div[data-type="core/button"] {
.wp-block-cover .wp-block-cover__placeholder-background-options {
width: 100%; }
-[data-align="left"] .wp-block-cover-image,
-[data-align="right"] .wp-block-cover-image, [data-align="left"]
-.wp-block-cover,
-[data-align="right"]
-.wp-block-cover {
+[data-align="left"] > .wp-block-cover,
+[data-align="right"] > .wp-block-cover,
+[data-align="left"] > .wp-block-cover-image,
+[data-align="right"] > .wp-block-cover-image {
max-width: 290px;
width: 100%; }
@@ -9497,11 +9911,6 @@ div[data-type="core/button"] {
margin-left: 0;
margin-right: 0;
clear: both; }
- @media (min-width: 600px) {
- .wp-block-embed {
- min-width: 360px; }
- .wp-block-embed.components-placeholder {
- min-width: 0; } }
.wp-block-embed.is-loading {
display: flex;
flex-direction: column;
@@ -9867,7 +10276,7 @@ body.admin-color-light .blocks-gallery-item figure.is-selected {
.blocks-gallery-item .is-selected .block-library-gallery-item__inline-menu {
background: #fff;
border: 1px solid #1e1e1e;
- border-radius: 4px;
+ border-radius: 2px;
transition: box-shadow 0.2s ease-out; }
@media (prefers-reduced-motion: reduce) {
.blocks-gallery-item .is-selected .block-library-gallery-item__move-menu,
@@ -9935,48 +10344,48 @@ body.admin-color-light .blocks-gallery-item figure.is-selected {
/**
* Group: All Alignment Settings
*/
-.wp-block[data-type="core/group"] .block-editor-block-list__insertion-point {
- left: 0;
- right: 0; }
-
-.wp-block[data-type="core/group"] > div > .wp-block-group.has-background > .wp-block-group__inner-container > .block-editor-inner-blocks {
- margin-top: -32px;
- margin-bottom: -32px; }
-
-.wp-block[data-type="core/group"] > div > .wp-block-group > .wp-block-group__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block[data-align="full"] {
- margin-left: auto;
- margin-right: auto;
- padding-left: 28px;
- padding-right: 28px; }
- @media (min-width: 600px) {
- .wp-block[data-type="core/group"] > div > .wp-block-group > .wp-block-group__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block[data-align="full"] {
- padding-left: 58px;
- padding-right: 58px; } }
-
-.wp-block[data-type="core/group"] > div > .wp-block-group.has-background > .wp-block-group__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block[data-align="full"] {
- margin-left: -30px;
- width: calc(100% + 60px); }
+.wp-block-group {
+ margin-top: 0;
+ margin-bottom: 0; }
+ .wp-block-group .block-editor-block-list__insertion-point {
+ left: 0;
+ right: 0; }
+ .wp-block-group > div > .wp-block-group.has-background > .wp-block-group__inner-container > .block-editor-inner-blocks {
+ margin-top: -32px;
+ margin-bottom: -32px; }
+ .wp-block-group > div > .wp-block-group > .wp-block-group__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block[data-align="full"] {
+ margin-left: auto;
+ margin-right: auto;
+ padding-left: 28px;
+ padding-right: 28px; }
+ @media (min-width: 600px) {
+ .wp-block-group > div > .wp-block-group > .wp-block-group__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block[data-align="full"] {
+ padding-left: 58px;
+ padding-right: 58px; } }
+ .wp-block-group > div > .wp-block-group.has-background > .wp-block-group__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block[data-align="full"] {
+ margin-left: -30px;
+ width: calc(100% + 60px); }
/**
* Group: Full Width Alignment
*/
-.wp-block[data-type="core/group"][data-align="full"] > div > .wp-block-group > .wp-block-group__inner-container > .block-editor-inner-blocks {
+.wp-block[data-align="full"] .wp-block-group > div > .wp-block-group > .wp-block-group__inner-container > .block-editor-inner-blocks {
margin-left: auto;
margin-right: auto;
padding-left: 0;
padding-right: 0; }
- .wp-block[data-type="core/group"][data-align="full"] > div > .wp-block-group > .wp-block-group__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout {
+ .wp-block[data-align="full"] .wp-block-group > div > .wp-block-group > .wp-block-group__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout {
margin-left: 0;
margin-right: 0; }
-.wp-block[data-type="core/group"][data-align="full"] > div > .wp-block-group > .wp-block-group__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block[data-align="full"] {
+.wp-block[data-align="full"] .wp-block-group > div > .wp-block-group > .wp-block-group__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block[data-align="full"] {
padding-right: 0;
padding-left: 0;
left: 0;
width: 100%;
max-width: none; }
-.wp-block[data-type="core/group"][data-align="full"] > div > .wp-block-group.has-background > .wp-block-group__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block[data-align="full"] {
+.wp-block[data-align="full"] .wp-block-group > div > .wp-block-group.has-background > .wp-block-group__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block[data-align="full"] {
width: calc(100% + 60px); }
[data-type="core/group"].is-selected .block-list-appender {
@@ -10010,10 +10419,11 @@ body.admin-color-light .blocks-gallery-item figure.is-selected {
.wp-block-html .block-editor-plain-text:focus {
box-shadow: none; }
+figure.wp-block-image:not(.wp-block) {
+ margin: 0; }
+
.wp-block-image {
- position: relative;
- margin-left: 0;
- margin-right: 0; }
+ position: relative; }
.wp-block-image.is-transient img {
opacity: 0.3; }
.wp-block-image figcaption img {
@@ -10035,14 +10445,6 @@ body.admin-color-light .blocks-gallery-item figure.is-selected {
.wp-block-image.is-focused .components-resizable-box__handle {
display: block; }
-.block-editor-block-list__block[data-type="core/image"][data-align="center"] .wp-block-image {
- margin-left: auto;
- margin-right: auto; }
-
-.block-editor-block-list__block[data-type="core/image"][data-align="center"][data-resized="false"] .wp-block-image > div {
- margin-left: auto;
- margin-right: auto; }
-
.block-editor-block-list__block[data-type="core/image"] .block-editor-block-toolbar .block-editor-url-input__button-modal {
position: absolute;
left: 0;
@@ -10052,17 +10454,26 @@ body.admin-color-light .blocks-gallery-item figure.is-selected {
.block-editor-block-list__block[data-type="core/image"] .block-editor-block-toolbar .block-editor-url-input__button-modal {
margin: -1px; } }
-[data-type="core/image"][data-align="center"] figure,
-[data-type="core/image"][data-align="left"] figure,
-[data-type="core/image"][data-align="right"] figure {
- margin: 0; }
-
-[data-type="core/image"][data-align="wide"] figure img,
-[data-type="core/image"][data-align="full"] figure img {
+[data-align="wide"] > .wp-block-image img,
+[data-align="full"] > .wp-block-image img {
width: 100%; }
-[data-type="core/image"] figure.is-resized {
- margin: 0; }
+.wp-block[data-align="left"] > .wp-block-image {
+ margin-right: 1em;
+ margin-left: 0;
+ margin-top: 0.5em;
+ margin-bottom: 0.5em; }
+
+.wp-block[data-align="right"] > .wp-block-image {
+ margin-left: 1em;
+ margin-right: 0;
+ margin-top: 0.5em;
+ margin-bottom: 0.5em; }
+
+.wp-block[data-align="center"] > .wp-block-image {
+ margin-left: auto;
+ margin-right: auto;
+ text-align: center; }
.wp-block-latest-comments.has-avatars .avatar {
margin-right: 10px; }
@@ -10084,16 +10495,14 @@ body.admin-color-light .blocks-gallery-item figure.is-selected {
.wp-block-latest-posts li a > div {
display: inline; }
-.wp-block-legacy-widget__edit-container,
-.wp-block-legacy-widget__preview {
- padding-left: 2.5em;
- padding-right: 2.5em; }
-
.wp-block-legacy-widget__edit-container .widget-inside {
border: none;
display: block;
box-shadow: none; }
+.wp-block-legacy-widget__edit-container .widget.open {
+ z-index: 0; }
+
.wp-block-legacy-widget__update-button {
margin-left: auto;
display: block; }
@@ -10101,12 +10510,14 @@ body.admin-color-light .blocks-gallery-item figure.is-selected {
.wp-block-legacy-widget__preview {
overflow: auto; }
+.wp-block-legacy-widget__preview,
+.wp-block-legacy-widget__edit-container,
+.wp-block-legacy-widget__edit-widget-title {
+ padding: 8px 14px; }
+
.wp-block-legacy-widget__edit-widget-title {
- margin: -14px -13px 0;
background: #f8f9f9;
color: #555d66;
- top: -13px;
- position: relative;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
font-size: 13px;
padding: 8px 14px;
@@ -10152,7 +10563,7 @@ body.admin-color-light .blocks-gallery-item figure.is-selected {
-ms-grid-row: 1;
grid-row: 1; }
-.wp-block-media-text .block-editor-inner-blocks {
+.wp-block-media-text > .block-editor-inner-blocks {
word-break: break-word;
-ms-grid-column: 2;
grid-column: 2;
@@ -10235,48 +10646,45 @@ body.admin-color-light .blocks-gallery-item figure.is-selected {
content: "";
position: absolute;
top: calc(50%);
- left: 0;
- right: 0;
- border-top: 3px dashed #ccd0d4; }
-
-[data-type="core/navigation"] .wp-block-navigation .block-editor-inner-blocks {
- flex: 1; }
-
-[data-type="core/navigation"] .wp-block-navigation .block-editor-inner-blocks > .block-editor-block-list__layout {
- margin-left: 0;
- margin-right: 0; }
-
-[data-type="core/navigation"] .wp-block-navigation.items-justification-left .block-editor-inner-blocks > .block-editor-block-list__layout {
- justify-content: flex-start; }
-
-[data-type="core/navigation"] .wp-block-navigation.items-justification-center .block-editor-inner-blocks > .block-editor-block-list__layout {
- justify-content: center; }
-
-[data-type="core/navigation"] .wp-block-navigation.items-justification-right .block-editor-inner-blocks > .block-editor-block-list__layout {
- justify-content: flex-end; }
-
-[data-type="core/navigation"] .wp-block-navigation .block-editor-block-list__block::before {
- left: 0;
- right: 0; }
-
-[data-type="core/navigation"].is-selected .wp-block-navigation .block-editor-block-list__block::before,
-[data-type="core/navigation"].has-child-selected .wp-block-navigation .block-editor-block-list__block::before {
- border-color: transparent !important; }
+ left: 0;
+ right: 0;
+ border-top: 3px dashed #ccd0d4; }
-[data-type="core/navigation"] .wp-block-navigation .block-editor-block-list__insertion-point {
- display: none; }
+.editor-styles-wrapper .wp-block-navigation ul,
+.editor-styles-wrapper .wp-block-navigation ol {
+ margin-bottom: 0;
+ margin-left: 0;
+ padding-left: 0; }
-[data-type="core/navigation"] .wp-block-navigation .wp-block-navigation-link.is-selected .block-editor-rich-text__editable:focus {
- min-width: 20px; }
+.editor-styles-wrapper .wp-block-navigation .block-editor-block-list__block {
+ margin: 0; }
.wp-block-navigation .block-list-appender {
margin: 0;
display: flex;
align-items: center; }
+.wp-block-navigation.is-vertical .block-list-appender {
+ margin: 8px; }
+
.wp-block-navigation__inserter-content {
padding: 16px; }
+.wp-block-navigation__container.is-parent-of-selected-block {
+ visibility: visible;
+ opacity: 1; }
+
+.has-child > .wp-block-navigation__container, .has-child:hover > .wp-block-navigation__container {
+ opacity: 0;
+ visibility: hidden; }
+
+.has-child.is-selected > .wp-block-navigation__container, .has-child.has-child-selected > .wp-block-navigation__container {
+ opacity: 1;
+ visibility: visible; }
+
+.has-child .wp-block-navigation__container .block-list-appender .block-editor-button-block-appender {
+ margin-left: 16px; }
+
/**
* Colors Selector component
*/
@@ -10340,9 +10748,6 @@ body.admin-color-light .blocks-gallery-item figure.is-selected {
.wp-block-navigation-link.is-editing, .wp-block-navigation-link.is-selected {
min-width: 20px; }
-.wp-block-navigation-link.has-link .wp-block-navigation-link__label {
- text-decoration: underline; }
-
.wp-block-navigation-link .block-editor-rich-text__editable.is-selected:not(.keep-placeholder-on-focus):not(:focus)[data-rich-text-placeholder]::after {
display: inline-block; }
@@ -10400,36 +10805,40 @@ body.admin-color-light .blocks-gallery-item figure.is-selected {
.block-editor-block-list__block[data-type="core/paragraph"].has-drop-cap:focus {
min-height: auto !important; }
-.block-editor-block-list__block[data-type="core/paragraph"].is-selected::before {
- position: absolute;
- z-index: 1;
- pointer-events: none;
- content: "";
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- animation: block-editor-block-list__block-fade-out-animation 0.3s ease-out 0.2s;
- animation-fill-mode: forwards; }
- @media (prefers-reduced-motion: reduce) {
- .block-editor-block-list__block[data-type="core/paragraph"].is-selected::before {
- animation-duration: 1ms; } }
+.wp-block-post-excerpt__excerpt.is-inline {
+ display: inline-block; }
-.block-editor-block-list__block[data-type="core/paragraph"].is-selected:not(.is-typing)::before {
- background: rgba(0, 0, 0, 0.03); }
- .is-dark-theme .block-editor-block-list__block[data-type="core/paragraph"].is-selected:not(.is-typing)::before {
- background: rgba(255, 255, 255, 0.1); }
+.block-editor__container .wp-block-post-author {
+ display: flex;
+ flex-wrap: wrap;
+ line-height: 1.5; }
-@keyframes block-editor-block-list__block-fade-out-animation {
- from {
- opacity: 1; }
- to {
- opacity: 0; } }
+.wp-block-post-author__byline {
+ color: #6c7781;
+ font-size: 13px;
+ margin-top: 0;
+ position: relative;
+ font-style: normal; }
-.wp-block-post-excerpt__excerpt.is-inline {
- display: inline-block; }
+.wp-block-post-author__content {
+ flex-grow: 1;
+ flex-basis: 0; }
+
+.block-editor__container .wp-block-post-author__avatar img {
+ margin: 0; }
+
+.block-editor__container .wp-block-post-author__name {
+ margin: 0;
+ margin-top: -8px;
+ margin-bottom: -8px;
+ font-weight: bold; }
-.block-editor-block-list__block[data-type="core/pullquote"][data-align="left"] p, .block-editor-block-list__block[data-type="core/pullquote"][data-align="right"] p {
+.block-editor__container .wp-block-post-author__bio {
+ margin: 0;
+ margin-top: 16px; }
+
+.wp-block[data-align="left"] > .wp-block-pullquote p,
+.wp-block[data-align="right"] > .wp-block-pullquote p {
font-size: 20px; }
.wp-block-pullquote blockquote p {
@@ -10459,20 +10868,20 @@ body.admin-color-light .blocks-gallery-item figure.is-selected {
.wp-block-rss li a > div {
display: inline; }
-.blocks-rss__placeholder-form {
+.wp-block-rss__placeholder-form {
display: flex;
align-items: stretch; }
- .blocks-rss__placeholder-form > * {
+ .wp-block-rss__placeholder-form > * {
margin-bottom: 8px; }
@media (min-width: 782px) {
- .blocks-rss__placeholder-form > * {
+ .wp-block-rss__placeholder-form > * {
margin-bottom: 0; } }
-.blocks-rss__placeholder-input {
+.wp-block-rss__placeholder-input {
display: flex;
align-items: stretch;
flex-grow: 1; }
- .blocks-rss__placeholder-input .components-base-control__field {
+ .wp-block-rss__placeholder-input .components-base-control__field {
margin: 0;
display: flex;
align-items: stretch;
@@ -10520,15 +10929,15 @@ body.admin-color-light .blocks-gallery-item figure.is-selected {
font-weight: 600;
flex-shrink: 0; }
.wp-block-shortcode .block-editor-plain-text {
- width: 80%;
max-height: 250px; }
.wp-block-shortcode .dashicon {
margin-right: 8px; }
-.wp-social-link {
+.wp-block-social-links .wp-social-link button {
+ color: currentColor;
padding: 6px; }
-.wp-block-social-links.is-style-pill-shape .wp-social-link {
+.wp-block-social-links.is-style-pill-shape .wp-social-link button {
padding-left: 16px;
padding-right: 16px; }
@@ -10536,41 +10945,19 @@ body.admin-color-light .blocks-gallery-item figure.is-selected {
display: inline-block;
margin-left: 8px; }
-.wp-block-social-links .block-editor-block-list__layout {
- display: flex;
- justify-content: flex-start; }
-
-[data-type="core/social-links"] .wp-block-social-links > .block-editor-inner-blocks > .block-editor-block-list__layout {
- margin-left: 0;
- margin-right: 0; }
-
-[data-type="core/social-links"] .wp-block-social-links > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block {
- width: auto;
- padding-left: 0;
- padding-right: 0;
- margin-left: 0;
- margin-right: 0;
- margin-top: 0;
- margin-bottom: 0; }
-
-[data-type="core/social-links"] .wp-block-social-links > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block::before {
- border-right: none;
- border-top: none;
- border-bottom: none; }
-
-[data-type="core/social-links"].is-selected .wp-block-social-links .block-editor-block-list__block::before,
-[data-type="core/social-links"].has-child-selected .wp-block-social-links .block-editor-block-list__block::before {
- border-color: transparent !important; }
+.editor-styles-wrapper .wp-block-social-link {
+ margin: 0;
+ margin-right: 8px; }
-[data-type="core/social-links"] .wp-block-social-links .block-editor-block-list__insertion-point {
- display: none; }
+.editor-styles-wrapper .wp-block-social-links {
+ padding: 0; }
.wp-block-social-links .block-list-appender {
margin: 0;
display: flex;
align-items: center; }
-[data-type="core/social-links"][data-align="center"] .wp-block-social-links {
+.wp-block[data-align="center"] > .wp-block-social-links {
justify-content: center; }
.block-editor-block-preview__content .wp-social-link:disabled {
@@ -10606,9 +10993,13 @@ body.admin-color-light .blocks-gallery-item figure.is-selected {
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #007cba;
outline: 2px solid transparent; }
-.block-library-spacer__resize-container.is-selected {
+.is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block[data-type="core/social-link"].is-selected::after,
+.block-editor-block-list__layout .block-editor-block-list__block[data-type="core/social-link"]:not([contenteditable]):focus::after {
+ right: 8px; }
+
+.block-library-spacer__resize-container.has-show-handle {
background: #f3f4f5; }
- .is-dark-theme .block-library-spacer__resize-container.is-selected {
+ .is-dark-theme .block-library-spacer__resize-container.has-show-handle {
background: rgba(255, 255, 255, 0.15); }
.block-library-spacer__resize-container {
@@ -10622,19 +11013,25 @@ body.admin-color-light .blocks-gallery-item figure.is-selected {
font-size: 1.1em;
font-style: italic; }
-.block-editor-block-list__block[data-type="core/table"][data-align="left"], .block-editor-block-list__block[data-type="core/table"][data-align="right"], .block-editor-block-list__block[data-type="core/table"][data-align="center"] {
+.wp-block[data-align="left"] > .wp-block-table,
+.wp-block[data-align="right"] > .wp-block-table,
+.wp-block[data-align="center"] > .wp-block-table {
height: auto; }
- .block-editor-block-list__block[data-type="core/table"][data-align="left"] table, .block-editor-block-list__block[data-type="core/table"][data-align="right"] table, .block-editor-block-list__block[data-type="core/table"][data-align="center"] table {
+ .wp-block[data-align="left"] > .wp-block-table table,
+ .wp-block[data-align="right"] > .wp-block-table table,
+ .wp-block[data-align="center"] > .wp-block-table table {
width: auto; }
- .block-editor-block-list__block[data-type="core/table"][data-align="left"] td,
- .block-editor-block-list__block[data-type="core/table"][data-align="left"] th, .block-editor-block-list__block[data-type="core/table"][data-align="right"] td,
- .block-editor-block-list__block[data-type="core/table"][data-align="right"] th, .block-editor-block-list__block[data-type="core/table"][data-align="center"] td,
- .block-editor-block-list__block[data-type="core/table"][data-align="center"] th {
+ .wp-block[data-align="left"] > .wp-block-table td,
+ .wp-block[data-align="left"] > .wp-block-table th,
+ .wp-block[data-align="right"] > .wp-block-table td,
+ .wp-block[data-align="right"] > .wp-block-table th,
+ .wp-block[data-align="center"] > .wp-block-table td,
+ .wp-block[data-align="center"] > .wp-block-table th {
word-break: break-word; }
-.block-editor-block-list__block[data-type="core/table"][data-align="center"] {
+.wp-block[data-align="center"] > .wp-block-table {
text-align: initial; }
- .block-editor-block-list__block[data-type="core/table"][data-align="center"] table {
+ .wp-block[data-align="center"] > .wp-block-table table {
margin: 0 auto; }
.wp-block-table {
@@ -10699,8 +11096,6 @@ body.admin-color-light .blocks-gallery-item figure.is-selected {
width: 100%; }
.wp-block-template-part__placeholder-preview .block-editor-block-preview__container {
padding: 1px; }
- .wp-block-template-part__placeholder-preview .block-editor-block-preview__content {
- position: initial; }
.wp-block-template-part__placeholder-preview-title {
font-size: 15px;
@@ -10718,16 +11113,15 @@ pre.wp-block-verse {
padding: 1em;
overflow: auto; }
-.block-editor-block-list__block[data-align="center"] {
+.wp-block[data-align="center"] > .wp-block-video {
text-align: center; }
+.editor-video-poster-control .components-base-control__label {
+ display: block; }
+
.editor-video-poster-control .components-button {
- display: block;
margin-right: 8px; }
-.editor-video-poster-control .components-button + .components-button {
- margin-top: 1em; }
-
/**
* Import styles from internal editor components used by the blocks.
*/
@@ -10762,11 +11156,9 @@ pre.wp-block-verse {
margin: 0 0 0 8px; } }
.is-navigate-mode .is-selected .reusable-block-edit-panel {
- border-color: #007cba;
- border-style: solid;
- border-bottom: 0; }
+ box-shadow: 0 0 0 1px #007cba; }
.is-dark-theme .is-navigate-mode .is-selected .reusable-block-edit-panel {
- border-color: #007cba; }
+ box-shadow: 0 0 0 1px #007cba; }
/**
* Editor Normalization Styles
@@ -10774,7 +11166,7 @@ pre.wp-block-verse {
* These are only output in the editor, but styles here are NOT prefixed .editor-styles-wrapper.
* This allows us to create normalization styles that are easily overridden by editor styles.
*/
-.editor-styles-wrapper .block-editor-block-list__block {
+.block-editor-block-list__block {
margin-top: 28px;
margin-bottom: 28px; }
@@ -10822,10 +11214,7 @@ pre.wp-block-verse {
* than the space allows.
*/
/**
- * Button states and focus styles
- */
-/**
- * Block Toolbar/Formatting Buttons
+ * Focus styles.
*/
/**
* Applies editor left position to the selector passed as argument
@@ -10890,6 +11279,9 @@ pre.wp-block-verse {
.wp-block-navigation ul li {
list-style: none; }
+.wp-block-navigation-link.wp-block-navigation-link {
+ margin: 0; }
+
.wp-block-quote {
border-left: 4px solid #000;
margin: 0 0 28px 0;
@@ -10998,10 +11390,7 @@ pre.wp-block-verse {
* than the space allows.
*/
/**
- * Button states and focus styles
- */
-/**
- * Block Toolbar/Formatting Buttons
+ * Focus styles.
*/
/**
* Applies editor left position to the selector passed as argument
@@ -11019,32 +11408,255 @@ pre.wp-block-verse {
/**
* Reset the WP Admin page styles for Gutenberg-like pages.
*/
-@media (min-width: 782px) {
- body.js.is-fullscreen-mode {
- margin-top: -46px;
- height: calc(100% + 46px); } }
- @media (min-width: 782px) and (min-width: 782px) {
- body.js.is-fullscreen-mode {
- margin-top: -32px;
- height: calc(100% + 32px); } }
+.components-panel__header.interface-complementary-area-header__small {
+ background: #fff;
+ padding-right: 4px; }
+ .components-panel__header.interface-complementary-area-header__small .interface-complementary-area-header__small-title {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ width: 100%; }
+ @media (min-width: 782px) {
+ .components-panel__header.interface-complementary-area-header__small {
+ display: none; } }
+
+.interface-complementary-area-header {
+ padding-right: 4px;
+ background: #f3f4f5; }
+ .interface-complementary-area-header .components-button.has-icon {
+ display: none;
+ margin-left: auto; }
+ .interface-complementary-area-header .components-button.has-icon ~ .components-button {
+ margin-left: 0; }
+ @media (min-width: 782px) {
+ .interface-complementary-area-header .components-button.has-icon {
+ display: flex; } }
+
+.interface-complementary-area {
+ background: #fff;
+ color: #555d66;
+ overflow: visible; }
+ @media (min-width: 600px) {
+ .interface-complementary-area {
+ z-index: auto;
+ height: 100%;
+ overflow: auto;
+ -webkit-overflow-scrolling: touch; } }
+ @media (min-width: 782px) {
+ .interface-complementary-area {
+ width: 280px; } }
+ .interface-complementary-area > .components-panel {
+ border-left: none;
+ border-right: none;
+ overflow: auto;
+ -webkit-overflow-scrolling: touch;
+ height: auto;
+ max-height: calc(100vh - 146px);
+ margin-top: -1px;
+ margin-bottom: -1px;
+ position: relative; }
+ @media (min-width: 600px) {
+ .interface-complementary-area > .components-panel {
+ overflow: visible;
+ height: auto;
+ max-height: none; } }
+ .interface-complementary-area > .components-panel .components-panel__header {
+ position: fixed;
+ z-index: 1;
+ top: 0;
+ left: 0;
+ right: 0;
+ height: 50px; }
+ @media (min-width: 600px) {
+ .interface-complementary-area > .components-panel .components-panel__header {
+ position: inherit;
+ top: auto;
+ left: auto;
+ right: auto; } }
+ .interface-complementary-area p {
+ margin-top: 0; }
+ .interface-complementary-area h2,
+ .interface-complementary-area h3 {
+ font-size: 13px;
+ color: #555d66;
+ margin-bottom: 1.5em; }
+ .interface-complementary-area hr {
+ border-top: none;
+ border-bottom: 1px solid #e2e4e7;
+ margin: 1.5em 0; }
+ .interface-complementary-area div.components-toolbar-group,
+ .interface-complementary-area div.components-toolbar {
+ box-shadow: none;
+ margin-bottom: 1.5em; }
+ .interface-complementary-area div.components-toolbar-group:last-child,
+ .interface-complementary-area div.components-toolbar:last-child {
+ margin-bottom: 0; }
+ .interface-complementary-area .block-editor-skip-to-selected-block:focus {
+ top: auto;
+ right: 10px;
+ bottom: 10px;
+ left: auto; }
@media (min-width: 782px) {
+ body.js.is-fullscreen-mode {
+ margin-top: -32px;
+ height: calc(100% + 32px); }
body.js.is-fullscreen-mode #adminmenumain,
body.js.is-fullscreen-mode #wpadminbar {
display: none; }
body.js.is-fullscreen-mode #wpcontent,
body.js.is-fullscreen-mode #wpfooter {
- margin-left: 0; }
- body.js.is-fullscreen-mode .edit-post-header {
- transform: translateY(-100%);
- animation: edit-post-fullscreen-mode__slide-in-animation 0.1s forwards; } }
- @media (min-width: 782px) and (prefers-reduced-motion: reduce) {
- body.js.is-fullscreen-mode .edit-post-header {
- animation-duration: 1ms; } }
+ margin-left: 0; } }
+
+html.interface-interface-skeleton__html-container {
+ position: fixed;
+ width: 100%; }
+ @media (min-width: 782px) {
+ html.interface-interface-skeleton__html-container {
+ position: initial;
+ width: initial; } }
+
+.interface-interface-skeleton {
+ display: flex;
+ flex-direction: column;
+ height: auto;
+ max-height: 100%;
+ position: fixed;
+ top: 46px;
+ left: 0;
+ right: 0;
+ bottom: 0; }
+ @media (min-width: 783px) {
+ .interface-interface-skeleton {
+ top: 32px; }
+ .is-fullscreen-mode .interface-interface-skeleton {
+ top: 0; } }
+
+.interface-interface-skeleton {
+ /* Set left position when auto-fold is not on the body element. */
+ left: 0; }
+ @media (min-width: 783px) {
+ .interface-interface-skeleton {
+ left: 160px; } }
+
+.auto-fold .interface-interface-skeleton {
+ /* Auto fold is when on smaller breakpoints, nav menu auto collapses. */ }
+ @media (min-width: 783px) {
+ .auto-fold .interface-interface-skeleton {
+ left: 36px; } }
+ @media (min-width: 961px) {
+ .auto-fold .interface-interface-skeleton {
+ left: 160px; } }
+
+/* Sidebar manually collapsed. */
+.folded .interface-interface-skeleton {
+ left: 0; }
+ @media (min-width: 783px) {
+ .folded .interface-interface-skeleton {
+ left: 36px; } }
+
+/* Mobile menu opened. */
+@media (max-width: 783px) {
+ .auto-fold .wp-responsive-open .interface-interface-skeleton {
+ left: 190px; } }
+
+/* In small screens with responsive menu expanded there is small white space. */
+@media (max-width: 600px) {
+ .auto-fold .wp-responsive-open .interface-interface-skeleton {
+ margin-left: -18px; } }
+
+body.is-fullscreen-mode .interface-interface-skeleton {
+ left: 0 !important; }
+
+.interface-interface-skeleton__body {
+ flex-grow: 1;
+ display: flex;
+ overflow: auto;
+ overscroll-behavior-y: none; }
+
+.interface-interface-skeleton__content {
+ flex-grow: 1;
+ display: flex;
+ flex-direction: column;
+ overflow: auto; }
+
+.interface-interface-skeleton__left-sidebar,
+.interface-interface-skeleton__sidebar {
+ display: block;
+ width: auto;
+ flex-shrink: 0;
+ position: absolute;
+ z-index: 100000;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ background: #fff;
+ color: #1e1e1e; }
+ @media (min-width: 782px) {
+ .interface-interface-skeleton__left-sidebar,
+ .interface-interface-skeleton__sidebar {
+ position: relative !important;
+ z-index: 90; } }
+
+@media (min-width: 782px) {
+ .interface-interface-skeleton__sidebar {
+ overflow: auto;
+ border-left: 1px solid #e2e4e7; } }
+
+@media (min-width: 782px) {
+ .interface-interface-skeleton__left-sidebar {
+ border-right: 1px solid #e2e4e7; } }
+
+.interface-interface-skeleton__header {
+ flex-shrink: 0;
+ height: auto;
+ border-bottom: 1px solid #e2e4e7;
+ z-index: 30;
+ color: #1e1e1e;
+ position: -webkit-sticky;
+ position: sticky;
+ top: 0; }
+ @media (min-width: 600px) {
+ .interface-interface-skeleton__header {
+ position: initial;
+ top: 0; } }
+
+.interface-interface-skeleton__footer {
+ height: auto;
+ flex-shrink: 0;
+ border-top: 1px solid #e2e4e7;
+ color: #1e1e1e;
+ display: none; }
+ @media (min-width: 782px) {
+ .interface-interface-skeleton__footer {
+ display: block; } }
+
+.interface-interface-skeleton__actions {
+ z-index: 100000;
+ position: fixed !important;
+ top: -9999em;
+ bottom: auto;
+ left: auto;
+ right: 0;
+ width: 280px;
+ color: #1e1e1e; }
+ .interface-interface-skeleton__actions:focus {
+ top: auto;
+ bottom: 0; }
-@keyframes edit-post-fullscreen-mode__slide-in-animation {
- 100% {
- transform: translateY(0%); } }
+.interface-pinned-items {
+ display: none; }
+ @media (min-width: 600px) {
+ .interface-pinned-items {
+ display: flex; } }
+ .interface-pinned-items .components-button {
+ margin-left: 4px; }
+ .interface-pinned-items .components-button.is-pressed {
+ margin-left: 5px; }
+ .interface-pinned-items .components-button svg {
+ max-width: 24px;
+ max-height: 24px; }
.edit-post-header {
height: 60px;
@@ -11065,31 +11677,33 @@ pre.wp-block-verse {
.edit-post-header__toolbar {
display: flex;
flex-grow: 1;
- padding-left: 24px; }
+ padding-left: 8px; }
+ @media (min-width: 600px) {
+ .edit-post-header__toolbar {
+ padding-left: 24px; } }
+ .edit-post-header__toolbar .table-of-contents {
+ display: none; }
+ @media (min-width: 600px) {
+ .edit-post-header__toolbar .table-of-contents {
+ display: block; } }
.edit-post-header__settings {
display: inline-flex;
align-items: center;
flex-wrap: wrap;
- padding-right: 16px; }
+ padding-right: 4px; }
+ @media (min-width: 600px) {
+ .edit-post-header__settings {
+ padding-right: 16px; } }
/**
* Buttons in the Toolbar
*/
-.edit-post-header__toolbar .block-editor-inserter__toggle {
- min-width: 32px;
- height: 32px;
- margin-right: 8px; }
-
-.edit-post-header__settings .components-button.is-pressed {
- color: #fff;
- background: #1e1e1e; }
-
.edit-post-header__settings .components-button.editor-post-save-draft,
.edit-post-header__settings .editor-post-saved-state,
.edit-post-header__settings .components-button.editor-post-switch-to-draft,
.edit-post-header__settings .components-button.editor-post-preview,
-.edit-post-header__settings .components-button.editor-post-preview__dropdown,
+.edit-post-header__settings .components-button.block-editor-post-preview__dropdown,
.edit-post-header__settings .components-button.editor-post-publish-button,
.edit-post-header__settings .components-button.editor-post-publish-panel__toggle {
padding: 0 6px;
@@ -11099,12 +11713,29 @@ pre.wp-block-verse {
.edit-post-header__settings .editor-post-saved-state,
.edit-post-header__settings .components-button.editor-post-switch-to-draft,
.edit-post-header__settings .components-button.editor-post-preview,
- .edit-post-header__settings .components-button.editor-post-preview__dropdown,
+ .edit-post-header__settings .components-button.block-editor-post-preview__dropdown,
.edit-post-header__settings .components-button.editor-post-publish-button,
.edit-post-header__settings .components-button.editor-post-publish-panel__toggle {
padding: 0 12px;
margin-right: 12px; } }
+.edit-post-header-preview__grouping-external {
+ display: flex;
+ position: relative;
+ padding-bottom: 0; }
+
+.edit-post-header-preview__button-external {
+ padding-left: 8px;
+ margin-right: auto;
+ width: 100%;
+ display: flex;
+ justify-content: flex-start; }
+ .edit-post-header-preview__button-external svg {
+ margin-right: 8px; }
+
+.edit-post-post-preview-dropdown .components-popover__content {
+ padding-bottom: 0; }
+
.edit-post-fullscreen-mode-close.has-icon {
display: none; }
@media (min-width: 782px) {
@@ -11123,21 +11754,21 @@ pre.wp-block-verse {
.edit-post-fullscreen-mode-close.has-icon:active {
color: #fff; }
.edit-post-fullscreen-mode-close.has-icon:focus {
- box-shadow: inset 0 0 0 2px rgb(0, 124, 186), inset 0 0 0 3px #fff; }
+ box-shadow: inset 0 0 0 1.5px #007cba, inset 0 0 0 2.5px #fff; }
body.admin-color-sunrise .edit-post-fullscreen-mode-close.has-icon:focus {
- box-shadow: inset 0 0 0 2px rgb(209, 134, 74), inset 0 0 0 3px #fff; }
+ box-shadow: inset 0 0 0 1.5px #d1864a, inset 0 0 0 2.5px #fff; }
body.admin-color-ocean .edit-post-fullscreen-mode-close.has-icon:focus {
- box-shadow: inset 0 0 0 2px rgb(163, 185, 162), inset 0 0 0 3px #fff; }
+ box-shadow: inset 0 0 0 1.5px #a3b9a2, inset 0 0 0 2.5px #fff; }
body.admin-color-midnight .edit-post-fullscreen-mode-close.has-icon:focus {
- box-shadow: inset 0 0 0 2px rgb(225, 77, 67), inset 0 0 0 3px #fff; }
+ box-shadow: inset 0 0 0 1.5px #e14d43, inset 0 0 0 2.5px #fff; }
body.admin-color-ectoplasm .edit-post-fullscreen-mode-close.has-icon:focus {
- box-shadow: inset 0 0 0 2px rgb(167, 182, 86), inset 0 0 0 3px #fff; }
+ box-shadow: inset 0 0 0 1.5px #a7b656, inset 0 0 0 2.5px #fff; }
body.admin-color-coffee .edit-post-fullscreen-mode-close.has-icon:focus {
- box-shadow: inset 0 0 0 2px rgb(194, 166, 140), inset 0 0 0 3px #fff; }
+ box-shadow: inset 0 0 0 1.5px #c2a68c, inset 0 0 0 2.5px #fff; }
body.admin-color-blue .edit-post-fullscreen-mode-close.has-icon:focus {
- box-shadow: inset 0 0 0 2px rgb(217, 171, 89), inset 0 0 0 3px #fff; }
+ box-shadow: inset 0 0 0 1.5px #d9ab59, inset 0 0 0 2.5px #fff; }
body.admin-color-light .edit-post-fullscreen-mode-close.has-icon:focus {
- box-shadow: inset 0 0 0 2px rgb(0, 133, 186), inset 0 0 0 3px #fff; } }
+ box-shadow: inset 0 0 0 1.5px #0085ba, inset 0 0 0 2.5px #fff; } }
.edit-post-header-toolbar {
display: inline-flex;
@@ -11147,6 +11778,8 @@ pre.wp-block-verse {
@media (min-width: 600px) {
.edit-post-header-toolbar > .components-button {
display: inline-flex; } }
+ .edit-post-header-toolbar > .edit-post-header-toolbar__inserter-toggle {
+ display: inline-flex; }
.edit-post-header-toolbar .block-editor-block-navigation {
display: none; }
@media (min-width: 600px) {
@@ -11162,6 +11795,7 @@ pre.wp-block-verse {
border-bottom: 1px solid #e2e4e7; }
.edit-post-header-toolbar__block-toolbar:empty {
display: none; }
+ .edit-post-header-toolbar__block-toolbar .block-editor-block-toolbar .components-toolbar-group,
.edit-post-header-toolbar__block-toolbar .block-editor-block-toolbar .components-toolbar {
border-top: none;
border-bottom: none; }
@@ -11183,10 +11817,18 @@ pre.wp-block-verse {
right: auto; }
.edit-post-header-toolbar__block-toolbar .block-editor-block-toolbar {
border-left: 1px solid #e2e4e7; }
+ .edit-post-header-toolbar__block-toolbar .block-editor-block-toolbar .components-toolbar-group,
.edit-post-header-toolbar__block-toolbar .block-editor-block-toolbar .components-toolbar {
height: 60px;
padding: 6px 0; } }
+.edit-post-header-toolbar .edit-post-header-toolbar__inserter-toggle {
+ margin-right: 8px;
+ min-width: 32px;
+ width: 32px;
+ height: 32px;
+ padding: 0; }
+
.edit-post-more-menu {
margin-left: -4px; }
.edit-post-more-menu .components-button {
@@ -11210,36 +11852,6 @@ pre.wp-block-verse {
.components-popover.edit-post-more-menu__content {
z-index: 99998; }
-.edit-post-pinned-plugins {
- display: none; }
- @media (min-width: 600px) {
- .edit-post-pinned-plugins {
- display: flex; } }
- .edit-post-pinned-plugins .components-button {
- margin-left: 4px; }
- .edit-post-pinned-plugins .components-button.is-pressed {
- margin-left: 5px; }
- .edit-post-pinned-plugins .components-button svg {
- max-width: 24px;
- max-height: 24px; }
- .edit-post-pinned-plugins .components-button:not(.is-pressed) svg,
- .edit-post-pinned-plugins .components-button:not(.is-pressed) svg * {
- stroke: #1e1e1e;
- fill: #1e1e1e;
- stroke-width: 0; }
- .edit-post-pinned-plugins .components-button.is-pressed svg,
- .edit-post-pinned-plugins .components-button.is-pressed svg *,
- .edit-post-pinned-plugins .components-button.is-pressed:hover svg,
- .edit-post-pinned-plugins .components-button.is-pressed:hover svg * {
- stroke: #fff !important;
- fill: #fff !important;
- stroke-width: 0; }
- .edit-post-pinned-plugins .components-button:hover svg,
- .edit-post-pinned-plugins .components-button:hover svg * {
- stroke: #007cba !important;
- fill: #007cba !important;
- stroke-width: 0; }
-
.edit-post-keyboard-shortcut-help-modal__section {
margin: 0 0 2rem 0; }
@@ -11299,20 +11911,20 @@ pre.wp-block-verse {
.edit-post-layout .components-editor-notices__snackbar {
position: fixed;
right: 0;
- bottom: 20px;
+ bottom: 40px;
padding-left: 16px;
padding-right: 16px; }
.edit-post-layout .components-editor-notices__snackbar {
/* Set left position when auto-fold is not on the body element. */
left: 0; }
- @media (min-width: 782px) {
+ @media (min-width: 783px) {
.edit-post-layout .components-editor-notices__snackbar {
left: 160px; } }
.auto-fold .edit-post-layout .components-editor-notices__snackbar {
/* Auto fold is when on smaller breakpoints, nav menu auto collapses. */ }
- @media (min-width: 782px) {
+ @media (min-width: 783px) {
.auto-fold .edit-post-layout .components-editor-notices__snackbar {
left: 36px; } }
@media (min-width: 961px) {
@@ -11322,12 +11934,12 @@ pre.wp-block-verse {
/* Sidebar manually collapsed. */
.folded .edit-post-layout .components-editor-notices__snackbar {
left: 0; }
- @media (min-width: 782px) {
+ @media (min-width: 783px) {
.folded .edit-post-layout .components-editor-notices__snackbar {
left: 36px; } }
/* Mobile menu opened. */
-@media (max-width: 782px) {
+@media (max-width: 783px) {
.auto-fold .wp-responsive-open .edit-post-layout .components-editor-notices__snackbar {
left: 190px; } }
@@ -11369,14 +11981,15 @@ body.is-fullscreen-mode .edit-post-layout .components-editor-notices__snackbar {
100% {
transform: translateX(0%); } }
-.block-editor-editor-skeleton__sidebar > div {
+.interface-interface-skeleton__sidebar > div {
height: 100%; }
.edit-post-layout .editor-post-publish-panel__header-publish-button {
justify-content: center; }
.edit-post-layout__toggle-publish-panel,
-.edit-post-layout__toogle-sidebar-panel {
+.edit-post-layout__toogle-sidebar-panel,
+.edit-post-layout__toggle-entities-saved-states-panel {
z-index: 100000;
position: fixed !important;
top: -9999em;
@@ -11390,17 +12003,24 @@ body.is-fullscreen-mode .edit-post-layout .components-editor-notices__snackbar {
padding: 24px;
display: flex;
justify-content: center; }
- .block-editor-editor-skeleton__publish:focus .edit-post-layout__toggle-publish-panel,
- .block-editor-editor-skeleton__publish:focus-within .edit-post-layout__toggle-publish-panel,
- .block-editor-editor-skeleton__sidebar:focus .edit-post-layout__toggle-publish-panel,
- .block-editor-editor-skeleton__sidebar:focus-within .edit-post-layout__toggle-publish-panel, .block-editor-editor-skeleton__publish:focus
+ .interface-interface-skeleton__actions:focus .edit-post-layout__toggle-publish-panel,
+ .interface-interface-skeleton__actions:focus-within .edit-post-layout__toggle-publish-panel,
+ .interface-interface-skeleton__actions:focus .edit-post-layout__toggle-publish-panel,
+ .interface-interface-skeleton__actions:focus-within .edit-post-layout__toggle-publish-panel, .interface-interface-skeleton__actions:focus
.edit-post-layout__toogle-sidebar-panel,
- .block-editor-editor-skeleton__publish:focus-within
+ .interface-interface-skeleton__actions:focus-within
.edit-post-layout__toogle-sidebar-panel,
- .block-editor-editor-skeleton__sidebar:focus
+ .interface-interface-skeleton__actions:focus
.edit-post-layout__toogle-sidebar-panel,
- .block-editor-editor-skeleton__sidebar:focus-within
- .edit-post-layout__toogle-sidebar-panel {
+ .interface-interface-skeleton__actions:focus-within
+ .edit-post-layout__toogle-sidebar-panel, .interface-interface-skeleton__actions:focus
+ .edit-post-layout__toggle-entities-saved-states-panel,
+ .interface-interface-skeleton__actions:focus-within
+ .edit-post-layout__toggle-entities-saved-states-panel,
+ .interface-interface-skeleton__actions:focus
+ .edit-post-layout__toggle-entities-saved-states-panel,
+ .interface-interface-skeleton__actions:focus-within
+ .edit-post-layout__toggle-entities-saved-states-panel {
top: auto;
bottom: 0; }
@@ -11415,32 +12035,30 @@ body.is-fullscreen-mode .edit-post-layout .components-editor-notices__snackbar {
align-items: center;
font-size: 13px;
padding: 0 18px; } }
- .edit-post-layout__footer .table-of-contents {
- margin: auto 0 0 auto; }
- .edit-post-layout__footer .table-of-contents .components-button {
- height: 24px;
- padding: 0; }
- .edit-post-layout__footer .table-of-contents .components-button:focus {
- box-shadow: inset 0 0 0 2px rgb(0, 124, 186);
- outline: 1px solid transparent; }
- body.admin-color-sunrise .edit-post-layout__footer .table-of-contents .components-button:focus {
- box-shadow: inset 0 0 0 2px rgb(209, 134, 74); }
- body.admin-color-ocean .edit-post-layout__footer .table-of-contents .components-button:focus {
- box-shadow: inset 0 0 0 2px rgb(163, 185, 162); }
- body.admin-color-midnight .edit-post-layout__footer .table-of-contents .components-button:focus {
- box-shadow: inset 0 0 0 2px rgb(225, 77, 67); }
- body.admin-color-ectoplasm .edit-post-layout__footer .table-of-contents .components-button:focus {
- box-shadow: inset 0 0 0 2px rgb(167, 182, 86); }
- body.admin-color-coffee .edit-post-layout__footer .table-of-contents .components-button:focus {
- box-shadow: inset 0 0 0 2px rgb(194, 166, 140); }
- body.admin-color-blue .edit-post-layout__footer .table-of-contents .components-button:focus {
- box-shadow: inset 0 0 0 2px rgb(217, 171, 89); }
- body.admin-color-light .edit-post-layout__footer .table-of-contents .components-button:focus {
- box-shadow: inset 0 0 0 2px rgb(0, 133, 186); }
-
-.edit-post-layout .block-editor-editor-skeleton__content {
+
+.edit-post-layout .interface-interface-skeleton__content {
background-color: #ccd0d4; }
+.edit-post-layout__inserter-panel {
+ height: 100%;
+ display: flex;
+ flex-direction: column; }
+
+.edit-post-layout__inserter-panel-header {
+ padding-top: 8px;
+ padding-right: 8px;
+ display: flex;
+ justify-content: flex-end; }
+ @media (min-width: 782px) {
+ .edit-post-layout__inserter-panel-header {
+ display: none; } }
+
+.edit-post-layout__inserter-panel-content {
+ height: calc(100% - 36px - 8px); }
+ @media (min-width: 782px) {
+ .edit-post-layout__inserter-panel-content {
+ height: 100%; } }
+
@media (min-width: 600px) {
.edit-post-manage-blocks-modal {
height: calc(100% - 60px - 60px); } }
@@ -11610,152 +12228,6 @@ body.is-fullscreen-mode .edit-post-layout .components-editor-notices__snackbar {
.edit-post-meta-boxes-area__clear {
clear: both; }
-.editor-post-preview__dropdown {
- display: none;
- margin-right: 12px;
- box-shadow: inset 0 0 0 1px #ccc;
- border-radius: 2px;
- padding: 0; }
-
-.editor-post-preview__button-toggle {
- display: flex;
- justify-content: space-between;
- padding: 0 0 0 12px; }
- .editor-post-preview__button-toggle:focus:not(:disabled) {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(0, 124, 186); }
- body.admin-color-sunrise .editor-post-preview__button-toggle:focus:not(:disabled) {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(209, 134, 74); }
- body.admin-color-ocean .editor-post-preview__button-toggle:focus:not(:disabled) {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(163, 185, 162); }
- body.admin-color-midnight .editor-post-preview__button-toggle:focus:not(:disabled) {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(225, 77, 67); }
- body.admin-color-ectoplasm .editor-post-preview__button-toggle:focus:not(:disabled) {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(167, 182, 86); }
- body.admin-color-coffee .editor-post-preview__button-toggle:focus:not(:disabled) {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(194, 166, 140); }
- body.admin-color-blue .editor-post-preview__button-toggle:focus:not(:disabled) {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(217, 171, 89); }
- body.admin-color-light .editor-post-preview__button-toggle:focus:not(:disabled) {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(0, 133, 186); }
-
-.editor-post-preview__button-resize.editor-post-preview__button-resize {
- padding-left: 40px; }
- .editor-post-preview__button-resize.editor-post-preview__button-resize.has-icon {
- padding-left: 8px; }
-
-.editor-post-preview__button-separator {
- border-left: 1px solid #ccc;
- padding: 6px;
- margin-left: 12px;
- display: flex;
- align-items: center;
- justify-content: center; }
-
-.editor-post-preview__dropdown-content .components-popover__content {
- overflow-y: visible;
- padding-bottom: 0; }
-
-.editor-post-preview__dropdown-content .components-menu-group + .components-menu-group {
- border-top: 1px solid #ccc;
- padding: 8px 12px;
- margin-left: -12px;
- margin-right: -12px; }
-
-.editor-post-preview__grouping-external {
- display: flex;
- position: relative; }
-
-.editor-post-preview__button-external {
- padding-left: 40px;
- margin-right: auto;
- width: 100%;
- display: flex;
- justify-content: space-between; }
-
-@media (min-width: 600px) {
- .editor-post-preview {
- display: none; }
- .editor-post-preview__dropdown {
- display: flex; } }
-
-.edit-post-sidebar {
- background: #fff;
- color: #555d66;
- overflow: visible; }
- @media (min-width: 600px) {
- .edit-post-sidebar {
- z-index: auto;
- height: 100%;
- overflow: auto;
- -webkit-overflow-scrolling: touch; } }
- @media (min-width: 782px) {
- .edit-post-sidebar {
- width: 280px; } }
- .edit-post-sidebar > .components-panel {
- border-left: none;
- border-right: none;
- overflow: auto;
- -webkit-overflow-scrolling: touch;
- height: auto;
- max-height: calc(100vh - 146px);
- margin-top: -1px;
- margin-bottom: -1px;
- position: relative; }
- @media (min-width: 600px) {
- .edit-post-sidebar > .components-panel {
- overflow: visible;
- height: auto;
- max-height: none; } }
- .edit-post-sidebar > .components-panel .components-panel__header {
- position: fixed;
- z-index: 1;
- top: 0;
- left: 0;
- right: 0;
- height: 50px; }
- @media (min-width: 600px) {
- .edit-post-sidebar > .components-panel .components-panel__header {
- position: inherit;
- top: auto;
- left: auto;
- right: auto; } }
- .edit-post-sidebar p {
- margin-top: 0; }
- .edit-post-sidebar h2,
- .edit-post-sidebar h3 {
- font-size: 13px;
- color: #555d66;
- margin-bottom: 1.5em; }
- .edit-post-sidebar hr {
- border-top: none;
- border-bottom: 1px solid #e2e4e7;
- margin: 1.5em 0; }
- .edit-post-sidebar div.components-toolbar {
- box-shadow: none;
- margin-bottom: 1.5em; }
- .edit-post-sidebar div.components-toolbar:last-child {
- margin-bottom: 0; }
- .edit-post-sidebar p + div.components-toolbar {
- margin-top: -1em; }
- .edit-post-sidebar .block-editor-skip-to-selected-block:focus {
- top: auto;
- right: 10px;
- bottom: 10px;
- left: auto; }
-
-/* Text Editor specific */
-.components-panel__header.edit-post-sidebar__header {
- background: #fff;
- padding-right: 8px; }
- .components-panel__header.edit-post-sidebar__header .edit-post-sidebar__title {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- width: 100%; }
- @media (min-width: 782px) {
- .components-panel__header.edit-post-sidebar__header {
- display: none; } }
-
.components-panel__header.edit-post-sidebar__panel-tabs {
justify-content: flex-start;
padding-left: 0;
@@ -11769,53 +12241,6 @@ body.is-fullscreen-mode .edit-post-layout .components-editor-notices__snackbar {
.components-panel__header.edit-post-sidebar__panel-tabs .components-button.has-icon {
display: flex; } }
-.edit-post-sidebar__panel-tab {
- background: transparent;
- border: none;
- border-radius: 0;
- box-shadow: none;
- cursor: pointer;
- height: 50px;
- padding: 3px 15px;
- margin-left: 0;
- font-weight: 400;
- outline-offset: -1px;
- transition: box-shadow 0.1s linear; }
- @media (prefers-reduced-motion: reduce) {
- .edit-post-sidebar__panel-tab {
- transition-duration: 0s; } }
- .edit-post-sidebar__panel-tab.is-active {
- box-shadow: inset 0 -3px #007cba;
- font-weight: 600;
- position: relative; }
- body.admin-color-sunrise .edit-post-sidebar__panel-tab.is-active {
- box-shadow: inset 0 -3px #837425; }
- body.admin-color-ocean .edit-post-sidebar__panel-tab.is-active {
- box-shadow: inset 0 -3px #5e7d5e; }
- body.admin-color-midnight .edit-post-sidebar__panel-tab.is-active {
- box-shadow: inset 0 -3px #497b8d; }
- body.admin-color-ectoplasm .edit-post-sidebar__panel-tab.is-active {
- box-shadow: inset 0 -3px #523f6d; }
- body.admin-color-coffee .edit-post-sidebar__panel-tab.is-active {
- box-shadow: inset 0 -3px #59524c; }
- body.admin-color-blue .edit-post-sidebar__panel-tab.is-active {
- box-shadow: inset 0 -3px #417e9B; }
- body.admin-color-light .edit-post-sidebar__panel-tab.is-active {
- box-shadow: inset 0 -3px #007cba; }
- .edit-post-sidebar__panel-tab.is-active::before {
- content: "";
- position: absolute;
- top: 0;
- bottom: 1px;
- right: 0;
- left: 0;
- border-bottom: 3px solid transparent; }
- .edit-post-sidebar__panel-tab:focus:not(:disabled) {
- color: #191e23;
- outline-offset: -1px;
- outline: 1px dotted #555d66;
- box-shadow: none; }
-
.components-panel__body.is-opened.edit-post-last-revision__panel {
padding: 0; }
@@ -11833,6 +12258,7 @@ body.is-fullscreen-mode .edit-post-layout .components-editor-notices__snackbar {
font-weight: 600; }
.edit-post-post-link__preview-label {
+ font-weight: 400;
margin: 0; }
.edit-post-post-link__link {
@@ -11900,6 +12326,8 @@ body.is-fullscreen-mode .edit-post-layout .components-editor-notices__snackbar {
margin: 0; }
.components-button.edit-post-sidebar__panel-tab {
+ border-radius: 0;
+ height: 49px;
background: transparent;
border: none;
box-shadow: none;
@@ -11908,12 +12336,7 @@ body.is-fullscreen-mode .edit-post-layout .components-editor-notices__snackbar {
padding: 3px 15px;
margin-left: 0;
font-weight: 400;
- color: #191e23;
- outline-offset: -1px;
- transition: box-shadow 0.1s linear; }
- @media (prefers-reduced-motion: reduce) {
- .components-button.edit-post-sidebar__panel-tab {
- transition-duration: 0s; } }
+ color: #191e23; }
.components-button.edit-post-sidebar__panel-tab::after {
content: attr(data-label);
display: block;
@@ -11923,23 +12346,23 @@ body.is-fullscreen-mode .edit-post-layout .components-editor-notices__snackbar {
speak: none;
visibility: hidden; }
.components-button.edit-post-sidebar__panel-tab.is-active {
- box-shadow: inset 0 -4px #007cba;
+ box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #007cba;
font-weight: 600;
position: relative; }
body.admin-color-sunrise .components-button.edit-post-sidebar__panel-tab.is-active {
- box-shadow: inset 0 -4px #837425; }
+ box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #d1864a; }
body.admin-color-ocean .components-button.edit-post-sidebar__panel-tab.is-active {
- box-shadow: inset 0 -4px #5e7d5e; }
+ box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #a3b9a2; }
body.admin-color-midnight .components-button.edit-post-sidebar__panel-tab.is-active {
- box-shadow: inset 0 -4px #497b8d; }
+ box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #e14d43; }
body.admin-color-ectoplasm .components-button.edit-post-sidebar__panel-tab.is-active {
- box-shadow: inset 0 -4px #523f6d; }
+ box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #a7b656; }
body.admin-color-coffee .components-button.edit-post-sidebar__panel-tab.is-active {
- box-shadow: inset 0 -4px #59524c; }
+ box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #c2a68c; }
body.admin-color-blue .components-button.edit-post-sidebar__panel-tab.is-active {
- box-shadow: inset 0 -4px #417e9B; }
+ box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #d9ab59; }
body.admin-color-light .components-button.edit-post-sidebar__panel-tab.is-active {
- box-shadow: inset 0 -4px #007cba; }
+ box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #0085ba; }
.components-button.edit-post-sidebar__panel-tab.is-active::before {
content: "";
position: absolute;
@@ -11949,35 +12372,37 @@ body.is-fullscreen-mode .edit-post-layout .components-editor-notices__snackbar {
left: 0;
border-bottom: 4px solid transparent; }
.components-button.edit-post-sidebar__panel-tab:focus {
- background-color: transparent;
- color: #191e23;
- outline-offset: -1px;
- outline: 1px dotted #555d66; }
-
-/* Text Editor specific */
-.components-panel__header.edit-post-sidebar-header__small {
- background: #fff;
- padding-right: 4px; }
- .components-panel__header.edit-post-sidebar-header__small .edit-post-sidebar__title {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- width: 100%; }
- @media (min-width: 782px) {
- .components-panel__header.edit-post-sidebar-header__small {
- display: none; } }
-
-.components-panel__header.edit-post-sidebar-header {
- padding-right: 4px;
- background: #f3f4f5; }
- .components-panel__header.edit-post-sidebar-header .components-button.has-icon {
- display: none;
- margin-left: auto; }
- .components-panel__header.edit-post-sidebar-header .components-button.has-icon ~ .components-button {
- margin-left: 0; }
- @media (min-width: 782px) {
- .components-panel__header.edit-post-sidebar-header .components-button.has-icon {
- display: flex; } }
+ box-shadow: inset 0 0 0 1.5px #007cba; }
+ body.admin-color-sunrise .components-button.edit-post-sidebar__panel-tab:focus {
+ box-shadow: inset 0 0 0 1.5px #d1864a; }
+ body.admin-color-ocean .components-button.edit-post-sidebar__panel-tab:focus {
+ box-shadow: inset 0 0 0 1.5px #a3b9a2; }
+ body.admin-color-midnight .components-button.edit-post-sidebar__panel-tab:focus {
+ box-shadow: inset 0 0 0 1.5px #e14d43; }
+ body.admin-color-ectoplasm .components-button.edit-post-sidebar__panel-tab:focus {
+ box-shadow: inset 0 0 0 1.5px #a7b656; }
+ body.admin-color-coffee .components-button.edit-post-sidebar__panel-tab:focus {
+ box-shadow: inset 0 0 0 1.5px #c2a68c; }
+ body.admin-color-blue .components-button.edit-post-sidebar__panel-tab:focus {
+ box-shadow: inset 0 0 0 1.5px #d9ab59; }
+ body.admin-color-light .components-button.edit-post-sidebar__panel-tab:focus {
+ box-shadow: inset 0 0 0 1.5px #0085ba; }
+ .components-button.edit-post-sidebar__panel-tab.is-active:focus {
+ box-shadow: inset 0 0 0 1.5px #007cba, inset 0 -4px 0 0 #007cba; }
+ body.admin-color-sunrise .components-button.edit-post-sidebar__panel-tab.is-active:focus {
+ box-shadow: inset 0 0 0 1.5px #d1864a, inset 0 -4px 0 0 #d1864a; }
+ body.admin-color-ocean .components-button.edit-post-sidebar__panel-tab.is-active:focus {
+ box-shadow: inset 0 0 0 1.5px #a3b9a2, inset 0 -4px 0 0 #a3b9a2; }
+ body.admin-color-midnight .components-button.edit-post-sidebar__panel-tab.is-active:focus {
+ box-shadow: inset 0 0 0 1.5px #e14d43, inset 0 -4px 0 0 #e14d43; }
+ body.admin-color-ectoplasm .components-button.edit-post-sidebar__panel-tab.is-active:focus {
+ box-shadow: inset 0 0 0 1.5px #a7b656, inset 0 -4px 0 0 #a7b656; }
+ body.admin-color-coffee .components-button.edit-post-sidebar__panel-tab.is-active:focus {
+ box-shadow: inset 0 0 0 1.5px #c2a68c, inset 0 -4px 0 0 #c2a68c; }
+ body.admin-color-blue .components-button.edit-post-sidebar__panel-tab.is-active:focus {
+ box-shadow: inset 0 0 0 1.5px #d9ab59, inset 0 -4px 0 0 #d9ab59; }
+ body.admin-color-light .components-button.edit-post-sidebar__panel-tab.is-active:focus {
+ box-shadow: inset 0 0 0 1.5px #0085ba, inset 0 -4px 0 0 #0085ba; }
.edit-post-text-editor {
position: relative;
@@ -11985,48 +12410,48 @@ body.is-fullscreen-mode .edit-post-layout .components-editor-notices__snackbar {
background-color: #fff;
flex-grow: 1;
padding-top: 56px; }
- .edit-post-text-editor .editor-post-title__block textarea {
- border: 1px solid #e2e4e7;
- margin-bottom: 4px;
- padding: 14px; }
- .edit-post-text-editor .editor-post-title__block textarea:focus, .edit-post-text-editor .editor-post-title__block textarea:hover {
- border: 1px solid #000; }
- .edit-post-text-editor .editor-post-permalink {
- margin-top: -6px;
- box-shadow: none;
- border: none;
- outline: 1px solid #1e1e1e; }
- @media (min-width: 600px) {
- .edit-post-text-editor .editor-post-title,
- .edit-post-text-editor .editor-post-title__block {
- padding: 0; } }
+ .edit-post-text-editor .wp-block.editor-post-title {
+ max-width: none; }
+ .edit-post-text-editor .wp-block.editor-post-title textarea {
+ border: 1px solid #ccc;
+ margin-bottom: -1px;
+ padding: 16px; }
+ .edit-post-text-editor .wp-block.editor-post-title textarea:focus {
+ border: 1px solid #1e1e1e; }
+ @media (min-width: 600px) {
+ .edit-post-text-editor .wp-block.editor-post-title {
+ padding: 0; } }
.edit-post-text-editor__toolbar {
position: absolute;
- top: 8px;
+ top: 0;
left: 0;
right: 0;
- height: 48px;
- line-height: 48px;
- padding: 0 8px 0 16px;
+ padding: 12px;
display: flex; }
+ @media (min-width: 960px) {
+ .edit-post-text-editor__toolbar {
+ padding: 12px 24px; } }
.edit-post-text-editor__toolbar h2 {
+ line-height: 36px;
margin: 0 auto 0 0;
font-size: 13px;
- color: #555d66; }
+ color: #1e1e1e; }
.edit-post-text-editor__toolbar .components-button svg {
order: 1; }
.edit-post-text-editor__body {
- max-width: calc(100% - 32px);
- margin-left: 16px;
- margin-right: 16px;
- padding-top: 40px; }
- @media (min-width: 600px) {
+ width: 100%;
+ padding: 16px 12px 48px 12px;
+ max-width: 1280px;
+ margin-left: auto;
+ margin-right: auto; }
+ @media (min-width: 960px) {
.edit-post-text-editor__body {
- max-width: 580px;
- margin-left: auto;
- margin-right: auto; } }
+ padding: 16px 24px 96px 24px; } }
+ .edit-post-text-editor__body .editor-post-title__input.editor-post-title__input.editor-post-title__input {
+ font-family: Menlo, Consolas, monaco, monospace;
+ font-size: 2em; }
.edit-post-visual-editor {
position: relative;
@@ -12052,26 +12477,17 @@ body.is-fullscreen-mode .edit-post-layout .components-editor-notices__snackbar {
.has-metaboxes .edit-post-visual-editor .block-editor-writing-flow__click-redirect {
height: 0; }
-.edit-post-visual-editor .block-editor-block-list__block {
- margin-left: auto;
- margin-right: auto; }
-
-@media (min-width: 600px) {
- .editor-post-title {
- padding-left: 58px;
- padding-right: 58px; } }
-
-.edit-post-visual-editor .editor-post-title__block {
- margin-left: auto;
- margin-right: auto;
- margin-bottom: 32px; }
- .edit-post-visual-editor .editor-post-title__block > div {
- margin-left: 0;
- margin-right: 0; }
+.edit-post-visual-editor__post-title-wrapper {
+ padding-left: 14px;
+ padding-right: 14px; }
@media (min-width: 600px) {
- .edit-post-visual-editor .editor-post-title__block > div {
- margin-left: -16px;
- margin-right: -16px; } }
+ .edit-post-visual-editor__post-title-wrapper {
+ padding-left: 36px;
+ padding-right: 36px; } }
+ .edit-post-visual-editor__post-title-wrapper .editor-post-title {
+ margin-left: auto;
+ margin-right: auto;
+ margin-bottom: 32px; }
.edit-post-options-modal__section {
margin: 0 0 2rem 0; }
@@ -12346,8 +12762,8 @@ body.block-editor-page {
padding: 6px 8px;
box-shadow: 0 0 0 transparent;
transition: box-shadow 0.1s linear;
- border-radius: 4px;
- border: 1px solid #7e8993;
+ border-radius: 2px;
+ border: 1px solid #757575;
/* Fonts smaller than 16px causes mobile safari to zoom. */
font-size: 16px;
/* Override core line-height. To be reviewed. */
@@ -12757,10 +13173,30 @@ body.block-editor-page {
.components-modal__frame input[type="number"]:focus,
.components-modal__frame select:focus,
.components-modal__frame textarea:focus {
- color: #191e23;
- border-color: #007cba;
- box-shadow: 0 0 0 1px #007cba;
+ border-color: rgb(0, 124, 186);
+ box-shadow: 0 0 0 0.5px #007cba;
outline: 2px solid transparent; }
+ body.admin-color-sunrise .edit-post-header .input-control:focus, body.admin-color-sunrise .edit-post-header input[type="text"]:focus, body.admin-color-sunrise .edit-post-header input[type="search"]:focus, body.admin-color-sunrise .edit-post-header input[type="radio"]:focus, body.admin-color-sunrise .edit-post-header input[type="tel"]:focus, body.admin-color-sunrise .edit-post-header input[type="time"]:focus, body.admin-color-sunrise .edit-post-header input[type="url"]:focus, body.admin-color-sunrise .edit-post-header input[type="week"]:focus, body.admin-color-sunrise .edit-post-header input[type="password"]:focus, body.admin-color-sunrise .edit-post-header input[type="checkbox"]:focus, body.admin-color-sunrise .edit-post-header input[type="color"]:focus, body.admin-color-sunrise .edit-post-header input[type="date"]:focus, body.admin-color-sunrise .edit-post-header input[type="datetime"]:focus, body.admin-color-sunrise .edit-post-header input[type="datetime-local"]:focus, body.admin-color-sunrise .edit-post-header input[type="email"]:focus, body.admin-color-sunrise .edit-post-header input[type="month"]:focus, body.admin-color-sunrise .edit-post-header input[type="number"]:focus, body.admin-color-sunrise .edit-post-header select:focus, body.admin-color-sunrise .edit-post-header textarea:focus, body.admin-color-sunrise .edit-post-visual-editor .input-control:focus, body.admin-color-sunrise .edit-post-visual-editor input[type="text"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type="search"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type="radio"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type="tel"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type="time"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type="url"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type="week"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type="password"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type="checkbox"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type="color"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type="date"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type="datetime"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type="datetime-local"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type="email"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type="month"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type="number"]:focus, body.admin-color-sunrise .edit-post-visual-editor select:focus, body.admin-color-sunrise .edit-post-visual-editor textarea:focus, body.admin-color-sunrise .edit-post-text-editor .input-control:focus, body.admin-color-sunrise .edit-post-text-editor input[type="text"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type="search"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type="radio"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type="tel"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type="time"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type="url"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type="week"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type="password"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type="checkbox"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type="color"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type="date"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type="datetime"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type="datetime-local"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type="email"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type="month"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type="number"]:focus, body.admin-color-sunrise .edit-post-text-editor select:focus, body.admin-color-sunrise .edit-post-text-editor textarea:focus, body.admin-color-sunrise .edit-post-sidebar .input-control:focus, body.admin-color-sunrise .edit-post-sidebar input[type="text"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type="search"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type="radio"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type="tel"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type="time"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type="url"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type="week"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type="password"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type="checkbox"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type="color"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type="date"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type="datetime"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type="datetime-local"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type="email"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type="month"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type="number"]:focus, body.admin-color-sunrise .edit-post-sidebar select:focus, body.admin-color-sunrise .edit-post-sidebar textarea:focus, body.admin-color-sunrise .editor-post-publish-panel .input-control:focus, body.admin-color-sunrise .editor-post-publish-panel input[type="text"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type="search"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type="radio"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type="tel"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type="time"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type="url"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type="week"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type="password"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type="checkbox"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type="color"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type="date"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type="datetime"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type="datetime-local"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type="email"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type="month"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type="number"]:focus, body.admin-color-sunrise .editor-post-publish-panel select:focus, body.admin-color-sunrise .editor-post-publish-panel textarea:focus, body.admin-color-sunrise .components-popover .input-control:focus, body.admin-color-sunrise .components-popover input[type="text"]:focus, body.admin-color-sunrise .components-popover input[type="search"]:focus, body.admin-color-sunrise .components-popover input[type="radio"]:focus, body.admin-color-sunrise .components-popover input[type="tel"]:focus, body.admin-color-sunrise .components-popover input[type="time"]:focus, body.admin-color-sunrise .components-popover input[type="url"]:focus, body.admin-color-sunrise .components-popover input[type="week"]:focus, body.admin-color-sunrise .components-popover input[type="password"]:focus, body.admin-color-sunrise .components-popover input[type="checkbox"]:focus, body.admin-color-sunrise .components-popover input[type="color"]:focus, body.admin-color-sunrise .components-popover input[type="date"]:focus, body.admin-color-sunrise .components-popover input[type="datetime"]:focus, body.admin-color-sunrise .components-popover input[type="datetime-local"]:focus, body.admin-color-sunrise .components-popover input[type="email"]:focus, body.admin-color-sunrise .components-popover input[type="month"]:focus, body.admin-color-sunrise .components-popover input[type="number"]:focus, body.admin-color-sunrise .components-popover select:focus, body.admin-color-sunrise .components-popover textarea:focus, body.admin-color-sunrise .components-modal__frame .input-control:focus, body.admin-color-sunrise .components-modal__frame input[type="text"]:focus, body.admin-color-sunrise .components-modal__frame input[type="search"]:focus, body.admin-color-sunrise .components-modal__frame input[type="radio"]:focus, body.admin-color-sunrise .components-modal__frame input[type="tel"]:focus, body.admin-color-sunrise .components-modal__frame input[type="time"]:focus, body.admin-color-sunrise .components-modal__frame input[type="url"]:focus, body.admin-color-sunrise .components-modal__frame input[type="week"]:focus, body.admin-color-sunrise .components-modal__frame input[type="password"]:focus, body.admin-color-sunrise .components-modal__frame input[type="checkbox"]:focus, body.admin-color-sunrise .components-modal__frame input[type="color"]:focus, body.admin-color-sunrise .components-modal__frame input[type="date"]:focus, body.admin-color-sunrise .components-modal__frame input[type="datetime"]:focus, body.admin-color-sunrise .components-modal__frame input[type="datetime-local"]:focus, body.admin-color-sunrise .components-modal__frame input[type="email"]:focus, body.admin-color-sunrise .components-modal__frame input[type="month"]:focus, body.admin-color-sunrise .components-modal__frame input[type="number"]:focus, body.admin-color-sunrise .components-modal__frame select:focus, body.admin-color-sunrise .components-modal__frame textarea:focus {
+ border-color: rgb(209, 134, 74);
+ box-shadow: 0 0 0 0.5px #d1864a; }
+ body.admin-color-ocean .edit-post-header .input-control:focus, body.admin-color-ocean .edit-post-header input[type="text"]:focus, body.admin-color-ocean .edit-post-header input[type="search"]:focus, body.admin-color-ocean .edit-post-header input[type="radio"]:focus, body.admin-color-ocean .edit-post-header input[type="tel"]:focus, body.admin-color-ocean .edit-post-header input[type="time"]:focus, body.admin-color-ocean .edit-post-header input[type="url"]:focus, body.admin-color-ocean .edit-post-header input[type="week"]:focus, body.admin-color-ocean .edit-post-header input[type="password"]:focus, body.admin-color-ocean .edit-post-header input[type="checkbox"]:focus, body.admin-color-ocean .edit-post-header input[type="color"]:focus, body.admin-color-ocean .edit-post-header input[type="date"]:focus, body.admin-color-ocean .edit-post-header input[type="datetime"]:focus, body.admin-color-ocean .edit-post-header input[type="datetime-local"]:focus, body.admin-color-ocean .edit-post-header input[type="email"]:focus, body.admin-color-ocean .edit-post-header input[type="month"]:focus, body.admin-color-ocean .edit-post-header input[type="number"]:focus, body.admin-color-ocean .edit-post-header select:focus, body.admin-color-ocean .edit-post-header textarea:focus, body.admin-color-ocean .edit-post-visual-editor .input-control:focus, body.admin-color-ocean .edit-post-visual-editor input[type="text"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type="search"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type="radio"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type="tel"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type="time"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type="url"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type="week"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type="password"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type="checkbox"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type="color"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type="date"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type="datetime"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type="datetime-local"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type="email"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type="month"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type="number"]:focus, body.admin-color-ocean .edit-post-visual-editor select:focus, body.admin-color-ocean .edit-post-visual-editor textarea:focus, body.admin-color-ocean .edit-post-text-editor .input-control:focus, body.admin-color-ocean .edit-post-text-editor input[type="text"]:focus, body.admin-color-ocean .edit-post-text-editor input[type="search"]:focus, body.admin-color-ocean .edit-post-text-editor input[type="radio"]:focus, body.admin-color-ocean .edit-post-text-editor input[type="tel"]:focus, body.admin-color-ocean .edit-post-text-editor input[type="time"]:focus, body.admin-color-ocean .edit-post-text-editor input[type="url"]:focus, body.admin-color-ocean .edit-post-text-editor input[type="week"]:focus, body.admin-color-ocean .edit-post-text-editor input[type="password"]:focus, body.admin-color-ocean .edit-post-text-editor input[type="checkbox"]:focus, body.admin-color-ocean .edit-post-text-editor input[type="color"]:focus, body.admin-color-ocean .edit-post-text-editor input[type="date"]:focus, body.admin-color-ocean .edit-post-text-editor input[type="datetime"]:focus, body.admin-color-ocean .edit-post-text-editor input[type="datetime-local"]:focus, body.admin-color-ocean .edit-post-text-editor input[type="email"]:focus, body.admin-color-ocean .edit-post-text-editor input[type="month"]:focus, body.admin-color-ocean .edit-post-text-editor input[type="number"]:focus, body.admin-color-ocean .edit-post-text-editor select:focus, body.admin-color-ocean .edit-post-text-editor textarea:focus, body.admin-color-ocean .edit-post-sidebar .input-control:focus, body.admin-color-ocean .edit-post-sidebar input[type="text"]:focus, body.admin-color-ocean .edit-post-sidebar input[type="search"]:focus, body.admin-color-ocean .edit-post-sidebar input[type="radio"]:focus, body.admin-color-ocean .edit-post-sidebar input[type="tel"]:focus, body.admin-color-ocean .edit-post-sidebar input[type="time"]:focus, body.admin-color-ocean .edit-post-sidebar input[type="url"]:focus, body.admin-color-ocean .edit-post-sidebar input[type="week"]:focus, body.admin-color-ocean .edit-post-sidebar input[type="password"]:focus, body.admin-color-ocean .edit-post-sidebar input[type="checkbox"]:focus, body.admin-color-ocean .edit-post-sidebar input[type="color"]:focus, body.admin-color-ocean .edit-post-sidebar input[type="date"]:focus, body.admin-color-ocean .edit-post-sidebar input[type="datetime"]:focus, body.admin-color-ocean .edit-post-sidebar input[type="datetime-local"]:focus, body.admin-color-ocean .edit-post-sidebar input[type="email"]:focus, body.admin-color-ocean .edit-post-sidebar input[type="month"]:focus, body.admin-color-ocean .edit-post-sidebar input[type="number"]:focus, body.admin-color-ocean .edit-post-sidebar select:focus, body.admin-color-ocean .edit-post-sidebar textarea:focus, body.admin-color-ocean .editor-post-publish-panel .input-control:focus, body.admin-color-ocean .editor-post-publish-panel input[type="text"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type="search"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type="radio"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type="tel"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type="time"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type="url"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type="week"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type="password"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type="checkbox"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type="color"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type="date"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type="datetime"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type="datetime-local"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type="email"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type="month"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type="number"]:focus, body.admin-color-ocean .editor-post-publish-panel select:focus, body.admin-color-ocean .editor-post-publish-panel textarea:focus, body.admin-color-ocean .components-popover .input-control:focus, body.admin-color-ocean .components-popover input[type="text"]:focus, body.admin-color-ocean .components-popover input[type="search"]:focus, body.admin-color-ocean .components-popover input[type="radio"]:focus, body.admin-color-ocean .components-popover input[type="tel"]:focus, body.admin-color-ocean .components-popover input[type="time"]:focus, body.admin-color-ocean .components-popover input[type="url"]:focus, body.admin-color-ocean .components-popover input[type="week"]:focus, body.admin-color-ocean .components-popover input[type="password"]:focus, body.admin-color-ocean .components-popover input[type="checkbox"]:focus, body.admin-color-ocean .components-popover input[type="color"]:focus, body.admin-color-ocean .components-popover input[type="date"]:focus, body.admin-color-ocean .components-popover input[type="datetime"]:focus, body.admin-color-ocean .components-popover input[type="datetime-local"]:focus, body.admin-color-ocean .components-popover input[type="email"]:focus, body.admin-color-ocean .components-popover input[type="month"]:focus, body.admin-color-ocean .components-popover input[type="number"]:focus, body.admin-color-ocean .components-popover select:focus, body.admin-color-ocean .components-popover textarea:focus, body.admin-color-ocean .components-modal__frame .input-control:focus, body.admin-color-ocean .components-modal__frame input[type="text"]:focus, body.admin-color-ocean .components-modal__frame input[type="search"]:focus, body.admin-color-ocean .components-modal__frame input[type="radio"]:focus, body.admin-color-ocean .components-modal__frame input[type="tel"]:focus, body.admin-color-ocean .components-modal__frame input[type="time"]:focus, body.admin-color-ocean .components-modal__frame input[type="url"]:focus, body.admin-color-ocean .components-modal__frame input[type="week"]:focus, body.admin-color-ocean .components-modal__frame input[type="password"]:focus, body.admin-color-ocean .components-modal__frame input[type="checkbox"]:focus, body.admin-color-ocean .components-modal__frame input[type="color"]:focus, body.admin-color-ocean .components-modal__frame input[type="date"]:focus, body.admin-color-ocean .components-modal__frame input[type="datetime"]:focus, body.admin-color-ocean .components-modal__frame input[type="datetime-local"]:focus, body.admin-color-ocean .components-modal__frame input[type="email"]:focus, body.admin-color-ocean .components-modal__frame input[type="month"]:focus, body.admin-color-ocean .components-modal__frame input[type="number"]:focus, body.admin-color-ocean .components-modal__frame select:focus, body.admin-color-ocean .components-modal__frame textarea:focus {
+ border-color: rgb(163, 185, 162);
+ box-shadow: 0 0 0 0.5px #a3b9a2; }
+ body.admin-color-midnight .edit-post-header .input-control:focus, body.admin-color-midnight .edit-post-header input[type="text"]:focus, body.admin-color-midnight .edit-post-header input[type="search"]:focus, body.admin-color-midnight .edit-post-header input[type="radio"]:focus, body.admin-color-midnight .edit-post-header input[type="tel"]:focus, body.admin-color-midnight .edit-post-header input[type="time"]:focus, body.admin-color-midnight .edit-post-header input[type="url"]:focus, body.admin-color-midnight .edit-post-header input[type="week"]:focus, body.admin-color-midnight .edit-post-header input[type="password"]:focus, body.admin-color-midnight .edit-post-header input[type="checkbox"]:focus, body.admin-color-midnight .edit-post-header input[type="color"]:focus, body.admin-color-midnight .edit-post-header input[type="date"]:focus, body.admin-color-midnight .edit-post-header input[type="datetime"]:focus, body.admin-color-midnight .edit-post-header input[type="datetime-local"]:focus, body.admin-color-midnight .edit-post-header input[type="email"]:focus, body.admin-color-midnight .edit-post-header input[type="month"]:focus, body.admin-color-midnight .edit-post-header input[type="number"]:focus, body.admin-color-midnight .edit-post-header select:focus, body.admin-color-midnight .edit-post-header textarea:focus, body.admin-color-midnight .edit-post-visual-editor .input-control:focus, body.admin-color-midnight .edit-post-visual-editor input[type="text"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type="search"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type="radio"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type="tel"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type="time"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type="url"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type="week"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type="password"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type="checkbox"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type="color"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type="date"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type="datetime"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type="datetime-local"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type="email"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type="month"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type="number"]:focus, body.admin-color-midnight .edit-post-visual-editor select:focus, body.admin-color-midnight .edit-post-visual-editor textarea:focus, body.admin-color-midnight .edit-post-text-editor .input-control:focus, body.admin-color-midnight .edit-post-text-editor input[type="text"]:focus, body.admin-color-midnight .edit-post-text-editor input[type="search"]:focus, body.admin-color-midnight .edit-post-text-editor input[type="radio"]:focus, body.admin-color-midnight .edit-post-text-editor input[type="tel"]:focus, body.admin-color-midnight .edit-post-text-editor input[type="time"]:focus, body.admin-color-midnight .edit-post-text-editor input[type="url"]:focus, body.admin-color-midnight .edit-post-text-editor input[type="week"]:focus, body.admin-color-midnight .edit-post-text-editor input[type="password"]:focus, body.admin-color-midnight .edit-post-text-editor input[type="checkbox"]:focus, body.admin-color-midnight .edit-post-text-editor input[type="color"]:focus, body.admin-color-midnight .edit-post-text-editor input[type="date"]:focus, body.admin-color-midnight .edit-post-text-editor input[type="datetime"]:focus, body.admin-color-midnight .edit-post-text-editor input[type="datetime-local"]:focus, body.admin-color-midnight .edit-post-text-editor input[type="email"]:focus, body.admin-color-midnight .edit-post-text-editor input[type="month"]:focus, body.admin-color-midnight .edit-post-text-editor input[type="number"]:focus, body.admin-color-midnight .edit-post-text-editor select:focus, body.admin-color-midnight .edit-post-text-editor textarea:focus, body.admin-color-midnight .edit-post-sidebar .input-control:focus, body.admin-color-midnight .edit-post-sidebar input[type="text"]:focus, body.admin-color-midnight .edit-post-sidebar input[type="search"]:focus, body.admin-color-midnight .edit-post-sidebar input[type="radio"]:focus, body.admin-color-midnight .edit-post-sidebar input[type="tel"]:focus, body.admin-color-midnight .edit-post-sidebar input[type="time"]:focus, body.admin-color-midnight .edit-post-sidebar input[type="url"]:focus, body.admin-color-midnight .edit-post-sidebar input[type="week"]:focus, body.admin-color-midnight .edit-post-sidebar input[type="password"]:focus, body.admin-color-midnight .edit-post-sidebar input[type="checkbox"]:focus, body.admin-color-midnight .edit-post-sidebar input[type="color"]:focus, body.admin-color-midnight .edit-post-sidebar input[type="date"]:focus, body.admin-color-midnight .edit-post-sidebar input[type="datetime"]:focus, body.admin-color-midnight .edit-post-sidebar input[type="datetime-local"]:focus, body.admin-color-midnight .edit-post-sidebar input[type="email"]:focus, body.admin-color-midnight .edit-post-sidebar input[type="month"]:focus, body.admin-color-midnight .edit-post-sidebar input[type="number"]:focus, body.admin-color-midnight .edit-post-sidebar select:focus, body.admin-color-midnight .edit-post-sidebar textarea:focus, body.admin-color-midnight .editor-post-publish-panel .input-control:focus, body.admin-color-midnight .editor-post-publish-panel input[type="text"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type="search"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type="radio"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type="tel"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type="time"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type="url"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type="week"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type="password"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type="checkbox"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type="color"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type="date"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type="datetime"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type="datetime-local"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type="email"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type="month"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type="number"]:focus, body.admin-color-midnight .editor-post-publish-panel select:focus, body.admin-color-midnight .editor-post-publish-panel textarea:focus, body.admin-color-midnight .components-popover .input-control:focus, body.admin-color-midnight .components-popover input[type="text"]:focus, body.admin-color-midnight .components-popover input[type="search"]:focus, body.admin-color-midnight .components-popover input[type="radio"]:focus, body.admin-color-midnight .components-popover input[type="tel"]:focus, body.admin-color-midnight .components-popover input[type="time"]:focus, body.admin-color-midnight .components-popover input[type="url"]:focus, body.admin-color-midnight .components-popover input[type="week"]:focus, body.admin-color-midnight .components-popover input[type="password"]:focus, body.admin-color-midnight .components-popover input[type="checkbox"]:focus, body.admin-color-midnight .components-popover input[type="color"]:focus, body.admin-color-midnight .components-popover input[type="date"]:focus, body.admin-color-midnight .components-popover input[type="datetime"]:focus, body.admin-color-midnight .components-popover input[type="datetime-local"]:focus, body.admin-color-midnight .components-popover input[type="email"]:focus, body.admin-color-midnight .components-popover input[type="month"]:focus, body.admin-color-midnight .components-popover input[type="number"]:focus, body.admin-color-midnight .components-popover select:focus, body.admin-color-midnight .components-popover textarea:focus, body.admin-color-midnight .components-modal__frame .input-control:focus, body.admin-color-midnight .components-modal__frame input[type="text"]:focus, body.admin-color-midnight .components-modal__frame input[type="search"]:focus, body.admin-color-midnight .components-modal__frame input[type="radio"]:focus, body.admin-color-midnight .components-modal__frame input[type="tel"]:focus, body.admin-color-midnight .components-modal__frame input[type="time"]:focus, body.admin-color-midnight .components-modal__frame input[type="url"]:focus, body.admin-color-midnight .components-modal__frame input[type="week"]:focus, body.admin-color-midnight .components-modal__frame input[type="password"]:focus, body.admin-color-midnight .components-modal__frame input[type="checkbox"]:focus, body.admin-color-midnight .components-modal__frame input[type="color"]:focus, body.admin-color-midnight .components-modal__frame input[type="date"]:focus, body.admin-color-midnight .components-modal__frame input[type="datetime"]:focus, body.admin-color-midnight .components-modal__frame input[type="datetime-local"]:focus, body.admin-color-midnight .components-modal__frame input[type="email"]:focus, body.admin-color-midnight .components-modal__frame input[type="month"]:focus, body.admin-color-midnight .components-modal__frame input[type="number"]:focus, body.admin-color-midnight .components-modal__frame select:focus, body.admin-color-midnight .components-modal__frame textarea:focus {
+ border-color: rgb(225, 77, 67);
+ box-shadow: 0 0 0 0.5px #e14d43; }
+ body.admin-color-ectoplasm .edit-post-header .input-control:focus, body.admin-color-ectoplasm .edit-post-header input[type="text"]:focus, body.admin-color-ectoplasm .edit-post-header input[type="search"]:focus, body.admin-color-ectoplasm .edit-post-header input[type="radio"]:focus, body.admin-color-ectoplasm .edit-post-header input[type="tel"]:focus, body.admin-color-ectoplasm .edit-post-header input[type="time"]:focus, body.admin-color-ectoplasm .edit-post-header input[type="url"]:focus, body.admin-color-ectoplasm .edit-post-header input[type="week"]:focus, body.admin-color-ectoplasm .edit-post-header input[type="password"]:focus, body.admin-color-ectoplasm .edit-post-header input[type="checkbox"]:focus, body.admin-color-ectoplasm .edit-post-header input[type="color"]:focus, body.admin-color-ectoplasm .edit-post-header input[type="date"]:focus, body.admin-color-ectoplasm .edit-post-header input[type="datetime"]:focus, body.admin-color-ectoplasm .edit-post-header input[type="datetime-local"]:focus, body.admin-color-ectoplasm .edit-post-header input[type="email"]:focus, body.admin-color-ectoplasm .edit-post-header input[type="month"]:focus, body.admin-color-ectoplasm .edit-post-header input[type="number"]:focus, body.admin-color-ectoplasm .edit-post-header select:focus, body.admin-color-ectoplasm .edit-post-header textarea:focus, body.admin-color-ectoplasm .edit-post-visual-editor .input-control:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type="text"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type="search"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type="radio"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type="tel"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type="time"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type="url"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type="week"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type="password"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type="checkbox"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type="color"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type="date"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type="datetime"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type="datetime-local"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type="email"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type="month"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type="number"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor select:focus, body.admin-color-ectoplasm .edit-post-visual-editor textarea:focus, body.admin-color-ectoplasm .edit-post-text-editor .input-control:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type="text"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type="search"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type="radio"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type="tel"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type="time"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type="url"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type="week"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type="password"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type="checkbox"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type="color"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type="date"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type="datetime"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type="datetime-local"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type="email"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type="month"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type="number"]:focus, body.admin-color-ectoplasm .edit-post-text-editor select:focus, body.admin-color-ectoplasm .edit-post-text-editor textarea:focus, body.admin-color-ectoplasm .edit-post-sidebar .input-control:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type="text"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type="search"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type="radio"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type="tel"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type="time"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type="url"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type="week"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type="password"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type="checkbox"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type="color"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type="date"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type="datetime"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type="datetime-local"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type="email"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type="month"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type="number"]:focus, body.admin-color-ectoplasm .edit-post-sidebar select:focus, body.admin-color-ectoplasm .edit-post-sidebar textarea:focus, body.admin-color-ectoplasm .editor-post-publish-panel .input-control:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type="text"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type="search"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type="radio"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type="tel"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type="time"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type="url"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type="week"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type="password"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type="checkbox"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type="color"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type="date"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type="datetime"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type="datetime-local"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type="email"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type="month"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type="number"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel select:focus, body.admin-color-ectoplasm .editor-post-publish-panel textarea:focus, body.admin-color-ectoplasm .components-popover .input-control:focus, body.admin-color-ectoplasm .components-popover input[type="text"]:focus, body.admin-color-ectoplasm .components-popover input[type="search"]:focus, body.admin-color-ectoplasm .components-popover input[type="radio"]:focus, body.admin-color-ectoplasm .components-popover input[type="tel"]:focus, body.admin-color-ectoplasm .components-popover input[type="time"]:focus, body.admin-color-ectoplasm .components-popover input[type="url"]:focus, body.admin-color-ectoplasm .components-popover input[type="week"]:focus, body.admin-color-ectoplasm .components-popover input[type="password"]:focus, body.admin-color-ectoplasm .components-popover input[type="checkbox"]:focus, body.admin-color-ectoplasm .components-popover input[type="color"]:focus, body.admin-color-ectoplasm .components-popover input[type="date"]:focus, body.admin-color-ectoplasm .components-popover input[type="datetime"]:focus, body.admin-color-ectoplasm .components-popover input[type="datetime-local"]:focus, body.admin-color-ectoplasm .components-popover input[type="email"]:focus, body.admin-color-ectoplasm .components-popover input[type="month"]:focus, body.admin-color-ectoplasm .components-popover input[type="number"]:focus, body.admin-color-ectoplasm .components-popover select:focus, body.admin-color-ectoplasm .components-popover textarea:focus, body.admin-color-ectoplasm .components-modal__frame .input-control:focus, body.admin-color-ectoplasm .components-modal__frame input[type="text"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type="search"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type="radio"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type="tel"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type="time"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type="url"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type="week"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type="password"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type="checkbox"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type="color"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type="date"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type="datetime"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type="datetime-local"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type="email"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type="month"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type="number"]:focus, body.admin-color-ectoplasm .components-modal__frame select:focus, body.admin-color-ectoplasm .components-modal__frame textarea:focus {
+ border-color: rgb(167, 182, 86);
+ box-shadow: 0 0 0 0.5px #a7b656; }
+ body.admin-color-coffee .edit-post-header .input-control:focus, body.admin-color-coffee .edit-post-header input[type="text"]:focus, body.admin-color-coffee .edit-post-header input[type="search"]:focus, body.admin-color-coffee .edit-post-header input[type="radio"]:focus, body.admin-color-coffee .edit-post-header input[type="tel"]:focus, body.admin-color-coffee .edit-post-header input[type="time"]:focus, body.admin-color-coffee .edit-post-header input[type="url"]:focus, body.admin-color-coffee .edit-post-header input[type="week"]:focus, body.admin-color-coffee .edit-post-header input[type="password"]:focus, body.admin-color-coffee .edit-post-header input[type="checkbox"]:focus, body.admin-color-coffee .edit-post-header input[type="color"]:focus, body.admin-color-coffee .edit-post-header input[type="date"]:focus, body.admin-color-coffee .edit-post-header input[type="datetime"]:focus, body.admin-color-coffee .edit-post-header input[type="datetime-local"]:focus, body.admin-color-coffee .edit-post-header input[type="email"]:focus, body.admin-color-coffee .edit-post-header input[type="month"]:focus, body.admin-color-coffee .edit-post-header input[type="number"]:focus, body.admin-color-coffee .edit-post-header select:focus, body.admin-color-coffee .edit-post-header textarea:focus, body.admin-color-coffee .edit-post-visual-editor .input-control:focus, body.admin-color-coffee .edit-post-visual-editor input[type="text"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type="search"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type="radio"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type="tel"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type="time"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type="url"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type="week"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type="password"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type="checkbox"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type="color"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type="date"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type="datetime"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type="datetime-local"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type="email"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type="month"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type="number"]:focus, body.admin-color-coffee .edit-post-visual-editor select:focus, body.admin-color-coffee .edit-post-visual-editor textarea:focus, body.admin-color-coffee .edit-post-text-editor .input-control:focus, body.admin-color-coffee .edit-post-text-editor input[type="text"]:focus, body.admin-color-coffee .edit-post-text-editor input[type="search"]:focus, body.admin-color-coffee .edit-post-text-editor input[type="radio"]:focus, body.admin-color-coffee .edit-post-text-editor input[type="tel"]:focus, body.admin-color-coffee .edit-post-text-editor input[type="time"]:focus, body.admin-color-coffee .edit-post-text-editor input[type="url"]:focus, body.admin-color-coffee .edit-post-text-editor input[type="week"]:focus, body.admin-color-coffee .edit-post-text-editor input[type="password"]:focus, body.admin-color-coffee .edit-post-text-editor input[type="checkbox"]:focus, body.admin-color-coffee .edit-post-text-editor input[type="color"]:focus, body.admin-color-coffee .edit-post-text-editor input[type="date"]:focus, body.admin-color-coffee .edit-post-text-editor input[type="datetime"]:focus, body.admin-color-coffee .edit-post-text-editor input[type="datetime-local"]:focus, body.admin-color-coffee .edit-post-text-editor input[type="email"]:focus, body.admin-color-coffee .edit-post-text-editor input[type="month"]:focus, body.admin-color-coffee .edit-post-text-editor input[type="number"]:focus, body.admin-color-coffee .edit-post-text-editor select:focus, body.admin-color-coffee .edit-post-text-editor textarea:focus, body.admin-color-coffee .edit-post-sidebar .input-control:focus, body.admin-color-coffee .edit-post-sidebar input[type="text"]:focus, body.admin-color-coffee .edit-post-sidebar input[type="search"]:focus, body.admin-color-coffee .edit-post-sidebar input[type="radio"]:focus, body.admin-color-coffee .edit-post-sidebar input[type="tel"]:focus, body.admin-color-coffee .edit-post-sidebar input[type="time"]:focus, body.admin-color-coffee .edit-post-sidebar input[type="url"]:focus, body.admin-color-coffee .edit-post-sidebar input[type="week"]:focus, body.admin-color-coffee .edit-post-sidebar input[type="password"]:focus, body.admin-color-coffee .edit-post-sidebar input[type="checkbox"]:focus, body.admin-color-coffee .edit-post-sidebar input[type="color"]:focus, body.admin-color-coffee .edit-post-sidebar input[type="date"]:focus, body.admin-color-coffee .edit-post-sidebar input[type="datetime"]:focus, body.admin-color-coffee .edit-post-sidebar input[type="datetime-local"]:focus, body.admin-color-coffee .edit-post-sidebar input[type="email"]:focus, body.admin-color-coffee .edit-post-sidebar input[type="month"]:focus, body.admin-color-coffee .edit-post-sidebar input[type="number"]:focus, body.admin-color-coffee .edit-post-sidebar select:focus, body.admin-color-coffee .edit-post-sidebar textarea:focus, body.admin-color-coffee .editor-post-publish-panel .input-control:focus, body.admin-color-coffee .editor-post-publish-panel input[type="text"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type="search"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type="radio"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type="tel"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type="time"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type="url"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type="week"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type="password"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type="checkbox"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type="color"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type="date"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type="datetime"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type="datetime-local"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type="email"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type="month"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type="number"]:focus, body.admin-color-coffee .editor-post-publish-panel select:focus, body.admin-color-coffee .editor-post-publish-panel textarea:focus, body.admin-color-coffee .components-popover .input-control:focus, body.admin-color-coffee .components-popover input[type="text"]:focus, body.admin-color-coffee .components-popover input[type="search"]:focus, body.admin-color-coffee .components-popover input[type="radio"]:focus, body.admin-color-coffee .components-popover input[type="tel"]:focus, body.admin-color-coffee .components-popover input[type="time"]:focus, body.admin-color-coffee .components-popover input[type="url"]:focus, body.admin-color-coffee .components-popover input[type="week"]:focus, body.admin-color-coffee .components-popover input[type="password"]:focus, body.admin-color-coffee .components-popover input[type="checkbox"]:focus, body.admin-color-coffee .components-popover input[type="color"]:focus, body.admin-color-coffee .components-popover input[type="date"]:focus, body.admin-color-coffee .components-popover input[type="datetime"]:focus, body.admin-color-coffee .components-popover input[type="datetime-local"]:focus, body.admin-color-coffee .components-popover input[type="email"]:focus, body.admin-color-coffee .components-popover input[type="month"]:focus, body.admin-color-coffee .components-popover input[type="number"]:focus, body.admin-color-coffee .components-popover select:focus, body.admin-color-coffee .components-popover textarea:focus, body.admin-color-coffee .components-modal__frame .input-control:focus, body.admin-color-coffee .components-modal__frame input[type="text"]:focus, body.admin-color-coffee .components-modal__frame input[type="search"]:focus, body.admin-color-coffee .components-modal__frame input[type="radio"]:focus, body.admin-color-coffee .components-modal__frame input[type="tel"]:focus, body.admin-color-coffee .components-modal__frame input[type="time"]:focus, body.admin-color-coffee .components-modal__frame input[type="url"]:focus, body.admin-color-coffee .components-modal__frame input[type="week"]:focus, body.admin-color-coffee .components-modal__frame input[type="password"]:focus, body.admin-color-coffee .components-modal__frame input[type="checkbox"]:focus, body.admin-color-coffee .components-modal__frame input[type="color"]:focus, body.admin-color-coffee .components-modal__frame input[type="date"]:focus, body.admin-color-coffee .components-modal__frame input[type="datetime"]:focus, body.admin-color-coffee .components-modal__frame input[type="datetime-local"]:focus, body.admin-color-coffee .components-modal__frame input[type="email"]:focus, body.admin-color-coffee .components-modal__frame input[type="month"]:focus, body.admin-color-coffee .components-modal__frame input[type="number"]:focus, body.admin-color-coffee .components-modal__frame select:focus, body.admin-color-coffee .components-modal__frame textarea:focus {
+ border-color: rgb(194, 166, 140);
+ box-shadow: 0 0 0 0.5px #c2a68c; }
+ body.admin-color-blue .edit-post-header .input-control:focus, body.admin-color-blue .edit-post-header input[type="text"]:focus, body.admin-color-blue .edit-post-header input[type="search"]:focus, body.admin-color-blue .edit-post-header input[type="radio"]:focus, body.admin-color-blue .edit-post-header input[type="tel"]:focus, body.admin-color-blue .edit-post-header input[type="time"]:focus, body.admin-color-blue .edit-post-header input[type="url"]:focus, body.admin-color-blue .edit-post-header input[type="week"]:focus, body.admin-color-blue .edit-post-header input[type="password"]:focus, body.admin-color-blue .edit-post-header input[type="checkbox"]:focus, body.admin-color-blue .edit-post-header input[type="color"]:focus, body.admin-color-blue .edit-post-header input[type="date"]:focus, body.admin-color-blue .edit-post-header input[type="datetime"]:focus, body.admin-color-blue .edit-post-header input[type="datetime-local"]:focus, body.admin-color-blue .edit-post-header input[type="email"]:focus, body.admin-color-blue .edit-post-header input[type="month"]:focus, body.admin-color-blue .edit-post-header input[type="number"]:focus, body.admin-color-blue .edit-post-header select:focus, body.admin-color-blue .edit-post-header textarea:focus, body.admin-color-blue .edit-post-visual-editor .input-control:focus, body.admin-color-blue .edit-post-visual-editor input[type="text"]:focus, body.admin-color-blue .edit-post-visual-editor input[type="search"]:focus, body.admin-color-blue .edit-post-visual-editor input[type="radio"]:focus, body.admin-color-blue .edit-post-visual-editor input[type="tel"]:focus, body.admin-color-blue .edit-post-visual-editor input[type="time"]:focus, body.admin-color-blue .edit-post-visual-editor input[type="url"]:focus, body.admin-color-blue .edit-post-visual-editor input[type="week"]:focus, body.admin-color-blue .edit-post-visual-editor input[type="password"]:focus, body.admin-color-blue .edit-post-visual-editor input[type="checkbox"]:focus, body.admin-color-blue .edit-post-visual-editor input[type="color"]:focus, body.admin-color-blue .edit-post-visual-editor input[type="date"]:focus, body.admin-color-blue .edit-post-visual-editor input[type="datetime"]:focus, body.admin-color-blue .edit-post-visual-editor input[type="datetime-local"]:focus, body.admin-color-blue .edit-post-visual-editor input[type="email"]:focus, body.admin-color-blue .edit-post-visual-editor input[type="month"]:focus, body.admin-color-blue .edit-post-visual-editor input[type="number"]:focus, body.admin-color-blue .edit-post-visual-editor select:focus, body.admin-color-blue .edit-post-visual-editor textarea:focus, body.admin-color-blue .edit-post-text-editor .input-control:focus, body.admin-color-blue .edit-post-text-editor input[type="text"]:focus, body.admin-color-blue .edit-post-text-editor input[type="search"]:focus, body.admin-color-blue .edit-post-text-editor input[type="radio"]:focus, body.admin-color-blue .edit-post-text-editor input[type="tel"]:focus, body.admin-color-blue .edit-post-text-editor input[type="time"]:focus, body.admin-color-blue .edit-post-text-editor input[type="url"]:focus, body.admin-color-blue .edit-post-text-editor input[type="week"]:focus, body.admin-color-blue .edit-post-text-editor input[type="password"]:focus, body.admin-color-blue .edit-post-text-editor input[type="checkbox"]:focus, body.admin-color-blue .edit-post-text-editor input[type="color"]:focus, body.admin-color-blue .edit-post-text-editor input[type="date"]:focus, body.admin-color-blue .edit-post-text-editor input[type="datetime"]:focus, body.admin-color-blue .edit-post-text-editor input[type="datetime-local"]:focus, body.admin-color-blue .edit-post-text-editor input[type="email"]:focus, body.admin-color-blue .edit-post-text-editor input[type="month"]:focus, body.admin-color-blue .edit-post-text-editor input[type="number"]:focus, body.admin-color-blue .edit-post-text-editor select:focus, body.admin-color-blue .edit-post-text-editor textarea:focus, body.admin-color-blue .edit-post-sidebar .input-control:focus, body.admin-color-blue .edit-post-sidebar input[type="text"]:focus, body.admin-color-blue .edit-post-sidebar input[type="search"]:focus, body.admin-color-blue .edit-post-sidebar input[type="radio"]:focus, body.admin-color-blue .edit-post-sidebar input[type="tel"]:focus, body.admin-color-blue .edit-post-sidebar input[type="time"]:focus, body.admin-color-blue .edit-post-sidebar input[type="url"]:focus, body.admin-color-blue .edit-post-sidebar input[type="week"]:focus, body.admin-color-blue .edit-post-sidebar input[type="password"]:focus, body.admin-color-blue .edit-post-sidebar input[type="checkbox"]:focus, body.admin-color-blue .edit-post-sidebar input[type="color"]:focus, body.admin-color-blue .edit-post-sidebar input[type="date"]:focus, body.admin-color-blue .edit-post-sidebar input[type="datetime"]:focus, body.admin-color-blue .edit-post-sidebar input[type="datetime-local"]:focus, body.admin-color-blue .edit-post-sidebar input[type="email"]:focus, body.admin-color-blue .edit-post-sidebar input[type="month"]:focus, body.admin-color-blue .edit-post-sidebar input[type="number"]:focus, body.admin-color-blue .edit-post-sidebar select:focus, body.admin-color-blue .edit-post-sidebar textarea:focus, body.admin-color-blue .editor-post-publish-panel .input-control:focus, body.admin-color-blue .editor-post-publish-panel input[type="text"]:focus, body.admin-color-blue .editor-post-publish-panel input[type="search"]:focus, body.admin-color-blue .editor-post-publish-panel input[type="radio"]:focus, body.admin-color-blue .editor-post-publish-panel input[type="tel"]:focus, body.admin-color-blue .editor-post-publish-panel input[type="time"]:focus, body.admin-color-blue .editor-post-publish-panel input[type="url"]:focus, body.admin-color-blue .editor-post-publish-panel input[type="week"]:focus, body.admin-color-blue .editor-post-publish-panel input[type="password"]:focus, body.admin-color-blue .editor-post-publish-panel input[type="checkbox"]:focus, body.admin-color-blue .editor-post-publish-panel input[type="color"]:focus, body.admin-color-blue .editor-post-publish-panel input[type="date"]:focus, body.admin-color-blue .editor-post-publish-panel input[type="datetime"]:focus, body.admin-color-blue .editor-post-publish-panel input[type="datetime-local"]:focus, body.admin-color-blue .editor-post-publish-panel input[type="email"]:focus, body.admin-color-blue .editor-post-publish-panel input[type="month"]:focus, body.admin-color-blue .editor-post-publish-panel input[type="number"]:focus, body.admin-color-blue .editor-post-publish-panel select:focus, body.admin-color-blue .editor-post-publish-panel textarea:focus, body.admin-color-blue .components-popover .input-control:focus, body.admin-color-blue .components-popover input[type="text"]:focus, body.admin-color-blue .components-popover input[type="search"]:focus, body.admin-color-blue .components-popover input[type="radio"]:focus, body.admin-color-blue .components-popover input[type="tel"]:focus, body.admin-color-blue .components-popover input[type="time"]:focus, body.admin-color-blue .components-popover input[type="url"]:focus, body.admin-color-blue .components-popover input[type="week"]:focus, body.admin-color-blue .components-popover input[type="password"]:focus, body.admin-color-blue .components-popover input[type="checkbox"]:focus, body.admin-color-blue .components-popover input[type="color"]:focus, body.admin-color-blue .components-popover input[type="date"]:focus, body.admin-color-blue .components-popover input[type="datetime"]:focus, body.admin-color-blue .components-popover input[type="datetime-local"]:focus, body.admin-color-blue .components-popover input[type="email"]:focus, body.admin-color-blue .components-popover input[type="month"]:focus, body.admin-color-blue .components-popover input[type="number"]:focus, body.admin-color-blue .components-popover select:focus, body.admin-color-blue .components-popover textarea:focus, body.admin-color-blue .components-modal__frame .input-control:focus, body.admin-color-blue .components-modal__frame input[type="text"]:focus, body.admin-color-blue .components-modal__frame input[type="search"]:focus, body.admin-color-blue .components-modal__frame input[type="radio"]:focus, body.admin-color-blue .components-modal__frame input[type="tel"]:focus, body.admin-color-blue .components-modal__frame input[type="time"]:focus, body.admin-color-blue .components-modal__frame input[type="url"]:focus, body.admin-color-blue .components-modal__frame input[type="week"]:focus, body.admin-color-blue .components-modal__frame input[type="password"]:focus, body.admin-color-blue .components-modal__frame input[type="checkbox"]:focus, body.admin-color-blue .components-modal__frame input[type="color"]:focus, body.admin-color-blue .components-modal__frame input[type="date"]:focus, body.admin-color-blue .components-modal__frame input[type="datetime"]:focus, body.admin-color-blue .components-modal__frame input[type="datetime-local"]:focus, body.admin-color-blue .components-modal__frame input[type="email"]:focus, body.admin-color-blue .components-modal__frame input[type="month"]:focus, body.admin-color-blue .components-modal__frame input[type="number"]:focus, body.admin-color-blue .components-modal__frame select:focus, body.admin-color-blue .components-modal__frame textarea:focus {
+ border-color: rgb(217, 171, 89);
+ box-shadow: 0 0 0 0.5px #d9ab59; }
+ body.admin-color-light .edit-post-header .input-control:focus, body.admin-color-light .edit-post-header input[type="text"]:focus, body.admin-color-light .edit-post-header input[type="search"]:focus, body.admin-color-light .edit-post-header input[type="radio"]:focus, body.admin-color-light .edit-post-header input[type="tel"]:focus, body.admin-color-light .edit-post-header input[type="time"]:focus, body.admin-color-light .edit-post-header input[type="url"]:focus, body.admin-color-light .edit-post-header input[type="week"]:focus, body.admin-color-light .edit-post-header input[type="password"]:focus, body.admin-color-light .edit-post-header input[type="checkbox"]:focus, body.admin-color-light .edit-post-header input[type="color"]:focus, body.admin-color-light .edit-post-header input[type="date"]:focus, body.admin-color-light .edit-post-header input[type="datetime"]:focus, body.admin-color-light .edit-post-header input[type="datetime-local"]:focus, body.admin-color-light .edit-post-header input[type="email"]:focus, body.admin-color-light .edit-post-header input[type="month"]:focus, body.admin-color-light .edit-post-header input[type="number"]:focus, body.admin-color-light .edit-post-header select:focus, body.admin-color-light .edit-post-header textarea:focus, body.admin-color-light .edit-post-visual-editor .input-control:focus, body.admin-color-light .edit-post-visual-editor input[type="text"]:focus, body.admin-color-light .edit-post-visual-editor input[type="search"]:focus, body.admin-color-light .edit-post-visual-editor input[type="radio"]:focus, body.admin-color-light .edit-post-visual-editor input[type="tel"]:focus, body.admin-color-light .edit-post-visual-editor input[type="time"]:focus, body.admin-color-light .edit-post-visual-editor input[type="url"]:focus, body.admin-color-light .edit-post-visual-editor input[type="week"]:focus, body.admin-color-light .edit-post-visual-editor input[type="password"]:focus, body.admin-color-light .edit-post-visual-editor input[type="checkbox"]:focus, body.admin-color-light .edit-post-visual-editor input[type="color"]:focus, body.admin-color-light .edit-post-visual-editor input[type="date"]:focus, body.admin-color-light .edit-post-visual-editor input[type="datetime"]:focus, body.admin-color-light .edit-post-visual-editor input[type="datetime-local"]:focus, body.admin-color-light .edit-post-visual-editor input[type="email"]:focus, body.admin-color-light .edit-post-visual-editor input[type="month"]:focus, body.admin-color-light .edit-post-visual-editor input[type="number"]:focus, body.admin-color-light .edit-post-visual-editor select:focus, body.admin-color-light .edit-post-visual-editor textarea:focus, body.admin-color-light .edit-post-text-editor .input-control:focus, body.admin-color-light .edit-post-text-editor input[type="text"]:focus, body.admin-color-light .edit-post-text-editor input[type="search"]:focus, body.admin-color-light .edit-post-text-editor input[type="radio"]:focus, body.admin-color-light .edit-post-text-editor input[type="tel"]:focus, body.admin-color-light .edit-post-text-editor input[type="time"]:focus, body.admin-color-light .edit-post-text-editor input[type="url"]:focus, body.admin-color-light .edit-post-text-editor input[type="week"]:focus, body.admin-color-light .edit-post-text-editor input[type="password"]:focus, body.admin-color-light .edit-post-text-editor input[type="checkbox"]:focus, body.admin-color-light .edit-post-text-editor input[type="color"]:focus, body.admin-color-light .edit-post-text-editor input[type="date"]:focus, body.admin-color-light .edit-post-text-editor input[type="datetime"]:focus, body.admin-color-light .edit-post-text-editor input[type="datetime-local"]:focus, body.admin-color-light .edit-post-text-editor input[type="email"]:focus, body.admin-color-light .edit-post-text-editor input[type="month"]:focus, body.admin-color-light .edit-post-text-editor input[type="number"]:focus, body.admin-color-light .edit-post-text-editor select:focus, body.admin-color-light .edit-post-text-editor textarea:focus, body.admin-color-light .edit-post-sidebar .input-control:focus, body.admin-color-light .edit-post-sidebar input[type="text"]:focus, body.admin-color-light .edit-post-sidebar input[type="search"]:focus, body.admin-color-light .edit-post-sidebar input[type="radio"]:focus, body.admin-color-light .edit-post-sidebar input[type="tel"]:focus, body.admin-color-light .edit-post-sidebar input[type="time"]:focus, body.admin-color-light .edit-post-sidebar input[type="url"]:focus, body.admin-color-light .edit-post-sidebar input[type="week"]:focus, body.admin-color-light .edit-post-sidebar input[type="password"]:focus, body.admin-color-light .edit-post-sidebar input[type="checkbox"]:focus, body.admin-color-light .edit-post-sidebar input[type="color"]:focus, body.admin-color-light .edit-post-sidebar input[type="date"]:focus, body.admin-color-light .edit-post-sidebar input[type="datetime"]:focus, body.admin-color-light .edit-post-sidebar input[type="datetime-local"]:focus, body.admin-color-light .edit-post-sidebar input[type="email"]:focus, body.admin-color-light .edit-post-sidebar input[type="month"]:focus, body.admin-color-light .edit-post-sidebar input[type="number"]:focus, body.admin-color-light .edit-post-sidebar select:focus, body.admin-color-light .edit-post-sidebar textarea:focus, body.admin-color-light .editor-post-publish-panel .input-control:focus, body.admin-color-light .editor-post-publish-panel input[type="text"]:focus, body.admin-color-light .editor-post-publish-panel input[type="search"]:focus, body.admin-color-light .editor-post-publish-panel input[type="radio"]:focus, body.admin-color-light .editor-post-publish-panel input[type="tel"]:focus, body.admin-color-light .editor-post-publish-panel input[type="time"]:focus, body.admin-color-light .editor-post-publish-panel input[type="url"]:focus, body.admin-color-light .editor-post-publish-panel input[type="week"]:focus, body.admin-color-light .editor-post-publish-panel input[type="password"]:focus, body.admin-color-light .editor-post-publish-panel input[type="checkbox"]:focus, body.admin-color-light .editor-post-publish-panel input[type="color"]:focus, body.admin-color-light .editor-post-publish-panel input[type="date"]:focus, body.admin-color-light .editor-post-publish-panel input[type="datetime"]:focus, body.admin-color-light .editor-post-publish-panel input[type="datetime-local"]:focus, body.admin-color-light .editor-post-publish-panel input[type="email"]:focus, body.admin-color-light .editor-post-publish-panel input[type="month"]:focus, body.admin-color-light .editor-post-publish-panel input[type="number"]:focus, body.admin-color-light .editor-post-publish-panel select:focus, body.admin-color-light .editor-post-publish-panel textarea:focus, body.admin-color-light .components-popover .input-control:focus, body.admin-color-light .components-popover input[type="text"]:focus, body.admin-color-light .components-popover input[type="search"]:focus, body.admin-color-light .components-popover input[type="radio"]:focus, body.admin-color-light .components-popover input[type="tel"]:focus, body.admin-color-light .components-popover input[type="time"]:focus, body.admin-color-light .components-popover input[type="url"]:focus, body.admin-color-light .components-popover input[type="week"]:focus, body.admin-color-light .components-popover input[type="password"]:focus, body.admin-color-light .components-popover input[type="checkbox"]:focus, body.admin-color-light .components-popover input[type="color"]:focus, body.admin-color-light .components-popover input[type="date"]:focus, body.admin-color-light .components-popover input[type="datetime"]:focus, body.admin-color-light .components-popover input[type="datetime-local"]:focus, body.admin-color-light .components-popover input[type="email"]:focus, body.admin-color-light .components-popover input[type="month"]:focus, body.admin-color-light .components-popover input[type="number"]:focus, body.admin-color-light .components-popover select:focus, body.admin-color-light .components-popover textarea:focus, body.admin-color-light .components-modal__frame .input-control:focus, body.admin-color-light .components-modal__frame input[type="text"]:focus, body.admin-color-light .components-modal__frame input[type="search"]:focus, body.admin-color-light .components-modal__frame input[type="radio"]:focus, body.admin-color-light .components-modal__frame input[type="tel"]:focus, body.admin-color-light .components-modal__frame input[type="time"]:focus, body.admin-color-light .components-modal__frame input[type="url"]:focus, body.admin-color-light .components-modal__frame input[type="week"]:focus, body.admin-color-light .components-modal__frame input[type="password"]:focus, body.admin-color-light .components-modal__frame input[type="checkbox"]:focus, body.admin-color-light .components-modal__frame input[type="color"]:focus, body.admin-color-light .components-modal__frame input[type="date"]:focus, body.admin-color-light .components-modal__frame input[type="datetime"]:focus, body.admin-color-light .components-modal__frame input[type="datetime-local"]:focus, body.admin-color-light .components-modal__frame input[type="email"]:focus, body.admin-color-light .components-modal__frame input[type="month"]:focus, body.admin-color-light .components-modal__frame input[type="number"]:focus, body.admin-color-light .components-modal__frame select:focus, body.admin-color-light .components-modal__frame textarea:focus {
+ border-color: rgb(0, 133, 186);
+ box-shadow: 0 0 0 0.5px #0085ba; }
.edit-post-header input[type="number"],
.edit-post-visual-editor input[type="number"],
.edit-post-text-editor input[type="number"],
@@ -12874,7 +13310,7 @@ body.block-editor-page {
.components-popover input[type="radio"]:checked:focus,
.components-modal__frame input[type="checkbox"]:checked:focus,
.components-modal__frame input[type="radio"]:checked:focus {
- box-shadow: 0 0 0 2px #757575; }
+ box-shadow: 0 0 0 1.5px #757575; }
.edit-post-header input[type="checkbox"],
.edit-post-visual-editor input[type="checkbox"],
.edit-post-text-editor input[type="checkbox"],
@@ -12978,7 +13414,7 @@ body.block-editor-page {
.editor-post-publish-panel input[type="checkbox"][aria-checked="mixed"]:focus,
.components-popover input[type="checkbox"][aria-checked="mixed"]:focus,
.components-modal__frame input[type="checkbox"][aria-checked="mixed"]:focus {
- box-shadow: 0 0 0 2px #555d66; }
+ box-shadow: 0 0 0 1.5px #555d66; }
.edit-post-header input[type="radio"],
.edit-post-visual-editor input[type="radio"],
.edit-post-text-editor input[type="radio"],
@@ -13127,9 +13563,9 @@ body.block-editor-page {
.wp-block {
max-width: 580px; }
- .wp-block[data-align="wide"], .wp-block.alignwide {
+ .wp-block[data-align="wide"] {
max-width: 1100px; }
- .wp-block[data-align="full"], .wp-block.alignfull {
+ .wp-block[data-align="full"] {
max-width: none; }
/**
@@ -13173,10 +13609,7 @@ body.block-editor-page {
* than the space allows.
*/
/**
- * Button states and focus styles
- */
-/**
- * Block Toolbar/Formatting Buttons
+ * Focus styles.
*/
/**
* Applies editor left position to the selector passed as argument
@@ -13303,10 +13736,7 @@ body.block-editor-page {
* than the space allows.
*/
/**
- * Button states and focus styles
- */
-/**
- * Block Toolbar/Formatting Buttons
+ * Focus styles.
*/
/**
* Applies editor left position to the selector passed as argument
diff --git a/public/css/laraberg.css.map b/public/css/laraberg.css.map
index 557b4dcd..fc0c1451 100644
--- a/public/css/laraberg.css.map
+++ b/public/css/laraberg.css.map
@@ -1 +1 @@
-{"version":3,"sources":["webpack:////Users/maurice/Projects/js/gutenberg/packages/components/build-style/style.css","webpack:////Users/maurice/Projects/js/gutenberg/packages/block-editor/build-style/style.css","webpack:////Users/maurice/Projects/js/gutenberg/packages/nux/build-style/style.css","webpack:////Users/maurice/Projects/js/gutenberg/packages/editor/build-style/style.css","webpack:////Users/maurice/Projects/js/gutenberg/packages/block-library/build-style/style.css","webpack:////Users/maurice/Projects/js/gutenberg/packages/block-library/build-style/editor.css","webpack:////Users/maurice/Projects/js/gutenberg/packages/block-library/build-style/theme.css","webpack:////Users/maurice/Projects/js/gutenberg/packages/edit-post/build-style/style.css","webpack:////Users/maurice/Projects/js/gutenberg/packages/format-library/build-style/style.css","webpack:////Users/maurice/Projects/js/gutenberg/packages/list-reusable-blocks/build-style/style.css","webpack:///./src/resources/scss/laraberg.scss"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gCAAgC;AAChC;AACA;AACA,8BAA8B,EAAE;AAChC;AACA,+BAA+B;AAC/B;AACA,gCAAgC;AAChC;AACA,kCAAkC;AAClC;AACA,mCAAmC;;AAEnC;AACA;AACA,oDAAoD;AACpD;AACA,kDAAkD,EAAE;;AAEpD;AACA;AACA,gCAAgC;AAChC;AACA;AACA,8BAA8B,EAAE;AAChC;AACA,gCAAgC;;AAEhC;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA,mEAAmE;;AAEnE;AACA;AACA,iBAAiB;AACjB;AACA,eAAe;AACf;AACA,iBAAiB,EAAE;;AAEnB;AACA,aAAa;AACb;AACA,mBAAmB;;AAEnB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA,gBAAgB;;AAEhB;AACA;AACA,cAAc;AACd;AACA,2CAA2C;AAC3C;AACA,4CAA4C;AAC5C;AACA,6CAA6C;AAC7C;AACA,2CAA2C;AAC3C;AACA,4CAA4C;AAC5C;AACA,6CAA6C;AAC7C;AACA,4CAA4C;AAC5C;AACA,2CAA2C;;AAE3C;AACA;AACA,kBAAkB;AAClB;AACA,uBAAuB;AACvB;AACA,6BAA6B;AAC7B;AACA;AACA,uBAAuB;AACvB;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA,4BAA4B;;AAE5B;AACA,4BAA4B;;AAE5B;AACA,4BAA4B;;AAE5B;AACA,4BAA4B;;AAE5B;AACA,4BAA4B;;AAE5B;AACA,4BAA4B;;AAE5B;AACA,4BAA4B;;AAE5B;AACA,4BAA4B;AAC5B;AACA;AACA;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,wBAAwB;AACxB;AACA;AACA,iBAAiB;AACjB;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8BAA8B,EAAE;AAChC;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA;AACA,mCAAmC;AACnC;AACA,4CAA4C;AAC5C;AACA,6CAA6C;AAC7C;AACA,2CAA2C;AAC3C;AACA,4CAA4C;AAC5C;AACA,6CAA6C;AAC7C;AACA,4CAA4C;AAC5C;AACA,2CAA2C;AAC3C;AACA;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA,kCAAkC;AAClC;AACA,mCAAmC;AACnC;AACA,iCAAiC;AACjC;AACA,kCAAkC;AAClC;AACA,mCAAmC;AACnC;AACA,kCAAkC;AAClC;AACA,iCAAiC;AACjC;AACA;AACA,kBAAkB;AAClB;AACA,oCAAoC;AACpC;AACA,qCAAqC;AACrC;AACA,mCAAmC;AACnC;AACA,oCAAoC;AACpC;AACA,qCAAqC;AACrC;AACA,oCAAoC;AACpC;AACA,mCAAmC;AACnC;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA,sCAAsC;AACtC;AACA;AACA,uCAAuC;AACvC;AACA;AACA,qCAAqC;AACrC;AACA;AACA,sCAAsC;AACtC;AACA;AACA,uCAAuC;AACvC;AACA;AACA,sCAAsC;AACtC;AACA;AACA,qCAAqC;AACrC;AACA;AACA,qCAAqC;AACrC;AACA,oEAAoE;AACpE;AACA,qEAAqE;AACrE;AACA,mEAAmE;AACnE;AACA,oEAAoE;AACpE;AACA,qEAAqE;AACrE;AACA,oEAAoE;AACpE;AACA,mEAAmE;AACnE;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA,sCAAsC;AACtC;AACA;AACA;AACA,uCAAuC;AACvC;AACA;AACA;AACA,qCAAqC;AACrC;AACA;AACA;AACA,uCAAuC;AACvC;AACA;AACA;AACA,uCAAuC;AACvC;AACA;AACA;AACA,uCAAuC;AACvC;AACA;AACA;AACA,sCAAsC;AACtC;AACA,+DAA+D;AAC/D;AACA,gEAAgE;AAChE;AACA,iEAAiE;AACjE;AACA,+DAA+D;AAC/D;AACA,gEAAgE;AAChE;AACA,iEAAiE;AACjE;AACA,gEAAgE;AAChE;AACA,+DAA+D;AAC/D;AACA;AACA;AACA;AACA;AACA;AACA,qCAAqC;AACrC;AACA;AACA,sCAAsC;AACtC;AACA;AACA,uCAAuC;AACvC;AACA;AACA,qCAAqC;AACrC;AACA;AACA,sCAAsC;AACtC;AACA;AACA,uCAAuC;AACvC;AACA;AACA,sCAAsC;AACtC;AACA;AACA,qCAAqC;AACrC;AACA;AACA;AACA,qBAAqB;AACrB;AACA,6BAA6B;AAC7B;AACA,8BAA8B;AAC9B;AACA,4BAA4B;AAC5B;AACA,6BAA6B;AAC7B;AACA,8BAA8B;AAC9B;AACA,6BAA6B;AAC7B;AACA,4BAA4B;AAC5B;AACA;AACA,iDAAiD;AACjD;AACA;AACA,kDAAkD;AAClD;AACA;AACA,mDAAmD;AACnD;AACA;AACA,iDAAiD;AACjD;AACA;AACA,kDAAkD;AAClD;AACA;AACA,mDAAmD;AACnD;AACA;AACA,kDAAkD;AAClD;AACA;AACA,iDAAiD;AACjD;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,mBAAmB;AACnB;AACA;AACA,mBAAmB;AACnB;AACA;AACA,mBAAmB;AACnB;AACA;AACA,mBAAmB;AACnB;AACA;AACA,mBAAmB;AACnB;AACA;AACA,mBAAmB;AACnB;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA,gCAAgC,EAAE;AAClC;AACA,qBAAqB;AACrB;AACA;AACA,yEAAyE;AACzE;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA,kBAAkB;AAClB;AACA;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,qBAAqB;AACrB;AACA,4BAA4B;AAC5B;AACA,wBAAwB;AACxB;AACA;AACA,kBAAkB;AAClB;AACA,iBAAiB;;AAEjB;AACA;AACA,iCAAiC,EAAE;;AAEnC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,6CAA6C;AAC7C;AACA;AACA;AACA,kBAAkB,EAAE;AACpB;AACA;AACA;AACA,mCAAmC;AACnC;AACA;AACA,0BAA0B;AAC1B;AACA,iBAAiB;AACjB;AACA,iBAAiB;AACjB;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA;AACA,mBAAmB,EAAE;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA,gBAAgB,EAAE;;AAElB;AACA;AACA;AACA,cAAc;AACd;AACA;AACA,8BAA8B;;AAE9B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mCAAmC;AACnC;AACA;AACA,8BAA8B,EAAE;AAChC;AACA,0BAA0B;AAC1B;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,u5CAAu5C;;AAEv5C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA,8BAA8B,EAAE;AAChC;AACA,4CAA4C;AAC5C;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qCAAqC;AACrC;AACA;AACA;AACA,kBAAkB;;AAElB;AACA;AACA,mBAAmB;;AAEnB;AACA,qBAAqB;AACrB;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA,wBAAwB;;AAExB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,2BAA2B;;AAE3B;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,0BAA0B;;AAE1B;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oDAAoD;AACpD;AACA;AACA;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY;;AAEZ;AACA,mBAAmB;;AAEnB;AACA;AACA,sEAAsE;;AAEtE;AACA,8DAA8D;;AAE9D;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mCAAmC;;AAEnC;AACA;AACA,UAAU;;AAEV;AACA;AACA;AACA,oDAAoD;;AAEpD;AACA;AACA;AACA;AACA;AACA;AACA,YAAY;;AAEZ;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA,8GAA8G;;AAE9G;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mCAAmC;;AAEnC;AACA;AACA,qCAAqC;AACrC;AACA;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA,yIAAyI;;AAEzI;AACA;AACA;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA,eAAe;AACf;AACA,qBAAqB;;AAErB;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA,kBAAkB;AAClB;AACA,kBAAkB;;AAElB;AACA;AACA,iBAAiB;;AAEjB;AACA,kBAAkB;;AAElB;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;AACb;AACA;AACA;AACA;AACA,oDAAoD;;AAEpD;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA,iCAAiC;;AAEjC;AACA;AACA,mBAAmB;;AAEnB;AACA,eAAe;AACf;AACA,qBAAqB;AACrB;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,0BAA0B;AAC1B;AACA;AACA;AACA;AACA;AACA,WAAW;;AAEX;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,8BAA8B;AAC9B;AACA,wBAAwB;AACxB;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB;;AAElB;AACA,aAAa;;AAEb;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA,4BAA4B;;AAE5B;AACA,iBAAiB;;AAEjB;AACA,4BAA4B;;AAE5B;AACA,iBAAiB;;AAEjB;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8BAA8B;;AAE9B;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,eAAe;;AAEf;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA,wBAAwB;;AAExB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,iBAAiB;;AAEjB;AACA,UAAU;;AAEV;AACA,WAAW;;AAEX;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA;AACA,wBAAwB;;AAExB;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB;;AAElB;AACA,aAAa;;AAEb;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA;AACA;AACA,WAAW;;AAEX;AACA,mCAAmC;;AAEnC;AACA;AACA;AACA;AACA,WAAW;;AAEX;AACA,mCAAmC;;AAEnC;AACA;AACA;AACA;AACA,UAAU;;AAEV;AACA,kCAAkC;;AAElC;AACA;AACA,qBAAqB;;AAErB;AACA;AACA,eAAe;;AAEf;AACA;AACA,eAAe;;AAEf;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA,YAAY;;AAEZ;AACA;AACA;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA,aAAa;;AAEb;AACA,aAAa;;AAEb;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,aAAa;;AAEb;AACA,kBAAkB;;AAElB;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA,YAAY;;AAEZ;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA,wBAAwB;;AAExB;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,oBAAoB;;AAEpB;AACA,4BAA4B;;AAE5B;AACA;AACA;AACA;AACA;AACA;AACA,wBAAwB;;AAExB;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA,aAAa;;AAEb;AACA,aAAa;;AAEb;AACA;AACA,YAAY;;AAEZ;AACA,iBAAiB;;AAEjB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA,qBAAqB;;AAErB;AACA;AACA,aAAa;;AAEb;AACA,YAAY;;AAEZ;AACA;AACA;AACA;AACA;AACA,UAAU;;AAEV;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY;;AAEZ;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA,4BAA4B;;AAE5B;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA,aAAa;;AAEb;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;;AAEb;AACA,iBAAiB;;AAEjB;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA,mBAAmB;;AAEnB;AACA,eAAe;;AAEf;AACA,qBAAqB;;AAErB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA,WAAW;;AAEX;AACA,oBAAoB;;AAEpB;AACA,aAAa;;AAEb;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA,qBAAqB;;AAErB;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA,YAAY;;AAEZ;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA,kBAAkB;;AAElB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,qCAAqC;;AAErC;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA,cAAc;;AAEd;AACA,cAAc;;AAEd;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA;AACA;AACA;AACA,aAAa;;AAEb;AACA,aAAa;;AAEb;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,wBAAwB;;AAExB;AACA,sBAAsB;;AAEtB;AACA;AACA,4BAA4B;;AAE5B;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8BAA8B;;AAE9B;AACA,eAAe;;AAEf;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA,wBAAwB;;AAExB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,iBAAiB;;AAEjB;AACA,UAAU;;AAEV;AACA,WAAW;;AAEX;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA;AACA,wBAAwB;;AAExB;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA,gBAAgB;AAChB;AACA,kBAAkB;AAClB;AACA,gBAAgB;AAChB;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA,cAAc;AACd;AACA;AACA;AACA;AACA;AACA,8BAA8B;AAC9B;AACA;AACA;AACA,gCAAgC,EAAE;AAClC;AACA;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA,gCAAgC;AAChC;AACA,YAAY;AACZ;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA,wBAAwB;AACxB;AACA,wBAAwB;AACxB;AACA,wBAAwB;AACxB;AACA,wBAAwB;AACxB;AACA,wBAAwB;AACxB;AACA,wBAAwB;AACxB;AACA,wBAAwB;AACxB;AACA,wBAAwB;AACxB;AACA,mCAAmC;AACnC;AACA,oCAAoC;AACpC;AACA,qCAAqC;AACrC;AACA,mCAAmC;AACnC;AACA,oCAAoC;AACpC;AACA,qCAAqC;AACrC;AACA,qCAAqC;AACrC;AACA,mCAAmC;AACnC;AACA;AACA,cAAc;AACd;AACA;AACA;AACA;AACA,qCAAqC;AACrC;AACA,cAAc;AACd;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA,uBAAuB;;AAEvB;AACA,uBAAuB;AACvB;AACA;AACA,yBAAyB;AACzB;AACA,qBAAqB;AACrB;AACA,kBAAkB;AAClB;AACA,kBAAkB;AAClB;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA,iCAAiC;AACjC;AACA;AACA,iCAAiC;AACjC;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA,+CAA+C;AAC/C;AACA;AACA,oFAAoF;AACpF;AACA;AACA,qBAAqB;AACrB;AACA;AACA,uBAAuB;AACvB;AACA,wBAAwB;AACxB;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA,iCAAiC;AACjC;AACA;AACA,mBAAmB;AACnB;AACA;AACA,kBAAkB;AAClB;AACA;AACA,0CAA0C;AAC1C;AACA,0CAA0C;;AAE1C;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,cAAc;;AAEd;AACA,cAAc;;AAEd;AACA,mBAAmB;;AAEnB;AACA,oBAAoB;;AAEpB;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,wBAAwB;;AAExB;AACA,cAAc;;AAEd;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA,YAAY;AACZ;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA,8BAA8B;;AAE9B;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA,8BAA8B,EAAE;AAChC;AACA;AACA;AACA,oDAAoD;AACpD;AACA;AACA,gCAAgC,EAAE;AAClC;AACA,6CAA6C;;AAE7C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yCAAyC;AACzC;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA,0CAA0C;;AAE1C;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,mIAAmI;;AAEnI;AACA,eAAe;;AAEf;AACA,wBAAwB;;AAExB;AACA,gBAAgB;;AAEhB;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA;AACA,0BAA0B;AAC1B;AACA;AACA;AACA;AACA;AACA,8BAA8B;AAC9B;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA,wBAAwB;AACxB;AACA,2BAA2B;AAC3B;AACA;AACA;AACA,kBAAkB;;AAElB;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;AACd;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8BAA8B;;AAE9B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;AACd;AACA,eAAe;AACf;AACA,kBAAkB;AAClB;AACA,kBAAkB;AAClB;AACA,kBAAkB;AAClB;AACA,kBAAkB;AAClB;AACA,kBAAkB;AAClB;AACA,kBAAkB;AAClB;AACA,kBAAkB;AAClB;AACA,kBAAkB;;AAElB;AACA;AACA,gBAAgB;AAChB;AACA,sBAAsB;AACtB;AACA;AACA,qBAAqB;AACrB;AACA,wBAAwB;;AAExB;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA,2BAA2B;AAC3B;AACA;AACA,6BAA6B;AAC7B;AACA;AACA,iBAAiB;AACjB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA,YAAY;;AAEZ;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA;AACA;AACA,eAAe;AACf;AACA,cAAc;AACd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qCAAqC;AACrC;AACA;AACA,gCAAgC,EAAE;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,gCAAgC,EAAE;AAClC;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA,mBAAmB;AACnB;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA,gCAAgC;AAChC;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA,qBAAqB;AACrB;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA,sCAAsC;;AAEtC;AACA;AACA;AACA,2BAA2B,EAAE;;AAE7B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,8BAA8B,EAAE;AAChC;AACA;AACA,0BAA0B;AAC1B;AACA;AACA;AACA;AACA,mCAAmC;AACnC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA,uBAAuB;AACvB;AACA,gBAAgB;;AAEhB;AACA;AACA,qBAAqB;;AAErB;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA,wBAAwB;AACxB;AACA;AACA,wBAAwB;AACxB;AACA;AACA,mBAAmB;AACnB;AACA;AACA,wBAAwB;AACxB;AACA;AACA,qBAAqB;AACrB;AACA,qBAAqB;AACrB;AACA,qBAAqB;AACrB;AACA,qBAAqB;AACrB;AACA,qBAAqB;AACrB;AACA,qBAAqB;AACrB;AACA,qBAAqB;AACrB;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA,qBAAqB;AACrB;AACA;AACA;AACA,2BAA2B;AAC3B;AACA,qBAAqB;AACrB;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA;AACA,oDAAoD;AACpD;AACA;AACA;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA;AACA;AACA;AACA;AACA,0BAA0B;;AAE1B;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA,gBAAgB;;AAEhB;AACA,6BAA6B;;AAE7B;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;AACd;AACA;AACA,uBAAuB,EAAE;;AAEzB;AACA,YAAY;AACZ;AACA;AACA,kBAAkB;AAClB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA,aAAa,EAAE;;AAEf;AACA;AACA,qBAAqB;;AAErB;AACA;AACA,mBAAmB;AACnB;AACA,cAAc;AACd;AACA;AACA,sBAAsB,EAAE;;AAExB;AACA,UAAU;AACV;AACA;AACA,+BAA+B;AAC/B;AACA,0BAA0B,EAAE;;AAE5B;AACA,WAAW;AACX;AACA;AACA,+BAA+B;AAC/B;AACA;AACA,iBAAiB,EAAE;;AAEnB;AACA;AACA,WAAW;AACX;AACA;AACA,qBAAqB,EAAE;;AAEvB;AACA;AACA,kBAAkB,EAAE;;AAEpB;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wCAAwC;AACxC;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA,2BAA2B,EAAE;;AAE7B;AACA;AACA;AACA,gCAAgC;;AAEhC;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA,cAAc;AACd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA,sBAAsB,EAAE;;AAExB;AACA;AACA,qBAAqB;AACrB;AACA;AACA,sBAAsB;AACtB;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gCAAgC;AAChC;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oCAAoC,EAAE;AACtC;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA;AACA,qBAAqB;AACrB;AACA,kBAAkB,EAAE;;AAEpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA,kBAAkB,EAAE;AACpB;AACA;AACA,qBAAqB;AACrB;AACA;AACA,cAAc;AACd;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA,wBAAwB;;AAExB;AACA,wBAAwB;AACxB;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA,wBAAwB,EAAE;;AAE1B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA,uBAAuB;AACvB;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;;AAE9B;AACA;AACA,yBAAyB;;AAEzB;AACA,oBAAoB;;AAEpB;AACA,0BAA0B;;AAE1B;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA,kCAAkC;AAClC;AACA,qBAAqB;;AAErB;AACA;AACA;AACA,cAAc;AACd;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA,4BAA4B,EAAE;;AAE9B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,qBAAqB;AACrB;AACA;AACA,2BAA2B;;AAE3B;AACA,mBAAmB;;AAEnB;AACA;AACA,mCAAmC;AACnC;AACA,sBAAsB;AACtB;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mCAAmC;AACnC;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA,0CAA0C;AAC1C;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA;AACA,qBAAqB;;AAErB;AACA;AACA,0BAA0B;;AAE1B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8BAA8B,EAAE;AAChC;AACA;AACA;AACA;AACA;AACA,gCAAgC;AAChC;AACA;AACA;AACA,gCAAgC;AAChC;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uCAAuC;AACvC;AACA;AACA,gCAAgC,EAAE;AAClC;AACA;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA,0BAA0B;;AAE1B;AACA,qBAAqB;;AAErB;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,iBAAiB;AACjB;AACA;AACA;AACA,mBAAmB;AACnB;AACA,kBAAkB;;AAElB;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iCAAiC;AACjC;AACA;AACA;AACA;AACA;AACA,8BAA8B,EAAE;AAChC;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;AACb;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA,iBAAiB;;AAEjB;AACA,qBAAqB;;AAErB;AACA;AACA,cAAc;;AAEd;AACA;AACA,aAAa;;AAEb;AACA;AACA,sBAAsB;AACtB;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,qBAAqB;AACrB;AACA,oBAAoB;;AAEpB;AACA;AACA,sBAAsB;;AAEtB;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA,qBAAqB;;AAErB;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;AACb;AACA,eAAe;AACf;AACA;AACA;AACA;AACA;AACA,gCAAgC;AAChC;AACA,qBAAqB;AACrB;AACA,gCAAgC;AAChC;AACA,6BAA6B;AAC7B;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA,uBAAuB;AACvB;AACA,qBAAqB;AACrB;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA,sBAAsB;AACtB;AACA,kBAAkB;AAClB;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA,wBAAwB;AACxB;AACA,oBAAoB;AACpB;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA,sCAAsC;AACtC;AACA,uBAAuB;AACvB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA,sCAAsC;AACtC;AACA,iBAAiB;AACjB;AACA,cAAc;AACd;AACA;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC;AAClC;AACA,iBAAiB;AACjB;AACA;AACA,gCAAgC;AAChC;AACA;AACA,eAAe;AACf;AACA,uBAAuB;AACvB;AACA;AACA,gBAAgB;AAChB;AACA,wBAAwB;;AAExB;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA;AACA;AACA,wBAAwB;;AAExB;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA,aAAa;;AAEb;AACA;AACA;AACA,yBAAyB;AACzB;AACA,kBAAkB;AAClB;AACA,qBAAqB;;AAErB;AACA,qBAAqB;;AAErB;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA,eAAe;AACf;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;;AAEb;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;AACtB;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA;AACA,wBAAwB;;AAExB;AACA,aAAa;;AAEb;AACA,aAAa;;AAEb;AACA,aAAa;;AAEb;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA,gCAAgC;AAChC;AACA;AACA;AACA;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA;AACA;AACA;AACA;AACA,gCAAgC;AAChC;AACA;AACA;AACA;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA;AACA;AACA,eAAe;AACf;AACA;AACA,eAAe,EAAE;;AAEjB;AACA;AACA;AACA,eAAe;AACf;AACA;AACA,eAAe,EAAE;;AAEjB;AACA;AACA,2BAA2B;;AAE3B;AACA,0BAA0B;;AAE1B;AACA,yBAAyB;;AAEzB;AACA,4BAA4B;;AAE5B;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA,mBAAmB;;AAEnB;AACA,cAAc;;AAEd;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2DAA2D;AAC3D;AACA;AACA;AACA,wBAAwB,EAAE;;AAE1B;AACA;AACA,oBAAoB,EAAE;;AAEtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA,yBAAyB,EAAE;AAC3B;AACA,8BAA8B;AAC9B;AACA;AACA,kDAAkD;;AAElD;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;AACb;AACA;AACA,kCAAkC;AAClC;AACA;AACA;AACA,+BAA+B;AAC/B;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,4BAA4B;AAC5B;AACA,8BAA8B,EAAE;;AAEhC;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA,uBAAuB;AACvB;AACA,mBAAmB;;AAEnB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,oBAAoB,EAAE;;AAEtB;AACA,qBAAqB;AACrB;AACA,4BAA4B;AAC5B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA,kBAAkB;AAClB;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA,YAAY;AACZ;AACA;AACA,oBAAoB,EAAE;;AAEtB;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA,mBAAmB;AACnB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,+BAA+B;;AAE/B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB;;AC5wHlB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,sBAAsB;AACtB;AACA,uBAAuB;;AAEvB;AACA;AACA,gCAAgC;;AAEhC;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,sBAAsB;;AAEtB;AACA,qBAAqB;;AAErB;AACA,aAAa;;AAEb;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA,0BAA0B,EAAE;AAC5B;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA;AACA,gBAAgB;AAChB;AACA;AACA,sBAAsB;AACtB;AACA,wBAAwB;AACxB;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA,mCAAmC;AACnC;AACA;AACA,oCAAoC;AACpC;AACA;AACA,gCAAgC,EAAE;AAClC;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC;;AAElC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW;;AAEX;AACA;AACA;AACA;AACA;AACA,iCAAiC;AACjC;AACA;AACA;AACA,+BAA+B;;AAE/B;AACA;AACA,0BAA0B;;AAE1B;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,4BAA4B;;AAE5B;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,6CAA6C;;AAE7C;AACA,gCAAgC;;AAEhC;AACA,gBAAgB;;AAEhB;AACA,iBAAiB;;AAEjB;AACA,kBAAkB;;AAElB;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA,YAAY;AACZ;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA,cAAc;;AAEd;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA,0BAA0B,EAAE;;AAE5B;AACA,cAAc;;AAEd;AACA;AACA,aAAa;;AAEb;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA,eAAe;AACf;AACA;AACA,oBAAoB,EAAE;AACtB;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA,sBAAsB;AACtB;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA,gCAAgC;AAChC;AACA;AACA;AACA,8BAA8B,EAAE;AAChC;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA;AACA,gCAAgC,EAAE;;AAElC;AACA;AACA,eAAe;AACf;AACA,eAAe;AACf;AACA,eAAe,EAAE;;AAEjB;AACA;AACA,eAAe;AACf;AACA,eAAe,EAAE;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA,8BAA8B,EAAE;AAChC;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA,gCAAgC;;AAEhC;AACA;AACA;AACA;AACA;AACA,cAAc;AACd;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;AACA,6BAA6B;AAC7B;AACA;AACA,iFAAiF;AACjF;AACA,mFAAmF;AACnF;AACA,qFAAqF;AACrF;AACA,iFAAiF;AACjF;AACA,mFAAmF;AACnF;AACA,qFAAqF;AACrF;AACA,mFAAmF;AACnF;AACA,iFAAiF;;AAEjF;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA,wBAAwB;;AAExB;AACA;AACA;AACA;AACA,cAAc;AACd;AACA;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA,cAAc;AACd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA,0BAA0B;AAC1B;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA,qBAAqB;AACrB;AACA,eAAe;;AAEf;AACA,gBAAgB;;AAEhB;AACA,gBAAgB;AAChB;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B;;AAE5B;AACA,4BAA4B;;AAE5B;AACA,4BAA4B;;AAE5B;AACA,4BAA4B;;AAE5B;AACA,4BAA4B;;AAE5B;AACA,4BAA4B;;AAE5B;AACA,4BAA4B;;AAE5B;AACA,4BAA4B;;AAE5B;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,YAAY;AACZ;AACA;AACA,cAAc;AACd;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA,aAAa;AACb;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA,0BAA0B;;AAE1B;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA,eAAe;;AAEf;AACA;AACA,qBAAqB;;AAErB;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA,sBAAsB,EAAE;;AAExB;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA,mBAAmB;AACnB;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA,0BAA0B;AAC1B;AACA,gCAAgC;AAChC;AACA,gCAAgC;AAChC;AACA;AACA,sBAAsB;AACtB;AACA;AACA,oBAAoB;AACpB;AACA,qBAAqB;AACrB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA,mBAAmB;AACnB;AACA;AACA,uBAAuB;AACvB;AACA,kBAAkB;;AAElB;AACA;AACA,sBAAsB;;AAEtB;AACA,gBAAgB;;AAEhB;AACA,aAAa;;AAEb;AACA,yBAAyB;;AAEzB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA;AACA,2BAA2B;;AAE3B;AACA,mBAAmB;;AAEnB;AACA;AACA,2BAA2B;;AAE3B;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,WAAW;;AAEX;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA,aAAa;;AAEb;AACA,eAAe;AACf;AACA,4BAA4B;AAC5B;AACA,uBAAuB;;AAEvB;AACA,eAAe;;AAEf;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,YAAY;;AAEZ;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B;;AAE5B;AACA;AACA;AACA,mBAAmB;AACnB;AACA,uBAAuB;AACvB;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA;AACA;AACA,iBAAiB;AACjB;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA,sBAAsB;AACtB;AACA;AACA,wBAAwB;;AAExB;AACA,iBAAiB;;AAEjB;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA,kDAAkD;AAClD;AACA;AACA,mCAAmC;AACnC;AACA,wDAAwD;AACxD;AACA,wDAAwD;AACxD;AACA,wDAAwD;AACxD;AACA,wDAAwD;AACxD;AACA,wDAAwD;AACxD;AACA,wDAAwD;AACxD;AACA,wDAAwD;;AAExD;AACA,gBAAgB;;AAEhB;AACA;AACA,kBAAkB;;AAElB;AACA;AACA;AACA,mBAAmB;AACnB;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA,eAAe;AACf;AACA;AACA;AACA;AACA,kBAAkB;;AAElB;AACA,aAAa;;AAEb;AACA;AACA;AACA,iCAAiC;;AAEjC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4CAA4C;AAC5C;AACA;AACA,mCAAmC;AACnC;AACA,wDAAwD;AACxD;AACA,wDAAwD;AACxD;AACA,wDAAwD;AACxD;AACA,wDAAwD;AACxD;AACA,wDAAwD;AACxD;AACA,wDAAwD;AACxD;AACA,wDAAwD;AACxD;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA,4BAA4B;AAC5B;AACA,4BAA4B;AAC5B;AACA,4BAA4B;AAC5B;AACA,4BAA4B;AAC5B;AACA,4BAA4B;AAC5B;AACA,4BAA4B;AAC5B;AACA,4BAA4B;AAC5B;AACA,4BAA4B;AAC5B;AACA,sBAAsB;AACtB;AACA,8BAA8B;;AAE9B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA,mBAAmB;;AAEnB;AACA,qBAAqB;;AAErB;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sCAAsC;;AAEtC;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA,iBAAiB;;AAEjB;AACA,cAAc;AACd;AACA;AACA,sBAAsB;;AAEtB;AACA,gBAAgB;AAChB;AACA,8BAA8B;;AAE9B;AACA,aAAa;AACb;AACA;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;AACb;AACA,uBAAuB;AACvB;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB,EAAE;;AAEtB;AACA;AACA;AACA,aAAa;;AAEb;AACA,gCAAgC;;AAEhC;AACA,iBAAiB;;AAEjB;AACA,qBAAqB;;AAErB;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA,eAAe;;AAEf;AACA,cAAc;;AAEd;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,eAAe;;AAEf;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB;;AAElB;AACA,mBAAmB;;AAEnB;AACA,yBAAyB;;AAEzB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA,iBAAiB;;AAEjB;AACA,cAAc;AACd;AACA;AACA,gBAAgB;AAChB;AACA,6BAA6B;AAC7B;AACA;AACA,eAAe;AACf;AACA;AACA,yBAAyB;AACzB;AACA,mBAAmB;AACnB;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sCAAsC;AACtC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA,kBAAkB;;AAElB;AACA,qBAAqB;;AAErB;AACA;AACA,qBAAqB;;AAErB;AACA,8BAA8B;;AAE9B;AACA,wBAAwB;;AAExB;AACA,gBAAgB;;AAEhB;AACA,YAAY;;AAEZ;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA,mCAAmC;AACnC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA,gCAAgC,EAAE;AAClC;AACA,uCAAuC;AACvC;AACA,kBAAkB;;AAElB;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,aAAa;AACb;AACA;AACA;AACA;AACA,mBAAmB,EAAE;AACrB;AACA;AACA,kBAAkB;;AAElB;AACA;AACA,wBAAwB,EAAE;;AAE1B;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA,sBAAsB,EAAE;AACxB;AACA;AACA;AACA;AACA,mCAAmC;;AAEnC;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA,kFAAkF;AAClF;AACA;AACA;AACA;AACA,kFAAkF;;AAElF;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA,8BAA8B;AAC9B;AACA,wBAAwB;AACxB;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA,4BAA4B;AAC5B;AACA,mBAAmB;AACnB;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA,oCAAoC;AACpC;AACA,0BAA0B;AAC1B;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA,sBAAsB;AACtB;AACA,kBAAkB;;AAElB;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC;;AAElC;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA,qBAAqB;AACrB;AACA,qBAAqB;;AAErB;AACA,sBAAsB;AACtB;AACA,qBAAqB;;AAErB;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA,iBAAiB;;AAEjB;AACA,qBAAqB;AACrB;AACA;AACA,mCAAmC;AACnC;AACA;AACA,2BAA2B;AAC3B;AACA;AACA,0BAA0B;AAC1B;AACA,wBAAwB;AACxB;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA,UAAU;;AAEV;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA,8BAA8B,EAAE;AAChC;AACA;AACA,oBAAoB;AACpB;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA;AACA,oCAAoC;AACpC;AACA;AACA,8BAA8B,EAAE;AAChC;AACA;AACA,uBAAuB;AACvB;AACA,mCAAmC;AACnC;AACA;AACA,gCAAgC,EAAE;;AAElC;AACA,uBAAuB;;AAEvB;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA,uBAAuB;AACvB;AACA,qBAAqB;;AAErB;AACA,gBAAgB;;AAEhB;AACA,oBAAoB;;AAEpB;AACA,iBAAiB;;AAEjB;AACA,mBAAmB;;AAEnB;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA,qBAAqB,EAAE;;AAEvB;AACA,iBAAiB;;AAEjB;AACA,wBAAwB;;AAExB;AACA;AACA,iBAAiB;;AAEjB;AACA,gBAAgB;AAChB;AACA;AACA,kCAAkC;AAClC;AACA,kCAAkC;AAClC;AACA,kCAAkC;AAClC;AACA,kCAAkC;AAClC;AACA,kCAAkC;AAClC;AACA,kCAAkC;AAClC;AACA,kCAAkC;AAClC;AACA,kCAAkC;;AAElC;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA,eAAe;;AAEf;AACA;AACA,qBAAqB;;AAErB;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA,oBAAoB;;AAEpB;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,+BAA+B;;AAE/B;AACA,0BAA0B;;AAE1B;AACA,gBAAgB;;AAEhB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,uBAAuB;;AAEvB;AACA;AACA,gBAAgB;;AAEhB;AACA,gBAAgB;AAChB;AACA,uBAAuB;AACvB;AACA,kBAAkB;;AAElB;AACA,eAAe;;AAEf;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA,wBAAwB;;AAExB;AACA;AACA,eAAe;AACf;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA,qBAAqB,EAAE;AACvB;AACA;AACA;AACA;AACA,wBAAwB,EAAE;AAC1B;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA,uBAAuB,EAAE;;AAEzB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,wBAAwB;AACxB;AACA;AACA;AACA,kBAAkB;AAClB;AACA,kCAAkC;AAClC;AACA,mCAAmC;AACnC;AACA,iCAAiC;AACjC;AACA,kCAAkC;AAClC;AACA,mCAAmC;AACnC;AACA,mCAAmC;AACnC;AACA,iCAAiC;;AAEjC;AACA,oBAAoB;;AAEpB;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wBAAwB;;AAExB;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA,0BAA0B;AAC1B;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA,gCAAgC;;AAEhC;AACA,mBAAmB;;AAEnB;AACA,oBAAoB;;AAEpB;AACA,gBAAgB;;AAEhB;AACA,eAAe;;AAEf;AACA,eAAe;AACf;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA,qBAAqB;AACrB;AACA;AACA,qCAAqC;AACrC;AACA,0EAA0E;AAC1E;AACA,2EAA2E;AAC3E;AACA,yEAAyE;AACzE;AACA,0EAA0E;AAC1E;AACA,2EAA2E;AAC3E;AACA,0EAA0E;AAC1E;AACA,yEAAyE;;AAEzE;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,8BAA8B;;AAE9B;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA,gCAAgC;;AAEhC;AACA;AACA,gBAAgB;AAChB;AACA;AACA,qBAAqB;AACrB;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA,kBAAkB;AAClB;AACA,sBAAsB;;AAEtB;AACA,0BAA0B;;AAE1B;AACA;AACA,yBAAyB;;AAEzB;AACA,eAAe;;AAEf;AACA;AACA,kBAAkB;;AAElB;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,+DAA+D;AAC/D;AACA;AACA,8BAA8B,EAAE;AAChC;AACA;AACA,wBAAwB,EAAE;AAC1B;AACA;AACA;AACA;AACA;AACA;AACA,oCAAoC;AACpC;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA,gBAAgB;AAChB;AACA;AACA,0BAA0B;AAC1B;AACA;AACA;AACA,mCAAmC;AACnC;AACA,wEAAwE;AACxE;AACA,yEAAyE;AACzE;AACA,uEAAuE;AACvE;AACA,wEAAwE;AACxE;AACA,yEAAyE;AACzE;AACA,wEAAwE;AACxE;AACA,uEAAuE;AACvE;AACA;AACA;AACA;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA,iBAAiB;AACjB;AACA;AACA,2BAA2B,EAAE;;AAE7B;AACA,gBAAgB;;AAEhB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB,EAAE;;AAElB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gCAAgC,EAAE;;AAElC;AACA;AACA,4BAA4B,EAAE;;AAE9B;AACA;AACA,cAAc;AACd;AACA;AACA;AACA,qBAAqB,EAAE;;AAEvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY;AACZ;AACA;AACA,gBAAgB;AAChB;AACA,eAAe,EAAE;;AAEjB;AACA;AACA,UAAU;AACV;AACA;AACA,kBAAkB,EAAE;;AAEpB;AACA;AACA;AACA;AACA,iBAAiB,EAAE;AACnB;AACA;AACA,kBAAkB,EAAE;;AAEpB;AACA;AACA,UAAU;AACV;AACA;AACA,iBAAiB,EAAE;;AAEnB;AACA;AACA;AACA,gBAAgB,EAAE;;AAElB;AACA;AACA;AACA,uBAAuB,EAAE;;AAEzB;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA,8BAA8B;;AAE9B;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA,kBAAkB,EAAE;;AAEpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA,aAAa,EAAE;;AAEf;AACA;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA,qBAAqB,EAAE;;AAEvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA,yBAAyB,EAAE;;AAE3B;AACA;AACA;AACA;AACA,eAAe,EAAE;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA;AACA,yBAAyB,EAAE;;AAE3B;AACA,mBAAmB;;AAEnB;AACA,4BAA4B;;AAE5B;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA,sBAAsB,EAAE;AACxB;AACA;AACA;AACA;AACA,mCAAmC;;AAEnC;AACA;AACA;AACA;AACA;AACA,4BAA4B;AAC5B;AACA,gCAAgC;AAChC;AACA,qBAAqB;;AAErB;AACA,iBAAiB;;AAEjB;AACA;AACA,oBAAoB;;AAEpB;AACA,wBAAwB;;AAExB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,kBAAkB;;AAElB;AACA;AACA,sBAAsB;AACtB;AACA,oBAAoB;AACpB;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA;AACA;AACA,6BAA6B,EAAE;AAC/B;AACA;AACA;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA,gCAAgC,EAAE;AAClC;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA,gCAAgC;AAChC;AACA;AACA,8BAA8B,EAAE;AAChC;AACA,iBAAiB;AACjB;AACA,sBAAsB;AACtB;AACA,cAAc;AACd;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA,iBAAiB;;ACvjFjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA;AACA,wBAAwB,EAAE;;AAE1B;AACA;AACA,eAAe;AACf;AACA;AACA,mBAAmB,EAAE;AACrB;AACA;AACA;AACA,WAAW;;AAEX;AACA,mBAAmB;;AAEnB;AACA,kBAAkB;;AAElB;AACA,oBAAoB;;AAEpB;AACA,mBAAmB;;AAEnB;AACA,sBAAsB;;AAEtB;AACA,mBAAmB;;AAEnB;AACA,qBAAqB;;AAErB;AACA,oBAAoB;;AAEpB;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB,EAAE;;AAEpB;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA,kBAAkB;;AAElB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA,sBAAsB;;ACvJtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;AACjB;AACA;AACA,eAAe;;AAEf;AACA;AACA,gBAAgB;AAChB;AACA,0BAA0B;AAC1B;AACA;AACA,sBAAsB;AACtB;AACA,iBAAiB;AACjB;AACA,kBAAkB;AAClB;AACA,mBAAmB;AACnB;AACA,oBAAoB;AACpB;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,oBAAoB;AACpB;AACA;AACA,mCAAmC;AACnC;AACA,4CAA4C;AAC5C;AACA,6CAA6C;AAC7C;AACA,2CAA2C;AAC3C;AACA,4CAA4C;AAC5C;AACA,6CAA6C;AAC7C;AACA,4CAA4C;AAC5C;AACA,2CAA2C;;AAE3C;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA,wBAAwB;;AAExB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA,qBAAqB;;AAErB;AACA,cAAc;;AAEd;AACA;AACA;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA,+CAA+C;;AAE/C;AACA,sBAAsB;AACtB;AACA;AACA,gBAAgB;;AAEhB;AACA,cAAc;AACd;AACA;AACA;AACA,wBAAwB;AACxB;AACA,gBAAgB;;AAEhB;AACA;AACA,sBAAsB;;AAEtB;AACA,aAAa;AACb;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA,oBAAoB;AACpB;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA;AACA;AACA,8BAA8B;AAC9B;AACA;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA,eAAe;;AAEf;AACA,gCAAgC;;AAEhC;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA,8BAA8B;;AAE9B;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA,kBAAkB;;AAElB;AACA;AACA,mBAAmB;AACnB;AACA,sBAAsB;;AAEtB;AACA,eAAe;AACf;AACA;AACA;AACA,gCAAgC;AAChC;AACA;AACA;AACA;AACA;AACA,gCAAgC;;AAEhC;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,iBAAiB;AACjB;AACA,iBAAiB;;AAEjB;AACA,mBAAmB;AACnB;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA,mBAAmB,EAAE;AACrB;AACA;AACA;AACA,yBAAyB,EAAE;AAC3B;AACA,uBAAuB;AACvB;AACA;AACA,yBAAyB,EAAE;AAC3B;AACA,mBAAmB;;AAEnB;AACA;AACA,eAAe;;AAEf;AACA,eAAe;;AAEf;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,qBAAqB;AACrB;AACA;AACA,yBAAyB,EAAE;AAC3B;AACA,qBAAqB;AACrB;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA;AACA,0BAA0B;;AAE1B;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA,eAAe;;AAEf;AACA,mBAAmB;;AAEnB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;;AAEb;AACA,mBAAmB;;AAEnB;AACA,iCAAiC;AACjC;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,+BAA+B;AAC/B;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA,eAAe;;AAEf;AACA,gBAAgB;;AAEhB;AACA;AACA,sBAAsB;AACtB;AACA,kBAAkB;AAClB;AACA,uBAAuB;;AAEvB;AACA;AACA,oBAAoB;;AAEpB;AACA,gBAAgB;AAChB;AACA,mBAAmB;AACnB;AACA;AACA;AACA,wBAAwB;AACxB;AACA,kBAAkB;AAClB;AACA,eAAe;;AAEf;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA,gBAAgB;;AAEhB;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,4BAA4B;;AAE5B;AACA,mBAAmB;;AAEnB;AACA,kBAAkB;;AAElB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA,0BAA0B,EAAE;;AAE5B;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA,qBAAqB;;AAErB;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,6BAA6B;AAC7B;AACA;AACA,iCAAiC,EAAE;AACnC;AACA;AACA;AACA,oCAAoC;;AAEpC;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC;AAClC;AACA,qBAAqB;AACrB;AACA;AACA,gCAAgC;;AAEhC;AACA,mBAAmB;;AAEnB;AACA,qBAAqB;;AAErB;AACA;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,gCAAgC;;AAEhC;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA,oBAAoB;AACpB;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA,qBAAqB;AACrB;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA,uBAAuB,EAAE;AACzB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA,gCAAgC,EAAE;AAClC;AACA;AACA,0BAA0B,EAAE;AAC5B;AACA,oCAAoC;AACpC;AACA,oCAAoC;AACpC;AACA,oCAAoC;AACpC;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA,oCAAoC;AACpC;AACA;AACA,gCAAgC,EAAE;AAClC;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;AACd;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB,EAAE;AACpB;AACA;AACA;AACA,iBAAiB,EAAE;;AAEnB;AACA;AACA;AACA,0BAA0B;AAC1B;AACA;AACA,0BAA0B;;AAE1B;AACA,mBAAmB;;AAEnB;AACA,iBAAiB;;AAEjB;AACA,gBAAgB;AAChB;AACA;AACA;AACA,uBAAuB,EAAE;;AAEzB;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA,YAAY;;AAEZ;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA,sBAAsB;AACtB;AACA,qBAAqB;;ACz0BrB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA,mBAAmB;;AAEnB;AACA,cAAc;AACd;AACA,uBAAuB;AACvB;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B;AAC5B;AACA,mBAAmB;;AAEnB;AACA,8CAA8C;;AAE9C;AACA,mBAAmB;;AAEnB;AACA,8BAA8B;;AAE9B;AACA,iBAAiB;AACjB;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA,cAAc;;AAEd;AACA,qBAAqB;;AAErB;AACA,qBAAqB;AACrB;AACA;AACA;AACA,8BAA8B;AAC9B;AACA,iBAAiB;AACjB;AACA;AACA;AACA,qIAAqI;AACrI;AACA;AACA,wBAAwB;AACxB;AACA,+BAA+B;AAC/B;AACA,mBAAmB;AACnB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA,wBAAwB,EAAE;AAC1B;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,kCAAkC,EAAE;AACpC;AACA;AACA;AACA,mBAAmB;AACnB;AACA,0BAA0B,EAAE;AAC5B;AACA;AACA;AACA,mBAAmB;AACnB;AACA,qBAAqB;AACrB;AACA,0BAA0B,EAAE;;AAE5B;AACA;AACA;AACA;AACA,0BAA0B;;AAE1B;AACA,sBAAsB;;AAEtB;AACA,wBAAwB;;AAExB;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA,yBAAyB;;AAEzB;AACA,uBAAuB;;AAEvB;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA,iCAAiC;AACjC;AACA;AACA;AACA,sCAAsC,EAAE;AACxC;AACA;AACA;AACA,sCAAsC,EAAE;AACxC;AACA;AACA;AACA,8BAA8B;AAC9B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,eAAe;AACf;AACA;AACA,eAAe;AACf;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA,sBAAsB,EAAE;AACxB;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA,cAAc;AACd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA,8BAA8B;;AAE9B;AACA;AACA,4BAA4B;;AAE5B;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA,qBAAqB;AACrB;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA,sBAAsB;;AAEtB;AACA,mBAAmB;;AAEnB;AACA,sBAAsB;;AAEtB;AACA,mBAAmB;;AAEnB;AACA,oBAAoB;;AAEpB;AACA,uBAAuB;;AAEvB;AACA,oBAAoB;;AAEpB;AACA,uBAAuB;AACvB;AACA,uBAAuB;AACvB;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA,0BAA0B;AAC1B;AACA;AACA;AACA;AACA,4BAA4B;AAC5B;AACA,wBAAwB;;AAExB;AACA;AACA;AACA;AACA;AACA;AACA,YAAY;AACZ;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sCAAsC,EAAE;AACxC;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA;AACA,sBAAsB,EAAE;AACxB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mGAAmG;AACnG;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,0BAA0B,EAAE;AAC5B;AACA;AACA;AACA;AACA,4BAA4B;AAC5B;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,sBAAsB,EAAE;AACxB;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA,4BAA4B;;AAE5B;AACA,qBAAqB;AACrB;AACA,oBAAoB;AACpB;AACA,uBAAuB;AACvB;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA,uBAAuB;AACvB;AACA;AACA,uBAAuB;;AAEvB;AACA,wBAAwB;;AAExB;AACA,wBAAwB;AACxB;AACA;AACA;AACA,kDAAkD;AAClD,kDAAkD;AAClD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB,EAAE;;AAEzB;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA,qBAAqB;AACrB;AACA;AACA,wBAAwB;AACxB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,mBAAmB;;AAEnB;AACA,mBAAmB;AACnB;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA,aAAa;AACb;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA,mCAAmC;AACnC;AACA,mCAAmC;AACnC;AACA,mCAAmC;AACnC;AACA,mCAAmC;AACnC;AACA,mCAAmC,EAAE;;AAErC;AACA;AACA;AACA,kBAAkB;;AAElB;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA,cAAc;;AAEd;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA;AACA,mCAAmC;;AAEnC;AACA;AACA;AACA,wBAAwB;;AAExB;AACA;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY;;AAEZ;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY;;AAEZ;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2CAA2C;AAC3C;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA,gBAAgB,EAAE;;AAElB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA;AACA,sBAAsB,EAAE;AACxB;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA,aAAa;AACb;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2BAA2B;;AAE3B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB;;AAElB;AACA,eAAe;;AAEf;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA,cAAc;AACd;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA,eAAe;AACf;AACA,cAAc;AACd;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY;AACZ;AACA;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA,qBAAqB;AACrB;AACA,wBAAwB;AACxB;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA,gBAAgB;AAChB;AACA,yBAAyB;AACzB;AACA,yBAAyB;AACzB;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA,cAAc;;AAEd;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA,kBAAkB;;AAElB;AACA,mBAAmB;;AAEnB;AACA,8BAA8B;;AAE9B;AACA,0BAA0B;;AAE1B;AACA,4BAA4B;;AAE5B;AACA,kBAAkB;;AAElB;AACA,kBAAkB;;AAElB;AACA,kBAAkB;;AAElB;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,qBAAqB;;AAErB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA,qBAAqB;AACrB;AACA,sBAAsB;AACtB;AACA;AACA,qBAAqB;AACrB;AACA;AACA,uBAAuB;AACvB;AACA,mBAAmB;;AAEnB;AACA,mBAAmB;;AAEnB;AACA,eAAe;AACf;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA,yBAAyB;;AAEzB;AACA,iBAAiB;;AAEjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA,qCAAqC;AACrC;AACA,qCAAqC;AACrC;AACA,qCAAqC;AACrC;AACA,qCAAqC;AACrC;AACA,qCAAqC,EAAE;;AAEvC;AACA;AACA;AACA;AACA,kBAAkB;;AAElB;AACA;AACA,kBAAkB;AAClB;AACA,gBAAgB;AAChB;AACA;AACA,qBAAqB;AACrB;AACA,sBAAsB;;AAEtB;AACA,2BAA2B;;AAE3B;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA,8BAA8B,EAAE;AAChC;AACA;AACA;AACA;AACA,oCAAoC;AACpC;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA,0BAA0B;;AAE1B;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,eAAe;AACf;AACA;AACA,iBAAiB;;AAEjB;AACA,cAAc;;AAEd;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,cAAc;;AAEd;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA;AACA,eAAe;;AAEf;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA;AACA,cAAc;;AAEd;AACA,iBAAiB;;AAEjB;AACA,cAAc;;AAEd;AACA;AACA,sBAAsB;;AAEtB;AACA,cAAc;;AAEd;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA,mBAAmB;AACnB;AACA,gBAAgB;AAChB;AACA;AACA,gBAAgB;AAChB;AACA;AACA,6BAA6B;AAC7B;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA,6BAA6B;AAC7B;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA;AACA;AACA;AACA,qCAAqC;AACrC;AACA,gCAAgC;AAChC;AACA,gCAAgC;AAChC;AACA,gCAAgC;AAChC;AACA,gCAAgC;AAChC;AACA,gCAAgC;AAChC;AACA;AACA,gCAAgC;;AAEhC;AACA,gBAAgB;AAChB;AACA,kBAAkB;AAClB;AACA;AACA,eAAe;AACf;AACA,qBAAqB;AACrB;AACA,sBAAsB;AACtB;AACA,0BAA0B;AAC1B;AACA,0BAA0B;AAC1B;AACA,0BAA0B;;AAE1B;AACA;AACA,kBAAkB;AAClB;AACA,oBAAoB;AACpB;AACA;AACA,wBAAwB,EAAE;AAC1B;AACA,uBAAuB;AACvB;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA,2BAA2B;AAC3B;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,gBAAgB;AAChB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,kEAAkE;AAClE;AACA,kEAAkE;AAClE;AACA,kEAAkE;AAClE;AACA,kEAAkE;AAClE;AACA,kEAAkE;AAClE;AACA,kEAAkE;AAClE;AACA,sHAAsH;AACtH;AACA,kEAAkE;AAClE;AACA,+EAA+E;AAC/E;AACA,+EAA+E;AAC/E;AACA,+EAA+E;AAC/E;AACA,kEAAkE;AAClE;AACA,+EAA+E;AAC/E;AACA,kEAAkE;AAClE;AACA,kEAAkE;AAClE;AACA,kEAAkE;AAClE;AACA,kEAAkE;AAClE;AACA,kEAAkE;;AAElE;AACA,kBAAkB;;AAElB;AACA;AACA,kBAAkB;;AAElB;AACA,kBAAkB;;AAElB;AACA,kBAAkB;;AAElB;AACA;AACA,kBAAkB;;AAElB;AACA,qBAAqB;;AAErB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,oBAAoB;;AAEpB;AACA,gBAAgB;;AChxDhB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA,sBAAsB;;AAEtB;AACA;AACA,kBAAkB;;AAElB;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA,oBAAoB;;AAEpB;AACA,qBAAqB;AACrB;AACA,iBAAiB;AACjB;AACA,gBAAgB;AAChB;AACA;AACA;AACA,yBAAyB;AACzB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,qBAAqB;AACrB;AACA;AACA,uBAAuB;AACvB;AACA,yBAAyB,EAAE;AAC3B;AACA;AACA,uBAAuB;AACvB;AACA,yBAAyB,EAAE;AAC3B;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,iBAAiB;;AAEjB;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA,0BAA0B;;AAE1B;AACA;AACA,4BAA4B;;AAE5B;AACA,wBAAwB;;AAExB;AACA,sBAAsB;AACtB;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA,sBAAsB,EAAE;AACxB;AACA,qBAAqB;;AAErB;AACA,kBAAkB;;AAElB;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA,sBAAsB,EAAE;;AAExB;AACA;AACA;AACA,sBAAsB,EAAE;;AAExB;AACA,2BAA2B;;AAE3B;AACA,8BAA8B;;AAE9B;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA,cAAc;;AAEd;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA,kBAAkB;;AAElB;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA,oBAAoB;;AAEpB;AACA,0BAA0B;;AAE1B;AACA;AACA;AACA,cAAc;AACd;AACA;AACA,uBAAuB;AACvB;AACA,qBAAqB,EAAE;AACvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA,sBAAsB;AACtB;AACA,2BAA2B;AAC3B;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,iBAAiB;AACjB;AACA;AACA,mBAAmB;AACnB;AACA,uBAAuB;AACvB;AACA;AACA,wBAAwB;AACxB;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,kBAAkB;AAClB;AACA,qBAAqB;AACrB;AACA,kBAAkB;AAClB;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA,8BAA8B;AAC9B;AACA;AACA;AACA;AACA,8BAA8B;AAC9B;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yCAAyC;AACzC;AACA;AACA,gCAAgC;AAChC;AACA,kCAAkC;AAClC;AACA,6BAA6B;AAC7B;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA,qBAAqB;AACrB;AACA;AACA,8BAA8B;AAC9B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA;AACA,8BAA8B;AAC9B;AACA;AACA;AACA;AACA;AACA,cAAc;AACd;AACA,oBAAoB;AACpB;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,2BAA2B;AAC3B;AACA;AACA,gCAAgC;AAChC;AACA;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA,kBAAkB;AAClB;AACA,kBAAkB;AAClB;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA;AACA,cAAc;AACd;AACA;AACA,kBAAkB;AAClB;AACA,gBAAgB;AAChB;AACA,eAAe;AACf;AACA,qBAAqB;AACrB;AACA,eAAe;AACf;AACA,eAAe;AACf;AACA,qBAAqB;AACrB;AACA,qBAAqB;AACrB;AACA,iBAAiB;AACjB;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA,iCAAiC;AACjC;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA,wBAAwB;;AAExB;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA,mBAAmB;;AAEnB;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;AACb;AACA;AACA;AACA,0BAA0B;AAC1B;AACA,qBAAqB;AACrB;AACA;AACA,iBAAiB,EAAE;AACnB;AACA;AACA;AACA,qCAAqC;AACrC;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA,qCAAqC;AACrC;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA,sBAAsB;AACtB;AACA;AACA,qBAAqB;AACrB;AACA,qBAAqB;AACrB;AACA,kBAAkB;AAClB;AACA,mBAAmB;;AAEnB;AACA,wBAAwB;;AAExB;AACA;AACA,gBAAgB;AAChB;AACA,kBAAkB;AAClB;AACA,qBAAqB;;AAErB;AACA;AACA,YAAY;;AAEZ;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA,iCAAiC;;AAEjC;AACA,gDAAgD;;AAEhD;AACA,gDAAgD;;AAEhD;AACA,gDAAgD;;AAEhD;AACA,gDAAgD;;AAEhD;AACA,gDAAgD;;AAEhD;AACA,gDAAgD;;AAEhD;AACA,gDAAgD;AAChD;AACA,uBAAuB;;AAEvB;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA;AACA,uCAAuC;AACvC;AACA;AACA;AACA,8BAA8B,EAAE;AAChC;AACA;AACA,8CAA8C;AAC9C;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wBAAwB,EAAE;AAC1B;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,cAAc;AACd;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB,EAAE;;AAErB;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA,WAAW;;AAEX;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA,0BAA0B,EAAE;;AAE5B;AACA;AACA,2BAA2B;;AAE3B;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA,kBAAkB;;AAElB;AACA,2BAA2B;;AAE3B;AACA;AACA,kBAAkB;;AAElB;AACA;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA;AACA,YAAY;AACZ;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA,wBAAwB,EAAE;AAC1B;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA,kBAAkB;AAClB;AACA,iBAAiB;AACjB;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA,wBAAwB;AACxB;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA,iBAAiB;;AAEjB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA,mBAAmB,EAAE;;AAErB;AACA;AACA;AACA,YAAY;;AAEZ;AACA;AACA,cAAc;;AAEd;AACA,YAAY;;AAEZ;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA,mBAAmB;;AAEnB;AACA,sBAAsB;AACtB;AACA,oBAAoB;;AAEpB;AACA,kBAAkB;;AAElB;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA,wBAAwB;;AAExB;AACA;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA,0BAA0B;;AAE1B;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA,mBAAmB;;AAEnB;AACA,gBAAgB;;AAEhB;AACA,iBAAiB;;AAEjB;AACA;AACA,mBAAmB,EAAE;;AAErB;AACA;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA,gBAAgB,EAAE;;AAElB;AACA;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA,mCAAmC;;AAEnC;AACA,UAAU;;AAEV;AACA;AACA,kBAAkB;;AAElB;AACA,8BAA8B;;AAE9B;AACA,0BAA0B;;AAE1B;AACA,4BAA4B;;AAE5B;AACA;AACA,WAAW;;AAEX;AACA;AACA,uCAAuC;;AAEvC;AACA,gBAAgB;;AAEhB;AACA,kBAAkB;;AAElB;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA,cAAc;AACd;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA,qBAAqB;;AAErB;AACA,gBAAgB;;AAEhB;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,kBAAkB;;AAElB;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA,kBAAkB;;AAElB;AACA,6BAA6B;;AAE7B;AACA,wBAAwB;;AAExB;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA,iBAAiB;;AAEjB;AACA;AACA,gCAAgC;;AAEhC;AACA;AACA,oBAAoB;;AAEpB;AACA,iBAAiB;;AAEjB;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA;AACA,mCAAmC;;AAEnC;AACA,8BAA8B;;AAE9B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gCAAgC;AAChC;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA,kCAAkC;AAClC;AACA,yCAAyC;;AAEzC;AACA;AACA,eAAe;AACf;AACA,eAAe,EAAE;;AAEjB;AACA,wBAAwB;;AAExB;AACA,kBAAkB;;AAElB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,kBAAkB;AAClB;AACA,oBAAoB;AACpB;AACA;AACA,uBAAuB;;AAEvB;AACA,iBAAiB;;AAEjB;AACA,kBAAkB;;AAElB;AACA,sBAAsB;AACtB;AACA,oBAAoB;;AAEpB;AACA,kBAAkB;;AAElB;AACA;AACA,uBAAuB;AACvB;AACA,uBAAuB;AACvB;AACA;AACA,uBAAuB,EAAE;;AAEzB;AACA;AACA;AACA,eAAe;AACf;AACA;AACA;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,wBAAwB;AACxB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA,sBAAsB;AACtB;AACA,sBAAsB;;AAEtB;AACA,eAAe;;AAEf;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,8BAA8B;;AAE9B;AACA;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA,uCAAuC;;AAEvC;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA,0BAA0B;;AAE1B;AACA,aAAa;;AAEb;AACA,mBAAmB;;AAEnB;AACA;AACA,kCAAkC;;AAElC;AACA;AACA;AACA;AACA;AACA,kBAAkB;;AAElB;AACA,eAAe;AACf;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA;AACA,iCAAiC;;AAEjC;AACA,sBAAsB;AACtB;AACA,0CAA0C;;AAE1C;AACA;AACA,sBAAsB;AACtB;AACA,kBAAkB;;AAElB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,eAAe;AACf;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA,2BAA2B;;AAE3B;AACA,sBAAsB;AACtB;AACA,mBAAmB;;AAEnB;AACA,YAAY;AACZ;AACA,8BAA8B;AAC9B;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA,0BAA0B;AAC1B;AACA,uBAAuB;AACvB;AACA;AACA;AACA,4BAA4B;AAC5B;AACA,yBAAyB,EAAE;;AAE3B;AACA;AACA;AACA,mBAAmB;AACnB;AACA,iBAAiB;AACjB;AACA,qBAAqB;;AAErB;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA,wBAAwB;;AAExB;AACA;AACA;AACA,cAAc;;AAEd;AACA,cAAc;;AAEd;AACA;AACA,cAAc;AACd;AACA,iBAAiB;AACjB;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,6BAA6B;;AAE7B;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA,qBAAqB;;AAErB;AACA;AACA,oBAAoB;;AAEpB;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iCAAiC;AACjC;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA;AACA,wBAAwB;AACxB;AACA,kBAAkB;AAClB;AACA,0BAA0B,EAAE;;AAE5B;AACA;AACA;AACA,mBAAmB;AACnB;AACA,0BAA0B;;AAE1B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA,gBAAgB;;ACh+ChB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA,oBAAoB;AACpB;AACA,iBAAiB;;AAEjB;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA,qBAAqB;AACrB;AACA;AACA,gBAAgB;AAChB;AACA,gBAAgB;;AAEhB;AACA,4BAA4B;AAC5B;AACA,6BAA6B;AAC7B;AACA,0BAA0B;AAC1B;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,gBAAgB;;AC9KhB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8BAA8B,EAAE;AAChC;AACA;AACA;AACA,gCAAgC,EAAE;;AAElC;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA,qBAAqB;AACrB;AACA;AACA,6EAA6E,EAAE;AAC/E;AACA;AACA,gCAAgC,EAAE;;AAElC;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA,wBAAwB,EAAE;AAC1B;AACA,aAAa;AACb;AACA;AACA,uBAAuB,EAAE;;AAEzB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB,EAAE;;AAE3B;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA,4BAA4B;AAC5B;AACA,oBAAoB;AACpB;AACA,2EAA2E;AAC3E;AACA,4EAA4E;AAC5E;AACA,6EAA6E;AAC7E;AACA,2EAA2E;AAC3E;AACA,4EAA4E;AAC5E;AACA,6EAA6E;AAC7E;AACA,4EAA4E;AAC5E;AACA,2EAA2E,EAAE;;AAE7E;AACA;AACA,sBAAsB;AACtB;AACA,kBAAkB;AAClB;AACA;AACA,6BAA6B,EAAE;AAC/B;AACA,kBAAkB;AAClB;AACA;AACA,sBAAsB,EAAE;;AAExB;AACA;AACA;AACA;AACA;AACA;AACA,mCAAmC;AACnC;AACA,kBAAkB;AAClB;AACA;AACA,wBAAwB;AACxB;AACA,kBAAkB;AAClB;AACA;AACA;AACA,mBAAmB,EAAE;AACrB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,0BAA0B;AAC1B;AACA,oBAAoB;AACpB;AACA,uCAAuC;AACvC;AACA;AACA,uBAAuB,EAAE;;AAEzB;AACA,oBAAoB;AACpB;AACA;AACA,mBAAmB;AACnB;AACA;AACA,qBAAqB;AACrB;AACA,uBAAuB,EAAE;;AAEzB;AACA,mBAAmB;AACnB;AACA;AACA;AACA,uBAAuB,EAAE;AACzB;AACA,eAAe;;AAEf;AACA,iBAAiB;;AAEjB;AACA,gBAAgB;AAChB;AACA;AACA,oBAAoB,EAAE;AACtB;AACA,qBAAqB;AACrB;AACA,uBAAuB;AACvB;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA,qBAAqB;;AAErB;AACA,oBAAoB;;AAEpB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,qCAAqC;AACrC;AACA,kBAAkB;;AAElB;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,aAAa;AACb;AACA,qBAAqB;;AAErB;AACA;AACA;AACA,4BAA4B;AAC5B;AACA,yBAAyB;;AAEzB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,cAAc;AACd;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA,UAAU;AACV;AACA;AACA,kBAAkB,EAAE;;AAEpB;AACA;AACA;AACA;AACA,iBAAiB,EAAE;AACnB;AACA;AACA,kBAAkB,EAAE;;AAEpB;AACA;AACA,UAAU;AACV;AACA;AACA,iBAAiB,EAAE;;AAEnB;AACA;AACA;AACA,gBAAgB,EAAE;;AAElB;AACA;AACA;AACA,uBAAuB,EAAE;;AAEzB;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gFAAgF,EAAE;AAClF;AACA;AACA,8BAA8B,EAAE;AAChC;AACA;AACA,eAAe;AACf;AACA,kCAAkC,EAAE;;AAEpC;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA,eAAe;;AAEf;AACA,0BAA0B;;AAE1B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,0BAA0B;AAC1B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;AACd;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB,EAAE;AACxB;AACA,0BAA0B;AAC1B;AACA;AACA,eAAe;AACf;AACA;AACA,qCAAqC;AACrC;AACA,oDAAoD;AACpD;AACA,qDAAqD;AACrD;AACA,mDAAmD;AACnD;AACA,oDAAoD;AACpD;AACA,qDAAqD;AACrD;AACA,oDAAoD;AACpD;AACA,mDAAmD;;AAEnD;AACA,4BAA4B;;AAE5B;AACA;AACA,qCAAqC,EAAE;;AAEvC;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,iBAAiB;AACjB;AACA,qBAAqB;AACrB;AACA,qBAAqB;AACrB;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B;;AAE5B;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;AACb;AACA,qBAAqB;AACrB;AACA;AACA,qBAAqB;;AAErB;AACA,oBAAoB;;AAEpB;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA,gCAAgC;AAChC;AACA,qCAAqC;AACrC;AACA;AACA;AACA,cAAc;AACd;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gCAAgC;;AAEhC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,2BAA2B;AAC3B;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA,cAAc;AACd;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA;AACA;AACA,eAAe;AACf;AACA,kBAAkB;AAClB;AACA,8BAA8B;AAC9B;AACA;AACA,4BAA4B;AAC5B;AACA,wBAAwB;;AAExB;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA;AACA,sBAAsB;AACtB;AACA,iEAAiE;AACjE;AACA,kEAAkE;AAClE;AACA,mEAAmE;AACnE;AACA,iEAAiE;AACjE;AACA,kEAAkE;AAClE;AACA,mEAAmE;AACnE;AACA,kEAAkE;AAClE;AACA,iEAAiE;;AAEjE;AACA,qBAAqB;AACrB;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA;AACA,0BAA0B;;AAE1B;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA,iCAAiC;;AAEjC;AACA;AACA,kBAAkB;AAClB;AACA,kBAAkB,EAAE;;AAEpB;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA;AACA,wCAAwC,EAAE;AAC1C;AACA;AACA,mBAAmB,EAAE;AACrB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA,yBAAyB,EAAE;AAC3B;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA,oBAAoB,EAAE;AACtB;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA,yBAAyB;AACzB;AACA,uBAAuB;AACvB;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA,oBAAoB,EAAE;;AAEtB;AACA;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA,sBAAsB;AACtB;AACA;AACA,sBAAsB,EAAE;;AAExB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qCAAqC;AACrC;AACA;AACA,8BAA8B,EAAE;AAChC;AACA;AACA;AACA,uBAAuB;AACvB;AACA,qCAAqC;AACrC;AACA,qCAAqC;AACrC;AACA,qCAAqC;AACrC;AACA,qCAAqC;AACrC;AACA,qCAAqC;AACrC;AACA,qCAAqC;AACrC;AACA,qCAAqC;AACrC;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2CAA2C;AAC3C;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,aAAa;;AAEb;AACA,qBAAqB;;AAErB;AACA;AACA,cAAc;AACd;AACA;AACA,kBAAkB,EAAE;;AAEpB;AACA,mBAAmB;;AAEnB;AACA,YAAY;;AAEZ;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,oBAAoB;;AAEpB;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,cAAc;;AAEd;AACA;AACA,iBAAiB,EAAE;;AAEnB;AACA,mBAAmB;;AAEnB;AACA,iBAAiB;;AAEjB;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA,kBAAkB;AAClB;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qCAAqC;AACrC;AACA;AACA,8BAA8B,EAAE;AAChC;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA,uBAAuB;AACvB;AACA,qCAAqC;AACrC;AACA,qCAAqC;AACrC;AACA,qCAAqC;AACrC;AACA,qCAAqC;AACrC;AACA,qCAAqC;AACrC;AACA,qCAAqC;AACrC;AACA,qCAAqC;AACrC;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2CAA2C;AAC3C;AACA;AACA;AACA;AACA,gCAAgC;;AAEhC;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA,oBAAoB,EAAE;;AAEtB;AACA;AACA,sBAAsB;AACtB;AACA;AACA,sBAAsB;AACtB;AACA,qBAAqB;AACrB;AACA;AACA,sBAAsB,EAAE;;AAExB;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA,kBAAkB;AAClB;AACA,6BAA6B;AAC7B;AACA;AACA;AACA;AACA,+BAA+B;AAC/B;AACA;AACA;AACA,iBAAiB,EAAE;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA,mBAAmB;AACnB;AACA,aAAa;;AAEb;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA,yBAAyB,EAAE;;AAE3B;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA,qIAAqI;AACrI;AACA;AACA,uBAAuB,EAAE;;AAEzB;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA,cAAc;;AAEd;AACA,YAAY;;AAEZ;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA,wBAAwB,EAAE;;AAE1B;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA,0BAA0B,EAAE;;AAE5B;AACA,qBAAqB;;AAErB;AACA;AACA,mBAAmB;;AAEnB;AACA,gCAAgC;AAChC;AACA,qCAAqC;AACrC;AACA;AACA;AACA,cAAc;AACd;AACA;AACA,kCAAkC;;AAElC;AACA,0BAA0B;AAC1B;AACA;AACA,wBAAwB,EAAE;AAC1B;AACA;AACA,uBAAuB,EAAE;;AAEzB;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA,0BAA0B,EAAE;;AAE5B;AACA;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB,EAAE;;AAE3B;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA,WAAW;;AAEX;AACA;AACA,iBAAiB,EAAE;;AAEnB;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA,eAAe,EAAE;;AAEjB;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA,sBAAsB;AACtB;AACA,kBAAkB;AAClB;AACA,kBAAkB;AAClB;AACA;AACA,cAAc;AACd;AACA;AACA,6BAA6B;AAC7B;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gCAAgC,EAAE;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B,EAAE;AAC9B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qCAAqC;AACrC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oCAAoC;AACpC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oCAAoC;AACpC;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gCAAgC,EAAE;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2CAA2C;AAC3C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B,EAAE;AAC9B;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sCAAsC;AACtC;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,6BAA6B;AAC7B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8BAA8B,EAAE;AAChC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qCAAqC;AACrC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qCAAqC;AACrC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qCAAqC;;AAErC;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mCAAmC,EAAE;;AAErC;AACA;AACA,mCAAmC;AACnC;AACA,wBAAwB,EAAE;;AAE1B;AACA;AACA,eAAe;;AAEf;AACA,cAAc;;AAEd;AACA,eAAe;;AAEf;AACA,mBAAmB;AACnB;AACA,sBAAsB;AACtB;AACA,oBAAoB;;AC7nEpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,qBAAqB;AACrB;AACA,mBAAmB;;AAEnB;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA,qBAAqB;AACrB;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,gCAAgC;;AAEhC;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA,YAAY;;AChIZ;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA,eAAe;;AAEf;AACA,YAAY;;AAEZ;AACA;AACA;AACA;AACA,YAAY;AACZ;AACA,iBAAiB;;AClFjB,6DAA6D,UAAU,mGAAmG,YAAY,gBAAgB,8CAA8C,gBAAgB,cAAc,8BAA8B,YAAY,gBAAgB,qCAAqC,YAAY,kBAAkB,MAAM,OAAO,6CAA6C,aAAa,4CAA4C,iBAAiB,oBAAoB,YAAY,iFAAiF,cAAc,+CAA+C,UAAU,0BAA0B,qCAAqC,gBAAgB,MAAM,qCAAqC,eAAe,6HAA6H,YAAY,kBAAkB,MAAM,SAAS,QAAQ,OAAO,2DAA2D,yBAAyB,kDAAkD,YAAY,qDAAqD,YAAY,sCAAsC,aAAa,kBAAkB,WAAW,gBAAgB,yBAAyB,sBAAsB,iBAAiB,YAAY,kBAAkB,MAAM,OAAO,SAAS,QAAQ,0BAA0B,aAAa,0CAA0C,wBAAwB,gBAAgB,MAAM,YAAY,oCAAoC,YAAY,sBAAsB,wBAAwB,gBAAgB,uEAAuE,gBAAgB,SAAS,UAAU,kEAAkE,qBAAqB,0CAA0C,WAAW,gIAAgI,SAAS,8BAA8B,6BAA6B,qBAAqB,WAAW,YAAY,gBAAgB,UAAU,kBAAkB,UAAU,4BAA4B,gqBAAgqB,sBAAsB,4CAA4C,sBAAsB,cAAc,UAAU,yCAAyC,2DAA2D,aAAa,yBAAyB,SAAS,eAAe,4CAA4C,aAAa,aAAa,+BAA+B,WAAW,kBAAkB,gCAAgC,YAAY,iBAAiB,0IAA0I,mBAAmB,mnBAAmnB,kBAAkB,MAAM,QAAQ,SAAS,OAAO,WAAW,YAAY,0nBAA0nB,WAAW,cAAc,gBAAgB,kBAAkB,aAAa,wCAAwC","file":"../css/laraberg.css","sourcesContent":["/**\n * Colors\n */\n/**\n * Breakpoints & Media Queries\n */\n/**\n * Colors\n */\n/**\n * Fonts & basic variables.\n */\n/**\n * Grid System.\n * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/\n */\n/**\n * Dimensions.\n */\n/**\n * Shadows.\n */\n/**\n * Editor widths.\n */\n/**\n * Block UI.\n */\n/**\n * Border radii.\n */\n/**\n * Breakpoint mixins\n */\n/**\n * Long content fade mixin\n *\n * Creates a fading overlay to signify that the content is longer\n * than the space allows.\n */\n/**\n * Button states and focus styles\n */\n/**\n * Block Toolbar/Formatting Buttons\n */\n/**\n * Applies editor left position to the selector passed as argument\n */\n/**\n * Styles that are reused verbatim in a few places\n */\n/**\n * Allows users to opt-out of animations via OS-level preferences.\n */\n/**\n * Reset default styles for JavaScript UI based pages.\n * This is a WP-admin agnostic reset\n */\n/**\n * Reset the WP Admin page styles for Gutenberg-like pages.\n */\n.components-animate__appear {\n animation: components-animate__appear-animation 0.1s cubic-bezier(0, 0, 0.2, 1) 0s;\n animation-fill-mode: forwards; }\n @media (prefers-reduced-motion: reduce) {\n .components-animate__appear {\n animation-duration: 1ms; } }\n .components-animate__appear.is-from-top, .components-animate__appear.is-from-top.is-from-left {\n transform-origin: top left; }\n .components-animate__appear.is-from-top.is-from-right {\n transform-origin: top right; }\n .components-animate__appear.is-from-bottom, .components-animate__appear.is-from-bottom.is-from-left {\n transform-origin: bottom left; }\n .components-animate__appear.is-from-bottom.is-from-right {\n transform-origin: bottom right; }\n\n@keyframes components-animate__appear-animation {\n from {\n transform: translateY(-2em) scaleY(0) scaleX(0); }\n to {\n transform: translateY(0%) scaleY(1) scaleX(1); } }\n\n.components-animate__slide-in {\n animation: components-animate__slide-in-animation 0.1s cubic-bezier(0, 0, 0.2, 1);\n animation-fill-mode: forwards; }\n @media (prefers-reduced-motion: reduce) {\n .components-animate__slide-in {\n animation-duration: 1ms; } }\n .components-animate__slide-in.is-from-left {\n transform: translateX(100%); }\n\n@keyframes components-animate__slide-in-animation {\n 100% {\n transform: translateX(0%); } }\n\n.components-animate__loading {\n animation: components-animate__loading 1.6s ease-in-out infinite; }\n\n@keyframes components-animate__loading {\n 0% {\n opacity: 0.5; }\n 50% {\n opacity: 1; }\n 100% {\n opacity: 0.5; } }\n\n.components-angle-picker-control {\n width: 50%; }\n .components-angle-picker-control.components-base-control .components-base-control__label {\n display: block; }\n\n.components-angle-picker-control__input-field {\n width: calc(100% - 36px);\n max-width: 100px; }\n\n.components-angle-picker-control__angle-circle {\n width: 28px;\n height: 28px;\n border: 2px solid #555d66;\n border-radius: 50%;\n float: left;\n margin-right: 4px;\n cursor: grab; }\n\n.components-angle-picker-control__angle-circle-indicator-wrapper {\n position: relative;\n width: 100%;\n height: 100%; }\n\n.components-angle-picker-control__angle-circle-indicator {\n width: 1px;\n height: 1px;\n border-radius: 50%;\n border: 3px solid #555d66;\n display: block;\n position: absolute;\n top: -14px;\n bottom: 0;\n left: 0;\n right: 0;\n margin: auto;\n background: #555d66; }\n\n.components-autocomplete__popover .components-popover__content {\n padding: 16px; }\n\n.components-autocomplete__result.components-button {\n display: flex;\n width: 100%; }\n .components-autocomplete__result.components-button.is-selected {\n box-shadow: 0 0 0 2px rgb(0, 124, 186); }\n body.admin-color-sunrise .components-autocomplete__result.components-button.is-selected {\n box-shadow: 0 0 0 2px rgb(209, 134, 74); }\n body.admin-color-ocean .components-autocomplete__result.components-button.is-selected {\n box-shadow: 0 0 0 2px rgb(163, 185, 162); }\n body.admin-color-midnight .components-autocomplete__result.components-button.is-selected {\n box-shadow: 0 0 0 2px rgb(225, 77, 67); }\n body.admin-color-ectoplasm .components-autocomplete__result.components-button.is-selected {\n box-shadow: 0 0 0 2px rgb(167, 182, 86); }\n body.admin-color-coffee .components-autocomplete__result.components-button.is-selected {\n box-shadow: 0 0 0 2px rgb(194, 166, 140); }\n body.admin-color-blue .components-autocomplete__result.components-button.is-selected {\n box-shadow: 0 0 0 2px rgb(217, 171, 89); }\n body.admin-color-light .components-autocomplete__result.components-button.is-selected {\n box-shadow: 0 0 0 2px rgb(0, 133, 186); }\n\n.components-base-control {\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px; }\n .components-base-control .components-base-control__field {\n margin-bottom: 8px; }\n .components-panel__row .components-base-control .components-base-control__field {\n margin-bottom: inherit; }\n .components-base-control .components-base-control__label {\n display: inline-block;\n margin-bottom: 4px; }\n .components-base-control .components-base-control__help {\n margin-top: -8px;\n font-style: italic; }\n\n.components-button-group {\n display: inline-block;\n border-radius: 2px;\n border: 1px solid #007cba; }\n\nbody.admin-color-sunrise .components-button-group {\n border: 1px solid #d1864a; }\n\nbody.admin-color-ocean .components-button-group {\n border: 1px solid #a3b9a2; }\n\nbody.admin-color-midnight .components-button-group {\n border: 1px solid #e14d43; }\n\nbody.admin-color-ectoplasm .components-button-group {\n border: 1px solid #a7b656; }\n\nbody.admin-color-coffee .components-button-group {\n border: 1px solid #c2a68c; }\n\nbody.admin-color-blue .components-button-group {\n border: 1px solid #d9ab59; }\n\nbody.admin-color-light .components-button-group {\n border: 1px solid #0085ba; }\n .components-button-group .components-button {\n border-radius: 0;\n display: inline-flex;\n color: #007cba; }\n body.admin-color-sunrise .components-button-group .components-button {\n color: #d1864a; }\n body.admin-color-ocean .components-button-group .components-button {\n color: #a3b9a2; }\n body.admin-color-midnight .components-button-group .components-button {\n color: #e14d43; }\n body.admin-color-ectoplasm .components-button-group .components-button {\n color: #a7b656; }\n body.admin-color-coffee .components-button-group .components-button {\n color: #c2a68c; }\n body.admin-color-blue .components-button-group .components-button {\n color: #d9ab59; }\n body.admin-color-light .components-button-group .components-button {\n color: #0085ba; }\n .components-button-group .components-button + .components-button {\n margin-left: -1px; }\n .components-button-group .components-button:focus, .components-button-group .components-button.is-primary {\n position: relative;\n z-index: 1; }\n .components-button-group .components-button.is-primary {\n box-shadow: none; }\n\n.components-button {\n display: inline-flex;\n text-decoration: none;\n font-size: 13px;\n margin: 0;\n border: 0;\n cursor: pointer;\n -webkit-appearance: none;\n background: none;\n transition: box-shadow 0.1s linear;\n height: 36px;\n align-items: center;\n box-sizing: border-box;\n padding: 6px 12px;\n overflow: hidden;\n border-radius: 2px;\n color: #1e1e1e;\n /**\n\t * Primary button style.\n\t */\n /**\n\t * Secondary and tertiary buttons.\n\t */\n /**\n\t * Secondary button style.\n\t */\n /**\n\t * Tertiary buttons.\n\t */\n /**\n\t * Link buttons.\n\t */ }\n @media (prefers-reduced-motion: reduce) {\n .components-button {\n transition-duration: 0s; } }\n .components-button[aria-expanded=\"true\"], .components-button:hover {\n color: #007cba; }\n body.admin-color-sunrise .components-button[aria-expanded=\"true\"], body.admin-color-sunrise .components-button:hover {\n color: #d1864a; }\n body.admin-color-ocean .components-button[aria-expanded=\"true\"], body.admin-color-ocean .components-button:hover {\n color: #a3b9a2; }\n body.admin-color-midnight .components-button[aria-expanded=\"true\"], body.admin-color-midnight .components-button:hover {\n color: #e14d43; }\n body.admin-color-ectoplasm .components-button[aria-expanded=\"true\"], body.admin-color-ectoplasm .components-button:hover {\n color: #a7b656; }\n body.admin-color-coffee .components-button[aria-expanded=\"true\"], body.admin-color-coffee .components-button:hover {\n color: #c2a68c; }\n body.admin-color-blue .components-button[aria-expanded=\"true\"], body.admin-color-blue .components-button:hover {\n color: #d9ab59; }\n body.admin-color-light .components-button[aria-expanded=\"true\"], body.admin-color-light .components-button:hover {\n color: #0085ba; }\n .components-button[aria-disabled=\"true\"]:hover {\n color: initial; }\n .components-button:focus:not(:disabled) {\n box-shadow: 0 0 0 2px rgb(0, 124, 186);\n outline: 1px solid transparent; }\n body.admin-color-sunrise .components-button:focus:not(:disabled) {\n box-shadow: 0 0 0 2px rgb(209, 134, 74); }\n body.admin-color-ocean .components-button:focus:not(:disabled) {\n box-shadow: 0 0 0 2px rgb(163, 185, 162); }\n body.admin-color-midnight .components-button:focus:not(:disabled) {\n box-shadow: 0 0 0 2px rgb(225, 77, 67); }\n body.admin-color-ectoplasm .components-button:focus:not(:disabled) {\n box-shadow: 0 0 0 2px rgb(167, 182, 86); }\n body.admin-color-coffee .components-button:focus:not(:disabled) {\n box-shadow: 0 0 0 2px rgb(194, 166, 140); }\n body.admin-color-blue .components-button:focus:not(:disabled) {\n box-shadow: 0 0 0 2px rgb(217, 171, 89); }\n body.admin-color-light .components-button:focus:not(:disabled) {\n box-shadow: 0 0 0 2px rgb(0, 133, 186); }\n .components-button.is-primary {\n white-space: nowrap;\n background: rgb(0, 124, 186);\n color: #fff;\n text-decoration: none;\n text-shadow: none; }\n body.admin-color-sunrise .components-button.is-primary {\n background: rgb(209, 134, 74); }\n body.admin-color-ocean .components-button.is-primary {\n background: rgb(163, 185, 162); }\n body.admin-color-midnight .components-button.is-primary {\n background: rgb(225, 77, 67); }\n body.admin-color-ectoplasm .components-button.is-primary {\n background: rgb(167, 182, 86); }\n body.admin-color-coffee .components-button.is-primary {\n background: rgb(194, 166, 140); }\n body.admin-color-blue .components-button.is-primary {\n background: rgb(217, 171, 89); }\n body.admin-color-light .components-button.is-primary {\n background: rgb(0, 133, 186); }\n .components-button.is-primary:hover:not(:disabled) {\n background: rgb(0, 112, 167);\n color: #fff; }\n body.admin-color-sunrise .components-button.is-primary:hover:not(:disabled) {\n background: rgb(188, 121, 67); }\n body.admin-color-ocean .components-button.is-primary:hover:not(:disabled) {\n background: rgb(147, 167, 146); }\n body.admin-color-midnight .components-button.is-primary:hover:not(:disabled) {\n background: rgb(203, 69, 60); }\n body.admin-color-ectoplasm .components-button.is-primary:hover:not(:disabled) {\n background: rgb(150, 164, 77); }\n body.admin-color-coffee .components-button.is-primary:hover:not(:disabled) {\n background: rgb(175, 149, 126); }\n body.admin-color-blue .components-button.is-primary:hover:not(:disabled) {\n background: rgb(195, 154, 80); }\n body.admin-color-light .components-button.is-primary:hover:not(:disabled) {\n background: rgb(0, 120, 167); }\n .components-button.is-primary:active:not(:disabled) {\n background: rgb(0, 99, 149);\n border-color: rgb(0, 99, 149);\n color: #fff; }\n body.admin-color-sunrise .components-button.is-primary:active:not(:disabled) {\n background: rgb(167, 107, 59);\n border-color: rgb(167, 107, 59); }\n body.admin-color-ocean .components-button.is-primary:active:not(:disabled) {\n background: rgb(130, 148, 130);\n border-color: rgb(130, 148, 130); }\n body.admin-color-midnight .components-button.is-primary:active:not(:disabled) {\n background: rgb(180, 62, 54);\n border-color: rgb(180, 62, 54); }\n body.admin-color-ectoplasm .components-button.is-primary:active:not(:disabled) {\n background: rgb(134, 146, 69);\n border-color: rgb(134, 146, 69); }\n body.admin-color-coffee .components-button.is-primary:active:not(:disabled) {\n background: rgb(155, 133, 112);\n border-color: rgb(155, 133, 112); }\n body.admin-color-blue .components-button.is-primary:active:not(:disabled) {\n background: rgb(174, 137, 71);\n border-color: rgb(174, 137, 71); }\n body.admin-color-light .components-button.is-primary:active:not(:disabled) {\n background: rgb(0, 106, 149);\n border-color: rgb(0, 106, 149); }\n .components-button.is-primary:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(0, 124, 186);\n outline: 1px solid transparent; }\n body.admin-color-sunrise .components-button.is-primary:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(209, 134, 74); }\n body.admin-color-ocean .components-button.is-primary:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(163, 185, 162); }\n body.admin-color-midnight .components-button.is-primary:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(225, 77, 67); }\n body.admin-color-ectoplasm .components-button.is-primary:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(167, 182, 86); }\n body.admin-color-coffee .components-button.is-primary:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(194, 166, 140); }\n body.admin-color-blue .components-button.is-primary:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(217, 171, 89); }\n body.admin-color-light .components-button.is-primary:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(0, 133, 186); }\n .components-button.is-primary:disabled, .components-button.is-primary:disabled:active:enabled, .components-button.is-primary[aria-disabled=\"true\"], .components-button.is-primary[aria-disabled=\"true\"]:enabled, .components-button.is-primary[aria-disabled=\"true\"]:active:enabled {\n color: rgb(102, 176, 214);\n background: rgb(25, 137, 193);\n border-color: rgb(25, 137, 193);\n opacity: 1; }\n body.admin-color-sunrise .components-button.is-primary:disabled, body.admin-color-sunrise .components-button.is-primary:disabled:active:enabled, body.admin-color-sunrise .components-button.is-primary[aria-disabled=\"true\"], body.admin-color-sunrise .components-button.is-primary[aria-disabled=\"true\"]:enabled, body.admin-color-sunrise .components-button.is-primary[aria-disabled=\"true\"]:active:enabled {\n color: rgb(227, 182, 146);\n background: rgb(214, 146, 92);\n border-color: rgb(214, 146, 92); }\n body.admin-color-ocean .components-button.is-primary:disabled, body.admin-color-ocean .components-button.is-primary:disabled:active:enabled, body.admin-color-ocean .components-button.is-primary[aria-disabled=\"true\"], body.admin-color-ocean .components-button.is-primary[aria-disabled=\"true\"]:enabled, body.admin-color-ocean .components-button.is-primary[aria-disabled=\"true\"]:active:enabled {\n color: rgb(200, 213, 199);\n background: rgb(172, 192, 171);\n border-color: rgb(172, 192, 171); }\n body.admin-color-midnight .components-button.is-primary:disabled, body.admin-color-midnight .components-button.is-primary:disabled:active:enabled, body.admin-color-midnight .components-button.is-primary[aria-disabled=\"true\"], body.admin-color-midnight .components-button.is-primary[aria-disabled=\"true\"]:enabled, body.admin-color-midnight .components-button.is-primary[aria-disabled=\"true\"]:active:enabled {\n color: rgb(237, 148, 142);\n background: rgb(228, 95, 86);\n border-color: rgb(228, 95, 86); }\n body.admin-color-ectoplasm .components-button.is-primary:disabled, body.admin-color-ectoplasm .components-button.is-primary:disabled:active:enabled, body.admin-color-ectoplasm .components-button.is-primary[aria-disabled=\"true\"], body.admin-color-ectoplasm .components-button.is-primary[aria-disabled=\"true\"]:enabled, body.admin-color-ectoplasm .components-button.is-primary[aria-disabled=\"true\"]:active:enabled {\n color: rgb(202, 211, 154);\n background: rgb(176, 189, 103);\n border-color: rgb(176, 189, 103); }\n body.admin-color-coffee .components-button.is-primary:disabled, body.admin-color-coffee .components-button.is-primary:disabled:active:enabled, body.admin-color-coffee .components-button.is-primary[aria-disabled=\"true\"], body.admin-color-coffee .components-button.is-primary[aria-disabled=\"true\"]:enabled, body.admin-color-coffee .components-button.is-primary[aria-disabled=\"true\"]:active:enabled {\n color: rgb(218, 202, 186);\n background: rgb(200, 175, 152);\n border-color: rgb(200, 175, 152); }\n body.admin-color-blue .components-button.is-primary:disabled, body.admin-color-blue .components-button.is-primary:disabled:active:enabled, body.admin-color-blue .components-button.is-primary[aria-disabled=\"true\"], body.admin-color-blue .components-button.is-primary[aria-disabled=\"true\"]:enabled, body.admin-color-blue .components-button.is-primary[aria-disabled=\"true\"]:active:enabled {\n color: rgb(232, 205, 155);\n background: rgb(221, 179, 106);\n border-color: rgb(221, 179, 106); }\n body.admin-color-light .components-button.is-primary:disabled, body.admin-color-light .components-button.is-primary:disabled:active:enabled, body.admin-color-light .components-button.is-primary[aria-disabled=\"true\"], body.admin-color-light .components-button.is-primary[aria-disabled=\"true\"]:enabled, body.admin-color-light .components-button.is-primary[aria-disabled=\"true\"]:active:enabled {\n color: rgb(102, 182, 214);\n background: rgb(25, 145, 193);\n border-color: rgb(25, 145, 193); }\n .components-button.is-primary:disabled:focus:enabled, .components-button.is-primary:disabled:active:enabled:focus:enabled, .components-button.is-primary[aria-disabled=\"true\"]:focus:enabled, .components-button.is-primary[aria-disabled=\"true\"]:enabled:focus:enabled, .components-button.is-primary[aria-disabled=\"true\"]:active:enabled:focus:enabled {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(0, 124, 186); }\n body.admin-color-sunrise .components-button.is-primary:disabled:focus:enabled, body.admin-color-sunrise .components-button.is-primary:disabled:active:enabled:focus:enabled, body.admin-color-sunrise .components-button.is-primary[aria-disabled=\"true\"]:focus:enabled, body.admin-color-sunrise .components-button.is-primary[aria-disabled=\"true\"]:enabled:focus:enabled, body.admin-color-sunrise .components-button.is-primary[aria-disabled=\"true\"]:active:enabled:focus:enabled {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(209, 134, 74); }\n body.admin-color-ocean .components-button.is-primary:disabled:focus:enabled, body.admin-color-ocean .components-button.is-primary:disabled:active:enabled:focus:enabled, body.admin-color-ocean .components-button.is-primary[aria-disabled=\"true\"]:focus:enabled, body.admin-color-ocean .components-button.is-primary[aria-disabled=\"true\"]:enabled:focus:enabled, body.admin-color-ocean .components-button.is-primary[aria-disabled=\"true\"]:active:enabled:focus:enabled {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(163, 185, 162); }\n body.admin-color-midnight .components-button.is-primary:disabled:focus:enabled, body.admin-color-midnight .components-button.is-primary:disabled:active:enabled:focus:enabled, body.admin-color-midnight .components-button.is-primary[aria-disabled=\"true\"]:focus:enabled, body.admin-color-midnight .components-button.is-primary[aria-disabled=\"true\"]:enabled:focus:enabled, body.admin-color-midnight .components-button.is-primary[aria-disabled=\"true\"]:active:enabled:focus:enabled {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(225, 77, 67); }\n body.admin-color-ectoplasm .components-button.is-primary:disabled:focus:enabled, body.admin-color-ectoplasm .components-button.is-primary:disabled:active:enabled:focus:enabled, body.admin-color-ectoplasm .components-button.is-primary[aria-disabled=\"true\"]:focus:enabled, body.admin-color-ectoplasm .components-button.is-primary[aria-disabled=\"true\"]:enabled:focus:enabled, body.admin-color-ectoplasm .components-button.is-primary[aria-disabled=\"true\"]:active:enabled:focus:enabled {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(167, 182, 86); }\n body.admin-color-coffee .components-button.is-primary:disabled:focus:enabled, body.admin-color-coffee .components-button.is-primary:disabled:active:enabled:focus:enabled, body.admin-color-coffee .components-button.is-primary[aria-disabled=\"true\"]:focus:enabled, body.admin-color-coffee .components-button.is-primary[aria-disabled=\"true\"]:enabled:focus:enabled, body.admin-color-coffee .components-button.is-primary[aria-disabled=\"true\"]:active:enabled:focus:enabled {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(194, 166, 140); }\n body.admin-color-blue .components-button.is-primary:disabled:focus:enabled, body.admin-color-blue .components-button.is-primary:disabled:active:enabled:focus:enabled, body.admin-color-blue .components-button.is-primary[aria-disabled=\"true\"]:focus:enabled, body.admin-color-blue .components-button.is-primary[aria-disabled=\"true\"]:enabled:focus:enabled, body.admin-color-blue .components-button.is-primary[aria-disabled=\"true\"]:active:enabled:focus:enabled {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(217, 171, 89); }\n body.admin-color-light .components-button.is-primary:disabled:focus:enabled, body.admin-color-light .components-button.is-primary:disabled:active:enabled:focus:enabled, body.admin-color-light .components-button.is-primary[aria-disabled=\"true\"]:focus:enabled, body.admin-color-light .components-button.is-primary[aria-disabled=\"true\"]:enabled:focus:enabled, body.admin-color-light .components-button.is-primary[aria-disabled=\"true\"]:active:enabled:focus:enabled {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(0, 133, 186); }\n .components-button.is-primary.is-busy, .components-button.is-primary.is-busy:disabled, .components-button.is-primary.is-busy[aria-disabled=\"true\"] {\n color: #fff;\n background-size: 100px 100%;\n /* stylelint-disable */\n background-image: linear-gradient(-45deg, #007cba 28%, rgb(0, 99, 149) 28%, rgb(0, 99, 149) 72%, #007cba 72%);\n /* stylelint-enable */\n border-color: rgb(0, 124, 186); }\n body.admin-color-sunrise .components-button.is-primary.is-busy, body.admin-color-sunrise .components-button.is-primary.is-busy:disabled, body.admin-color-sunrise .components-button.is-primary.is-busy[aria-disabled=\"true\"] {\n background-image: linear-gradient(-45deg, #d1864a 28%, rgb(167, 107, 59) 28%, rgb(167, 107, 59) 72%, #d1864a 72%);\n border-color: rgb(209, 134, 74); }\n body.admin-color-ocean .components-button.is-primary.is-busy, body.admin-color-ocean .components-button.is-primary.is-busy:disabled, body.admin-color-ocean .components-button.is-primary.is-busy[aria-disabled=\"true\"] {\n background-image: linear-gradient(-45deg, #a3b9a2 28%, rgb(130, 148, 130) 28%, rgb(130, 148, 130) 72%, #a3b9a2 72%);\n border-color: rgb(163, 185, 162); }\n body.admin-color-midnight .components-button.is-primary.is-busy, body.admin-color-midnight .components-button.is-primary.is-busy:disabled, body.admin-color-midnight .components-button.is-primary.is-busy[aria-disabled=\"true\"] {\n background-image: linear-gradient(-45deg, #e14d43 28%, rgb(180, 62, 54) 28%, rgb(180, 62, 54) 72%, #e14d43 72%);\n border-color: rgb(225, 77, 67); }\n body.admin-color-ectoplasm .components-button.is-primary.is-busy, body.admin-color-ectoplasm .components-button.is-primary.is-busy:disabled, body.admin-color-ectoplasm .components-button.is-primary.is-busy[aria-disabled=\"true\"] {\n background-image: linear-gradient(-45deg, #a7b656 28%, rgb(134, 146, 69) 28%, rgb(134, 146, 69) 72%, #a7b656 72%);\n border-color: rgb(167, 182, 86); }\n body.admin-color-coffee .components-button.is-primary.is-busy, body.admin-color-coffee .components-button.is-primary.is-busy:disabled, body.admin-color-coffee .components-button.is-primary.is-busy[aria-disabled=\"true\"] {\n background-image: linear-gradient(-45deg, #c2a68c 28%, rgb(155, 133, 112) 28%, rgb(155, 133, 112) 72%, #c2a68c 72%);\n border-color: rgb(194, 166, 140); }\n body.admin-color-blue .components-button.is-primary.is-busy, body.admin-color-blue .components-button.is-primary.is-busy:disabled, body.admin-color-blue .components-button.is-primary.is-busy[aria-disabled=\"true\"] {\n background-image: linear-gradient(-45deg, #d9ab59 28%, rgb(174, 137, 71) 28%, rgb(174, 137, 71) 72%, #d9ab59 72%);\n border-color: rgb(217, 171, 89); }\n body.admin-color-light .components-button.is-primary.is-busy, body.admin-color-light .components-button.is-primary.is-busy:disabled, body.admin-color-light .components-button.is-primary.is-busy[aria-disabled=\"true\"] {\n background-image: linear-gradient(-45deg, #0085ba 28%, rgb(0, 106, 149) 28%, rgb(0, 106, 149) 72%, #0085ba 72%);\n border-color: rgb(0, 133, 186); }\n .components-button.is-secondary:active:not(:disabled), .components-button.is-tertiary:active:not(:disabled) {\n background: #e7e8e9;\n color: rgb(0, 112, 167);\n box-shadow: none; }\n body.admin-color-sunrise .components-button.is-secondary:active:not(:disabled), body.admin-color-sunrise .components-button.is-tertiary:active:not(:disabled) {\n color: rgb(188, 121, 67); }\n body.admin-color-ocean .components-button.is-secondary:active:not(:disabled), body.admin-color-ocean .components-button.is-tertiary:active:not(:disabled) {\n color: rgb(147, 167, 146); }\n body.admin-color-midnight .components-button.is-secondary:active:not(:disabled), body.admin-color-midnight .components-button.is-tertiary:active:not(:disabled) {\n color: rgb(203, 69, 60); }\n body.admin-color-ectoplasm .components-button.is-secondary:active:not(:disabled), body.admin-color-ectoplasm .components-button.is-tertiary:active:not(:disabled) {\n color: rgb(150, 164, 77); }\n body.admin-color-coffee .components-button.is-secondary:active:not(:disabled), body.admin-color-coffee .components-button.is-tertiary:active:not(:disabled) {\n color: rgb(175, 149, 126); }\n body.admin-color-blue .components-button.is-secondary:active:not(:disabled), body.admin-color-blue .components-button.is-tertiary:active:not(:disabled) {\n color: rgb(195, 154, 80); }\n body.admin-color-light .components-button.is-secondary:active:not(:disabled), body.admin-color-light .components-button.is-tertiary:active:not(:disabled) {\n color: rgb(0, 120, 167); }\n .components-button.is-secondary:hover:not(:disabled), .components-button.is-tertiary:hover:not(:disabled) {\n color: rgb(0, 112, 167);\n box-shadow: inset 0 0 0 1px rgb(0, 112, 167); }\n body.admin-color-sunrise .components-button.is-secondary:hover:not(:disabled), body.admin-color-sunrise .components-button.is-tertiary:hover:not(:disabled) {\n color: rgb(188, 121, 67);\n box-shadow: inset 0 0 0 1px rgb(188, 121, 67); }\n body.admin-color-ocean .components-button.is-secondary:hover:not(:disabled), body.admin-color-ocean .components-button.is-tertiary:hover:not(:disabled) {\n color: rgb(147, 167, 146);\n box-shadow: inset 0 0 0 1px rgb(147, 167, 146); }\n body.admin-color-midnight .components-button.is-secondary:hover:not(:disabled), body.admin-color-midnight .components-button.is-tertiary:hover:not(:disabled) {\n color: rgb(203, 69, 60);\n box-shadow: inset 0 0 0 1px rgb(203, 69, 60); }\n body.admin-color-ectoplasm .components-button.is-secondary:hover:not(:disabled), body.admin-color-ectoplasm .components-button.is-tertiary:hover:not(:disabled) {\n color: rgb(150, 164, 77);\n box-shadow: inset 0 0 0 1px rgb(150, 164, 77); }\n body.admin-color-coffee .components-button.is-secondary:hover:not(:disabled), body.admin-color-coffee .components-button.is-tertiary:hover:not(:disabled) {\n color: rgb(175, 149, 126);\n box-shadow: inset 0 0 0 1px rgb(175, 149, 126); }\n body.admin-color-blue .components-button.is-secondary:hover:not(:disabled), body.admin-color-blue .components-button.is-tertiary:hover:not(:disabled) {\n color: rgb(195, 154, 80);\n box-shadow: inset 0 0 0 1px rgb(195, 154, 80); }\n body.admin-color-light .components-button.is-secondary:hover:not(:disabled), body.admin-color-light .components-button.is-tertiary:hover:not(:disabled) {\n color: rgb(0, 120, 167);\n box-shadow: inset 0 0 0 1px rgb(0, 120, 167); }\n .components-button.is-secondary:disabled, .components-button.is-secondary[aria-disabled=\"true\"], .components-button.is-secondary[aria-disabled=\"true\"]:hover, .components-button.is-tertiary:disabled, .components-button.is-tertiary[aria-disabled=\"true\"], .components-button.is-tertiary[aria-disabled=\"true\"]:hover {\n color: #828282;\n background: #f4f5f5;\n transform: none;\n opacity: 1;\n box-shadow: none; }\n .components-button.is-secondary {\n box-shadow: inset 0 0 0 1px #007cba;\n outline: 1px solid transparent;\n white-space: nowrap;\n color: #007cba;\n background: transparent; }\n body.admin-color-sunrise .components-button.is-secondary {\n box-shadow: inset 0 0 0 1px #d1864a;\n color: #d1864a; }\n body.admin-color-ocean .components-button.is-secondary {\n box-shadow: inset 0 0 0 1px #a3b9a2;\n color: #a3b9a2; }\n body.admin-color-midnight .components-button.is-secondary {\n box-shadow: inset 0 0 0 1px #e14d43;\n color: #e14d43; }\n body.admin-color-ectoplasm .components-button.is-secondary {\n box-shadow: inset 0 0 0 1px #a7b656;\n color: #a7b656; }\n body.admin-color-coffee .components-button.is-secondary {\n box-shadow: inset 0 0 0 1px #c2a68c;\n color: #c2a68c; }\n body.admin-color-blue .components-button.is-secondary {\n box-shadow: inset 0 0 0 1px #d9ab59;\n color: #d9ab59; }\n body.admin-color-light .components-button.is-secondary {\n box-shadow: inset 0 0 0 1px #0085ba;\n color: #0085ba; }\n .components-button.is-tertiary {\n white-space: nowrap;\n color: #007cba;\n background: transparent;\n padding: 6px; }\n body.admin-color-sunrise .components-button.is-tertiary {\n color: #d1864a; }\n body.admin-color-ocean .components-button.is-tertiary {\n color: #a3b9a2; }\n body.admin-color-midnight .components-button.is-tertiary {\n color: #e14d43; }\n body.admin-color-ectoplasm .components-button.is-tertiary {\n color: #a7b656; }\n body.admin-color-coffee .components-button.is-tertiary {\n color: #c2a68c; }\n body.admin-color-blue .components-button.is-tertiary {\n color: #d9ab59; }\n body.admin-color-light .components-button.is-tertiary {\n color: #0085ba; }\n .components-button.is-tertiary .dashicon {\n display: inline-block;\n flex: 0 0 auto; }\n .components-button.is-link {\n margin: 0;\n padding: 0;\n box-shadow: none;\n border: 0;\n border-radius: 0;\n background: none;\n outline: none;\n text-align: left;\n /* Mimics the default link style in common.css */\n color: #0073aa;\n text-decoration: underline;\n transition-property: border, background, color;\n transition-duration: 0.05s;\n transition-timing-function: ease-in-out;\n height: auto; }\n @media (prefers-reduced-motion: reduce) {\n .components-button.is-link {\n transition-duration: 0s; } }\n .components-button.is-link:hover:not(:disabled), .components-button.is-link:active:not(:disabled) {\n color: #00a0d2; }\n .components-button.is-link:focus {\n color: #124964;\n box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, 0.8); }\n .components-button.is-link.is-destructive {\n color: #d94f4f; }\n .components-button:not([aria-disabled=\"true\"]):active {\n color: inherit; }\n .components-button:disabled, .components-button[aria-disabled=\"true\"] {\n cursor: default;\n opacity: 0.3; }\n .components-button.is-busy, .components-button.is-secondary.is-busy, .components-button.is-secondary.is-busy:disabled, .components-button.is-secondary.is-busy[aria-disabled=\"true\"] {\n animation: components-button__busy-animation 2500ms infinite linear;\n background-size: 100px 100%;\n background-image: repeating-linear-gradient(-45deg, #e2e4e7, #fff 11px, #fff 10px, #e2e4e7 20px);\n opacity: 1; }\n .components-button.is-small {\n height: 24px;\n line-height: 22px;\n padding: 0 8px;\n font-size: 11px; }\n .components-button.is-small.has-icon:not(.has-text) {\n width: 24px; }\n .components-button.has-icon {\n padding: 6px;\n min-width: 36px;\n justify-content: center; }\n .components-button.has-icon .dashicon {\n display: inline-block;\n flex: 0 0 auto; }\n .components-button.has-icon.has-text {\n justify-content: left; }\n .components-button.has-icon.has-text svg {\n margin-right: 8px; }\n .components-button svg {\n fill: currentColor;\n outline: none; }\n .components-button .screen-reader-text {\n height: auto; }\n\n@keyframes components-button__busy-animation {\n 0% {\n background-position: 200px 0; } }\n\n.components-checkbox-control__input[type=\"checkbox\"] {\n border: 1px solid #b4b9be;\n background: #fff;\n color: #555;\n clear: none;\n cursor: pointer;\n display: inline-block;\n line-height: 0;\n margin: 0 4px 0 0;\n outline: 0;\n padding: 0 !important;\n text-align: center;\n vertical-align: top;\n width: 24px;\n height: 24px;\n -webkit-appearance: none;\n box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n transition: 0.05s border-color ease-in-out; }\n @media (min-width: 600px) {\n .components-checkbox-control__input[type=\"checkbox\"] {\n height: 20px;\n width: 20px; } }\n .components-checkbox-control__input[type=\"checkbox\"]:focus {\n border-color: #5b9dd9;\n box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);\n outline: 2px solid transparent; }\n .components-checkbox-control__input[type=\"checkbox\"]:checked {\n background: #11a0d2;\n border-color: #11a0d2; }\n .components-checkbox-control__input[type=\"checkbox\"]:checked::-ms-check {\n opacity: 0; }\n .components-checkbox-control__input[type=\"checkbox\"]:focus:checked {\n border: none; }\n .components-checkbox-control__input[type=\"checkbox\"]:checked::before {\n content: none; }\n\n.components-checkbox-control__input-container {\n position: relative;\n display: inline-block;\n margin-right: 12px;\n vertical-align: middle;\n width: 24px;\n height: 24px; }\n @media (min-width: 600px) {\n .components-checkbox-control__input-container {\n width: 20px;\n height: 20px; } }\n\nsvg.components-checkbox-control__checked {\n fill: #fff;\n cursor: pointer;\n position: absolute;\n left: 0;\n top: 0;\n width: 24px;\n height: 24px;\n -webkit-user-select: none;\n -ms-user-select: none;\n user-select: none;\n pointer-events: none; }\n @media (min-width: 600px) {\n svg.components-checkbox-control__checked {\n left: -2px;\n top: -2px; } }\n\n.components-circular-option-picker {\n display: inline-block;\n margin-top: 0.6rem;\n width: 100%; }\n .components-circular-option-picker .components-circular-option-picker__custom-clear-wrapper {\n display: flex;\n justify-content: flex-end; }\n\n.components-circular-option-picker__option-wrapper {\n display: inline-block;\n height: 28px;\n width: 28px;\n margin-right: 12px;\n margin-bottom: 12px;\n vertical-align: top;\n transform: scale(1);\n transition: 100ms transform ease; }\n @media (prefers-reduced-motion: reduce) {\n .components-circular-option-picker__option-wrapper {\n transition-duration: 0s; } }\n .components-circular-option-picker__option-wrapper:hover {\n transform: scale(1.2); }\n .components-circular-option-picker__option-wrapper > div {\n height: 100%;\n width: 100%; }\n\n.components-circular-option-picker__option-wrapper::before {\n content: \"\";\n position: absolute;\n top: 1px;\n left: 1px;\n bottom: 1px;\n right: 1px;\n border-radius: 50%;\n z-index: -1;\n /* stylelint-disable-next-line function-url-quotes */\n background: url('data:image/svg+xml,%3Csvg width=\"28\" height=\"28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"%3E%3Cpath d=\"M6 8V6H4v2h2zM8 8V6h2v2H8zM10 16H8v-2h2v2zM12 16v-2h2v2h-2zM12 18v-2h-2v2H8v2h2v-2h2zM14 18v2h-2v-2h2zM16 18h-2v-2h2v2z\" fill=\"%23555D65\"/%3E%3Cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18 18h2v-2h-2v-2h2v-2h-2v-2h2V8h-2v2h-2V8h-2v2h2v2h-2v2h2v2h2v2zm-2-4v-2h2v2h-2z\" fill=\"%23555D65\"/%3E%3Cpath d=\"M18 18v2h-2v-2h2z\" fill=\"%23555D65\"/%3E%3Cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 10V8H6v2H4v2h2v2H4v2h2v2H4v2h2v2H4v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h2V4h-2v2h-2V4h-2v2h-2V4h-2v2h-2V4h-2v2h2v2h-2v2H8zm0 2v-2H6v2h2zm2 0v-2h2v2h-2zm0 2v-2H8v2H6v2h2v2H6v2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h-2v2h-2V6h-2v2h-2v2h2v2h-2v2h-2z\" fill=\"%23555D65\"/%3E%3Cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 0H2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h2V4h-2V2h2V0h-2v2h-2V0h-2v2h-2V0h-2v2h-2V0h-2v2h-2V0h-2v2H8V0H6v2H4V0zm0 4V2H2v2h2zm2 0V2h2v2H6zm0 2V4H4v2H2v2h2v2H2v2h2v2H2v2h2v2H2v2h2v2H2v2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h2V4h-2V2h-2v2h-2V2h-2v2h-2V2h-2v2h-2V2h-2v2H8v2H6z\" fill=\"%23555D65\"/%3E%3C/svg%3E'); }\n\n.components-circular-option-picker__option {\n display: inline-block;\n vertical-align: top;\n height: 100%;\n width: 100%;\n border: none;\n border-radius: 50%;\n background: transparent;\n box-shadow: inset 0 0 0 14px;\n transition: 100ms box-shadow ease;\n cursor: pointer; }\n @media (prefers-reduced-motion: reduce) {\n .components-circular-option-picker__option {\n transition-duration: 0s; } }\n .components-circular-option-picker__option:hover {\n box-shadow: inset 0 0 0 14px !important; }\n .components-circular-option-picker__option.is-pressed {\n box-shadow: inset 0 0 0 4px;\n position: relative;\n z-index: 1;\n overflow: visible; }\n .components-circular-option-picker__option.is-pressed + svg {\n position: absolute;\n left: 2px;\n top: 2px;\n border-radius: 50%;\n z-index: 2;\n pointer-events: none; }\n .components-circular-option-picker__option::after {\n content: \"\";\n position: absolute;\n top: -1px;\n left: -1px;\n bottom: -1px;\n right: -1px;\n border-radius: 50%;\n box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);\n border: 1px solid transparent; }\n .components-circular-option-picker__option:focus::after {\n content: \"\";\n border: 2px solid #606a73;\n width: 32px;\n height: 32px;\n position: absolute;\n top: -2px;\n left: -2px;\n border-radius: 50%;\n box-shadow: inset 0 0 0 2px #fff; }\n .components-circular-option-picker__option.components-button:focus {\n background-color: transparent;\n box-shadow: inset 0 0 0 14px;\n outline: none; }\n\n.components-circular-option-picker__button-action .components-circular-option-picker__option {\n color: #fff;\n background: #fff; }\n\n.components-circular-option-picker__dropdown-link-action {\n margin-right: 16px; }\n .components-circular-option-picker__dropdown-link-action .components-button {\n line-height: 22px; }\n\n.component-color-indicator {\n width: 25px;\n height: 16px;\n margin-left: 0.8rem;\n border: 1px solid #dadada;\n display: inline-block; }\n .component-color-indicator + .component-color-indicator {\n margin-left: 0.5rem; }\n\n/**\n * Parts of this source were derived and modified from react-color,\n * released under the MIT license.\n *\n * https://github.com/casesandberg/react-color/\n *\n * Copyright (c) 2015 Case Sandberg\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n * THE SOFTWARE.\n */\n.components-color-picker {\n width: 100%;\n overflow: hidden; }\n .components-color-picker * {\n box-sizing: border-box; }\n\n.components-color-picker__saturation {\n width: 100%;\n padding-bottom: 55%;\n position: relative; }\n\n.components-color-picker__body {\n padding: 16px 16px 12px; }\n\n.components-color-picker__controls {\n display: flex; }\n\n.components-color-picker__saturation-pointer,\n.components-color-picker__hue-pointer,\n.components-color-picker__alpha-pointer {\n padding: 0;\n position: absolute;\n cursor: pointer;\n box-shadow: none;\n border: none; }\n\n/* CURRENT COLOR COMPONENT */\n.components-color-picker__swatch {\n margin-right: 8px;\n width: 32px;\n height: 32px;\n border-radius: 50%;\n position: relative;\n overflow: hidden;\n background-image: linear-gradient(45deg, #ddd 25%, transparent 25%), linear-gradient(-45deg, #ddd 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #ddd 75%), linear-gradient(-45deg, transparent 75%, #ddd 75%);\n background-size: 10px 10px;\n background-position: 0 0, 0 5px, 5px -5px, -5px 0; }\n .is-alpha-disabled .components-color-picker__swatch {\n width: 12px;\n height: 12px;\n margin-top: 0; }\n\n.components-color-picker__active {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n border-radius: 50%;\n box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);\n z-index: 2; }\n\n/* SATURATION COMPONENT */\n.components-color-picker__saturation-color,\n.components-color-picker__saturation-white,\n.components-color-picker__saturation-black {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0; }\n\n.components-color-picker__saturation-color {\n overflow: hidden; }\n\n.components-color-picker__saturation-white {\n /*rtl:ignore*/\n background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0)); }\n\n.components-color-picker__saturation-black {\n background: linear-gradient(to top, #000, rgba(0, 0, 0, 0)); }\n\n.components-color-picker__saturation-pointer {\n width: 14px;\n height: 14px;\n padding: 0;\n box-shadow: 0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0, 0, 0, 0.3), 0 0 1px 2px rgba(0, 0, 0, 0.4);\n border-radius: 50%;\n background-color: transparent;\n transform: translate(-4px, -4px); }\n\n/* HUE & ALPHA BARS */\n.components-color-picker__toggles {\n flex: 1; }\n\n.components-color-picker__alpha {\n background-image: linear-gradient(45deg, #ddd 25%, transparent 25%), linear-gradient(-45deg, #ddd 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #ddd 75%), linear-gradient(-45deg, transparent 75%, #ddd 75%);\n background-size: 10px 10px;\n background-position: 0 0, 0 5px, 5px -5px, -5px 0; }\n\n.components-color-picker__hue-gradient,\n.components-color-picker__alpha-gradient {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0; }\n\n.components-color-picker__hue,\n.components-color-picker__alpha {\n height: 12px;\n position: relative; }\n\n.is-alpha-enabled .components-color-picker__hue {\n margin-bottom: 8px; }\n\n.components-color-picker__hue-bar,\n.components-color-picker__alpha-bar {\n position: relative;\n margin: 0 3px;\n height: 100%;\n padding: 0 2px; }\n\n.components-color-picker__hue-gradient {\n /*rtl:ignore*/\n background: linear-gradient(to right, #f00 0%, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%); }\n\n.components-color-picker__hue-pointer,\n.components-color-picker__alpha-pointer {\n /*rtl:ignore*/\n left: 0;\n width: 14px;\n height: 14px;\n border-radius: 50%;\n box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);\n background: #fff;\n transform: translate(-7px, -1px); }\n\n.components-color-picker__hue-pointer,\n.components-color-picker__saturation-pointer {\n transition: box-shadow 0.1s linear; }\n @media (prefers-reduced-motion: reduce) {\n .components-color-picker__hue-pointer,\n .components-color-picker__saturation-pointer {\n transition-duration: 0s; } }\n\n.components-color-picker__saturation-pointer:focus {\n box-shadow: 0 0 0 2px #fff, 0 0 0 4px #00a0d2, 0 0 5px 0 #00a0d2, inset 0 0 1px 1px rgba(0, 0, 0, 0.3), 0 0 1px 2px rgba(0, 0, 0, 0.4); }\n\n.components-color-picker__hue-pointer:focus,\n.components-color-picker__alpha-pointer:focus {\n border-color: #00a0d2;\n box-shadow: 0 0 0 2px #00a0d2, 0 0 3px 0 #00a0d2;\n outline: 2px solid transparent;\n outline-offset: -2px; }\n\n/* INPUTS COMPONENT */\n.components-color-picker__inputs-wrapper {\n margin: 0 -4px;\n padding-top: 16px;\n display: flex;\n align-items: flex-end; }\n .components-color-picker__inputs-wrapper fieldset {\n flex: 1;\n border: none;\n margin: 0;\n padding: 0; }\n .components-color-picker__inputs-wrapper .components-color-picker__inputs-fields .components-text-control__input[type=\"number\"] {\n padding: 6px 8px; }\n\n.components-color-picker__inputs-field {\n width: 100%; }\n\n.components-color-picker__inputs-fields {\n display: flex;\n /*rtl:ignore*/\n direction: ltr;\n flex-grow: 1;\n margin-right: 4px; }\n .components-color-picker__inputs-fields .components-base-control + .components-base-control {\n margin-top: 0; }\n .components-color-picker__inputs-fields .components-base-control__field {\n margin: 0 4px; }\n\n.components-color-picker__inputs-toggle {\n height: 30px;\n padding: 0 5px; }\n\n.components-custom-gradient-picker {\n margin-top: 8px; }\n\n.components-custom-gradient-picker__gradient-bar:not(.has-gradient) {\n opacity: 0.4; }\n\n.components-custom-gradient-picker__gradient-bar {\n width: 100%;\n height: 24px;\n border-radius: 24px;\n margin-bottom: 8px;\n padding-left: 3px;\n padding-right: 21px; }\n .components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__markers-container {\n position: relative; }\n .components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__insert-point {\n border-radius: 50%;\n background: #fff;\n padding: 2px;\n min-width: 24px;\n width: 24px;\n height: 24px;\n position: relative; }\n .components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__insert-point svg {\n height: 100%;\n width: 100%; }\n .components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button {\n border: 2px solid #fff;\n border-radius: 50%;\n height: 18px;\n padding: 0;\n position: absolute;\n width: 18px;\n top: 3px; }\n .components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button.is-active {\n background: #fafafa;\n color: #23282d;\n border-color: #999;\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba; }\n\n.components-custom-gradient-picker__color-picker-popover .components-custom-gradient-picker__remove-control-point {\n margin-left: auto;\n margin-right: auto;\n display: block;\n margin-bottom: 8px; }\n\n.components-custom-gradient-picker__inserter {\n width: 100%; }\n\n.components-custom-gradient-picker__liner-gradient-indicator {\n display: inline-block;\n flex: 0 auto;\n width: 20px;\n height: 20px; }\n\n.components-custom-gradient-picker__ui-line {\n display: flex;\n justify-content: space-between; }\n\n.components-custom-gradient-picker .components-custom-gradient-picker__ui-line .components-base-control.components-angle-picker,\n.components-custom-gradient-picker .components-custom-gradient-picker__ui-line .components-base-control.components-custom-gradient-picker__type-picker {\n margin-bottom: 0; }\n\n.components-custom-gradient-picker .components-custom-gradient-picker__toolbar {\n border: none; }\n .components-custom-gradient-picker .components-custom-gradient-picker__toolbar > div + div {\n margin-left: 1px; }\n .components-custom-gradient-picker .components-custom-gradient-picker__toolbar button.is-pressed > svg {\n background: #fff;\n border: 1px solid #7e8993;\n border-radius: 2px; }\n\n.components-custom-select-control {\n color: #555d66;\n position: relative; }\n\n.components-custom-select-control__label {\n display: block;\n margin-bottom: 5px; }\n\n.components-custom-select-control__button {\n border: 1px solid #7e8993;\n border-radius: 4px;\n color: #555d66;\n display: inline;\n min-height: 30px;\n min-width: 130px;\n position: relative;\n text-align: left; }\n .components-custom-select-control__button:focus {\n border-color: #00a0d2; }\n .components-custom-select-control__button-icon {\n height: 100%;\n padding: 0 4px;\n position: absolute;\n right: 0;\n top: 0; }\n\n.components-custom-select-control__menu {\n background: #fff;\n max-height: 400px;\n min-width: 100%;\n overflow: auto;\n padding: 0;\n position: absolute;\n z-index: 1000000; }\n\n.components-custom-select-control__item {\n align-items: center;\n display: flex;\n list-style-type: none;\n padding: 10px 5px 10px 25px; }\n .components-custom-select-control__item.is-highlighted {\n background: #e2e4e7; }\n .components-custom-select-control__item-icon {\n margin-left: -20px;\n margin-right: 0; }\n\nsvg.dashicon {\n fill: currentColor;\n outline: none; }\n\n/*rtl:begin:ignore*/\n.PresetDateRangePicker_panel {\n padding: 0 22px 11px; }\n\n.PresetDateRangePicker_button {\n position: relative;\n height: 100%;\n text-align: center;\n background: 0 0;\n border: 2px solid #00a699;\n color: #00a699;\n padding: 4px 12px;\n margin-right: 8px;\n font: inherit;\n font-weight: 700;\n line-height: normal;\n overflow: visible;\n box-sizing: border-box;\n cursor: pointer; }\n\n.PresetDateRangePicker_button:active {\n outline: 0; }\n\n.PresetDateRangePicker_button__selected {\n color: #fff;\n background: #00a699; }\n\n.SingleDatePickerInput {\n display: inline-block;\n background-color: #fff; }\n\n.SingleDatePickerInput__withBorder {\n border-radius: 2px;\n border: 1px solid #dbdbdb; }\n\n.SingleDatePickerInput__rtl {\n direction: rtl; }\n\n.SingleDatePickerInput__disabled {\n background-color: #f2f2f2; }\n\n.SingleDatePickerInput__block {\n display: block; }\n\n.SingleDatePickerInput__showClearDate {\n padding-right: 30px; }\n\n.SingleDatePickerInput_clearDate {\n background: 0 0;\n border: 0;\n color: inherit;\n font: inherit;\n line-height: normal;\n overflow: visible;\n cursor: pointer;\n padding: 10px;\n margin: 0 10px 0 5px;\n position: absolute;\n right: 0;\n top: 50%;\n transform: translateY(-50%); }\n\n.SingleDatePickerInput_clearDate__default:focus,\n.SingleDatePickerInput_clearDate__default:hover {\n background: #dbdbdb;\n border-radius: 50%; }\n\n.SingleDatePickerInput_clearDate__small {\n padding: 6px; }\n\n.SingleDatePickerInput_clearDate__hide {\n visibility: hidden; }\n\n.SingleDatePickerInput_clearDate_svg {\n fill: #82888a;\n height: 12px;\n width: 15px;\n vertical-align: middle; }\n\n.SingleDatePickerInput_clearDate_svg__small {\n height: 9px; }\n\n.SingleDatePickerInput_calendarIcon {\n background: 0 0;\n border: 0;\n color: inherit;\n font: inherit;\n line-height: normal;\n overflow: visible;\n cursor: pointer;\n display: inline-block;\n vertical-align: middle;\n padding: 10px;\n margin: 0 5px 0 10px; }\n\n.SingleDatePickerInput_calendarIcon_svg {\n fill: #82888a;\n height: 15px;\n width: 14px;\n vertical-align: middle; }\n\n.SingleDatePicker {\n position: relative;\n display: inline-block; }\n\n.SingleDatePicker__block {\n display: block; }\n\n.SingleDatePicker_picker {\n z-index: 1;\n background-color: #fff;\n position: absolute; }\n\n.SingleDatePicker_picker__rtl {\n direction: rtl; }\n\n.SingleDatePicker_picker__directionLeft {\n left: 0; }\n\n.SingleDatePicker_picker__directionRight {\n right: 0; }\n\n.SingleDatePicker_picker__portal {\n background-color: rgba(0, 0, 0, 0.3);\n position: fixed;\n top: 0;\n left: 0;\n height: 100%;\n width: 100%; }\n\n.SingleDatePicker_picker__fullScreenPortal {\n background-color: #fff; }\n\n.SingleDatePicker_closeButton {\n background: 0 0;\n border: 0;\n color: inherit;\n font: inherit;\n line-height: normal;\n overflow: visible;\n cursor: pointer;\n position: absolute;\n top: 0;\n right: 0;\n padding: 15px;\n z-index: 2; }\n\n.SingleDatePicker_closeButton:focus,\n.SingleDatePicker_closeButton:hover {\n color: #b0b3b4;\n text-decoration: none; }\n\n.SingleDatePicker_closeButton_svg {\n height: 15px;\n width: 15px;\n fill: #cacccd; }\n\n.DayPickerKeyboardShortcuts_buttonReset {\n background: 0 0;\n border: 0;\n border-radius: 0;\n color: inherit;\n font: inherit;\n line-height: normal;\n overflow: visible;\n padding: 0;\n cursor: pointer;\n font-size: 14px; }\n\n.DayPickerKeyboardShortcuts_buttonReset:active {\n outline: 0; }\n\n.DayPickerKeyboardShortcuts_show {\n width: 22px;\n position: absolute;\n z-index: 2; }\n\n.DayPickerKeyboardShortcuts_show__bottomRight {\n border-top: 26px solid transparent;\n border-right: 33px solid #00a699;\n bottom: 0;\n right: 0; }\n\n.DayPickerKeyboardShortcuts_show__bottomRight:hover {\n border-right: 33px solid #008489; }\n\n.DayPickerKeyboardShortcuts_show__topRight {\n border-bottom: 26px solid transparent;\n border-right: 33px solid #00a699;\n top: 0;\n right: 0; }\n\n.DayPickerKeyboardShortcuts_show__topRight:hover {\n border-right: 33px solid #008489; }\n\n.DayPickerKeyboardShortcuts_show__topLeft {\n border-bottom: 26px solid transparent;\n border-left: 33px solid #00a699;\n top: 0;\n left: 0; }\n\n.DayPickerKeyboardShortcuts_show__topLeft:hover {\n border-left: 33px solid #008489; }\n\n.DayPickerKeyboardShortcuts_showSpan {\n color: #fff;\n position: absolute; }\n\n.DayPickerKeyboardShortcuts_showSpan__bottomRight {\n bottom: 0;\n right: -28px; }\n\n.DayPickerKeyboardShortcuts_showSpan__topRight {\n top: 1px;\n right: -28px; }\n\n.DayPickerKeyboardShortcuts_showSpan__topLeft {\n top: 1px;\n left: -28px; }\n\n.DayPickerKeyboardShortcuts_panel {\n overflow: auto;\n background: #fff;\n border: 1px solid #dbdbdb;\n border-radius: 2px;\n position: absolute;\n top: 0;\n bottom: 0;\n right: 0;\n left: 0;\n z-index: 2;\n padding: 22px;\n margin: 33px; }\n\n.DayPickerKeyboardShortcuts_title {\n font-size: 16px;\n font-weight: 700;\n margin: 0; }\n\n.DayPickerKeyboardShortcuts_list {\n list-style: none;\n padding: 0;\n font-size: 14px; }\n\n.DayPickerKeyboardShortcuts_close {\n position: absolute;\n right: 22px;\n top: 22px;\n z-index: 2; }\n\n.DayPickerKeyboardShortcuts_close:active {\n outline: 0; }\n\n.DayPickerKeyboardShortcuts_closeSvg {\n height: 15px;\n width: 15px;\n fill: #cacccd; }\n\n.DayPickerKeyboardShortcuts_closeSvg:focus,\n.DayPickerKeyboardShortcuts_closeSvg:hover {\n fill: #82888a; }\n\n.CalendarDay {\n box-sizing: border-box;\n cursor: pointer;\n font-size: 14px;\n text-align: center; }\n\n.CalendarDay:active {\n outline: 0; }\n\n.CalendarDay__defaultCursor {\n cursor: default; }\n\n.CalendarDay__default {\n border: 1px solid #e4e7e7;\n color: #484848;\n background: #fff; }\n\n.CalendarDay__default:hover {\n background: #e4e7e7;\n border: 1px double #e4e7e7;\n color: inherit; }\n\n.CalendarDay__hovered_offset {\n background: #f4f5f5;\n border: 1px double #e4e7e7;\n color: inherit; }\n\n.CalendarDay__outside {\n border: 0;\n background: #fff;\n color: #484848; }\n\n.CalendarDay__outside:hover {\n border: 0; }\n\n.CalendarDay__blocked_minimum_nights {\n background: #fff;\n border: 1px solid #eceeee;\n color: #cacccd; }\n\n.CalendarDay__blocked_minimum_nights:active,\n.CalendarDay__blocked_minimum_nights:hover {\n background: #fff;\n color: #cacccd; }\n\n.CalendarDay__highlighted_calendar {\n background: #ffe8bc;\n color: #484848; }\n\n.CalendarDay__highlighted_calendar:active,\n.CalendarDay__highlighted_calendar:hover {\n background: #ffce71;\n color: #484848; }\n\n.CalendarDay__selected_span {\n background: #66e2da;\n border: 1px solid #33dacd;\n color: #fff; }\n\n.CalendarDay__selected_span:active,\n.CalendarDay__selected_span:hover {\n background: #33dacd;\n border: 1px solid #33dacd;\n color: #fff; }\n\n.CalendarDay__last_in_range {\n border-right: #00a699; }\n\n.CalendarDay__selected,\n.CalendarDay__selected:active,\n.CalendarDay__selected:hover {\n background: #00a699;\n border: 1px solid #00a699;\n color: #fff; }\n\n.CalendarDay__hovered_span,\n.CalendarDay__hovered_span:hover {\n background: #b2f1ec;\n border: 1px solid #80e8e0;\n color: #007a87; }\n\n.CalendarDay__hovered_span:active {\n background: #80e8e0;\n border: 1px solid #80e8e0;\n color: #007a87; }\n\n.CalendarDay__blocked_calendar,\n.CalendarDay__blocked_calendar:active,\n.CalendarDay__blocked_calendar:hover {\n background: #cacccd;\n border: 1px solid #cacccd;\n color: #82888a; }\n\n.CalendarDay__blocked_out_of_range,\n.CalendarDay__blocked_out_of_range:active,\n.CalendarDay__blocked_out_of_range:hover {\n background: #fff;\n border: 1px solid #e4e7e7;\n color: #cacccd; }\n\n.CalendarMonth {\n background: #fff;\n text-align: center;\n vertical-align: top;\n -webkit-user-select: none;\n -ms-user-select: none;\n user-select: none; }\n\n.CalendarMonth_table {\n border-collapse: collapse;\n border-spacing: 0; }\n\n.CalendarMonth_verticalSpacing {\n border-collapse: separate; }\n\n.CalendarMonth_caption {\n color: #484848;\n font-size: 18px;\n text-align: center;\n padding-top: 22px;\n padding-bottom: 37px;\n caption-side: initial; }\n\n.CalendarMonth_caption__verticalScrollable {\n padding-top: 12px;\n padding-bottom: 7px; }\n\n.CalendarMonthGrid {\n background: #fff;\n text-align: left;\n z-index: 0; }\n\n.CalendarMonthGrid__animating {\n z-index: 1; }\n\n.CalendarMonthGrid__horizontal {\n position: absolute;\n left: 9px; }\n\n.CalendarMonthGrid__vertical {\n margin: 0 auto; }\n\n.CalendarMonthGrid__vertical_scrollable {\n margin: 0 auto;\n overflow-y: scroll; }\n\n.CalendarMonthGrid_month__horizontal {\n display: inline-block;\n vertical-align: top;\n min-height: 100%; }\n\n.CalendarMonthGrid_month__hideForAnimation {\n position: absolute;\n z-index: -1;\n opacity: 0;\n pointer-events: none; }\n\n.CalendarMonthGrid_month__hidden {\n visibility: hidden; }\n\n.DayPickerNavigation {\n position: relative;\n z-index: 2; }\n\n.DayPickerNavigation__horizontal {\n height: 0; }\n\n.DayPickerNavigation__verticalDefault {\n position: absolute;\n width: 100%;\n height: 52px;\n bottom: 0;\n left: 0; }\n\n.DayPickerNavigation__verticalScrollableDefault {\n position: relative; }\n\n.DayPickerNavigation_button {\n cursor: pointer;\n -webkit-user-select: none;\n -ms-user-select: none;\n user-select: none;\n border: 0;\n padding: 0;\n margin: 0; }\n\n.DayPickerNavigation_button__default {\n border: 1px solid #e4e7e7;\n background-color: #fff;\n color: #757575; }\n\n.DayPickerNavigation_button__default:focus,\n.DayPickerNavigation_button__default:hover {\n border: 1px solid #c4c4c4; }\n\n.DayPickerNavigation_button__default:active {\n background: #f2f2f2; }\n\n.DayPickerNavigation_button__horizontalDefault {\n position: absolute;\n top: 18px;\n line-height: .78;\n border-radius: 3px;\n padding: 6px 9px; }\n\n.DayPickerNavigation_leftButton__horizontalDefault {\n left: 22px; }\n\n.DayPickerNavigation_rightButton__horizontalDefault {\n right: 22px; }\n\n.DayPickerNavigation_button__verticalDefault {\n padding: 5px;\n background: #fff;\n box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);\n position: relative;\n display: inline-block;\n height: 100%;\n width: 50%; }\n\n.DayPickerNavigation_nextButton__verticalDefault {\n border-left: 0; }\n\n.DayPickerNavigation_nextButton__verticalScrollableDefault {\n width: 100%; }\n\n.DayPickerNavigation_svg__horizontal {\n height: 19px;\n width: 19px;\n fill: #82888a;\n display: block; }\n\n.DayPickerNavigation_svg__vertical {\n height: 42px;\n width: 42px;\n fill: #484848;\n display: block; }\n\n.DayPicker {\n background: #fff;\n position: relative;\n text-align: left; }\n\n.DayPicker__horizontal {\n background: #fff; }\n\n.DayPicker__verticalScrollable {\n height: 100%; }\n\n.DayPicker__hidden {\n visibility: hidden; }\n\n.DayPicker__withBorder {\n box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.07);\n border-radius: 3px; }\n\n.DayPicker_portal__horizontal {\n box-shadow: none;\n position: absolute;\n left: 50%;\n top: 50%; }\n\n.DayPicker_portal__vertical {\n position: initial; }\n\n.DayPicker_focusRegion {\n outline: 0; }\n\n.DayPicker_calendarInfo__horizontal,\n.DayPicker_wrapper__horizontal {\n display: inline-block;\n vertical-align: top; }\n\n.DayPicker_weekHeaders {\n position: relative; }\n\n.DayPicker_weekHeaders__horizontal {\n margin-left: 9px; }\n\n.DayPicker_weekHeader {\n color: #757575;\n position: absolute;\n top: 62px;\n z-index: 2;\n text-align: left; }\n\n.DayPicker_weekHeader__vertical {\n left: 50%; }\n\n.DayPicker_weekHeader__verticalScrollable {\n top: 0;\n display: table-row;\n border-bottom: 1px solid #dbdbdb;\n background: #fff;\n margin-left: 0;\n left: 0;\n width: 100%;\n text-align: center; }\n\n.DayPicker_weekHeader_ul {\n list-style: none;\n margin: 1px 0;\n padding-left: 0;\n padding-right: 0;\n font-size: 14px; }\n\n.DayPicker_weekHeader_li {\n display: inline-block;\n text-align: center; }\n\n.DayPicker_transitionContainer {\n position: relative;\n overflow: hidden;\n border-radius: 3px; }\n\n.DayPicker_transitionContainer__horizontal {\n transition: height .2s ease-in-out; }\n\n.DayPicker_transitionContainer__vertical {\n width: 100%; }\n\n.DayPicker_transitionContainer__verticalScrollable {\n padding-top: 20px;\n height: 100%;\n position: absolute;\n top: 0;\n bottom: 0;\n right: 0;\n left: 0;\n overflow-y: scroll; }\n\n.DateInput {\n margin: 0;\n padding: 0;\n background: #fff;\n position: relative;\n display: inline-block;\n width: 130px;\n vertical-align: middle; }\n\n.DateInput__small {\n width: 97px; }\n\n.DateInput__block {\n width: 100%; }\n\n.DateInput__disabled {\n background: #f2f2f2;\n color: #dbdbdb; }\n\n.DateInput_input {\n font-weight: 200;\n font-size: 19px;\n line-height: 24px;\n color: #484848;\n background-color: #fff;\n width: 100%;\n padding: 11px 11px 9px;\n border: 0;\n border-top: 0;\n border-right: 0;\n border-bottom: 2px solid transparent;\n border-left: 0;\n border-radius: 0; }\n\n.DateInput_input__small {\n font-size: 15px;\n line-height: 18px;\n letter-spacing: .2px;\n padding: 7px 7px 5px; }\n\n.DateInput_input__regular {\n font-weight: auto; }\n\n.DateInput_input__readOnly {\n -webkit-user-select: none;\n -ms-user-select: none;\n user-select: none; }\n\n.DateInput_input__focused {\n outline: 0;\n background: #fff;\n border: 0;\n border-top: 0;\n border-right: 0;\n border-bottom: 2px solid #008489;\n border-left: 0; }\n\n.DateInput_input__disabled {\n background: #f2f2f2;\n font-style: italic; }\n\n.DateInput_screenReaderMessage {\n border: 0;\n clip: rect(0, 0, 0, 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px; }\n\n.DateInput_fang {\n position: absolute;\n width: 20px;\n height: 10px;\n left: 22px;\n z-index: 2; }\n\n.DateInput_fangShape {\n fill: #fff; }\n\n.DateInput_fangStroke {\n stroke: #dbdbdb;\n fill: transparent; }\n\n.DateRangePickerInput {\n background-color: #fff;\n display: inline-block; }\n\n.DateRangePickerInput__disabled {\n background: #f2f2f2; }\n\n.DateRangePickerInput__withBorder {\n border-radius: 2px;\n border: 1px solid #dbdbdb; }\n\n.DateRangePickerInput__rtl {\n direction: rtl; }\n\n.DateRangePickerInput__block {\n display: block; }\n\n.DateRangePickerInput__showClearDates {\n padding-right: 30px; }\n\n.DateRangePickerInput_arrow {\n display: inline-block;\n vertical-align: middle;\n color: #484848; }\n\n.DateRangePickerInput_arrow_svg {\n vertical-align: middle;\n fill: #484848;\n height: 24px;\n width: 24px; }\n\n.DateRangePickerInput_clearDates {\n background: 0 0;\n border: 0;\n color: inherit;\n font: inherit;\n line-height: normal;\n overflow: visible;\n cursor: pointer;\n padding: 10px;\n margin: 0 10px 0 5px;\n position: absolute;\n right: 0;\n top: 50%;\n transform: translateY(-50%); }\n\n.DateRangePickerInput_clearDates__small {\n padding: 6px; }\n\n.DateRangePickerInput_clearDates_default:focus,\n.DateRangePickerInput_clearDates_default:hover {\n background: #dbdbdb;\n border-radius: 50%; }\n\n.DateRangePickerInput_clearDates__hide {\n visibility: hidden; }\n\n.DateRangePickerInput_clearDates_svg {\n fill: #82888a;\n height: 12px;\n width: 15px;\n vertical-align: middle; }\n\n.DateRangePickerInput_clearDates_svg__small {\n height: 9px; }\n\n.DateRangePickerInput_calendarIcon {\n background: 0 0;\n border: 0;\n color: inherit;\n font: inherit;\n line-height: normal;\n overflow: visible;\n cursor: pointer;\n display: inline-block;\n vertical-align: middle;\n padding: 10px;\n margin: 0 5px 0 10px; }\n\n.DateRangePickerInput_calendarIcon_svg {\n fill: #82888a;\n height: 15px;\n width: 14px;\n vertical-align: middle; }\n\n.DateRangePicker {\n position: relative;\n display: inline-block; }\n\n.DateRangePicker__block {\n display: block; }\n\n.DateRangePicker_picker {\n z-index: 1;\n background-color: #fff;\n position: absolute; }\n\n.DateRangePicker_picker__rtl {\n direction: rtl; }\n\n.DateRangePicker_picker__directionLeft {\n left: 0; }\n\n.DateRangePicker_picker__directionRight {\n right: 0; }\n\n.DateRangePicker_picker__portal {\n background-color: rgba(0, 0, 0, 0.3);\n position: fixed;\n top: 0;\n left: 0;\n height: 100%;\n width: 100%; }\n\n.DateRangePicker_picker__fullScreenPortal {\n background-color: #fff; }\n\n.DateRangePicker_closeButton {\n background: 0 0;\n border: 0;\n color: inherit;\n font: inherit;\n line-height: normal;\n overflow: visible;\n cursor: pointer;\n position: absolute;\n top: 0;\n right: 0;\n padding: 15px;\n z-index: 2; }\n\n.DateRangePicker_closeButton:focus,\n.DateRangePicker_closeButton:hover {\n color: #b0b3b4;\n text-decoration: none; }\n\n.DateRangePicker_closeButton_svg {\n height: 15px;\n width: 15px;\n fill: #cacccd; }\n\n/*rtl:end:ignore*/\n.components-datetime {\n padding: 16px; }\n .components-datetime .components-datetime__calendar-help {\n padding: 16px; }\n .components-datetime .components-datetime__calendar-help h4 {\n margin: 0; }\n .components-datetime .components-datetime__date-help-button {\n display: block;\n margin-left: auto; }\n .components-datetime fieldset {\n border: 0;\n padding: 0;\n margin: 0; }\n .components-datetime select,\n .components-datetime input {\n box-shadow: 0 0 0 transparent;\n transition: box-shadow 0.1s linear;\n border-radius: 4px;\n border: 1px solid #7e8993; }\n @media (prefers-reduced-motion: reduce) {\n .components-datetime select,\n .components-datetime input {\n transition-duration: 0s; } }\n .components-datetime select,\n .components-datetime input[type=\"number\"],\n .components-datetime .components-button {\n height: 30px;\n margin-top: 0;\n margin-bottom: 0; }\n\n.components-datetime__date {\n min-height: 236px;\n border-top: 1px solid #e2e4e7; }\n .components-datetime__date .DayPickerNavigation_leftButton__horizontalDefault {\n left: 0; }\n .components-datetime__date .CalendarMonth_caption {\n font-size: 13px; }\n .components-datetime__date .CalendarDay {\n font-size: 13px;\n border: 1px solid transparent;\n border-radius: 50%;\n text-align: center; }\n .components-datetime__date .CalendarDay__selected {\n background: #0085ba; }\n body.admin-color-sunrise .components-datetime__date .CalendarDay__selected {\n background: #d1864a; }\n body.admin-color-ocean .components-datetime__date .CalendarDay__selected {\n background: #a3b9a2; }\n body.admin-color-midnight .components-datetime__date .CalendarDay__selected {\n background: #e14d43; }\n body.admin-color-ectoplasm .components-datetime__date .CalendarDay__selected {\n background: #a7b656; }\n body.admin-color-coffee .components-datetime__date .CalendarDay__selected {\n background: #c2a68c; }\n body.admin-color-blue .components-datetime__date .CalendarDay__selected {\n background: #82b4cb; }\n body.admin-color-light .components-datetime__date .CalendarDay__selected {\n background: #0085ba; }\n .components-datetime__date .CalendarDay__selected:hover {\n background: rgb(0, 113, 158); }\n body.admin-color-sunrise .components-datetime__date .CalendarDay__selected:hover {\n background: rgb(178, 114, 63); }\n body.admin-color-ocean .components-datetime__date .CalendarDay__selected:hover {\n background: rgb(139, 157, 138); }\n body.admin-color-midnight .components-datetime__date .CalendarDay__selected:hover {\n background: rgb(191, 65, 57); }\n body.admin-color-ectoplasm .components-datetime__date .CalendarDay__selected:hover {\n background: rgb(142, 155, 73); }\n body.admin-color-coffee .components-datetime__date .CalendarDay__selected:hover {\n background: rgb(165, 141, 119); }\n body.admin-color-blue .components-datetime__date .CalendarDay__selected:hover {\n background: rgb(111, 153, 173); }\n body.admin-color-light .components-datetime__date .CalendarDay__selected:hover {\n background: rgb(0, 113, 158); }\n .components-datetime__date .DayPickerNavigation_button__horizontalDefault {\n padding: 2px 8px;\n top: 20px; }\n .components-datetime__date .DayPickerNavigation_button__horizontalDefault:focus {\n color: #191e23;\n border-color: #007cba;\n box-shadow: 0 0 0 1px #007cba;\n outline: 2px solid transparent; }\n .components-datetime__date .DayPicker_weekHeader {\n top: 50px; }\n .components-datetime__date .DayPicker_weekHeader .DayPicker_weekHeader_ul {\n margin: 1px 0;\n padding-left: 0;\n padding-right: 0; }\n .components-datetime__date.is-description-visible .DayPicker,\n .components-datetime__date.is-description-visible .components-datetime__date-help-button {\n visibility: hidden; }\n\n.components-datetime__time {\n padding-bottom: 16px; }\n .components-datetime__time fieldset {\n position: relative;\n margin-bottom: 0.5em; }\n .components-datetime__time fieldset + fieldset {\n margin-bottom: 0; }\n .components-datetime__time .components-datetime__time-field-am-pm fieldset {\n margin-top: 0; }\n .components-datetime__time .components-datetime__time-wrapper {\n display: flex; }\n .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-separator {\n display: inline-block;\n padding: 0 3px 0 0;\n color: #555d66; }\n .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-am-button {\n margin-left: 8px;\n margin-right: -1px;\n border-radius: 3px 0 0 3px; }\n .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-pm-button {\n margin-left: -1px;\n border-radius: 0 3px 3px 0; }\n .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-am-button:focus,\n .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-pm-button:focus {\n position: relative;\n z-index: 1; }\n .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-am-button.is-pressed,\n .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-pm-button.is-pressed {\n background: #edeff0;\n border-color: #8f98a1;\n box-shadow: inset 0 2px 5px -3px #555d66; }\n .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-am-button.is-pressed:focus,\n .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-pm-button.is-pressed:focus {\n box-shadow: inset 0 2px 5px -3px #555d66, 0 0 0 1px #fff, 0 0 0 3px #007cba; }\n .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field-time {\n /*rtl:ignore*/\n direction: ltr; }\n .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field.am-pm button {\n font-size: 11px;\n font-weight: 600; }\n .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field select {\n margin-right: 4px; }\n .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field select:focus {\n position: relative;\n z-index: 1; }\n .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type=\"number\"] {\n padding: 2px;\n margin-right: 4px;\n text-align: center;\n -moz-appearance: textfield; }\n .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type=\"number\"]:focus {\n position: relative;\n z-index: 1; }\n .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type=\"number\"]::-webkit-inner-spin-button {\n -webkit-appearance: none;\n margin: 0; }\n .components-datetime__time.is-12-hour .components-datetime__time-field-day input {\n margin: 0 -4px 0 0 !important;\n border-radius: 4px 0 0 4px !important; }\n .components-datetime__time.is-12-hour .components-datetime__time-field-year input {\n border-radius: 0 4px 4px 0 !important; }\n\n.components-datetime__time-legend {\n font-weight: 600;\n margin-top: 0.5em; }\n .components-datetime__time-legend.invisible {\n position: absolute;\n top: -999em;\n left: -999em; }\n\n.components-datetime__time-field-hours-input,\n.components-datetime__time-field-minutes-input,\n.components-datetime__time-field-day-input {\n width: 35px; }\n\n.components-datetime__time-field-year-input {\n width: 55px; }\n\n.components-datetime__time-field-month-select {\n max-width: 145px; }\n\n.components-popover .components-datetime__date {\n padding-left: 4px; }\n\n.block-editor-dimension-control .components-base-control__field {\n display: flex;\n align-items: center; }\n\n.block-editor-dimension-control .components-base-control__label {\n display: flex;\n align-items: center;\n margin-right: 1em;\n margin-bottom: 0; }\n .block-editor-dimension-control .components-base-control__label .dashicon {\n margin-right: 0.5em; }\n\n.block-editor-dimension-control.is-manual .components-base-control__label {\n width: 10em; }\n\n.components-disabled {\n position: relative;\n pointer-events: none; }\n .components-disabled::after {\n content: \"\";\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0; }\n .components-disabled * {\n pointer-events: none; }\n\nbody.is-dragging-components-draggable {\n cursor: move;\n /* Fallback for IE/Edge < 14 */\n cursor: grabbing !important; }\n\n.components-draggable__invisible-drag-image {\n position: fixed;\n left: -1000px;\n height: 50px;\n width: 50px; }\n\n.components-draggable__clone {\n position: fixed;\n padding: 20px;\n background: transparent;\n pointer-events: none;\n z-index: 1000000000;\n opacity: 0.8; }\n\n.components-drop-zone {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 40;\n visibility: hidden;\n opacity: 0;\n transition: 0.3s opacity, 0.3s background-color, 0s visibility 0.3s;\n border: 2px solid #0071a1;\n border-radius: 2px; }\n @media (prefers-reduced-motion: reduce) {\n .components-drop-zone {\n transition-duration: 0s; } }\n .components-drop-zone.is-active {\n opacity: 1;\n visibility: visible;\n transition: 0.3s opacity, 0.3s background-color; }\n @media (prefers-reduced-motion: reduce) {\n .components-drop-zone.is-active {\n transition-duration: 0s; } }\n .components-drop-zone.is-dragging-over-element {\n background-color: rgba(0, 113, 161, 0.8); }\n\n.components-drop-zone__content {\n position: absolute;\n top: 50%;\n left: 0;\n right: 0;\n z-index: 50;\n transform: translateY(-50%);\n width: 100%;\n text-align: center;\n color: #fff;\n transition: transform 0.2s ease-in-out; }\n @media (prefers-reduced-motion: reduce) {\n .components-drop-zone__content {\n transition-duration: 0s; } }\n\n.components-drop-zone.is-dragging-over-element .components-drop-zone__content {\n transform: translateY(-50%) scale(1.05); }\n\n.components-drop-zone__content-icon,\n.components-drop-zone__content-text {\n display: block; }\n\n.components-drop-zone__content-icon {\n margin: 0 auto;\n line-height: 0;\n fill: currentColor; }\n\n.components-drop-zone__content-text {\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif; }\n\n.components-drop-zone__provider {\n height: 100%; }\n\n.components-dropdown {\n display: inline-block; }\n\n.components-dropdown__content .components-popover__content {\n padding: 12px; }\n\n.components-dropdown-menu__popover .components-popover__content {\n width: 200px; }\n\n.components-dropdown-menu__menu {\n width: 100%;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px;\n line-height: 1.4; }\n .components-dropdown-menu__menu .components-dropdown-menu__menu-item,\n .components-dropdown-menu__menu .components-menu-item {\n width: 100%;\n padding: 6px;\n outline: none;\n cursor: pointer;\n margin-bottom: 4px; }\n .components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator,\n .components-dropdown-menu__menu .components-menu-item.has-separator {\n margin-top: 6px;\n position: relative;\n overflow: visible; }\n .components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator::before,\n .components-dropdown-menu__menu .components-menu-item.has-separator::before {\n display: block;\n content: \"\";\n box-sizing: content-box;\n background-color: #e2e4e7;\n position: absolute;\n top: -3px;\n left: 0;\n right: 0;\n height: 1px; }\n .components-dropdown-menu__menu .components-dropdown-menu__menu-item.is-active,\n .components-dropdown-menu__menu .components-menu-item.is-active {\n border: 1px solid #1e1e1e;\n border-radius: 2px;\n color: #fff;\n background: #1e1e1e; }\n .components-dropdown-menu__menu .components-dropdown-menu__menu-item > svg,\n .components-dropdown-menu__menu .components-menu-item > svg {\n border-radius: 4px;\n width: 24px;\n height: 24px;\n margin: -1px 8px -1px 0; }\n .components-dropdown-menu__menu .components-menu-item__button,\n .components-dropdown-menu__menu .components-menu-item__button.components-button {\n min-height: 36px;\n height: auto;\n padding-left: 40px;\n text-align: left; }\n .components-dropdown-menu__menu .components-menu-item__button.has-icon,\n .components-dropdown-menu__menu .components-menu-item__button.components-button.has-icon {\n padding-left: 8px; }\n .components-dropdown-menu__menu .components-menu-group {\n padding: 12px;\n margin-top: 0;\n margin-bottom: 0;\n margin-left: -12px;\n margin-right: -12px; }\n .components-dropdown-menu__menu .components-menu-group:first-child {\n margin-top: -12px; }\n .components-dropdown-menu__menu .components-menu-group:last-child {\n margin-bottom: -12px; }\n .components-dropdown-menu__menu .components-menu-group + .components-menu-group {\n margin-top: 0;\n border-top: 1px solid #ccc;\n padding: 12px; }\n\n.components-dropdown-menu__menu.no-icons .components-menu-item__button.components-button {\n padding: 0 12px; }\n\n.components-external-link__icon {\n width: 1.4em;\n height: 1.4em;\n margin: -0.2em 0.1em 0;\n vertical-align: middle;\n fill: currentColor; }\n\n.components-focal-point-picker-wrapper {\n background-color: transparent;\n border: 1px solid #e2e4e7;\n height: 200px;\n width: 100%;\n padding: 14px; }\n\n.components-focal-point-picker {\n align-items: center;\n cursor: pointer;\n display: flex;\n height: 100%;\n justify-content: center;\n position: relative;\n width: 100%; }\n .components-focal-point-picker img {\n height: auto;\n max-height: 100%;\n max-width: 100%;\n width: auto;\n -webkit-user-select: none;\n -ms-user-select: none;\n user-select: none; }\n\n.components-focal-point-picker__icon_container {\n background-color: transparent;\n cursor: grab;\n height: 30px;\n opacity: 0.8;\n position: absolute;\n will-change: transform;\n width: 30px;\n z-index: 10000; }\n .components-focal-point-picker__icon_container.is-dragging {\n cursor: grabbing; }\n\n.components-focal-point-picker__icon {\n display: block;\n height: 100%;\n left: -15px;\n position: absolute;\n top: -15px;\n width: 100%; }\n .components-focal-point-picker__icon .components-focal-point-picker__icon-outline {\n fill: #fff; }\n .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {\n fill: #0085ba; }\n body.admin-color-sunrise .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {\n fill: #d1864a; }\n body.admin-color-ocean .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {\n fill: #a3b9a2; }\n body.admin-color-midnight .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {\n fill: #e14d43; }\n body.admin-color-ectoplasm .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {\n fill: #a7b656; }\n body.admin-color-coffee .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {\n fill: #c2a68c; }\n body.admin-color-blue .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {\n fill: #82b4cb; }\n body.admin-color-light .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {\n fill: #0085ba; }\n\n.components-focal-point-picker_position-display-container {\n margin: 1em 0;\n display: flex; }\n .components-focal-point-picker_position-display-container .components-base-control__field {\n margin: 0 1em 0 0; }\n .components-focal-point-picker_position-display-container input[type=\"number\"].components-text-control__input {\n max-width: 4em;\n padding: 6px 4px; }\n .components-focal-point-picker_position-display-container span {\n margin: 0 0 0 0.2em; }\n\n.components-font-size-picker__controls {\n max-width: 248px;\n display: flex;\n align-items: center;\n margin-bottom: 24px; }\n .components-font-size-picker__controls .components-font-size-picker__number {\n display: inline-block;\n font-weight: 500;\n height: 30px;\n margin-bottom: 0;\n margin-left: 0;\n margin-right: 8px;\n margin-top: 5px;\n width: 54px; }\n .components-font-size-picker__controls .components-font-size-picker__number[value=\"\"] + .components-button {\n cursor: default;\n opacity: 0.3;\n pointer-events: none; }\n .components-font-size-picker__controls .components-font-size-picker__number-container {\n display: flex;\n flex-direction: column; }\n .components-font-size-picker__controls .components-font-size-picker__select {\n margin-right: 8px;\n flex-grow: 1; }\n .components-font-size-picker__controls .components-color-palette__clear {\n height: 30px;\n margin-top: 23px; }\n\n.components-font-size-picker__custom-input .components-range-control__slider + .dashicon {\n width: 30px;\n height: 30px; }\n\n.components-font-size-picker {\n border: 0;\n padding: 0;\n margin: 0; }\n\n.components-form-toggle {\n position: relative;\n display: inline-block; }\n .components-form-toggle .components-form-toggle__on,\n .components-form-toggle .components-form-toggle__off {\n position: absolute;\n top: 6px;\n box-sizing: border-box; }\n .components-form-toggle .components-form-toggle__off {\n color: #6c7781;\n fill: currentColor;\n right: 6px; }\n .components-form-toggle .components-form-toggle__on {\n left: 8px; }\n .components-form-toggle .components-form-toggle__track {\n content: \"\";\n display: inline-block;\n box-sizing: border-box;\n vertical-align: top;\n background-color: #fff;\n border: 2px solid #6c7781;\n width: 36px;\n height: 18px;\n border-radius: 9px;\n transition: 0.2s background ease; }\n @media (prefers-reduced-motion: reduce) {\n .components-form-toggle .components-form-toggle__track {\n transition-duration: 0s; } }\n .components-form-toggle .components-form-toggle__thumb {\n display: block;\n position: absolute;\n box-sizing: border-box;\n top: 4px;\n left: 4px;\n width: 10px;\n height: 10px;\n border-radius: 50%;\n transition: 0.1s transform ease;\n background-color: #6c7781;\n border: 5px solid #6c7781; }\n @media (prefers-reduced-motion: reduce) {\n .components-form-toggle .components-form-toggle__thumb {\n transition-duration: 0s; } }\n .components-form-toggle:hover .components-form-toggle__track {\n border: 2px solid #555d66; }\n .components-form-toggle:hover .components-form-toggle__thumb {\n background-color: #555d66;\n border: 5px solid #6c7781; }\n .components-form-toggle:hover .components-form-toggle__off {\n color: #555d66; }\n .components-form-toggle.is-checked .components-form-toggle__track {\n background-color: #11a0d2;\n border: 2px solid #11a0d2;\n border: 9px solid transparent; }\n body.admin-color-sunrise .components-form-toggle.is-checked .components-form-toggle__track {\n background-color: #c8b03c;\n border: 2px solid #c8b03c; }\n body.admin-color-ocean .components-form-toggle.is-checked .components-form-toggle__track {\n background-color: #a3b9a2;\n border: 2px solid #a3b9a2; }\n body.admin-color-midnight .components-form-toggle.is-checked .components-form-toggle__track {\n background-color: #77a6b9;\n border: 2px solid #77a6b9; }\n body.admin-color-ectoplasm .components-form-toggle.is-checked .components-form-toggle__track {\n background-color: #a7b656;\n border: 2px solid #a7b656; }\n body.admin-color-coffee .components-form-toggle.is-checked .components-form-toggle__track {\n background-color: #c2a68c;\n border: 2px solid #c2a68c; }\n body.admin-color-blue .components-form-toggle.is-checked .components-form-toggle__track {\n background-color: #82b4cb;\n border: 2px solid #82b4cb; }\n body.admin-color-light .components-form-toggle.is-checked .components-form-toggle__track {\n background-color: #11a0d2;\n border: 2px solid #11a0d2; }\n .components-form-toggle__input:focus + .components-form-toggle__track {\n box-shadow: 0 0 0 2px #fff, 0 0 0 3px #6c7781;\n outline: 2px solid transparent;\n outline-offset: 2px; }\n .components-form-toggle.is-checked .components-form-toggle__thumb {\n background-color: #fff;\n border-width: 0;\n transform: translateX(18px); }\n .components-form-toggle.is-checked::before {\n background-color: #11a0d2;\n border: 2px solid #11a0d2; }\n body.admin-color-sunrise .components-form-toggle.is-checked::before {\n background-color: #c8b03c;\n border: 2px solid #c8b03c; }\n body.admin-color-ocean .components-form-toggle.is-checked::before {\n background-color: #a3b9a2;\n border: 2px solid #a3b9a2; }\n body.admin-color-midnight .components-form-toggle.is-checked::before {\n background-color: #77a6b9;\n border: 2px solid #77a6b9; }\n body.admin-color-ectoplasm .components-form-toggle.is-checked::before {\n background-color: #a7b656;\n border: 2px solid #a7b656; }\n body.admin-color-coffee .components-form-toggle.is-checked::before {\n background-color: #c2a68c;\n border: 2px solid #c2a68c; }\n body.admin-color-blue .components-form-toggle.is-checked::before {\n background-color: #82b4cb;\n border: 2px solid #82b4cb; }\n body.admin-color-light .components-form-toggle.is-checked::before {\n background-color: #11a0d2;\n border: 2px solid #11a0d2; }\n .components-disabled .components-form-toggle {\n opacity: 0.3; }\n\n.components-form-toggle input.components-form-toggle__input[type=\"checkbox\"] {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n opacity: 0;\n margin: 0;\n padding: 0;\n z-index: 1;\n border: none; }\n .components-form-toggle input.components-form-toggle__input[type=\"checkbox\"]:checked {\n background: none; }\n .components-form-toggle input.components-form-toggle__input[type=\"checkbox\"]::before {\n content: \"\"; }\n\n.components-form-toggle .components-form-toggle__on {\n outline: 1px solid transparent;\n outline-offset: -1px;\n border: 1px solid #000;\n filter: invert(100%) contrast(500%); }\n\n@supports (-ms-high-contrast-adjust: auto) {\n .components-form-toggle .components-form-toggle__on {\n filter: none;\n border: 1px solid #fff; } }\n\n.components-form-token-field__input-container {\n display: flex;\n flex-wrap: wrap;\n align-items: flex-start;\n width: 100%;\n margin: 0 0 8px 0;\n padding: 4px;\n background-color: #fff;\n border: 1px solid #ccd0d4;\n color: #32373c;\n cursor: text;\n box-shadow: 0 0 0 transparent;\n transition: box-shadow 0.1s linear;\n border-radius: 4px;\n border: 1px solid #7e8993; }\n @media (prefers-reduced-motion: reduce) {\n .components-form-token-field__input-container {\n transition-duration: 0s; } }\n .components-form-token-field__input-container.is-disabled {\n background: #e2e4e7;\n border-color: #ccd0d4; }\n .components-form-token-field__input-container.is-active {\n color: #191e23;\n border-color: #007cba;\n box-shadow: 0 0 0 1px #007cba;\n outline: 2px solid transparent; }\n .components-form-token-field__input-container input[type=\"text\"].components-form-token-field__input {\n display: inline-block;\n width: 100%;\n max-width: 100%;\n margin: 2px 0 2px 8px;\n padding: 0;\n min-height: 24px;\n background: inherit;\n border: 0;\n color: #23282d;\n box-shadow: none; }\n .components-form-token-field__input-container input[type=\"text\"].components-form-token-field__input:focus,\n .components-form-token-field.is-active .components-form-token-field__input-container input[type=\"text\"].components-form-token-field__input {\n outline: none;\n box-shadow: none; }\n .components-form-token-field__input-container .components-form-token-field__token + input[type=\"text\"].components-form-token-field__input {\n width: auto; }\n\n.components-form-token-field__label {\n display: inline-block;\n margin-bottom: 4px; }\n\n.components-form-token-field__help {\n font-style: italic; }\n\n.components-form-token-field__token {\n font-size: 13px;\n display: flex;\n margin: 2px 4px 2px 0;\n color: #32373c;\n overflow: hidden; }\n .components-form-token-field__token.is-success .components-form-token-field__token-text,\n .components-form-token-field__token.is-success .components-form-token-field__remove-token {\n background: #4ab866; }\n .components-form-token-field__token.is-error .components-form-token-field__token-text,\n .components-form-token-field__token.is-error .components-form-token-field__remove-token {\n background: #d94f4f; }\n .components-form-token-field__token.is-validating .components-form-token-field__token-text,\n .components-form-token-field__token.is-validating .components-form-token-field__remove-token {\n color: #555d66; }\n .components-form-token-field__token.is-borderless {\n position: relative;\n padding: 0 16px 0 0; }\n .components-form-token-field__token.is-borderless .components-form-token-field__token-text {\n background: transparent;\n color: #11a0d2; }\n body.admin-color-sunrise .components-form-token-field__token.is-borderless .components-form-token-field__token-text {\n color: #c8b03c; }\n body.admin-color-ocean .components-form-token-field__token.is-borderless .components-form-token-field__token-text {\n color: #a89d8a; }\n body.admin-color-midnight .components-form-token-field__token.is-borderless .components-form-token-field__token-text {\n color: #77a6b9; }\n body.admin-color-ectoplasm .components-form-token-field__token.is-borderless .components-form-token-field__token-text {\n color: #c77430; }\n body.admin-color-coffee .components-form-token-field__token.is-borderless .components-form-token-field__token-text {\n color: #9fa47b; }\n body.admin-color-blue .components-form-token-field__token.is-borderless .components-form-token-field__token-text {\n color: #d9ab59; }\n body.admin-color-light .components-form-token-field__token.is-borderless .components-form-token-field__token-text {\n color: #c75726; }\n .components-form-token-field__token.is-borderless .components-form-token-field__remove-token {\n background: transparent;\n color: #555d66;\n position: absolute;\n top: 1px;\n right: 0; }\n .components-form-token-field__token.is-borderless.is-success .components-form-token-field__token-text {\n color: #4ab866; }\n .components-form-token-field__token.is-borderless.is-error .components-form-token-field__token-text {\n color: #d94f4f;\n border-radius: 4px 0 0 4px;\n padding: 0 4px 0 6px; }\n .components-form-token-field__token.is-borderless.is-validating .components-form-token-field__token-text {\n color: #23282d; }\n .components-form-token-field__token.is-disabled .components-form-token-field__remove-token {\n cursor: default; }\n\n.components-form-token-field__token-text,\n.components-form-token-field__remove-token.components-button {\n display: inline-block;\n line-height: 24px;\n height: auto;\n background: #e2e4e7;\n transition: all 0.2s cubic-bezier(0.4, 1, 0.4, 1); }\n @media (prefers-reduced-motion: reduce) {\n .components-form-token-field__token-text,\n .components-form-token-field__remove-token.components-button {\n transition-duration: 0s;\n animation-duration: 1ms; } }\n\n.components-form-token-field__token-text {\n border-radius: 12px 0 0 12px;\n padding: 0 4px 0 8px;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis; }\n\n.components-form-token-field__remove-token.components-button {\n cursor: pointer;\n border-radius: 0 12px 12px 0;\n padding: 0 2px;\n color: #555d66;\n line-height: 10px;\n overflow: initial; }\n .components-form-token-field__remove-token.components-button:hover {\n color: #32373c; }\n\n.components-form-token-field__suggestions-list {\n flex: 1 0 100%;\n min-width: 100%;\n max-height: 9em;\n overflow-y: scroll;\n transition: all 0.15s ease-in-out;\n list-style: none;\n border-top: 1px solid #6c7781;\n margin: 4px -4px -4px;\n padding-top: 3px; }\n @media (prefers-reduced-motion: reduce) {\n .components-form-token-field__suggestions-list {\n transition-duration: 0s; } }\n\n.components-form-token-field__suggestion {\n color: #555d66;\n display: block;\n font-size: 13px;\n padding: 4px 8px;\n cursor: pointer; }\n .components-form-token-field__suggestion.is-selected {\n background: #0071a1;\n color: #fff; }\n\n.components-form-token-field__suggestion-match {\n text-decoration: underline; }\n\n.components-guide .components-modal__header {\n background: none;\n border-bottom: none; }\n .components-guide .components-modal__header .components-button {\n align-self: flex-start;\n margin-top: 24px;\n position: static; }\n\n.components-guide__container {\n display: flex;\n flex-direction: column;\n margin-top: -60px;\n min-height: 100%; }\n\n.components-guide__footer {\n align-content: center;\n display: flex;\n height: 30px;\n justify-content: center;\n margin: auto 0 24px 0;\n position: relative;\n width: 100%; }\n @media (min-width: 600px) {\n .components-guide__footer {\n margin: 24px 0 0; } }\n\n.components-guide__page-control {\n margin: 0; }\n .components-guide__page-control li {\n display: inline-block;\n margin: 0 2px; }\n .components-guide__page-control .components-button {\n height: 30px; }\n\n@media (max-width: 600px) {\n .components-modal__frame.components-guide {\n bottom: 15%;\n left: 24px;\n right: 24px;\n top: 15%; } }\n\n.components-button.components-guide__back-button, .components-button.components-guide__forward-button, .components-button.components-guide__finish-button {\n height: 30px;\n position: absolute; }\n\n.components-button.components-guide__back-button, .components-button.components-guide__forward-button {\n font-size: 0;\n padding: 4px 2px; }\n .components-button.components-guide__back-button.has-text svg, .components-button.components-guide__forward-button.has-text svg {\n margin: 0; }\n @media (min-width: 600px) {\n .components-button.components-guide__back-button, .components-button.components-guide__forward-button {\n font-size: 13px; } }\n\n.components-button.components-guide__back-button {\n left: 0; }\n @media (min-width: 600px) {\n .components-button.components-guide__back-button {\n padding: 4px 8px 4px 2px; }\n .components-button.components-guide__back-button.has-text svg {\n margin-right: 4px; } }\n\n.components-button.components-guide__forward-button {\n right: 0; }\n @media (min-width: 600px) {\n .components-button.components-guide__forward-button {\n padding: 4px 2px 4px 8px; }\n .components-button.components-guide__forward-button.has-text svg {\n margin-left: 4px;\n order: 1; } }\n\n.components-button.components-guide__finish-button {\n display: none;\n right: 0; }\n @media (min-width: 600px) {\n .components-button.components-guide__finish-button {\n display: block; } }\n\n@media (min-width: 600px) {\n .components-button.components-guide__inline-finish-button {\n display: none; } }\n\n.components-navigate-regions.is-focusing-regions [role=\"region\"] {\n position: relative; }\n .components-navigate-regions.is-focusing-regions [role=\"region\"]:focus::after {\n content: \"\";\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n pointer-events: none;\n outline: 4px solid transparent;\n box-shadow: inset 0 0 0 4px #33b3db; }\n @supports (outline-offset: 1px) {\n .components-navigate-regions.is-focusing-regions [role=\"region\"]:focus::after {\n content: none; }\n .components-navigate-regions.is-focusing-regions [role=\"region\"]:focus {\n outline-style: solid;\n outline-color: #33b3db;\n outline-width: 4px;\n outline-offset: -4px; } }\n\n.components-menu-group + .components-menu-group {\n margin-top: 8px;\n padding-top: 8px;\n border-top: 1px solid #1e1e1e; }\n\n.components-menu-group__label {\n margin-bottom: 8px;\n color: #757575;\n padding: 0; }\n\n.components-menu-item__button,\n.components-menu-item__button.components-button {\n width: 100%; }\n .components-menu-item__button .dashicon,\n .components-menu-item__button .components-menu-items__item-icon,\n .components-menu-item__button svg.components-menu-items__item-icon,\n .components-menu-item__button > span > svg,\n .components-menu-item__button.components-button .dashicon,\n .components-menu-item__button.components-button .components-menu-items__item-icon,\n .components-menu-item__button.components-button svg.components-menu-items__item-icon,\n .components-menu-item__button.components-button > span > svg {\n margin-right: 8px; }\n .components-menu-item__button .components-menu-items__item-icon,\n .components-menu-item__button.components-button .components-menu-items__item-icon {\n display: inline-block;\n flex: 0 0 auto; }\n\n.components-menu-item__info-wrapper {\n display: flex;\n flex-direction: column; }\n\n.components-menu-item__info {\n margin-top: 4px;\n font-size: 12px;\n color: #757575; }\n\n.components-menu-item__shortcut {\n -ms-grid-row-align: center;\n align-self: center;\n margin-right: 0;\n margin-left: auto;\n padding-left: 12px;\n color: currentColor;\n display: none; }\n @media (min-width: 480px) {\n .components-menu-item__shortcut {\n display: inline; } }\n\n.components-menu-items-choice,\n.components-menu-items-choice.components-button {\n padding-left: 40px; }\n .components-menu-items-choice svg,\n .components-menu-items-choice.components-button svg {\n margin-right: 8px; }\n .components-menu-items-choice.has-icon,\n .components-menu-items-choice.components-button.has-icon {\n padding-left: 8px; }\n\n.components-modal__screen-overlay {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n background-color: rgba(0, 0, 0, 0.7);\n z-index: 100000;\n animation: edit-post__fade-in-animation 0.2s ease-out 0s;\n animation-fill-mode: forwards; }\n @media (prefers-reduced-motion: reduce) {\n .components-modal__screen-overlay {\n animation-duration: 1ms; } }\n\n.components-modal__frame {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n box-sizing: border-box;\n margin: 0;\n border: 1px solid #e2e4e7;\n background: #fff;\n box-shadow: 0 3px 30px rgba(25, 30, 35, 0.2);\n overflow: auto; }\n @media (min-width: 600px) {\n .components-modal__frame {\n top: 50%;\n right: auto;\n bottom: auto;\n left: 50%;\n min-width: 360px;\n max-width: calc(100% - 16px - 16px);\n max-height: calc(100% - 60px - 60px);\n transform: translate(-50%, -50%);\n animation: components-modal__appear-animation 0.1s ease-out;\n animation-fill-mode: forwards; } }\n @media (min-width: 600px) and (prefers-reduced-motion: reduce) {\n .components-modal__frame {\n animation-duration: 1ms; } }\n\n@keyframes components-modal__appear-animation {\n from {\n margin-top: 32px; }\n to {\n margin-top: 0; } }\n\n.components-modal__header {\n box-sizing: border-box;\n border-bottom: 1px solid #e2e4e7;\n padding: 0 24px;\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n background: #fff;\n align-items: center;\n height: 60px;\n z-index: 10;\n position: relative;\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n margin: 0 -24px 24px; }\n @supports (-ms-ime-align: auto) {\n .components-modal__header {\n position: fixed;\n width: 100%; } }\n .components-modal__header .components-modal__header-heading {\n font-size: 1rem;\n font-weight: 600; }\n .components-modal__header h1 {\n line-height: 1;\n margin: 0; }\n .components-modal__header .components-button {\n position: relative;\n left: 8px; }\n\n.components-modal__header-heading-container {\n align-items: center;\n flex-grow: 1;\n display: flex;\n flex-direction: row;\n justify-content: left; }\n\n.components-modal__header-icon-container {\n display: inline-block; }\n .components-modal__header-icon-container svg {\n max-width: 36px;\n max-height: 36px;\n padding: 8px; }\n\n.components-modal__content {\n box-sizing: border-box;\n height: 100%;\n padding: 0 24px 24px; }\n @supports (-ms-ime-align: auto) {\n .components-modal__content {\n padding-top: 60px; } }\n\n.components-notice {\n display: flex;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px;\n background-color: #e5f5fa;\n border-left: 4px solid #00a0d2;\n margin: 5px 15px 2px;\n padding: 8px 12px;\n align-items: center; }\n .components-notice.is-dismissible {\n padding-right: 36px;\n position: relative; }\n .components-notice.is-success {\n border-left-color: #4ab866;\n background-color: #eff9f1; }\n .components-notice.is-warning {\n border-left-color: #f0b849;\n background-color: #fef8ee; }\n .components-notice.is-error {\n border-left-color: #d94f4f;\n background-color: #f9e2e2; }\n\n.components-notice__content {\n flex-grow: 1;\n margin: 4px 25px 4px 0; }\n\n.components-notice__action.components-button, .components-notice__action.components-button.is-link {\n margin-left: 12px; }\n\n.components-notice__action.components-button.is-secondary {\n vertical-align: initial; }\n\n.components-notice__dismiss {\n color: #6c7781;\n align-self: flex-start;\n flex-shrink: 0; }\n .components-notice__dismiss:not(:disabled):not([aria-disabled=\"true\"]):not(.is-secondary):hover, .components-notice__dismiss:not(:disabled):not([aria-disabled=\"true\"]):not(.is-secondary):active, .components-notice__dismiss:not(:disabled):not([aria-disabled=\"true\"]):focus {\n color: #191e23;\n background-color: transparent; }\n .components-notice__dismiss:not(:disabled):not([aria-disabled=\"true\"]):not(.is-secondary):hover {\n box-shadow: none; }\n\n.components-notice-list {\n max-width: 100vw;\n box-sizing: border-box;\n z-index: 29; }\n .components-notice-list .components-notice__content {\n margin-top: 12px;\n margin-bottom: 12px;\n line-height: 2; }\n .components-notice-list .components-notice__action.components-button {\n display: block;\n margin-left: 0;\n margin-top: 8px; }\n @media (min-width: 782px) {\n .components-notice-list .components-notice__action.components-button {\n float: right;\n margin-top: -4px;\n margin-bottom: -4px; } }\n\n.components-panel {\n background: #fff;\n border: 1px solid #e2e4e7; }\n .components-panel > .components-panel__header:first-child,\n .components-panel > .components-panel__body:first-child {\n margin-top: -1px; }\n .components-panel > .components-panel__header:last-child,\n .components-panel > .components-panel__body:last-child {\n border-bottom-width: 0; }\n\n.components-panel + .components-panel {\n margin-top: -1px; }\n\n.components-panel__body {\n border-top: 1px solid #e2e4e7;\n border-bottom: 1px solid #e2e4e7; }\n .components-panel__body h3 {\n margin: 0 0 0.5em; }\n .components-panel__body.is-opened {\n padding: 16px; }\n\n.components-panel__header {\n display: flex;\n justify-content: space-between;\n align-items: center;\n padding: 0 16px;\n height: 50px;\n border-top: 1px solid #e2e4e7;\n border-bottom: 1px solid #e2e4e7; }\n .components-panel__header h2 {\n margin: 0;\n font-size: inherit;\n color: inherit; }\n\n.components-panel__body + .components-panel__body,\n.components-panel__body + .components-panel__header,\n.components-panel__header + .components-panel__body,\n.components-panel__header + .components-panel__header {\n margin-top: -1px; }\n\n.components-panel__body > .components-panel__body-title {\n display: block;\n padding: 0;\n font-size: inherit;\n margin-top: 0;\n margin-bottom: 0;\n transition: 0.1s background ease-in-out; }\n @media (prefers-reduced-motion: reduce) {\n .components-panel__body > .components-panel__body-title {\n transition-duration: 0s; } }\n\n.components-panel__body.is-opened > .components-panel__body-title {\n margin: -16px;\n margin-bottom: 5px; }\n\n.components-panel__body > .components-panel__body-title:hover {\n background: #f3f4f5 !important;\n border: none !important; }\n\n.components-panel__body-toggle.components-button {\n position: relative;\n padding: 15px;\n outline: none;\n width: 100%;\n font-weight: 600;\n text-align: left;\n color: #191e23;\n border: none;\n box-shadow: none;\n transition: 0.1s background ease-in-out;\n height: auto;\n /* rtl:begin:ignore */\n /* rtl:end:ignore */ }\n @media (prefers-reduced-motion: reduce) {\n .components-panel__body-toggle.components-button {\n transition-duration: 0s; } }\n .components-panel__body-toggle.components-button:focus:not(:disabled):not([aria-disabled=\"true\"]) {\n color: #191e23;\n border: none;\n box-shadow: none;\n outline-offset: -2px;\n outline: 1px dotted #555d66; }\n .components-panel__body-toggle.components-button:hover {\n background: transparent !important;\n border: none !important;\n box-shadow: none !important; }\n .components-panel__body-toggle.components-button .components-panel__arrow {\n position: absolute;\n right: 16px;\n top: 50%;\n transform: translateY(-50%);\n color: #191e23;\n fill: currentColor;\n transition: 0.1s color ease-in-out; }\n @media (prefers-reduced-motion: reduce) {\n .components-panel__body-toggle.components-button .components-panel__arrow {\n transition-duration: 0s; } }\n body.rtl .components-panel__body-toggle.components-button .dashicons-arrow-right {\n transform: scaleX(-1);\n -ms-filter: fliph;\n filter: FlipH;\n margin-top: -10px; }\n\n.components-panel__icon {\n color: #555d66;\n margin: -2px 0 -2px 6px; }\n\n.components-panel__body-toggle-icon {\n margin-right: -5px; }\n\n.components-panel__color-title {\n float: left;\n height: 19px; }\n\n.components-panel__row {\n display: flex;\n justify-content: space-between;\n align-items: center;\n margin-top: 20px; }\n .components-panel__row select {\n min-width: 0; }\n .components-panel__row label {\n margin-right: 10px;\n flex-shrink: 0;\n max-width: 75%; }\n .components-panel__row:empty, .components-panel__row:first-of-type {\n margin-top: 0; }\n\n.components-panel .circle-picker {\n padding-bottom: 20px; }\n\n.components-placeholder.components-placeholder {\n position: relative;\n padding: 1em;\n min-height: 200px;\n width: 100%;\n text-align: left;\n margin: 0;\n color: #1e1e1e;\n -moz-font-smoothing: subpixel-antialiased;\n -webkit-font-smoothing: subpixel-antialiased;\n border-radius: 2px;\n background-color: #fff;\n box-shadow: 0 0 0 1px #1e1e1e;\n outline: 1px solid transparent; }\n @supports ((position: -webkit-sticky) or (position: sticky)) {\n .components-placeholder.components-placeholder {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: flex-start; } }\n .components-placeholder.components-placeholder .components-base-control__label {\n font-size: 13px; }\n\n.components-placeholder__error,\n.components-placeholder__instructions,\n.components-placeholder__label,\n.components-placeholder__fieldset {\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px; }\n\n.components-placeholder__label {\n display: flex;\n font-weight: 600;\n margin-bottom: 16px;\n align-items: center; }\n .components-placeholder__label > svg,\n .components-placeholder__label .dashicon,\n .components-placeholder__label .block-editor-block-icon {\n fill: currentColor;\n margin-right: 1ch; }\n\n.components-placeholder__fieldset,\n.components-placeholder__fieldset form {\n display: flex;\n flex-direction: row;\n width: 100%;\n flex-wrap: wrap;\n z-index: 1; }\n .components-placeholder__fieldset p,\n .components-placeholder__fieldset form p {\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px; }\n\n.components-placeholder__fieldset.is-column-layout,\n.components-placeholder__fieldset.is-column-layout form {\n flex-direction: column; }\n\n.components-placeholder__input {\n margin: 0 8px 0 0;\n flex: 1 1 auto; }\n\n.components-placeholder__instructions {\n margin-bottom: 1em; }\n\n.components-placeholder__error {\n margin-top: 1em;\n width: 100%; }\n\n.components-placeholder__preview img {\n margin: 3%;\n width: 50%; }\n\n.components-placeholder__fieldset .components-button {\n margin-right: 12px;\n margin-bottom: 12px; }\n .components-placeholder__fieldset .components-button:last-child {\n margin-bottom: 0;\n margin-right: 0; }\n\n.components-placeholder__fieldset .components-button:not(.is-link) ~ .components-button.is-link {\n margin-left: 10px;\n margin-right: 10px; }\n .components-placeholder__fieldset .components-button:not(.is-link) ~ .components-button.is-link:last-child {\n margin-right: 0; }\n\n.components-placeholder.is-large .components-placeholder__label {\n font-size: 18pt;\n font-weight: normal; }\n\n.components-placeholder.is-medium .components-placeholder__instructions, .components-placeholder.is-small .components-placeholder__instructions {\n display: none; }\n\n.components-placeholder.is-medium .components-placeholder__fieldset,\n.components-placeholder.is-medium .components-placeholder__fieldset form, .components-placeholder.is-small .components-placeholder__fieldset,\n.components-placeholder.is-small .components-placeholder__fieldset form {\n flex-direction: column; }\n\n.components-placeholder.is-medium .components-placeholder__fieldset .components-button, .components-placeholder.is-small .components-placeholder__fieldset .components-button {\n margin-right: auto; }\n\n.components-placeholder.is-small .components-button {\n padding: 0 8px 2px; }\n\n/*!rtl:begin:ignore*/\n.components-popover {\n position: fixed;\n z-index: 1000000;\n top: 0;\n left: 0;\n opacity: 0; }\n .components-popover.is-expanded, .components-popover[data-x-axis][data-y-axis] {\n opacity: 1; }\n .components-popover.is-expanded {\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n z-index: 1000000 !important; }\n .components-popover:not(.is-without-arrow) {\n margin-left: 2px; }\n .components-popover:not(.is-without-arrow)::before {\n border: 8px solid #1e1e1e; }\n .components-popover:not(.is-without-arrow)::after {\n border: 8px solid #fff; }\n .components-popover:not(.is-without-arrow)::before, .components-popover:not(.is-without-arrow)::after {\n content: \"\";\n position: absolute;\n height: 0;\n width: 0;\n line-height: 0; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"top\"] {\n margin-top: -8px; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"top\"]::before {\n bottom: -8px; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"top\"]::after {\n bottom: -6px; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"top\"]::before, .components-popover:not(.is-without-arrow)[data-y-axis=\"top\"]::after {\n border-bottom: none;\n border-left-color: transparent;\n border-right-color: transparent;\n border-top-style: solid;\n margin-left: -10px; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"bottom\"] {\n margin-top: 8px; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"bottom\"]::before {\n top: -8px; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"bottom\"]::after {\n top: -6px; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"bottom\"]::before, .components-popover:not(.is-without-arrow)[data-y-axis=\"bottom\"]::after {\n border-bottom-style: solid;\n border-left-color: transparent;\n border-right-color: transparent;\n border-top: none;\n margin-left: -10px; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"middle\"][data-x-axis=\"left\"] {\n margin-left: -8px; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"middle\"][data-x-axis=\"left\"]::before {\n right: -8px; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"middle\"][data-x-axis=\"left\"]::after {\n right: -6px; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"middle\"][data-x-axis=\"left\"]::before, .components-popover:not(.is-without-arrow)[data-y-axis=\"middle\"][data-x-axis=\"left\"]::after {\n border-bottom-color: transparent;\n border-left-style: solid;\n border-right: none;\n border-top-color: transparent; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"middle\"][data-x-axis=\"right\"] {\n margin-left: 8px; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"middle\"][data-x-axis=\"right\"]::before {\n left: -8px; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"middle\"][data-x-axis=\"right\"]::after {\n left: -6px; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"middle\"][data-x-axis=\"right\"]::before, .components-popover:not(.is-without-arrow)[data-y-axis=\"middle\"][data-x-axis=\"right\"]::after {\n border-bottom-color: transparent;\n border-left: none;\n border-right-style: solid;\n border-top-color: transparent; }\n .components-popover[data-y-axis=\"top\"] {\n bottom: 100%; }\n .components-popover[data-y-axis=\"bottom\"] {\n top: 100%; }\n .components-popover[data-y-axis=\"middle\"] {\n align-items: center;\n display: flex; }\n\n.components-popover__content {\n height: 100%;\n background: #fff;\n border: 1px solid #ccc;\n box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);\n border-radius: 2px; }\n .components-popover .components-popover__content {\n position: absolute;\n height: auto;\n overflow-y: auto;\n min-width: 260px; }\n .components-popover.is-expanded .components-popover__content {\n position: static;\n height: calc(100% - 50px);\n overflow-y: visible;\n min-width: auto;\n border: none;\n border-top: 1px solid #1e1e1e; }\n .components-popover[data-y-axis=\"top\"] .components-popover__content {\n bottom: 100%; }\n .components-popover[data-x-axis=\"center\"] .components-popover__content {\n left: 50%;\n transform: translateX(-50%); }\n .components-popover[data-x-axis=\"right\"] .components-popover__content {\n position: absolute;\n left: 100%; }\n .components-popover:not([data-y-axis=\"middle\"])[data-x-axis=\"right\"] .components-popover__content {\n margin-left: -24px; }\n .components-popover[data-x-axis=\"left\"] .components-popover__content {\n position: absolute;\n right: 100%; }\n .components-popover:not([data-y-axis=\"middle\"])[data-x-axis=\"left\"] .components-popover__content {\n margin-right: -24px; }\n\n.components-popover__content > div {\n height: 100%; }\n\n.components-popover__header {\n align-items: center;\n background: #fff;\n display: flex;\n height: 50px;\n justify-content: space-between;\n padding: 0 8px 0 16px; }\n\n.components-popover__header-title {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n width: 100%; }\n\n.components-popover__close.components-button {\n z-index: 5; }\n\n/*!rtl:end:ignore*/\n.components-radio-control {\n display: flex;\n flex-direction: column; }\n .components-radio-control .components-base-control__help {\n margin-top: 0; }\n .components-radio-control .components-base-control__field {\n margin-bottom: 0; }\n\n.components-radio-control__option:not(:last-child) {\n margin-bottom: 4px; }\n\n.components-radio-control__input[type=\"radio\"] {\n margin-top: 0;\n margin-right: 6px; }\n\n.components-resizable-box__handle {\n display: none;\n width: 23px;\n height: 23px; }\n .components-resizable-box__container.is-selected .components-resizable-box__handle,\n .components-resizable-box__container.has-show-handle .components-resizable-box__handle {\n display: block; }\n\n.components-resizable-box__handle::after {\n display: block;\n content: \"\";\n width: 15px;\n height: 15px;\n border: 2px solid #fff;\n border-radius: 50%;\n background: #0085ba;\n cursor: inherit;\n position: absolute;\n top: calc(50% - 8px);\n right: calc(50% - 8px); }\n\nbody.admin-color-sunrise .components-resizable-box__handle::after {\n background: #d1864a; }\n\nbody.admin-color-ocean .components-resizable-box__handle::after {\n background: #a3b9a2; }\n\nbody.admin-color-midnight .components-resizable-box__handle::after {\n background: #e14d43; }\n\nbody.admin-color-ectoplasm .components-resizable-box__handle::after {\n background: #a7b656; }\n\nbody.admin-color-coffee .components-resizable-box__handle::after {\n background: #c2a68c; }\n\nbody.admin-color-blue .components-resizable-box__handle::after {\n background: #82b4cb; }\n\nbody.admin-color-light .components-resizable-box__handle::after {\n background: #0085ba; }\n\n.components-resizable-box__side-handle::before {\n display: block;\n content: \"\";\n width: 7px;\n height: 7px;\n border: 2px solid #fff;\n background: #0085ba;\n cursor: inherit;\n position: absolute;\n top: calc(50% - 4px);\n right: calc(50% - 4px);\n transition: transform 0.1s ease-in;\n opacity: 0; }\n\nbody.admin-color-sunrise .components-resizable-box__side-handle::before {\n background: #d1864a; }\n\nbody.admin-color-ocean .components-resizable-box__side-handle::before {\n background: #a3b9a2; }\n\nbody.admin-color-midnight .components-resizable-box__side-handle::before {\n background: #e14d43; }\n\nbody.admin-color-ectoplasm .components-resizable-box__side-handle::before {\n background: #a7b656; }\n\nbody.admin-color-coffee .components-resizable-box__side-handle::before {\n background: #c2a68c; }\n\nbody.admin-color-blue .components-resizable-box__side-handle::before {\n background: #82b4cb; }\n\nbody.admin-color-light .components-resizable-box__side-handle::before {\n background: #0085ba; }\n @media (prefers-reduced-motion: reduce) {\n .components-resizable-box__side-handle::before {\n transition-duration: 0s; } }\n\n.is-dark-theme .components-resizable-box__side-handle::before,\n.is-dark-theme .components-resizable-box__handle::after {\n border-color: #d7dade; }\n\n.components-resizable-box__handle {\n z-index: 2; }\n\n.components-resizable-box__side-handle {\n z-index: 2; }\n\n.components-resizable-box__corner-handle {\n z-index: 2; }\n\n.components-resizable-box__side-handle.components-resizable-box__handle-top,\n.components-resizable-box__side-handle.components-resizable-box__handle-bottom,\n.components-resizable-box__side-handle.components-resizable-box__handle-top::before,\n.components-resizable-box__side-handle.components-resizable-box__handle-bottom::before {\n width: 100%;\n left: 0;\n border-left: 0;\n border-right: 0; }\n\n.components-resizable-box__side-handle.components-resizable-box__handle-left,\n.components-resizable-box__side-handle.components-resizable-box__handle-right,\n.components-resizable-box__side-handle.components-resizable-box__handle-left::before,\n.components-resizable-box__side-handle.components-resizable-box__handle-right::before {\n height: 100%;\n top: 0;\n border-top: 0;\n border-bottom: 0; }\n\n.components-resizable-box__side-handle.components-resizable-box__handle-top:hover::before,\n.components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover::before,\n.components-resizable-box__side-handle.components-resizable-box__handle-top:active::before,\n.components-resizable-box__side-handle.components-resizable-box__handle-bottom:active::before {\n animation: components-resizable-box__top-bottom-animation 0.1s ease-out 0s;\n animation-fill-mode: forwards; }\n @media (prefers-reduced-motion: reduce) {\n .components-resizable-box__side-handle.components-resizable-box__handle-top:hover::before,\n .components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover::before,\n .components-resizable-box__side-handle.components-resizable-box__handle-top:active::before,\n .components-resizable-box__side-handle.components-resizable-box__handle-bottom:active::before {\n animation-duration: 1ms; } }\n\n.components-resizable-box__side-handle.components-resizable-box__handle-left:hover::before,\n.components-resizable-box__side-handle.components-resizable-box__handle-right:hover::before,\n.components-resizable-box__side-handle.components-resizable-box__handle-left:active::before,\n.components-resizable-box__side-handle.components-resizable-box__handle-right:active::before {\n animation: components-resizable-box__left-right-animation 0.1s ease-out 0s;\n animation-fill-mode: forwards; }\n @media (prefers-reduced-motion: reduce) {\n .components-resizable-box__side-handle.components-resizable-box__handle-left:hover::before,\n .components-resizable-box__side-handle.components-resizable-box__handle-right:hover::before,\n .components-resizable-box__side-handle.components-resizable-box__handle-left:active::before,\n .components-resizable-box__side-handle.components-resizable-box__handle-right:active::before {\n animation-duration: 1ms; } }\n\n@keyframes components-resizable-box__top-bottom-animation {\n from {\n transform: scaleX(0);\n opacity: 0; }\n to {\n transform: scaleX(1);\n opacity: 1; } }\n\n@keyframes components-resizable-box__left-right-animation {\n from {\n transform: scaleY(0);\n opacity: 0; }\n to {\n transform: scaleY(1);\n opacity: 1; } }\n\n/*!rtl:begin:ignore*/\n.components-resizable-box__handle-right {\n right: calc(11.5px * -1); }\n\n.components-resizable-box__handle-left {\n left: calc(11.5px * -1); }\n\n.components-resizable-box__handle-top {\n top: calc(11.5px * -1); }\n\n.components-resizable-box__handle-bottom {\n bottom: calc(11.5px * -1); }\n\n/*!rtl:end:ignore*/\n.components-responsive-wrapper {\n position: relative;\n max-width: 100%; }\n .components-responsive-wrapper,\n .components-responsive-wrapper > span {\n display: block; }\n\n.components-responsive-wrapper__content {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n width: 100%;\n height: 100%; }\n\n.components-sandbox {\n overflow: hidden; }\n\niframe.components-sandbox {\n width: 100%; }\n\nhtml.lockscroll,\nbody.lockscroll {\n overflow: hidden; }\n\n.components-select-control__input {\n background: #fff;\n height: 36px;\n line-height: 36px;\n margin: 1px;\n outline: 0;\n width: 100%;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important; }\n @media (min-width: 782px) {\n .components-select-control__input {\n height: 28px;\n line-height: 28px; } }\n\n@media (max-width: 782px) {\n .components-base-control .components-base-control__field .components-select-control__input {\n font-size: 16px; } }\n\n.components-snackbar {\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px;\n background-color: #32373c;\n border-radius: 4px;\n box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);\n color: #fff;\n padding: 16px 24px;\n width: 100%;\n max-width: 600px;\n box-sizing: border-box;\n cursor: pointer; }\n @media (min-width: 600px) {\n .components-snackbar {\n width: fit-content; } }\n .components-snackbar:hover {\n background-color: #191e23; }\n .components-snackbar:focus {\n background-color: #191e23;\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba; }\n\n.components-snackbar__action.components-button {\n margin-left: 32px;\n color: #fff;\n height: auto;\n flex-shrink: 0;\n line-height: 1.4;\n padding: 0; }\n .components-snackbar__action.components-button:not(:disabled):not([aria-disabled=\"true\"]):not(.is-secondary) {\n text-decoration: underline;\n background-color: transparent; }\n .components-snackbar__action.components-button:not(:disabled):not([aria-disabled=\"true\"]):not(.is-secondary):focus {\n color: #fff;\n box-shadow: none;\n outline: 1px dotted #fff; }\n .components-snackbar__action.components-button:not(:disabled):not([aria-disabled=\"true\"]):not(.is-secondary):hover {\n color: #33b3db; }\n\n.components-snackbar__content {\n display: flex;\n align-items: baseline;\n justify-content: space-between;\n line-height: 1.4; }\n\n.components-snackbar-list {\n position: absolute;\n z-index: 100000;\n width: 100%;\n box-sizing: border-box; }\n\n.components-snackbar-list__notice-container {\n position: relative;\n padding-top: 8px; }\n\n.components-spinner {\n display: inline-block;\n background-color: #7e8993;\n width: 18px;\n height: 18px;\n opacity: 0.7;\n margin: 5px 11px 0;\n border-radius: 100%;\n position: relative; }\n .components-spinner::before {\n /* rtl:begin:ignore */\n content: \"\";\n position: absolute;\n background-color: #fff;\n top: 3px;\n left: 3px;\n width: 4px;\n height: 4px;\n border-radius: 100%;\n transform-origin: 6px 6px;\n animation: components-spinner__animation 1s infinite linear;\n /* rtl:end:ignore */ }\n\n@keyframes components-spinner__animation {\n from {\n transform: rotate(0deg); }\n to {\n transform: rotate(360deg); } }\n\n.components-text-control__input {\n width: 100%;\n padding: 6px 8px; }\n\n.components-textarea-control__input {\n width: 100%;\n padding: 6px 8px; }\n\n.components-tip {\n display: flex;\n color: #555d66; }\n .components-tip svg {\n -ms-grid-row-align: center;\n align-self: center;\n fill: #f0b849;\n flex-shrink: 0;\n margin-right: 16px; }\n .components-tip p {\n margin: 0; }\n\n.components-toggle-control .components-base-control__field {\n display: flex;\n margin-bottom: 12px;\n line-height: initial;\n align-items: center; }\n .components-toggle-control .components-base-control__field .components-form-toggle {\n margin-right: 16px; }\n .components-toggle-control .components-base-control__field .components-toggle-control__label {\n display: block; }\n\n.components-accessible-toolbar {\n display: inline-flex;\n flex-shrink: 0; }\n @supports ((position: -webkit-sticky) or (position: sticky)) {\n .components-accessible-toolbar {\n display: flex; } }\n\n.components-toolbar__control.components-button {\n position: relative; }\n .components-toolbar__control.components-button[data-subscript] svg {\n padding: 5px 10px 5px 0; }\n .components-toolbar__control.components-button[data-subscript]::after {\n content: attr(data-subscript);\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px;\n font-weight: 600;\n line-height: 12px;\n position: absolute;\n right: 8px;\n bottom: 10px; }\n .components-toolbar__control.components-button:active::before {\n display: none; }\n .components-toolbar__control.components-button:not(:disabled).is-pressed[data-subscript]::after {\n color: #fff; }\n\n.components-toolbar-group {\n border: 1px solid #e2e4e7;\n background-color: #fff;\n display: flex;\n flex-shrink: 0;\n margin-right: -1px;\n line-height: 0; }\n .components-toolbar-group .components-toolbar-group {\n border-width: 0;\n margin: 0; }\n\n.components-toolbar {\n margin: 0;\n border: 1px solid #e2e4e7;\n background-color: #fff;\n display: flex;\n flex-shrink: 0; }\n\ndiv.components-toolbar > div {\n display: block;\n margin: 0; }\n @supports ((position: -webkit-sticky) or (position: sticky)) {\n div.components-toolbar > div {\n display: flex; } }\n\ndiv.components-toolbar > div + div.has-left-divider {\n margin-left: 6px;\n position: relative;\n overflow: visible; }\n\ndiv.components-toolbar > div + div.has-left-divider::before {\n display: inline-block;\n content: \"\";\n box-sizing: content-box;\n background-color: #e2e4e7;\n position: absolute;\n top: 8px;\n left: -3px;\n width: 1px;\n height: 20px; }\n\n.components-tooltip.components-popover {\n z-index: 1000002; }\n .components-tooltip.components-popover .components-popover__content {\n min-width: 0; }\n\n.components-tooltip .components-popover__content {\n padding: 4px 8px;\n background: #1e1e1e;\n border-radius: 2px;\n border-width: 0;\n color: #fff;\n white-space: nowrap;\n text-align: center;\n pointer-events: none; }\n\n.components-tooltip__shortcut {\n display: inline-block;\n margin-left: 8px; }\n\n.components-visually-hidden {\n border: 0;\n clip: rect(1px, 1px, 1px, 1px);\n -webkit-clip-path: inset(50%);\n clip-path: inset(50%);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px;\n word-wrap: normal !important; }\n\n.components-visually-hidden:focus {\n background-color: #e2e4e7;\n clip: auto !important;\n -webkit-clip-path: none;\n clip-path: none;\n color: #444;\n display: block;\n font-size: 1em;\n height: auto;\n left: 5px;\n line-height: normal;\n padding: 15px 23px 14px;\n text-decoration: none;\n top: 5px;\n width: auto;\n z-index: 100000; }\n","/**\n * Colors\n */\n/**\n * Breakpoints & Media Queries\n */\n/**\n * Colors\n */\n/**\n * Fonts & basic variables.\n */\n/**\n * Grid System.\n * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/\n */\n/**\n * Dimensions.\n */\n/**\n * Shadows.\n */\n/**\n * Editor widths.\n */\n/**\n * Block UI.\n */\n/**\n * Border radii.\n */\n/**\n * Breakpoint mixins\n */\n/**\n * Long content fade mixin\n *\n * Creates a fading overlay to signify that the content is longer\n * than the space allows.\n */\n/**\n * Button states and focus styles\n */\n/**\n * Block Toolbar/Formatting Buttons\n */\n/**\n * Applies editor left position to the selector passed as argument\n */\n/**\n * Styles that are reused verbatim in a few places\n */\n/**\n * Allows users to opt-out of animations via OS-level preferences.\n */\n/**\n * Reset default styles for JavaScript UI based pages.\n * This is a WP-admin agnostic reset\n */\n/**\n * Reset the WP Admin page styles for Gutenberg-like pages.\n */\n#start-resizable-editor-section {\n display: none; }\n\n.block-editor-block-icon {\n display: flex;\n align-items: center;\n justify-content: center;\n width: 24px;\n height: 24px; }\n .block-editor-block-icon.has-colors svg {\n fill: currentColor; }\n .block-editor-block-icon svg {\n min-width: 20px;\n min-height: 20px;\n max-width: 24px;\n max-height: 24px; }\n\n.block-editor-block-inspector .components-base-control {\n margin-bottom: 24px; }\n .block-editor-block-inspector .components-base-control:last-child {\n margin-bottom: 8px; }\n\n.block-editor-block-inspector .components-panel__body {\n border: none;\n border-top: 1px solid #e2e4e7; }\n\n.block-editor-block-inspector .block-editor-block-card {\n padding: 16px; }\n\n.block-editor-block-inspector__no-blocks {\n display: block;\n font-size: 13px;\n background: #fff;\n padding: 32px 16px;\n text-align: center; }\n\n.block-editor-block-list__layout .block-editor-block-list__block.is-dragging > * {\n background: #f8f9f9; }\n\n.block-editor-block-list__layout .block-editor-block-list__block.is-dragging > * > * {\n visibility: hidden; }\n\n.block-editor-block-list__layout .block-editor-block-list__block .reusable-block-edit-panel * {\n z-index: 1; }\n\n/**\n * General Post Content Layout\n */\n.block-editor-block-list__layout {\n padding-left: 14px;\n padding-right: 14px;\n position: relative; }\n @media (min-width: 600px) {\n .block-editor-block-list__layout {\n padding-left: 58px;\n padding-right: 58px; } }\n .block-editor-block-list__layout .block-editor-block-list__layout {\n padding-left: 0;\n padding-right: 0; }\n\n/**\n * Notices & Block Selected/Hover Styles.\n */\n.block-editor-block-list__layout .block-editor-block-list__block {\n position: relative;\n overflow-wrap: break-word;\n /**\n\t * Notices\n\t */\n /**\n\t * Block Layout\n\t */ }\n .block-editor-block-list__layout .block-editor-block-list__block .components-placeholder .components-with-notices-ui {\n margin: -10px 0 12px 0; }\n .block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui {\n margin: 0 0 12px 0;\n width: 100%; }\n .block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui .components-notice {\n margin-left: 0;\n margin-right: 0; }\n .block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui .components-notice .components-notice__content {\n font-size: 13px; }\n .block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus {\n outline: none; }\n .block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus::after {\n position: absolute;\n z-index: 1;\n pointer-events: none;\n content: \"\";\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n box-shadow: 0 0 0 2px #007cba;\n border-radius: 2px; }\n .is-dark-theme .block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus::after {\n box-shadow: 0 0 0 2px #fff; }\n .block-editor-block-list__layout .block-editor-block-list__block.is-focus-mode:not(.is-multi-selected) {\n opacity: 0.5;\n transition: opacity 0.1s linear; }\n @media (prefers-reduced-motion: reduce) {\n .block-editor-block-list__layout .block-editor-block-list__block.is-focus-mode:not(.is-multi-selected) {\n transition-duration: 0s; } }\n .block-editor-block-list__layout .block-editor-block-list__block.is-focus-mode:not(.is-multi-selected):not(.is-focused) .block-editor-block-list__block, .block-editor-block-list__layout .block-editor-block-list__block.is-focus-mode:not(.is-multi-selected).is-focused {\n opacity: 1; }\n .block-editor-block-list__layout .block-editor-block-list__block.is-drop-target::before {\n content: \"\";\n position: absolute;\n z-index: 0;\n pointer-events: none;\n transition: border-color 0.1s linear, border-style 0.1s linear, box-shadow 0.1s linear;\n right: 0;\n left: 0;\n top: -14px;\n border-radius: 2px;\n border-top: 4px solid #007cba; }\n\n/**\n * Cross-Block Selection\n */\n.is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block.is-selected::after,\n.block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected::after {\n position: absolute;\n z-index: 1;\n pointer-events: none;\n content: \"\";\n top: 0;\n bottom: 0;\n left: 0;\n right: 0; }\n\n.is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block.is-selected .is-block-content, .is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block.is-selected::after,\n.block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected .is-block-content,\n.block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected::after {\n box-shadow: 0 0 0 2px #007cba;\n border-radius: 2px;\n outline: 2px solid transparent; }\n .is-dark-theme .is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block.is-selected .is-block-content, .is-dark-theme .is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block.is-selected::after, .is-dark-theme\n .block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected .is-block-content, .is-dark-theme\n .block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected::after {\n box-shadow: 0 0 0 2px #fff; }\n\n.is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block.is-selected .components-placeholder ::selection,\n.block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected .components-placeholder ::selection {\n background: transparent; }\n\n.block-editor-block-list__layout .block-editor-block-list__block.is-block-collapsed::after {\n content: none; }\n\n/**\n * Block styles and alignments\n */\n.block-editor-block-list__layout .block-editor-block-list__block.has-warning {\n min-height: 36px; }\n\n.block-editor-block-list__layout .block-editor-block-list__block.has-warning > * {\n pointer-events: none;\n -webkit-user-select: none;\n -ms-user-select: none;\n user-select: none; }\n\n.block-editor-block-list__layout .block-editor-block-list__block.has-warning .block-editor-warning {\n pointer-events: all; }\n\n.block-editor-block-list__layout .block-editor-block-list__block.has-warning::after {\n content: \"\";\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n border-radius: 2px;\n background-color: rgba(255, 255, 255, 0.4); }\n\n.block-editor-block-list__layout .block-editor-block-list__block.has-warning.is-multi-selected::after {\n background-color: transparent; }\n\n.block-editor-block-list__layout .block-editor-block-list__block.is-reusable > .block-editor-inner-blocks > .block-editor-block-list__layout.has-overlay::after {\n display: none; }\n\n.block-editor-block-list__layout .block-editor-block-list__block.is-reusable > .block-editor-inner-blocks > .block-editor-block-list__layout.has-overlay .block-editor-block-list__layout.has-overlay::after {\n display: block; }\n\n.is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block {\n cursor: default; }\n\n.block-editor-block-list__layout .block-editor-block-list__block .alignleft,\n.block-editor-block-list__layout .block-editor-block-list__block .alignright {\n z-index: 21; }\n\n.block-editor-block-list__layout .block-editor-block-list__block[data-align=\"left\"], .block-editor-block-list__layout .block-editor-block-list__block[data-align=\"right\"] {\n z-index: 21;\n width: 100%;\n height: 0; }\n .block-editor-block-list__layout .block-editor-block-list__block[data-align=\"left\"]::before, .block-editor-block-list__layout .block-editor-block-list__block[data-align=\"right\"]::before {\n content: none; }\n\n.block-editor-block-list__layout .block-editor-block-list__block[data-align=\"left\"] > .is-block-content {\n /*!rtl:begin:ignore*/\n float: left;\n margin-right: 2em;\n /*!rtl:end:ignore*/ }\n\n.block-editor-block-list__layout .block-editor-block-list__block[data-align=\"right\"] > .is-block-content {\n /*!rtl:begin:ignore*/\n float: right;\n margin-left: 2em;\n /*!rtl:end:ignore*/ }\n\n.block-editor-block-list__layout .block-editor-block-list__block[data-align=\"full\"], .block-editor-block-list__layout .block-editor-block-list__block[data-align=\"wide\"], .block-editor-block-list__layout .block-editor-block-list__block.alignfull, .block-editor-block-list__layout .block-editor-block-list__block.alignwide {\n clear: both; }\n\n.block-editor-block-list__layout .block-editor-block-list__block[data-align=\"full\"], .block-editor-block-list__layout .block-editor-block-list__block.alignfull {\n margin-left: -14px;\n margin-right: -14px; }\n @media (min-width: 600px) {\n .block-editor-block-list__layout .block-editor-block-list__block[data-align=\"full\"], .block-editor-block-list__layout .block-editor-block-list__block.alignfull {\n margin-left: -58px;\n margin-right: -58px; } }\n\n.block-editor-block-list__layout .block-editor-block-list__block[data-clear=\"true\"] {\n float: none; }\n\n.block-editor-block-list__layout .block-editor-block-list__block .block-editor-block-list__layout .block-editor-default-block-appender .block-editor-inserter {\n left: auto;\n right: 8px; }\n\n/**\n * In-Canvas Inserter\n */\n.block-editor-block-list .block-editor-inserter {\n margin: 8px;\n cursor: move;\n cursor: grab; }\n\n.block-editor-block-list__insertion-point {\n position: relative;\n z-index: 6;\n margin-top: -14px; }\n\n.block-editor-block-list__insertion-point-indicator {\n position: absolute;\n top: calc(50% - 1px);\n height: 2px;\n left: 0;\n right: 0;\n background: #0085ba; }\n\nbody.admin-color-sunrise .block-editor-block-list__insertion-point-indicator {\n background: #d1864a; }\n\nbody.admin-color-ocean .block-editor-block-list__insertion-point-indicator {\n background: #a3b9a2; }\n\nbody.admin-color-midnight .block-editor-block-list__insertion-point-indicator {\n background: #e14d43; }\n\nbody.admin-color-ectoplasm .block-editor-block-list__insertion-point-indicator {\n background: #a7b656; }\n\nbody.admin-color-coffee .block-editor-block-list__insertion-point-indicator {\n background: #c2a68c; }\n\nbody.admin-color-blue .block-editor-block-list__insertion-point-indicator {\n background: #82b4cb; }\n\nbody.admin-color-light .block-editor-block-list__insertion-point-indicator {\n background: #0085ba; }\n\n.block-editor-block-list__insertion-point-inserter {\n display: none;\n justify-content: center;\n cursor: text; }\n @media (min-width: 480px) {\n .block-editor-block-list__insertion-point-inserter {\n display: flex; } }\n .block-editor-block-list__insertion-point-inserter.is-inserter-hidden .block-editor-inserter__toggle {\n opacity: 0;\n pointer-events: none; }\n\n.block-editor-block-list__block-popover-inserter {\n position: absolute;\n top: -9999em;\n margin-bottom: 14px; }\n .block-editor-block-list__block-popover-inserter.is-visible {\n position: static; }\n\n.block-editor-block-list__empty-block-inserter .block-editor-inserter__toggle.components-button,\n.block-editor-default-block-appender .block-editor-inserter__toggle.components-button,\n.block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button,\n.block-editor-block-list__block-popover-inserter .block-editor-inserter__toggle.components-button {\n background: #1e1e1e;\n border-radius: 2px;\n color: #fff;\n min-width: 24px;\n height: 24px; }\n .block-editor-block-list__empty-block-inserter .block-editor-inserter__toggle.components-button:hover,\n .block-editor-default-block-appender .block-editor-inserter__toggle.components-button:hover,\n .block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button:hover,\n .block-editor-block-list__block-popover-inserter .block-editor-inserter__toggle.components-button:hover {\n color: #fff; }\n\n.block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button,\n.block-editor-block-list__block-popover-inserter .block-editor-inserter__toggle.components-button {\n animation: block-editor-inserter__toggle__fade-in-animation-delayed 1.2s ease;\n animation-fill-mode: forwards; }\n @media (prefers-reduced-motion: reduce) {\n .block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button,\n .block-editor-block-list__block-popover-inserter .block-editor-inserter__toggle.components-button {\n animation-duration: 1ms; } }\n .block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button:hover,\n .block-editor-block-list__block-popover-inserter .block-editor-inserter__toggle.components-button:hover {\n animation: block-editor-inserter__toggle__fade-in-animation 0.2s ease;\n animation-fill-mode: forwards; }\n @media (prefers-reduced-motion: reduce) {\n .block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button:hover,\n .block-editor-block-list__block-popover-inserter .block-editor-inserter__toggle.components-button:hover {\n animation-duration: 1ms; } }\n\n@keyframes block-editor-inserter__toggle__fade-in-animation-delayed {\n 0% {\n opacity: 0; }\n 80% {\n opacity: 0; }\n 100% {\n opacity: 1; } }\n\n@keyframes block-editor-inserter__toggle__fade-in-animation {\n from {\n opacity: 0; }\n to {\n opacity: 1; } }\n\n.block-editor-block-list__block > .block-editor-block-list__insertion-point {\n position: absolute;\n top: -16px;\n height: 28px;\n bottom: auto;\n left: 14px;\n right: 14px; }\n\n.block-editor-block-list__block .block-editor-block-list__block-html-textarea {\n display: block;\n margin: 0;\n width: 100%;\n border: none;\n outline: none;\n box-shadow: none;\n resize: none;\n overflow: hidden;\n font-family: Menlo, Consolas, monaco, monospace;\n font-size: 14px;\n line-height: 150%;\n transition: padding 0.2s linear; }\n @media (prefers-reduced-motion: reduce) {\n .block-editor-block-list__block .block-editor-block-list__block-html-textarea {\n transition-duration: 0s; } }\n .block-editor-block-list__block .block-editor-block-list__block-html-textarea:focus {\n box-shadow: none; }\n\n/**\n * Block Toolbar, top and contextual.\n */\n.block-editor-block-contextual-toolbar-wrapper {\n padding-left: 48px; }\n\n.edit-post-header-toolbar__block-toolbar .components-toolbar,\n.block-editor-block-contextual-toolbar .components-toolbar {\n height: 48px;\n background: none; }\n\n.edit-post-header-toolbar__block-toolbar .components-button,\n.block-editor-block-contextual-toolbar .components-button {\n height: 48px; }\n\n/**\n * Block Toolbar when contextual.\n */\n.block-editor-block-contextual-toolbar {\n border: 1px solid #1e1e1e;\n border-radius: 2px;\n background-color: #fff; }\n .block-editor-block-contextual-toolbar .block-editor-block-toolbar .components-toolbar {\n border-right-color: #1e1e1e; }\n\n/**\n * Block Label for Navigation/Selection Mode\n */\n.block-editor-block-list__breadcrumb {\n display: block;\n z-index: 22; }\n .block-editor-block-list__breadcrumb .components-toolbar {\n display: flex;\n border: none;\n background: none; }\n .block-editor-block-list__breadcrumb .components-toolbar .components-button {\n font-size: 13px;\n height: 48px;\n padding: 12px 16px;\n border: 1px solid #1e1e1e;\n border-radius: 2px;\n background-color: #fff; }\n .block-editor-block-list__breadcrumb .components-toolbar .components-button:focus {\n border: none;\n box-shadow: inset 0 0 0 1px rgb(0, 124, 186), 0 0 0 1px rgb(0, 124, 186); }\n body.admin-color-sunrise .block-editor-block-list__breadcrumb .components-toolbar .components-button:focus {\n box-shadow: inset 0 0 0 1px rgb(209, 134, 74), 0 0 0 1px rgb(209, 134, 74); }\n body.admin-color-ocean .block-editor-block-list__breadcrumb .components-toolbar .components-button:focus {\n box-shadow: inset 0 0 0 1px rgb(163, 185, 162), 0 0 0 1px rgb(163, 185, 162); }\n body.admin-color-midnight .block-editor-block-list__breadcrumb .components-toolbar .components-button:focus {\n box-shadow: inset 0 0 0 1px rgb(225, 77, 67), 0 0 0 1px rgb(225, 77, 67); }\n body.admin-color-ectoplasm .block-editor-block-list__breadcrumb .components-toolbar .components-button:focus {\n box-shadow: inset 0 0 0 1px rgb(167, 182, 86), 0 0 0 1px rgb(167, 182, 86); }\n body.admin-color-coffee .block-editor-block-list__breadcrumb .components-toolbar .components-button:focus {\n box-shadow: inset 0 0 0 1px rgb(194, 166, 140), 0 0 0 1px rgb(194, 166, 140); }\n body.admin-color-blue .block-editor-block-list__breadcrumb .components-toolbar .components-button:focus {\n box-shadow: inset 0 0 0 1px rgb(217, 171, 89), 0 0 0 1px rgb(217, 171, 89); }\n body.admin-color-light .block-editor-block-list__breadcrumb .components-toolbar .components-button:focus {\n box-shadow: inset 0 0 0 1px rgb(0, 133, 186), 0 0 0 1px rgb(0, 133, 186); }\n\n/**\n * Warnings.\n */\n.block-editor-block-list__block .block-editor-warning {\n z-index: 5;\n position: relative; }\n .block-editor-block-list__block .block-editor-warning.block-editor-block-list__block-crash-warning {\n margin-bottom: auto; }\n\n/**\n * Popovers.\n */\n.block-editor-block-list__insertion-point-popover.is-without-arrow {\n z-index: 28; }\n .block-editor-block-list__insertion-point-popover.is-without-arrow .components-popover__content.components-popover__content {\n background: none;\n border: none;\n box-shadow: none;\n overflow-y: visible;\n margin-left: 0; }\n\n.components-popover.block-editor-block-list__block-popover {\n z-index: 29; }\n .components-popover.block-editor-block-list__block-popover .components-popover__content {\n margin: 0 !important;\n min-width: auto;\n width: max-content;\n background: none;\n border: none;\n box-shadow: none;\n overflow-y: visible;\n pointer-events: none; }\n .components-popover.block-editor-block-list__block-popover .components-popover__content > * {\n pointer-events: all; }\n .components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-list__breadcrumb,\n .components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-contextual-toolbar {\n margin-bottom: 16px;\n margin-left: -49px; }\n .components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-contextual-toolbar[data-align=\"full\"],\n .components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-list__breadcrumb[data-align=\"full\"] {\n margin-left: 0; }\n .is-dragging-components-draggable .components-popover.block-editor-block-list__block-popover {\n opacity: 0; }\n\n.is-dragging-components-draggable .components-tooltip {\n display: none; }\n\n.block-editor-block-list__block .block-list-appender {\n margin: 8px 0; }\n .has-background .block-editor-block-list__block .block-list-appender {\n margin: 20px 8px; }\n\n.block-list-appender.is-drop-target > div::before {\n content: \"\";\n position: absolute;\n right: -8px;\n left: -8px;\n top: -8px;\n bottom: -8px;\n border-radius: 2px;\n border: 3px solid #0085ba; }\n\nbody.admin-color-sunrise .block-list-appender.is-drop-target > div::before {\n border: 3px solid #d1864a; }\n\nbody.admin-color-ocean .block-list-appender.is-drop-target > div::before {\n border: 3px solid #a3b9a2; }\n\nbody.admin-color-midnight .block-list-appender.is-drop-target > div::before {\n border: 3px solid #e14d43; }\n\nbody.admin-color-ectoplasm .block-list-appender.is-drop-target > div::before {\n border: 3px solid #a7b656; }\n\nbody.admin-color-coffee .block-list-appender.is-drop-target > div::before {\n border: 3px solid #c2a68c; }\n\nbody.admin-color-blue .block-list-appender.is-drop-target > div::before {\n border: 3px solid #82b4cb; }\n\nbody.admin-color-light .block-list-appender.is-drop-target > div::before {\n border: 3px solid #0085ba; }\n\n.block-list-appender > .block-editor-inserter {\n display: block; }\n\n.block-editor-block-breadcrumb {\n list-style: none;\n padding: 0;\n margin: 0; }\n .block-editor-block-breadcrumb li {\n display: inline-block;\n margin: 0; }\n .block-editor-block-breadcrumb li:not(:last-child)::after {\n content: \"\\2192\"; }\n\n.block-editor-block-breadcrumb__button.components-button {\n height: 24px;\n line-height: 24px;\n padding: 0; }\n .block-editor-block-breadcrumb__button.components-button:hover:not(:disabled) {\n text-decoration: underline;\n box-shadow: none; }\n .block-editor-block-breadcrumb__button.components-button:focus {\n color: #191e23;\n outline-offset: -1px;\n outline: 1px dotted #555d66;\n outline-offset: -2px;\n box-shadow: none; }\n\n.block-editor-block-breadcrumb__current {\n cursor: default; }\n\n.block-editor-block-breadcrumb__button.components-button,\n.block-editor-block-breadcrumb__current {\n color: #1e1e1e;\n padding: 0 8px;\n font-size: inherit; }\n\n.block-editor-block-card {\n display: flex;\n align-items: flex-start; }\n\n.block-editor-block-card__icon {\n border: 1px solid #ccd0d4;\n padding: 7px;\n margin-right: 10px;\n height: 36px;\n width: 36px; }\n\n.block-editor-block-card__content {\n flex-grow: 1; }\n\n.block-editor-block-card__title {\n font-weight: 500;\n margin-bottom: 5px; }\n\n.block-editor-block-card__description {\n font-size: 13px; }\n\n.block-editor-block-card .block-editor-block-icon {\n margin-left: -2px;\n margin-right: 10px;\n padding: 0 3px;\n width: 36px;\n height: 24px; }\n\n/**\n * Invalid block comparison\n */\n.block-editor-block-compare {\n overflow: auto;\n height: auto; }\n @media (min-width: 600px) {\n .block-editor-block-compare {\n max-height: 70%; } }\n\n.block-editor-block-compare__wrapper {\n display: flex;\n padding-bottom: 16px; }\n .block-editor-block-compare__wrapper > div {\n display: flex;\n justify-content: space-between;\n flex-direction: column;\n width: 50%;\n padding: 0 16px 0 0;\n min-width: 200px; }\n .block-editor-block-compare__wrapper > div button {\n float: right; }\n .block-editor-block-compare__wrapper .block-editor-block-compare__converted {\n border-left: 1px solid #ddd;\n padding-left: 15px;\n padding-right: 0; }\n .block-editor-block-compare__wrapper .block-editor-block-compare__html {\n font-family: Menlo, Consolas, monaco, monospace;\n font-size: 12px;\n color: #23282d;\n border-bottom: 1px solid #ddd;\n padding-bottom: 15px;\n line-height: 1.7; }\n .block-editor-block-compare__wrapper .block-editor-block-compare__html span {\n background-color: #e6ffed;\n padding-top: 3px;\n padding-bottom: 3px; }\n .block-editor-block-compare__wrapper .block-editor-block-compare__html span.block-editor-block-compare__added {\n background-color: #acf2bd; }\n .block-editor-block-compare__wrapper .block-editor-block-compare__html span.block-editor-block-compare__removed {\n background-color: #d94f4f; }\n .block-editor-block-compare__wrapper .block-editor-block-compare__preview {\n padding: 0;\n padding-top: 14px; }\n .block-editor-block-compare__wrapper .block-editor-block-compare__preview p {\n font-size: 12px;\n margin-top: 0; }\n .block-editor-block-compare__wrapper .block-editor-block-compare__action {\n margin-top: 14px; }\n .block-editor-block-compare__wrapper .block-editor-block-compare__heading {\n font-size: 1em;\n font-weight: 400;\n margin: 0.67em 0; }\n\n.block-editor-block-mobile-toolbar {\n display: flex;\n flex-direction: row;\n border-right: 1px solid #e2e4e7; }\n .block-editor-block-mobile-toolbar .block-editor-block-mover__control {\n width: 36px;\n height: 36px;\n border-radius: 4px;\n padding: 3px;\n margin: 0;\n justify-content: center;\n align-items: center; }\n .block-editor-block-mobile-toolbar .block-editor-block-mover__control .dashicon {\n margin: auto; }\n .block-editor-block-mobile-toolbar .block-editor-block-mover {\n display: flex;\n margin-right: auto; }\n .block-editor-block-mobile-toolbar .block-editor-block-mover .block-editor-block-mover__control {\n float: left; }\n\n.block-editor-block-mover {\n display: inline-flex;\n flex-direction: row; }\n\n.block-editor-block-mover__description {\n display: none; }\n\n.block-editor-block-mover__control.has-icon {\n padding: 0; }\n\n.block-editor-block-mover .components-toolbar {\n flex-direction: column; }\n\n.block-editor-block-mover.is-horizontal .components-toolbar {\n flex-direction: row; }\n\n.block-editor-block-mover .components-toolbar .block-editor-block-mover__control-up svg {\n margin-bottom: -8px; }\n\n.block-editor-block-mover .components-toolbar .block-editor-block-mover__control-up::before {\n bottom: 0;\n height: calc(100% - 8px); }\n\n.block-editor-block-mover .components-toolbar .block-editor-block-mover__control-down svg {\n margin-top: -8px; }\n\n.block-editor-block-mover .components-toolbar .block-editor-block-mover__control-down::before {\n top: 0;\n height: calc(100% - 8px); }\n\n.block-editor-block-mover.is-horizontal .block-editor-block-mover__control.has-icon {\n height: 48px;\n width: 24px !important;\n min-width: 24px;\n padding-left: 0;\n padding-right: 0; }\n .block-editor-block-mover.is-horizontal .block-editor-block-mover__control.has-icon::before {\n top: 8px;\n bottom: 8px;\n min-width: 0;\n width: auto;\n height: auto; }\n\n.block-editor-block-mover.is-horizontal .block-editor-block-mover__control-up.has-icon svg {\n margin-left: 0;\n margin-right: -8px;\n margin-bottom: 0; }\n\n.block-editor-block-mover.is-horizontal .block-editor-block-mover__control-up.has-icon::before {\n left: 8px;\n right: 0; }\n\n.block-editor-block-mover.is-horizontal .block-editor-block-mover__control-down.has-icon svg {\n margin-left: -8px;\n margin-right: 0;\n margin-top: 0; }\n\n.block-editor-block-mover.is-horizontal .block-editor-block-mover__control-down.has-icon::before {\n left: 0;\n right: 8px; }\n\n.block-editor-block-mover:not([draggable=\"false\"]) {\n cursor: grab; }\n .block-editor-block-mover:not([draggable=\"false\"]) .block-editor-block-mover__control {\n cursor: grab !important; }\n .block-editor-block-mover:not([draggable=\"false\"]) .block-editor-block-mover__control:not(:disabled):not([aria-disabled=\"true\"]):active {\n cursor: grabbing; }\n\n.block-editor-block-navigation__container {\n padding: 7px; }\n\n.block-editor-block-navigation__label {\n margin: 0 0 8px;\n color: #6c7781; }\n\n.block-editor-block-navigation__list,\n.block-editor-block-navigation__paragraph {\n padding: 0;\n margin: 0; }\n\n.block-editor-block-navigation__list .block-editor-button-block-appender {\n outline: none;\n background: none;\n padding: 8px;\n padding: 6px;\n margin-left: 0.8em;\n width: calc(100% - 0.8em); }\n\n.block-editor-block-navigation__list .block-editor-block-navigation__list {\n margin-top: 2px;\n border-left: 2px solid #a2aab2;\n margin-left: 1em; }\n .block-editor-block-navigation__list .block-editor-block-navigation__list .block-editor-block-navigation__list {\n margin-left: 1.5em; }\n .block-editor-block-navigation__list .block-editor-block-navigation__list .block-editor-block-navigation__item {\n position: relative; }\n .block-editor-block-navigation__list .block-editor-block-navigation__list .block-editor-block-navigation__item::before {\n position: absolute;\n left: 0;\n background: #a2aab2;\n width: 0.5em;\n height: 2px;\n content: \"\";\n top: calc(50% - 1px); }\n .block-editor-block-navigation__list .block-editor-block-navigation__list .block-editor-block-navigation__item-button {\n margin-left: 0.8em;\n width: calc(100% - 0.8em);\n height: auto; }\n .block-editor-block-navigation__list .block-editor-block-navigation__list > li:last-child {\n position: relative; }\n .block-editor-block-navigation__list .block-editor-block-navigation__list > li:last-child::after {\n position: absolute;\n content: \"\";\n background: #fff;\n top: 19px;\n bottom: 0;\n left: -2px;\n width: 2px; }\n\n.block-editor-block-navigation__item-button {\n display: flex;\n align-items: center;\n width: 100%;\n padding: 6px;\n text-align: left;\n color: #40464d;\n border-radius: 2px; }\n .block-editor-block-navigation__item-button .block-editor-block-icon {\n margin-right: 6px; }\n .block-editor-block-navigation__item-button.is-selected, .block-editor-block-navigation__item-button.is-selected:focus {\n color: #fff;\n background: #1e1e1e; }\n\n.components-popover.block-editor-block-navigation__popover {\n z-index: 99998; }\n\n.block-editor-patterns {\n padding: 16px; }\n\n.block-editor-patterns__item {\n border-radius: 2px;\n cursor: pointer;\n margin-bottom: 16px;\n border: 1px solid #e2e4e7;\n transition: all 0.05s ease-in-out;\n position: relative; }\n .block-editor-patterns__item:hover {\n background: #fff;\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px #555d66; }\n .block-editor-patterns__item:focus {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #007cba;\n outline: 2px solid transparent; }\n body.admin-color-sunrise .block-editor-patterns__item:focus {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #d1864a; }\n body.admin-color-ocean .block-editor-patterns__item:focus {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #a3b9a2; }\n body.admin-color-midnight .block-editor-patterns__item:focus {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #e14d43; }\n body.admin-color-ectoplasm .block-editor-patterns__item:focus {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #a7b656; }\n body.admin-color-coffee .block-editor-patterns__item:focus {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #c2a68c; }\n body.admin-color-blue .block-editor-patterns__item:focus {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #d9ab59; }\n body.admin-color-light .block-editor-patterns__item:focus {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #0085ba; }\n\n.block-editor-patterns__item-preview {\n padding: 16px; }\n\n.block-editor-patterns__item-title {\n text-align: center;\n padding: 10px 0; }\n\n.block-editor-block-preview__container {\n position: relative;\n width: 100%;\n overflow: hidden; }\n .block-editor-block-preview__container.is-ready {\n overflow: visible; }\n\n.block-editor-block-preview__content {\n position: absolute;\n top: 0;\n left: 0;\n transform-origin: top left;\n text-align: initial;\n margin: 0;\n overflow: visible;\n min-height: auto; }\n .block-editor-block-preview__container .block-editor-block-preview__content.is-centered .block-editor-block-list__layout,\n .block-editor-block-preview__container .block-editor-block-preview__content.is-centered .block-editor-block-list__block {\n padding: 0; }\n .block-editor-block-preview__content .block-editor-block-list__insertion-point,\n .block-editor-block-preview__content .block-editor-block-drop-zone,\n .block-editor-block-preview__content .reusable-block-indicator,\n .block-editor-block-preview__content .block-list-appender {\n display: none; }\n\n.block-editor-block-settings-menu__popover .components-dropdown-menu__menu {\n padding: 0; }\n\n.block-editor-block-styles {\n display: flex;\n flex-wrap: wrap;\n justify-content: space-between; }\n\n.block-editor-block-styles__item {\n width: calc(50% - 4px);\n margin: 4px 0;\n flex-shrink: 0;\n cursor: pointer;\n overflow: hidden;\n border-radius: 4px;\n padding: 6px;\n padding-top: calc(50% * 0.75 - 4px * 1.5); }\n .block-editor-block-styles__item:focus {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #007cba;\n outline: 2px solid transparent; }\n body.admin-color-sunrise .block-editor-block-styles__item:focus {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #d1864a; }\n body.admin-color-ocean .block-editor-block-styles__item:focus {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #a3b9a2; }\n body.admin-color-midnight .block-editor-block-styles__item:focus {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #e14d43; }\n body.admin-color-ectoplasm .block-editor-block-styles__item:focus {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #a7b656; }\n body.admin-color-coffee .block-editor-block-styles__item:focus {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #c2a68c; }\n body.admin-color-blue .block-editor-block-styles__item:focus {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #d9ab59; }\n body.admin-color-light .block-editor-block-styles__item:focus {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #0085ba; }\n .block-editor-block-styles__item:hover {\n border-color: #007cba;\n color: #007cba !important; }\n body.admin-color-sunrise .block-editor-block-styles__item:hover {\n border-color: #d1864a;\n color: #d1864a !important; }\n body.admin-color-ocean .block-editor-block-styles__item:hover {\n border-color: #a3b9a2;\n color: #a3b9a2 !important; }\n body.admin-color-midnight .block-editor-block-styles__item:hover {\n border-color: #e14d43;\n color: #e14d43 !important; }\n body.admin-color-ectoplasm .block-editor-block-styles__item:hover {\n border-color: #a7b656;\n color: #a7b656 !important; }\n body.admin-color-coffee .block-editor-block-styles__item:hover {\n border-color: #c2a68c;\n color: #c2a68c !important; }\n body.admin-color-blue .block-editor-block-styles__item:hover {\n border-color: #d9ab59;\n color: #d9ab59 !important; }\n body.admin-color-light .block-editor-block-styles__item:hover {\n border-color: #0085ba;\n color: #0085ba !important; }\n .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {\n border-color: #007cba; }\n body.admin-color-sunrise .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {\n border-color: #d1864a; }\n body.admin-color-ocean .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {\n border-color: #a3b9a2; }\n body.admin-color-midnight .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {\n border-color: #e14d43; }\n body.admin-color-ectoplasm .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {\n border-color: #a7b656; }\n body.admin-color-coffee .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {\n border-color: #c2a68c; }\n body.admin-color-blue .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {\n border-color: #d9ab59; }\n body.admin-color-light .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {\n border-color: #0085ba; }\n .block-editor-block-styles__item.is-active .block-editor-block-styles__item-label {\n font-weight: bold; }\n .block-editor-block-styles__item.is-active .block-editor-block-styles__item-preview {\n border: 2px solid #1e1e1e; }\n\n.block-editor-block-styles__item-preview {\n outline: 1px solid transparent;\n padding: 0;\n border: 1px solid rgba(30, 30, 30, 0.2);\n border-radius: 4px;\n display: flex;\n overflow: hidden;\n background: #fff;\n padding-top: 75%;\n margin-top: -75%; }\n .block-editor-block-styles__item-preview .block-editor-block-preview__container {\n padding-top: 0;\n margin: 0;\n margin-top: -75%; }\n\n.block-editor-block-styles__item-label {\n text-align: center;\n padding: 4px 2px; }\n\n.block-editor-block-switcher {\n position: relative; }\n\n.block-editor-block-switcher__toggle {\n position: relative; }\n .block-editor-block-switcher__toggle::after {\n display: none;\n content: \"\";\n position: absolute;\n bottom: 1px;\n right: 0;\n border-color: transparent;\n border-style: solid;\n border-width: 4px;\n border-right-color: currentColor;\n border-bottom-color: currentColor; }\n\n.components-button.block-editor-block-switcher__toggle,\n.components-button.block-editor-block-switcher__no-switcher-icon {\n margin: 0;\n display: block;\n height: 48px; }\n .components-button.block-editor-block-switcher__toggle .block-editor-block-icon,\n .components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-icon {\n margin: auto; }\n\n.components-button.block-editor-block-switcher__no-switcher-icon {\n width: 48px; }\n .components-button.block-editor-block-switcher__no-switcher-icon .block-editor-blocks-icon {\n margin-right: auto;\n margin-left: auto; }\n\n.components-button.block-editor-block-switcher__no-switcher-icon:disabled {\n opacity: 0.84; }\n .components-button.block-editor-block-switcher__no-switcher-icon:disabled .block-editor-block-icon.has-colors {\n color: #1e1e1e !important; }\n\n.block-editor-block-toolbar .components-toolbar .components-button.block-editor-block-switcher__toggle.has-icon {\n padding: 0; }\n .block-editor-block-toolbar .components-toolbar .components-button.block-editor-block-switcher__toggle.has-icon .block-editor-block-icon {\n height: 100%;\n position: relative;\n margin: 0 auto;\n display: flex;\n align-items: center; }\n .block-editor-block-toolbar .components-toolbar .components-button.block-editor-block-switcher__toggle.has-icon::before {\n top: 8px;\n right: 8px;\n bottom: 8px;\n left: 8px; }\n\n.components-popover.block-editor-block-switcher__popover .components-popover__content {\n min-width: 300px;\n max-width: calc(340px * 2);\n display: flex;\n background: #fff;\n box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);\n padding: 0; }\n .components-popover.block-editor-block-switcher__popover .components-popover__content .components-menu-group {\n padding: 16px 24px; }\n .components-popover.block-editor-block-switcher__popover .components-popover__content .components-menu-group + .components-menu-group {\n border-color: #ccc; }\n\n.block-editor-block-switcher__popover .components-popover__content .block-editor-block-switcher__container {\n min-width: 300px;\n max-width: 340px;\n width: 50%; }\n\n.block-editor-block-switcher__popover .components-popover__content .block-editor-block-switcher__label {\n margin-bottom: 8px;\n color: #757575; }\n\n@media (min-width: 782px) {\n .block-editor-block-switcher__popover .components-popover__content {\n position: relative; }\n .block-editor-block-switcher__popover .components-popover__content .block-editor-block-switcher__preview {\n border-left: 1px solid #e2e4e7;\n box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);\n background: #fff;\n width: 300px;\n height: auto;\n position: -webkit-sticky;\n position: sticky;\n -ms-grid-row-align: stretch;\n align-self: stretch;\n top: 0;\n padding: 10px; } }\n\n.block-editor-block-switcher__popover .components-popover__content .components-panel__body {\n border: 0;\n position: relative;\n z-index: 1; }\n\n.block-editor-block-switcher__popover .components-popover__content .components-panel__body + .components-panel__body {\n border-top: 1px solid #e2e4e7; }\n\n.block-editor-block-switcher__popover .block-editor-block-styles {\n margin: 0 -3px; }\n\n.block-editor-block-switcher__popover .block-editor-block-types-list {\n margin: 12px 0 0 0; }\n\n.block-editor-block-switcher__preview-title {\n margin-bottom: 10px;\n color: #6c7781; }\n\n.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__toggle,\n.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon {\n height: 48px; }\n\n.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon {\n width: 48px; }\n\n.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__toggle::after {\n display: block; }\n\n.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__toggle .block-editor-block-icon,\n.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__toggle .block-editor-block-switcher__transform {\n width: 48px;\n height: 48px; }\n\n.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__toggle .block-editor-block-switcher__transform {\n padding: 12px; }\n\n.block-editor-block-types-list {\n list-style: none;\n padding: 4px;\n margin-left: -4px;\n margin-right: -4px;\n overflow: hidden;\n display: flex;\n flex-wrap: wrap; }\n\n.block-editor-block-variation-picker .components-placeholder__instructions {\n margin-bottom: 0; }\n\n.block-editor-block-variation-picker .components-placeholder__fieldset {\n flex-direction: column; }\n\n.block-editor-block-variation-picker.has-many-variations .components-placeholder__fieldset {\n max-width: 90%; }\n\n.block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations {\n display: flex;\n justify-content: flex-start;\n flex-direction: row;\n flex-wrap: wrap;\n width: 100%;\n margin: 16px 0;\n padding: 0;\n list-style: none; }\n .block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations > li {\n list-style: none;\n margin: 8px 8px 0 0;\n flex-shrink: 1;\n max-width: 100px; }\n .block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations .block-editor-block-variation-picker__variation {\n padding: 8px; }\n\n.block-editor-block-variation-picker__variation {\n width: 100%; }\n .block-editor-block-variation-picker__variation.components-button.has-icon {\n justify-content: center;\n width: auto; }\n .block-editor-block-variation-picker__variation.components-button.has-icon.is-secondary {\n background-color: #fff; }\n .block-editor-block-variation-picker__variation.components-button {\n height: auto;\n padding: 0; }\n .block-editor-block-variation-picker__variation::before {\n content: \"\";\n padding-bottom: 100%; }\n .block-editor-block-variation-picker__variation:first-child {\n margin-left: 0; }\n .block-editor-block-variation-picker__variation:last-child {\n margin-right: 0; }\n\n.block-editor-button-block-appender {\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n padding: 8px;\n width: 100%;\n height: auto;\n color: #1e1e1e;\n box-shadow: inset 0 0 0 1px #1e1e1e; }\n .block-editor-button-block-appender:hover {\n box-shadow: inset 0 0 0 1px #007cba; }\n body.admin-color-sunrise .block-editor-button-block-appender:hover {\n box-shadow: inset 0 0 0 1px #d1864a; }\n body.admin-color-ocean .block-editor-button-block-appender:hover {\n box-shadow: inset 0 0 0 1px #a3b9a2; }\n body.admin-color-midnight .block-editor-button-block-appender:hover {\n box-shadow: inset 0 0 0 1px #e14d43; }\n body.admin-color-ectoplasm .block-editor-button-block-appender:hover {\n box-shadow: inset 0 0 0 1px #a7b656; }\n body.admin-color-coffee .block-editor-button-block-appender:hover {\n box-shadow: inset 0 0 0 1px #c2a68c; }\n body.admin-color-blue .block-editor-button-block-appender:hover {\n box-shadow: inset 0 0 0 1px #d9ab59; }\n body.admin-color-light .block-editor-button-block-appender:hover {\n box-shadow: inset 0 0 0 1px #0085ba; }\n .block-editor-button-block-appender:focus {\n box-shadow: inset 0 0 0 2px #007cba; }\n body.admin-color-sunrise .block-editor-button-block-appender:focus {\n box-shadow: inset 0 0 0 2px #d1864a; }\n body.admin-color-ocean .block-editor-button-block-appender:focus {\n box-shadow: inset 0 0 0 2px #a3b9a2; }\n body.admin-color-midnight .block-editor-button-block-appender:focus {\n box-shadow: inset 0 0 0 2px #e14d43; }\n body.admin-color-ectoplasm .block-editor-button-block-appender:focus {\n box-shadow: inset 0 0 0 2px #a7b656; }\n body.admin-color-coffee .block-editor-button-block-appender:focus {\n box-shadow: inset 0 0 0 2px #c2a68c; }\n body.admin-color-blue .block-editor-button-block-appender:focus {\n box-shadow: inset 0 0 0 2px #d9ab59; }\n body.admin-color-light .block-editor-button-block-appender:focus {\n box-shadow: inset 0 0 0 2px #0085ba; }\n .block-editor-button-block-appender:active {\n color: #000; }\n .block-editor-button-block-appender.block-list-appender__toggle {\n background: #1e1e1e;\n color: #fff;\n box-shadow: none;\n width: 24px;\n height: 24px;\n padding: 0;\n margin-left: 8px; }\n .block-editor-button-block-appender.block-list-appender__toggle:active {\n color: #fff; }\n\n.block-editor-color-gradient-control__color-indicator {\n margin-bottom: 8px; }\n\n.block-editor-color-gradient-control__button-tabs {\n display: block;\n margin-bottom: 8px; }\n\n.block-editor-panel-color-gradient-settings .component-color-indicator {\n vertical-align: text-bottom; }\n\n.block-editor-panel-color-gradient-settings__panel-title .component-color-indicator {\n display: inline-block; }\n\n.block-editor-panel-color-gradient-settings.is-opened .block-editor-panel-color-gradient-settings__panel-title .component-color-indicator {\n display: none; }\n\n.block-editor-contrast-checker > .components-notice {\n margin: 0; }\n\n.block-editor-default-block-appender {\n clear: both;\n margin-left: auto;\n margin-right: auto;\n position: relative; }\n .block-editor-default-block-appender[data-root-client-id=\"\"] .block-editor-default-block-appender__content:hover {\n outline: 1px solid transparent; }\n .block-editor-default-block-appender textarea.block-editor-default-block-appender__content {\n font-family: \"Noto Serif\", serif;\n font-size: 16px;\n border: none;\n background: none;\n box-shadow: none;\n display: block;\n cursor: text;\n width: 100%;\n outline: 1px solid transparent;\n transition: 0.2s outline;\n resize: none;\n margin-top: 28px;\n margin-bottom: 28px;\n padding: 0 50px 0 0;\n color: rgba(14, 28, 46, 0.62); }\n @media (prefers-reduced-motion: reduce) {\n .block-editor-default-block-appender textarea.block-editor-default-block-appender__content {\n transition-duration: 0s; } }\n .is-dark-theme .block-editor-default-block-appender textarea.block-editor-default-block-appender__content {\n color: rgba(255, 255, 255, 0.65); }\n .block-editor-default-block-appender .components-drop-zone__content-icon {\n display: none; }\n\n.block-editor-default-block-appender__content {\n line-height: 1.8; }\n\n.block-editor-block-list__empty-block-inserter.block-editor-block-list__empty-block-inserter,\n.block-editor-default-block-appender .block-editor-inserter {\n position: absolute;\n top: 2px;\n height: 32px; }\n .block-editor-block-list__empty-block-inserter.block-editor-block-list__empty-block-inserter .block-editor-inserter__toggle,\n .block-editor-default-block-appender .block-editor-inserter .block-editor-inserter__toggle {\n margin-right: 0; }\n\n.block-editor-block-list__empty-block-inserter,\n.block-editor-default-block-appender .block-editor-inserter {\n right: 8px; }\n @media (min-width: 600px) {\n .block-editor-block-list__empty-block-inserter,\n .block-editor-default-block-appender .block-editor-inserter {\n display: flex;\n height: 100%; } }\n .block-editor-block-list__empty-block-inserter:disabled,\n .block-editor-default-block-appender .block-editor-inserter:disabled {\n display: none; }\n\n@media (min-width: 600px) {\n .block-editor-default-block-appender .block-editor-inserter {\n align-items: center; } }\n\n.block-editor-link-control {\n position: relative;\n min-width: 360px; }\n .components-popover__content .block-editor-link-control {\n min-width: auto;\n width: 90vw;\n max-width: 360px; }\n\n.block-editor-link-control__search-input-wrapper {\n position: relative; }\n\n.block-editor-link-control .block-editor-link-control__search-input.block-editor-link-control__search-input input[type=\"text\"] {\n width: calc(100% - 32px);\n display: block;\n padding: 11px 16px;\n padding-right: 36px;\n margin: 16px;\n position: relative;\n border: 1px solid #e2e4e7;\n border-radius: 4px;\n /* Fonts smaller than 16px causes mobile safari to zoom. */\n font-size: 16px; }\n @media (min-width: 600px) {\n .block-editor-link-control .block-editor-link-control__search-input.block-editor-link-control__search-input input[type=\"text\"] {\n font-size: 13px; } }\n .block-editor-link-control .block-editor-link-control__search-input.block-editor-link-control__search-input input[type=\"text\"]:focus {\n color: #191e23;\n border-color: #007cba;\n box-shadow: 0 0 0 1px #007cba;\n outline: 2px solid transparent; }\n\n.block-editor-link-control__search-error {\n margin: -8px 16px 16px; }\n\n.block-editor-link-control__search-actions {\n position: absolute;\n /*\n\t * Actions must be positioned on top of URLInput, since the input will grow\n\t * when suggestions are rendered.\n\t *\n\t * Compensate for:\n\t * - Input margin ($grid-unit-20)\n\t * - Border (1px)\n\t * - Vertically, for the difference in height between the input (40px) and\n\t * the icon buttons.\n\t * - Horizontally, pad to the minimum of: default input padding, or the\n\t * equivalent of the vertical padding.\n\t */\n top: 19px;\n right: 19px; }\n\n.block-editor-link-control__search-results-wrapper {\n position: relative;\n margin-top: -15px; }\n .block-editor-link-control__search-results-wrapper::before, .block-editor-link-control__search-results-wrapper::after {\n content: \"\";\n position: absolute;\n left: -1px;\n right: 16px;\n display: block;\n pointer-events: none;\n z-index: 100; }\n .block-editor-link-control__search-results-wrapper::before {\n height: 8px;\n top: 0;\n bottom: auto;\n background: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0) 100%); }\n .block-editor-link-control__search-results-wrapper::after {\n height: 16px;\n bottom: 0;\n top: auto;\n background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%); }\n\n.block-editor-link-control__search-results-label {\n padding: 15px 30px 0 30px;\n display: block;\n font-size: 1.1em; }\n\n.block-editor-link-control__search-results {\n margin: 0;\n padding: 8px 16px 16px;\n max-height: 200px;\n overflow-y: auto; }\n .block-editor-link-control__search-results.is-loading {\n opacity: 0.2; }\n\n.block-editor-link-control__search-item {\n position: relative;\n display: flex;\n align-items: center;\n font-size: 13px;\n cursor: pointer;\n background: #fff;\n width: 100%;\n border: none;\n text-align: left;\n padding: 10px 15px;\n border-radius: 5px;\n height: auto; }\n .block-editor-link-control__search-item:hover, .block-editor-link-control__search-item:focus {\n background-color: #edeff0; }\n .block-editor-link-control__search-item.is-selected {\n background: #f3f4f5; }\n .block-editor-link-control__search-item.is-selected .block-editor-link-control__search-item-type {\n background: #fff; }\n .block-editor-link-control__search-item.is-current {\n background: transparent;\n border: 0;\n width: 100%;\n cursor: default;\n padding: 16px;\n padding-left: 24px; }\n .block-editor-link-control__search-item .block-editor-link-control__search-item-header {\n display: block;\n margin-right: 24px;\n overflow: hidden;\n white-space: nowrap; }\n .block-editor-link-control__search-item .block-editor-link-control__search-item-icon {\n margin-right: 1em;\n min-width: 24px; }\n .block-editor-link-control__search-item .block-editor-link-control__search-item-info,\n .block-editor-link-control__search-item .block-editor-link-control__search-item-title {\n max-width: 230px;\n overflow: hidden;\n text-overflow: ellipsis; }\n .block-editor-link-control__search-item .block-editor-link-control__search-item-title mark {\n color: #191e23; }\n .block-editor-link-control__search-item .block-editor-link-control__search-item-title {\n display: block;\n margin-bottom: 0.2em;\n font-weight: 500; }\n .block-editor-link-control__search-item .block-editor-link-control__search-item-title mark {\n font-weight: 700;\n color: #000;\n background-color: transparent; }\n .block-editor-link-control__search-item .block-editor-link-control__search-item-title span {\n font-weight: normal; }\n .block-editor-link-control__search-item .block-editor-link-control__search-item-info {\n display: block;\n color: #6c7781;\n font-size: 0.9em;\n line-height: 1.3; }\n .block-editor-link-control__search-item .block-editor-link-control__search-item-type {\n display: block;\n padding: 3px 8px;\n margin-left: auto;\n font-size: 0.9em;\n background-color: #f3f4f5;\n border-radius: 2px; }\n\n.block-editor-link-control__loading {\n margin: 16px;\n display: flex;\n align-items: center; }\n .block-editor-link-control__loading .components-spinner {\n margin-top: 0; }\n\n.components-button + .block-editor-link-control__search-create {\n margin-top: 20px;\n overflow: visible;\n padding: 12px 15px; }\n .components-button + .block-editor-link-control__search-create::before {\n content: \"\";\n position: absolute;\n top: -10px;\n left: 0;\n display: block;\n width: 100%;\n border-top: 1px solid #e2e4e7; }\n\n.block-editor-link-control__search-results div[role=\"menu\"] > .block-editor-link-control__search-item.block-editor-link-control__search-item {\n padding: 10px; }\n\n.block-editor-link-control__settings {\n border-top: 1px solid #e2e4e7;\n margin: 0;\n padding: 16px 24px; }\n .block-editor-link-control__settings :last-child {\n margin-bottom: 0; }\n\n.block-editor-link-control__setting {\n margin-bottom: 16px; }\n .block-editor-link-control__setting :last-child {\n margin-bottom: 0; }\n\n.block-editor-link-control .block-editor-link-control__search-input .components-spinner {\n display: block; }\n .block-editor-link-control .block-editor-link-control__search-input .components-spinner.components-spinner {\n position: absolute;\n left: auto;\n bottom: auto;\n /*\n\t\t * Position spinner to the left of the actions.\n\t\t *\n\t\t * Compensate for:\n\t\t * - Input margin ($grid-unit-20)\n\t\t * - Border (1px)\n\t\t * - Vertically, for the difference in height between the input (40px)\n\t\t * and the spinner.\n\t\t * - Horizontally, adjust for the width occupied by the icon buttons,\n\t\t * then artificially create spacing that mimics as if the spinner\n\t\t * were center-padded to the same width as an icon button.\n\t\t */\n top: 28px;\n right: 62px; }\n\n.block-editor-link-control__search-item-action {\n margin-left: auto;\n flex-shrink: 0; }\n\n.block-editor-image-size-control {\n margin-bottom: 1em; }\n .block-editor-image-size-control .block-editor-image-size-control__row {\n display: flex;\n justify-content: space-between; }\n .block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__width,\n .block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__height {\n margin-bottom: 0.5em; }\n .block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__width input,\n .block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__height input {\n line-height: 1.25; }\n .block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__width {\n margin-right: 5px; }\n .block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__height {\n margin-left: 5px; }\n\n.block-editor-block-list__layout.has-overlay::after {\n content: \"\";\n position: absolute;\n top: -14px;\n right: -14px;\n bottom: -14px;\n left: -14px;\n z-index: 60; }\n\n[data-align=\"full\"] .has-overlay::after {\n right: 0;\n left: 0; }\n\n.block-editor-block-types-list__list-item {\n display: block;\n width: 33.33%;\n padding: 0;\n margin: 0 0 12px; }\n\n.components-button.block-editor-block-types-list__item {\n display: flex;\n flex-direction: column;\n width: 100%;\n font-size: 13px;\n color: #32373c;\n padding: 0 4px;\n align-items: stretch;\n justify-content: center;\n cursor: pointer;\n background: transparent;\n word-break: break-word;\n border-radius: 4px;\n border: 1px solid transparent;\n transition: all 0.05s ease-in-out;\n position: relative;\n height: auto; }\n @media (prefers-reduced-motion: reduce) {\n .components-button.block-editor-block-types-list__item {\n transition-duration: 0s; } }\n .components-button.block-editor-block-types-list__item:disabled {\n opacity: 0.6;\n cursor: default; }\n .components-button.block-editor-block-types-list__item:not(:disabled):hover {\n border-color: #007cba;\n color: #007cba !important; }\n body.admin-color-sunrise .components-button.block-editor-block-types-list__item:not(:disabled):hover {\n border-color: #d1864a;\n color: #d1864a !important; }\n body.admin-color-ocean .components-button.block-editor-block-types-list__item:not(:disabled):hover {\n border-color: #a3b9a2;\n color: #a3b9a2 !important; }\n body.admin-color-midnight .components-button.block-editor-block-types-list__item:not(:disabled):hover {\n border-color: #e14d43;\n color: #e14d43 !important; }\n body.admin-color-ectoplasm .components-button.block-editor-block-types-list__item:not(:disabled):hover {\n border-color: #a7b656;\n color: #a7b656 !important; }\n body.admin-color-coffee .components-button.block-editor-block-types-list__item:not(:disabled):hover {\n border-color: #c2a68c;\n color: #c2a68c !important; }\n body.admin-color-blue .components-button.block-editor-block-types-list__item:not(:disabled):hover {\n border-color: #d9ab59;\n color: #d9ab59 !important; }\n body.admin-color-light .components-button.block-editor-block-types-list__item:not(:disabled):hover {\n border-color: #0085ba;\n color: #0085ba !important; }\n .components-button.block-editor-block-types-list__item:not(:disabled).is-active {\n color: #fff;\n background: #1e1e1e;\n outline: 2px solid transparent;\n outline-offset: -2px; }\n\n.block-editor-block-types-list__item-icon {\n padding: 12px 20px;\n border-radius: 4px;\n color: #1e1e1e;\n transition: all 0.05s ease-in-out; }\n @media (prefers-reduced-motion: reduce) {\n .block-editor-block-types-list__item-icon {\n transition-duration: 0s; } }\n .block-editor-block-types-list__item-icon .block-editor-block-icon {\n margin-left: auto;\n margin-right: auto; }\n .block-editor-block-types-list__item-icon svg {\n transition: all 0.15s ease-out; }\n @media (prefers-reduced-motion: reduce) {\n .block-editor-block-types-list__item-icon svg {\n transition-duration: 0s; } }\n\n.block-editor-block-types-list__item-title {\n padding: 4px 2px 8px; }\n\n.modal-open .block-editor-media-replace-flow__options {\n display: none; }\n\n.block-editor-media-flow__url-input {\n padding: 0 15px;\n max-width: 255px;\n padding-bottom: 10px; }\n .block-editor-media-flow__url-input input {\n max-width: 180px; }\n\n.block-editor-media-replace-flow__link-viewer .components-external-link__icon {\n display: none; }\n\n.block-editor-media-replace-flow__link-viewer .components-visually-hidden {\n position: initial; }\n\n.block-editor-media-replace-flow__link-viewer .components-button {\n flex-shrink: 0; }\n\n.block-editor-media-placeholder__url-input-container .block-editor-media-placeholder__button {\n margin-bottom: 0; }\n\n.block-editor-media-placeholder__url-input-form {\n display: flex; }\n .block-editor-media-placeholder__url-input-form input[type=\"url\"].block-editor-media-placeholder__url-input-field {\n width: 100%;\n flex-grow: 1;\n border: none;\n border-radius: 0;\n margin: 2px; }\n @media (min-width: 600px) {\n .block-editor-media-placeholder__url-input-form input[type=\"url\"].block-editor-media-placeholder__url-input-field {\n width: 300px; } }\n\n.block-editor-media-placeholder__url-input-submit-button {\n flex-shrink: 1; }\n\n.block-editor-media-placeholder__button {\n margin-bottom: 0.5rem; }\n\n.block-editor-media-placeholder__cancel-button.is-link {\n margin: 1em;\n display: block; }\n\n.block-editor-media-placeholder.is-appender {\n min-height: 0; }\n .block-editor-media-placeholder.is-appender:hover {\n cursor: pointer;\n box-shadow: 0 0 0 1px #007cba; }\n body.admin-color-sunrise .block-editor-media-placeholder.is-appender:hover {\n box-shadow: 0 0 0 1px #d1864a; }\n body.admin-color-ocean .block-editor-media-placeholder.is-appender:hover {\n box-shadow: 0 0 0 1px #a3b9a2; }\n body.admin-color-midnight .block-editor-media-placeholder.is-appender:hover {\n box-shadow: 0 0 0 1px #e14d43; }\n body.admin-color-ectoplasm .block-editor-media-placeholder.is-appender:hover {\n box-shadow: 0 0 0 1px #a7b656; }\n body.admin-color-coffee .block-editor-media-placeholder.is-appender:hover {\n box-shadow: 0 0 0 1px #c2a68c; }\n body.admin-color-blue .block-editor-media-placeholder.is-appender:hover {\n box-shadow: 0 0 0 1px #d9ab59; }\n body.admin-color-light .block-editor-media-placeholder.is-appender:hover {\n box-shadow: 0 0 0 1px #0085ba; }\n\n.block-editor-multi-selection-inspector__card {\n display: flex;\n align-items: flex-start;\n padding: 16px; }\n\n.block-editor-multi-selection-inspector__card-content {\n flex-grow: 1; }\n\n.block-editor-multi-selection-inspector__card-title {\n font-weight: 500;\n margin-bottom: 5px; }\n\n.block-editor-multi-selection-inspector__card-description {\n font-size: 13px; }\n\n.block-editor-multi-selection-inspector__card .block-editor-block-icon {\n margin-left: -2px;\n margin-right: 10px;\n padding: 0 3px;\n width: 36px;\n height: 24px; }\n\n.block-editor .block-editor-plain-text {\n box-shadow: none;\n font-family: inherit;\n font-size: inherit;\n color: inherit;\n line-height: inherit;\n border: none;\n padding: 0;\n margin: 0;\n width: 100%; }\n\n.block-editor-responsive-block-control {\n margin-bottom: 28px;\n border-bottom: 1px solid #d7dade;\n padding-bottom: 14px; }\n .block-editor-responsive-block-control:last-child {\n padding-bottom: 0;\n border-bottom: 0; }\n\n.block-editor-responsive-block-control__title {\n margin: 0;\n margin-bottom: 0.6em;\n margin-left: -3px; }\n\n.block-editor-responsive-block-control__label {\n font-weight: 600;\n margin-bottom: 0.6em;\n margin-left: -3px; }\n\n.block-editor-responsive-block-control__inner {\n margin-left: -1px; }\n\n.block-editor-responsive-block-control__toggle {\n margin-left: 1px; }\n\n.block-editor-responsive-block-control .components-base-control__help {\n border: 0;\n clip: rect(1px, 1px, 1px, 1px);\n -webkit-clip-path: inset(50%);\n clip-path: inset(50%);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px;\n word-wrap: normal !important; }\n\n.block-editor-format-toolbar .components-dropdown-menu__toggle {\n justify-content: center; }\n\n.block-editor-rich-text__editable > p:first-child {\n margin-top: 0; }\n\n.block-editor-rich-text__editable a {\n color: #007fac; }\n\n.block-editor-rich-text__editable code {\n padding: 2px;\n border-radius: 2px;\n color: #23282d;\n background: #f3f4f5;\n font-family: Menlo, Consolas, monaco, monospace;\n font-size: inherit; }\n\n.block-editor-rich-text__editable [data-rich-text-placeholder] {\n pointer-events: none; }\n\n.block-editor-rich-text__editable [data-rich-text-placeholder]::after {\n content: attr(data-rich-text-placeholder);\n opacity: 0.62; }\n\n.block-editor-rich-text__editable:focus {\n outline: none; }\n .block-editor-rich-text__editable:focus [data-rich-text-format-boundary] {\n border-radius: 2px; }\n .block-editor-rich-text__editable:focus:not(.keep-placeholder-on-focus) [data-rich-text-placeholder]::after {\n display: none; }\n\nfigcaption.block-editor-rich-text__editable [data-rich-text-placeholder]::before {\n opacity: 0.8; }\n\n.components-popover.block-editor-rich-text__inline-format-toolbar {\n z-index: 99998; }\n .components-popover.block-editor-rich-text__inline-format-toolbar .components-popover__content {\n width: auto;\n min-width: auto;\n margin-bottom: 8px;\n box-shadow: none;\n border: 1px solid #1e1e1e;\n border-radius: 2px;\n background-color: #fff; }\n .components-popover.block-editor-rich-text__inline-format-toolbar .components-toolbar {\n border: none; }\n .components-popover.block-editor-rich-text__inline-format-toolbar .components-toolbar__control,\n .components-popover.block-editor-rich-text__inline-format-toolbar .components-dropdown-menu__toggle {\n min-width: 48px;\n min-height: 48px;\n padding-left: 12px;\n padding-right: 12px; }\n\n.block-editor-skip-to-selected-block {\n position: absolute;\n top: -9999em; }\n .block-editor-skip-to-selected-block:focus {\n height: auto;\n width: auto;\n display: block;\n font-size: 14px;\n font-weight: 600;\n padding: 15px 23px 14px;\n background: #f1f1f1;\n color: #11a0d2;\n line-height: normal;\n box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);\n text-decoration: none;\n outline: none;\n z-index: 100000; }\n body.admin-color-sunrise .block-editor-skip-to-selected-block:focus {\n color: #c8b03c; }\n body.admin-color-ocean .block-editor-skip-to-selected-block:focus {\n color: #a89d8a; }\n body.admin-color-midnight .block-editor-skip-to-selected-block:focus {\n color: #77a6b9; }\n body.admin-color-ectoplasm .block-editor-skip-to-selected-block:focus {\n color: #c77430; }\n body.admin-color-coffee .block-editor-skip-to-selected-block:focus {\n color: #9fa47b; }\n body.admin-color-blue .block-editor-skip-to-selected-block:focus {\n color: #d9ab59; }\n body.admin-color-light .block-editor-skip-to-selected-block:focus {\n color: #c75726; }\n\n.block-editor-tool-selector__help {\n margin-top: 8px;\n margin-left: -12px;\n margin-right: -12px;\n margin-bottom: -12px;\n padding: 12px 20px;\n border-top: 1px solid #e2e4e7;\n color: #6c7781; }\n\n.block-editor-block-list__block .block-editor-url-input,\n.components-popover .block-editor-url-input,\n.block-editor-url-input {\n flex-grow: 1;\n position: relative;\n padding: 1px; }\n .block-editor-block-list__block .block-editor-url-input input[type=\"text\"],\n .components-popover .block-editor-url-input input[type=\"text\"],\n .block-editor-url-input input[type=\"text\"] {\n width: 100%;\n padding: 8px;\n border: none;\n border-radius: 0;\n margin-left: 0;\n margin-right: 0;\n /* Fonts smaller than 16px causes mobile safari to zoom. */\n font-size: 16px; }\n @media (min-width: 600px) {\n .block-editor-block-list__block .block-editor-url-input input[type=\"text\"],\n .components-popover .block-editor-url-input input[type=\"text\"],\n .block-editor-url-input input[type=\"text\"] {\n width: 300px; } }\n @media (min-width: 600px) {\n .block-editor-block-list__block .block-editor-url-input input[type=\"text\"],\n .components-popover .block-editor-url-input input[type=\"text\"],\n .block-editor-url-input input[type=\"text\"] {\n font-size: 13px; } }\n .block-editor-block-list__block .block-editor-url-input input[type=\"text\"]::-ms-clear,\n .components-popover .block-editor-url-input input[type=\"text\"]::-ms-clear,\n .block-editor-url-input input[type=\"text\"]::-ms-clear {\n display: none; }\n .block-editor-block-list__block .block-editor-url-input.has-border input[type=\"text\"],\n .components-popover .block-editor-url-input.has-border input[type=\"text\"],\n .block-editor-url-input.has-border input[type=\"text\"] {\n border: 1px solid #555d66;\n border-radius: 4px; }\n .block-editor-block-list__block .block-editor-url-input.is-full-width,\n .components-popover .block-editor-url-input.is-full-width,\n .block-editor-url-input.is-full-width {\n width: 100%; }\n .block-editor-block-list__block .block-editor-url-input.is-full-width input[type=\"text\"],\n .components-popover .block-editor-url-input.is-full-width input[type=\"text\"],\n .block-editor-url-input.is-full-width input[type=\"text\"] {\n width: 100%; }\n .block-editor-block-list__block .block-editor-url-input.is-full-width__suggestions,\n .components-popover .block-editor-url-input.is-full-width__suggestions,\n .block-editor-url-input.is-full-width__suggestions {\n width: 100%; }\n .block-editor-block-list__block .block-editor-url-input .components-spinner,\n .components-popover .block-editor-url-input .components-spinner,\n .block-editor-url-input .components-spinner {\n position: absolute;\n right: 8px;\n bottom: 17px;\n margin: 0; }\n\n.block-editor-url-input__suggestions {\n max-height: 200px;\n transition: all 0.15s ease-in-out;\n padding: 4px 0;\n width: 302px;\n overflow-y: auto; }\n @media (prefers-reduced-motion: reduce) {\n .block-editor-url-input__suggestions {\n transition-duration: 0s; } }\n\n.block-editor-url-input__suggestions,\n.block-editor-url-input .components-spinner {\n display: none; }\n @media (min-width: 600px) {\n .block-editor-url-input__suggestions,\n .block-editor-url-input .components-spinner {\n display: inherit; } }\n\n.block-editor-url-input__suggestion {\n padding: 4px 8px;\n color: #6c7781;\n display: block;\n font-size: 13px;\n cursor: pointer;\n background: #fff;\n width: 100%;\n border: none;\n text-align: left;\n border: none;\n box-shadow: none; }\n .block-editor-url-input__suggestion:hover {\n background: #e2e4e7; }\n .block-editor-url-input__suggestion:focus, .block-editor-url-input__suggestion.is-selected {\n background: rgb(0, 113, 158);\n color: #fff;\n outline: none; }\n body.admin-color-sunrise .block-editor-url-input__suggestion:focus, body.admin-color-sunrise .block-editor-url-input__suggestion.is-selected {\n background: rgb(178, 114, 63); }\n body.admin-color-ocean .block-editor-url-input__suggestion:focus, body.admin-color-ocean .block-editor-url-input__suggestion.is-selected {\n background: rgb(139, 157, 138); }\n body.admin-color-midnight .block-editor-url-input__suggestion:focus, body.admin-color-midnight .block-editor-url-input__suggestion.is-selected {\n background: rgb(191, 65, 57); }\n body.admin-color-ectoplasm .block-editor-url-input__suggestion:focus, body.admin-color-ectoplasm .block-editor-url-input__suggestion.is-selected {\n background: rgb(142, 155, 73); }\n body.admin-color-coffee .block-editor-url-input__suggestion:focus, body.admin-color-coffee .block-editor-url-input__suggestion.is-selected {\n background: rgb(165, 141, 119); }\n body.admin-color-blue .block-editor-url-input__suggestion:focus, body.admin-color-blue .block-editor-url-input__suggestion.is-selected {\n background: rgb(111, 153, 173); }\n body.admin-color-light .block-editor-url-input__suggestion:focus, body.admin-color-light .block-editor-url-input__suggestion.is-selected {\n background: rgb(0, 113, 158); }\n\n.components-toolbar > .block-editor-url-input__button {\n position: inherit; }\n\n.block-editor-url-input__button .block-editor-url-input__back {\n margin-right: 4px;\n overflow: visible; }\n .block-editor-url-input__button .block-editor-url-input__back::after {\n content: \"\";\n position: absolute;\n display: block;\n width: 1px;\n height: 24px;\n right: -1px;\n background: #e2e4e7; }\n\n.block-editor-url-input__button-modal {\n box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);\n border: 1px solid #e2e4e7;\n background: #fff; }\n\n.block-editor-url-input__button-modal-line {\n display: flex;\n flex-direction: row;\n flex-grow: 1;\n flex-shrink: 1;\n min-width: 0;\n align-items: flex-start; }\n .block-editor-url-input__button-modal-line .components-button {\n flex-shrink: 0;\n width: 36px;\n height: 36px; }\n\n.block-editor-url-popover__additional-controls {\n border-top: 1px solid #e2e4e7; }\n\n.block-editor-url-popover__additional-controls > div[role=\"menu\"] .components-button:not(:disabled):not([aria-disabled=\"true\"]):not(.is-secondary) > svg {\n box-shadow: none; }\n\n.block-editor-url-popover__additional-controls div[role=\"menu\"] > .components-button {\n padding-left: 2px; }\n\n.block-editor-url-popover__row {\n display: flex; }\n\n.block-editor-url-popover__row > :not(.block-editor-url-popover__settings-toggle) {\n flex-grow: 1; }\n\n.block-editor-url-popover .components-button.has-icon {\n padding: 3px; }\n .block-editor-url-popover .components-button.has-icon > svg {\n padding: 5px;\n border-radius: 4px;\n height: 30px;\n width: 30px; }\n .block-editor-url-popover .components-button.has-icon:not(:disabled):focus {\n box-shadow: none; }\n .block-editor-url-popover .components-button.has-icon:not(:disabled):focus > svg {\n box-shadow: inset 0 0 0 2px rgb(0, 124, 186), inset 0 0 0 4px #fff;\n outline: 2px solid transparent; }\n body.admin-color-sunrise .block-editor-url-popover .components-button.has-icon:not(:disabled):focus > svg {\n box-shadow: inset 0 0 0 2px rgb(209, 134, 74), inset 0 0 0 4px #fff; }\n body.admin-color-ocean .block-editor-url-popover .components-button.has-icon:not(:disabled):focus > svg {\n box-shadow: inset 0 0 0 2px rgb(163, 185, 162), inset 0 0 0 4px #fff; }\n body.admin-color-midnight .block-editor-url-popover .components-button.has-icon:not(:disabled):focus > svg {\n box-shadow: inset 0 0 0 2px rgb(225, 77, 67), inset 0 0 0 4px #fff; }\n body.admin-color-ectoplasm .block-editor-url-popover .components-button.has-icon:not(:disabled):focus > svg {\n box-shadow: inset 0 0 0 2px rgb(167, 182, 86), inset 0 0 0 4px #fff; }\n body.admin-color-coffee .block-editor-url-popover .components-button.has-icon:not(:disabled):focus > svg {\n box-shadow: inset 0 0 0 2px rgb(194, 166, 140), inset 0 0 0 4px #fff; }\n body.admin-color-blue .block-editor-url-popover .components-button.has-icon:not(:disabled):focus > svg {\n box-shadow: inset 0 0 0 2px rgb(217, 171, 89), inset 0 0 0 4px #fff; }\n body.admin-color-light .block-editor-url-popover .components-button.has-icon:not(:disabled):focus > svg {\n box-shadow: inset 0 0 0 2px rgb(0, 133, 186), inset 0 0 0 4px #fff; }\n\n.block-editor-url-popover__settings-toggle {\n flex-shrink: 0;\n border-radius: 0;\n border-left: 1px solid #e2e4e7;\n margin-left: 1px; }\n .block-editor-url-popover__settings-toggle[aria-expanded=\"true\"] .dashicon {\n transform: rotate(180deg); }\n\n.block-editor-url-popover__input-container .components-base-control:last-child,\n.block-editor-url-popover__input-container .components-base-control:last-child .components-base-control__field {\n margin-bottom: 0; }\n\n.block-editor-url-popover__settings {\n display: block;\n padding: 16px;\n border-top: 1px solid #e2e4e7; }\n\n.block-editor-url-popover__link-editor,\n.block-editor-url-popover__link-viewer {\n display: flex; }\n .block-editor-url-popover__link-editor .block-editor-url-input .components-base-control__field,\n .block-editor-url-popover__link-viewer .block-editor-url-input .components-base-control__field {\n margin-bottom: 0; }\n .block-editor-url-popover__link-editor .block-editor-url-input .components-spinner,\n .block-editor-url-popover__link-viewer .block-editor-url-input .components-spinner {\n bottom: 9px; }\n\n.block-editor-url-popover__link-viewer-url {\n margin: 7px;\n flex-grow: 1;\n flex-shrink: 1;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n min-width: 150px;\n max-width: 500px; }\n .block-editor-url-popover__link-viewer-url.has-invalid-link {\n color: #d94f4f; }\n\n.block-editor-warning {\n align-items: center;\n display: flex;\n flex-wrap: wrap;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px;\n padding: 6px 12px;\n border: 1px solid #1e1e1e;\n border-radius: 2px;\n background-color: #fff; }\n .block-editor-warning .block-editor-warning__message {\n line-height: 1.4;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px;\n margin: 1em 0; }\n .block-editor-warning p.block-editor-warning__message.block-editor-warning__message {\n min-height: auto; }\n .block-editor-warning .block-editor-warning__contents {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n flex-wrap: wrap;\n align-items: baseline;\n width: 100%; }\n .block-editor-warning .block-editor-warning__actions {\n display: flex; }\n .block-editor-warning .block-editor-warning__action {\n margin: 0 0 0 8px; }\n\n.block-editor-warning__secondary {\n margin: auto 0 auto 8px; }\n\n.block-editor-writing-flow {\n display: flex;\n flex-direction: column; }\n\n.block-editor-writing-flow__click-redirect {\n cursor: text; }\n\n.html-anchor-control .components-external-link {\n display: block;\n margin-top: 8px; }\n\n#end-resizable-editor-section {\n display: none; }\n\n/**\n * Block Toolbar\n */\n.block-editor-block-toolbar {\n display: flex;\n flex-grow: 1;\n width: 100%;\n overflow: auto;\n position: relative;\n transition: border-color 0.1s linear, box-shadow 0.1s linear; }\n @media (prefers-reduced-motion: reduce) {\n .block-editor-block-toolbar {\n transition-duration: 0s; } }\n @media (min-width: 600px) {\n .block-editor-block-toolbar {\n overflow: inherit; } }\n .block-editor-block-toolbar .components-toolbar {\n background: none;\n line-height: 0;\n margin-top: -1px;\n margin-bottom: -1px;\n border: 0;\n border-right: 1px solid #e2e4e7; }\n .block-editor-block-toolbar > :last-child,\n .block-editor-block-toolbar > :last-child .components-toolbar {\n border-right: none; }\n\n.block-editor-block-toolbar .components-button,\n.block-editor-format-toolbar .components-button {\n position: relative;\n padding-left: 16px;\n padding-right: 16px; }\n .block-editor-block-toolbar .components-button:focus:enabled,\n .block-editor-format-toolbar .components-button:focus:enabled {\n box-shadow: none;\n outline: none; }\n .block-editor-block-toolbar .components-button::before,\n .block-editor-format-toolbar .components-button::before {\n content: \"\";\n position: absolute;\n display: block;\n border-radius: 2px;\n height: 32px;\n min-width: 32px;\n left: 8px;\n right: 8px; }\n .block-editor-block-toolbar .components-button svg,\n .block-editor-format-toolbar .components-button svg {\n position: relative;\n margin-left: auto;\n margin-right: auto; }\n .block-editor-block-toolbar .components-button.is-pressed,\n .block-editor-format-toolbar .components-button.is-pressed {\n color: #fff; }\n .block-editor-block-toolbar .components-button.is-pressed::before,\n .block-editor-format-toolbar .components-button.is-pressed::before {\n background: #1e1e1e; }\n .block-editor-block-toolbar .components-button:focus::before,\n .block-editor-format-toolbar .components-button:focus::before {\n box-shadow: inset 0 0 0 2px rgb(0, 124, 186), inset 0 0 0 4px #fff;\n outline: 2px solid transparent; }\n body.admin-color-sunrise .block-editor-block-toolbar .components-button:focus::before, body.admin-color-sunrise .block-editor-format-toolbar .components-button:focus::before {\n box-shadow: inset 0 0 0 2px rgb(209, 134, 74), inset 0 0 0 4px #fff; }\n body.admin-color-ocean .block-editor-block-toolbar .components-button:focus::before, body.admin-color-ocean .block-editor-format-toolbar .components-button:focus::before {\n box-shadow: inset 0 0 0 2px rgb(163, 185, 162), inset 0 0 0 4px #fff; }\n body.admin-color-midnight .block-editor-block-toolbar .components-button:focus::before, body.admin-color-midnight .block-editor-format-toolbar .components-button:focus::before {\n box-shadow: inset 0 0 0 2px rgb(225, 77, 67), inset 0 0 0 4px #fff; }\n body.admin-color-ectoplasm .block-editor-block-toolbar .components-button:focus::before, body.admin-color-ectoplasm .block-editor-format-toolbar .components-button:focus::before {\n box-shadow: inset 0 0 0 2px rgb(167, 182, 86), inset 0 0 0 4px #fff; }\n body.admin-color-coffee .block-editor-block-toolbar .components-button:focus::before, body.admin-color-coffee .block-editor-format-toolbar .components-button:focus::before {\n box-shadow: inset 0 0 0 2px rgb(194, 166, 140), inset 0 0 0 4px #fff; }\n body.admin-color-blue .block-editor-block-toolbar .components-button:focus::before, body.admin-color-blue .block-editor-format-toolbar .components-button:focus::before {\n box-shadow: inset 0 0 0 2px rgb(217, 171, 89), inset 0 0 0 4px #fff; }\n body.admin-color-light .block-editor-block-toolbar .components-button:focus::before, body.admin-color-light .block-editor-format-toolbar .components-button:focus::before {\n box-shadow: inset 0 0 0 2px rgb(0, 133, 186), inset 0 0 0 4px #fff; }\n .block-editor-block-toolbar .components-button.has-icon,\n .block-editor-format-toolbar .components-button.has-icon {\n padding-left: 8px;\n padding-right: 8px;\n min-width: 48px;\n justify-content: center; }\n .block-editor-block-toolbar .components-button.components-tab-button,\n .block-editor-format-toolbar .components-button.components-tab-button {\n font-weight: 500; }\n .block-editor-block-toolbar .components-button.components-tab-button span,\n .block-editor-format-toolbar .components-button.components-tab-button span {\n display: inline-block;\n padding-left: 0;\n padding-right: 0;\n position: relative; }\n\n.block-editor-block-toolbar .components-toolbar div > .components-button.has-icon,\n.block-editor-format-toolbar .components-toolbar div > .components-button.has-icon {\n min-width: 36px;\n padding-left: 6px;\n padding-right: 6px; }\n .block-editor-block-toolbar .components-toolbar div > .components-button.has-icon svg,\n .block-editor-format-toolbar .components-toolbar div > .components-button.has-icon svg {\n min-width: 24px; }\n .block-editor-block-toolbar .components-toolbar div > .components-button.has-icon::before,\n .block-editor-format-toolbar .components-toolbar div > .components-button.has-icon::before {\n left: 2px;\n right: 2px; }\n\n.block-editor-block-toolbar .components-toolbar div:first-child .components-button,\n.block-editor-format-toolbar .components-toolbar div:first-child .components-button {\n min-width: 42px;\n padding-left: 11px;\n padding-right: 6px; }\n .block-editor-block-toolbar .components-toolbar div:first-child .components-button::before,\n .block-editor-format-toolbar .components-toolbar div:first-child .components-button::before {\n left: 8px;\n right: 2px; }\n\n.block-editor-block-toolbar .components-toolbar div:last-child .components-button,\n.block-editor-format-toolbar .components-toolbar div:last-child .components-button {\n min-width: 42px;\n padding-left: 6px;\n padding-right: 11px; }\n .block-editor-block-toolbar .components-toolbar div:last-child .components-button::before,\n .block-editor-format-toolbar .components-toolbar div:last-child .components-button::before {\n left: 2px;\n right: 8px; }\n\n.block-editor-block-toolbar .components-toolbar div:first-child:last-child > .components-button,\n.block-editor-format-toolbar .components-toolbar div:first-child:last-child > .components-button {\n min-width: 48px;\n padding-left: 12px;\n padding-right: 12px; }\n .block-editor-block-toolbar .components-toolbar div:first-child:last-child > .components-button::before,\n .block-editor-format-toolbar .components-toolbar div:first-child:last-child > .components-button::before {\n left: 8px;\n right: 8px; }\n\n.block-editor-block-toolbar__slot {\n display: inline-block;\n line-height: 0; }\n @supports ((position: -webkit-sticky) or (position: sticky)) {\n .block-editor-block-toolbar__slot {\n display: inline-flex; } }\n\n.block-editor-block-toolbar__mover-switcher-container {\n display: flex; }\n\n.block-editor-block-toolbar__block-switcher-wrapper .block-editor-block-switcher {\n display: block; }\n\n@media (min-width: 782px) {\n .block-editor-block-toolbar.has-responsive-movers .block-editor-block-toolbar__mover-trigger-container {\n bottom: -1px;\n left: -1px;\n position: absolute;\n top: -1px;\n transform: translateX(-48px);\n -webkit-user-select: none;\n -ms-user-select: none;\n user-select: none;\n z-index: -1; } }\n\n@media (min-width: 782px) {\n .block-editor-block-toolbar.has-responsive-movers .block-editor-block-toolbar__mover-trigger-wrapper:not(:empty) {\n background-color: #fff;\n border: 1px solid #000;\n border-bottom-left-radius: 2px;\n border-top-left-radius: 2px;\n border-right: none;\n height: 100%;\n transition: all 60ms linear; } }\n\n@media (prefers-reduced-motion: reduce) {\n .block-editor-block-toolbar.has-responsive-movers .block-editor-block-toolbar__mover-trigger-wrapper:not(:empty) {\n transition-duration: 0s; } }\n\nhtml.block-editor-editor-skeleton__html-container {\n position: fixed;\n width: 100%; }\n @media (min-width: 782px) {\n html.block-editor-editor-skeleton__html-container {\n position: initial;\n width: initial; } }\n\n.block-editor-editor-skeleton {\n display: flex;\n flex-direction: column;\n height: auto;\n max-height: 100%;\n position: fixed;\n top: 46px;\n left: 0;\n right: 0;\n bottom: 0; }\n @media (min-width: 782px) {\n .block-editor-editor-skeleton {\n top: 32px; }\n .is-fullscreen-mode .block-editor-editor-skeleton {\n top: 0; } }\n\n.block-editor-editor-skeleton {\n /* Set left position when auto-fold is not on the body element. */\n left: 0; }\n @media (min-width: 782px) {\n .block-editor-editor-skeleton {\n left: 160px; } }\n\n.auto-fold .block-editor-editor-skeleton {\n /* Auto fold is when on smaller breakpoints, nav menu auto collapses. */ }\n @media (min-width: 782px) {\n .auto-fold .block-editor-editor-skeleton {\n left: 36px; } }\n @media (min-width: 961px) {\n .auto-fold .block-editor-editor-skeleton {\n left: 160px; } }\n\n/* Sidebar manually collapsed. */\n.folded .block-editor-editor-skeleton {\n left: 0; }\n @media (min-width: 782px) {\n .folded .block-editor-editor-skeleton {\n left: 36px; } }\n\n/* Mobile menu opened. */\n@media (max-width: 782px) {\n .auto-fold .wp-responsive-open .block-editor-editor-skeleton {\n left: 190px; } }\n\n/* In small screens with responsive menu expanded there is small white space. */\n@media (max-width: 600px) {\n .auto-fold .wp-responsive-open .block-editor-editor-skeleton {\n margin-left: -18px; } }\n\nbody.is-fullscreen-mode .block-editor-editor-skeleton {\n left: 0 !important; }\n\n.block-editor-editor-skeleton__body {\n flex-grow: 1;\n display: flex;\n overflow: auto;\n overscroll-behavior-y: none; }\n\n.block-editor-editor-skeleton__content {\n flex-grow: 1;\n display: flex;\n flex-direction: column;\n overflow: auto; }\n\n.block-editor-editor-skeleton__sidebar {\n display: block;\n width: auto;\n flex-shrink: 0;\n position: absolute;\n z-index: 100000;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n background: #fff;\n color: #1e1e1e; }\n @media (min-width: 782px) {\n .block-editor-editor-skeleton__sidebar {\n overflow: auto;\n border-left: 1px solid #e2e4e7;\n position: relative !important;\n z-index: 90; } }\n\n.block-editor-editor-skeleton__header {\n flex-shrink: 0;\n height: auto;\n border-bottom: 1px solid #e2e4e7;\n z-index: 30;\n color: #1e1e1e;\n position: -webkit-sticky;\n position: sticky;\n top: 0; }\n @media (min-width: 600px) {\n .block-editor-editor-skeleton__header {\n position: initial;\n top: 0; } }\n\n.block-editor-editor-skeleton__footer {\n height: auto;\n flex-shrink: 0;\n border-top: 1px solid #e2e4e7;\n color: #1e1e1e;\n display: none; }\n @media (min-width: 782px) {\n .block-editor-editor-skeleton__footer {\n display: block; } }\n\n.block-editor-editor-skeleton__publish {\n z-index: 100000;\n position: fixed !important;\n top: -9999em;\n bottom: auto;\n left: auto;\n right: 0;\n width: 280px;\n color: #1e1e1e; }\n .block-editor-editor-skeleton__publish:focus {\n top: auto;\n bottom: 0; }\n\n.block-editor-inserter {\n display: inline-block;\n background: none;\n border: none;\n padding: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px;\n line-height: 1.4; }\n @media (min-width: 782px) {\n .block-editor-inserter {\n position: relative; } }\n\n@media (min-width: 782px) {\n .block-editor-inserter__popover > .components-popover__content {\n overflow-y: visible;\n height: 100vh;\n padding: 0; } }\n\n.block-editor-inserter__toggle.components-button {\n display: inline-flex;\n align-items: center;\n cursor: pointer;\n border: none;\n outline: none;\n padding: 0;\n transition: color 0.2s ease; }\n @media (prefers-reduced-motion: reduce) {\n .block-editor-inserter__toggle.components-button {\n transition-duration: 0s; } }\n\n.block-editor-inserter__menu {\n height: 100%; }\n\n.block-editor-inserter__main-area {\n width: auto;\n display: flex;\n flex-direction: column;\n height: 100%; }\n @media (min-width: 782px) {\n .block-editor-inserter__main-area {\n width: 400px;\n position: relative; } }\n\n.block-editor-inserter__inline-elements {\n margin-top: -1px; }\n\n.block-editor-inserter__menu.is-bottom::after {\n border-bottom-color: #fff; }\n\n.components-popover.block-editor-inserter__popover {\n z-index: 99998; }\n\n.components-popover input[type=\"search\"].block-editor-inserter__search {\n display: block;\n margin: 16px;\n padding: 11px 16px;\n position: relative;\n z-index: 1;\n border-radius: 4px;\n flex-shrink: 0;\n /* Fonts smaller than 16px causes mobile safari to zoom. */\n font-size: 16px; }\n @media (min-width: 600px) {\n .components-popover input[type=\"search\"].block-editor-inserter__search {\n font-size: 13px; } }\n .components-popover input[type=\"search\"].block-editor-inserter__search:focus {\n color: #191e23;\n border-color: #007cba;\n box-shadow: 0 0 0 1px #007cba;\n outline: 2px solid transparent; }\n\n.block-editor-inserter__results {\n flex-grow: 1;\n overflow: auto;\n position: relative;\n z-index: 1;\n padding: 0 16px 16px 16px; }\n .block-editor-inserter__results:focus {\n outline: 1px dotted #555d66; }\n .block-editor-inserter__results [role=\"presentation\"] + .components-panel__body {\n border-top: none; }\n\n.block-editor-inserter__popover .block-editor-block-types-list {\n margin: 0 -8px; }\n\n.block-editor-inserter__reusable-blocks-panel {\n position: relative;\n text-align: right; }\n\n.block-editor-inserter__manage-reusable-blocks {\n margin: 16px 0 0 16px; }\n\n.block-editor-inserter__no-results {\n font-style: italic;\n padding: 24px;\n text-align: center; }\n\n.block-editor-inserter__child-blocks {\n padding: 0 16px; }\n\n.block-editor-inserter__parent-block-header {\n display: flex;\n align-items: center; }\n .block-editor-inserter__parent-block-header h2 {\n font-size: 13px; }\n .block-editor-inserter__parent-block-header .block-editor-block-icon {\n margin-right: 8px; }\n\n.block-editor-inserter__menu-help-panel {\n display: none;\n border: 1px solid #ccc;\n width: 300px;\n min-height: 350px;\n margin-right: 20px;\n padding: 20px;\n background: #fff; }\n @media (min-width: 782px) {\n .block-editor-inserter__menu-help-panel {\n position: absolute;\n top: 0;\n left: calc(100% + 20px);\n display: flex;\n flex-direction: column; } }\n .block-editor-inserter__menu-help-panel .block-editor-block-card {\n padding-bottom: 20px;\n margin-bottom: 20px;\n border-bottom: 1px solid #e2e4e7;\n animation: edit-post__fade-in-animation 0.2s ease-out 0s;\n animation-fill-mode: forwards; }\n @media (prefers-reduced-motion: reduce) {\n .block-editor-inserter__menu-help-panel .block-editor-block-card {\n animation-duration: 1ms; } }\n .block-editor-inserter__menu-help-panel .block-editor-inserter__preview {\n display: flex;\n flex-grow: 1;\n overflow-y: auto; }\n\n.block-editor-inserter__menu-help-panel-no-block {\n display: flex;\n height: 100%;\n flex-direction: column;\n animation: edit-post__fade-in-animation 0.2s ease-out 0s;\n animation-fill-mode: forwards; }\n @media (prefers-reduced-motion: reduce) {\n .block-editor-inserter__menu-help-panel-no-block {\n animation-duration: 1ms; } }\n .block-editor-inserter__menu-help-panel-no-block .block-editor-inserter__menu-help-panel-no-block-text {\n flex-grow: 1; }\n .block-editor-inserter__menu-help-panel-no-block .block-editor-inserter__menu-help-panel-no-block-text h4 {\n font-size: 18px; }\n .block-editor-inserter__menu-help-panel-no-block .components-notice {\n margin: 0; }\n .block-editor-inserter__menu-help-panel-no-block h4 {\n margin-top: 0; }\n\n.block-editor-inserter__menu-help-panel-hover-area {\n flex-grow: 1;\n margin-top: 20px;\n padding: 20px;\n border: 1px dotted #e2e4e7;\n display: flex;\n align-items: center;\n text-align: center; }\n\n.block-editor-inserter__menu-help-panel-title {\n font-size: 18px;\n font-weight: 600;\n margin-bottom: 20px; }\n\n.block-editor-inserter__preview-content {\n border: 1px solid #e2e4e7;\n border-radius: 4px;\n min-height: 150px;\n display: -ms-grid;\n display: grid;\n flex-grow: 1; }\n .block-editor-inserter__preview-content .block-editor-block-preview__container {\n margin-right: 0;\n margin-left: 0;\n padding: 10px; }\n\n.block-editor-inserter__preview-content-missing {\n flex: 1;\n display: flex;\n justify-content: center;\n color: #606a73;\n border: 1px solid #e2e4e7;\n border-radius: 4px;\n align-items: center; }\n\n.block-editor-inserter__tips {\n padding: 16px;\n flex-shrink: 0; }\n","/**\n * Colors\n */\n/**\n * Breakpoints & Media Queries\n */\n/**\n * Colors\n */\n/**\n * Fonts & basic variables.\n */\n/**\n * Grid System.\n * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/\n */\n/**\n * Dimensions.\n */\n/**\n * Shadows.\n */\n/**\n * Editor widths.\n */\n/**\n * Block UI.\n */\n/**\n * Border radii.\n */\n/**\n * Breakpoint mixins\n */\n/**\n * Long content fade mixin\n *\n * Creates a fading overlay to signify that the content is longer\n * than the space allows.\n */\n/**\n * Button states and focus styles\n */\n/**\n * Block Toolbar/Formatting Buttons\n */\n/**\n * Applies editor left position to the selector passed as argument\n */\n/**\n * Styles that are reused verbatim in a few places\n */\n/**\n * Allows users to opt-out of animations via OS-level preferences.\n */\n/**\n * Reset default styles for JavaScript UI based pages.\n * This is a WP-admin agnostic reset\n */\n/**\n * Reset the WP Admin page styles for Gutenberg-like pages.\n */\n.nux-dot-tip::before, .nux-dot-tip::after {\n border-radius: 100%;\n content: \" \";\n pointer-events: none;\n position: absolute; }\n\n.nux-dot-tip::before {\n animation: nux-pulse 1.6s infinite cubic-bezier(0.17, 0.67, 0.92, 0.62);\n background: rgba(0, 115, 156, 0.9);\n height: 24px;\n left: -12px;\n top: -12px;\n transform: scale(0.33333);\n width: 24px; }\n\n.nux-dot-tip::after {\n background: #00739c;\n height: 8px;\n left: -4px;\n top: -4px;\n width: 8px; }\n\n@keyframes nux-pulse {\n 100% {\n background: rgba(0, 115, 156, 0);\n transform: scale(1); } }\n\n.nux-dot-tip .components-popover__content {\n padding: 5px 41px 5px 20px;\n width: 350px; }\n @media (min-width: 600px) {\n .nux-dot-tip .components-popover__content {\n width: 450px; } }\n .nux-dot-tip .components-popover__content .nux-dot-tip__disable {\n position: absolute;\n right: 0;\n top: 0; }\n\n.nux-dot-tip[data-y-axis=\"top\"] {\n margin-top: -4px; }\n\n.nux-dot-tip[data-y-axis=\"bottom\"] {\n margin-top: 4px; }\n\n.nux-dot-tip[data-y-axis=\"middle\"][data-y-axis=\"left\"] {\n margin-left: -4px; }\n\n.nux-dot-tip[data-y-axis=\"middle\"][data-y-axis=\"right\"] {\n margin-left: 4px; }\n\n.nux-dot-tip[data-y-axis=\"top\"] .components-popover__content {\n margin-bottom: 20px; }\n\n.nux-dot-tip[data-y-axis=\"bottom\"] .components-popover__content {\n margin-top: 20px; }\n\n.nux-dot-tip[data-y-axis=\"middle\"][data-y-axis=\"left\"] .components-popover__content {\n margin-right: 20px; }\n\n.nux-dot-tip[data-y-axis=\"middle\"][data-y-axis=\"right\"] .components-popover__content {\n margin-left: 20px; }\n\n.nux-dot-tip[data-y-axis=\"left\"], .nux-dot-tip[data-y-axis=\"center\"], .nux-dot-tip[data-y-axis=\"right\"] {\n z-index: 1000001; }\n @media (max-width: 600px) {\n .nux-dot-tip[data-y-axis=\"left\"] .components-popover__content, .nux-dot-tip[data-y-axis=\"center\"] .components-popover__content, .nux-dot-tip[data-y-axis=\"right\"] .components-popover__content {\n -ms-grid-row-align: end;\n align-self: end;\n left: 5px;\n margin: 20px 0 0 0;\n max-width: none !important;\n position: fixed;\n right: 5px;\n width: auto; } }\n\n.nux-dot-tip.components-popover:not([data-y-axis=\"middle\"])[data-y-axis=\"right\"] .components-popover__content {\n /*!rtl:ignore*/\n margin-left: 0; }\n\n.nux-dot-tip.components-popover:not([data-y-axis=\"middle\"])[data-y-axis=\"left\"] .components-popover__content {\n /*!rtl:ignore*/\n margin-right: 0; }\n\n.nux-dot-tip.components-popover.edit-post-more-menu__content:not([data-y-axis=\"middle\"])[data-y-axis=\"right\"] .components-popover__content {\n /*!rtl:ignore*/\n margin-left: -12px; }\n\n.nux-dot-tip.components-popover.edit-post-more-menu__content:not([data-y-axis=\"middle\"])[data-y-axis=\"left\"] .components-popover__content {\n /*!rtl:ignore*/\n margin-right: -12px; }\n","@charset \"UTF-8\";\n/**\n * Colors\n */\n/**\n * Breakpoints & Media Queries\n */\n/**\n * Colors\n */\n/**\n * Fonts & basic variables.\n */\n/**\n * Grid System.\n * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/\n */\n/**\n * Dimensions.\n */\n/**\n * Shadows.\n */\n/**\n * Editor widths.\n */\n/**\n * Block UI.\n */\n/**\n * Border radii.\n */\n/**\n * Breakpoint mixins\n */\n/**\n * Long content fade mixin\n *\n * Creates a fading overlay to signify that the content is longer\n * than the space allows.\n */\n/**\n * Button states and focus styles\n */\n/**\n * Block Toolbar/Formatting Buttons\n */\n/**\n * Applies editor left position to the selector passed as argument\n */\n/**\n * Styles that are reused verbatim in a few places\n */\n/**\n * Allows users to opt-out of animations via OS-level preferences.\n */\n/**\n * Reset default styles for JavaScript UI based pages.\n * This is a WP-admin agnostic reset\n */\n/**\n * Reset the WP Admin page styles for Gutenberg-like pages.\n */\n.editor-autocompleters__block .block-editor-block-icon {\n margin-right: 8px; }\n\n.editor-autocompleters__user .editor-autocompleters__no-avatar::before {\n /* stylelint-disable */\n font: normal 20px/1 dashicons;\n /* stylelint-enable */\n content: \"\\f110\";\n margin-right: 5px;\n vertical-align: middle; }\n\n.editor-autocompleters__user .editor-autocompleters__user-avatar {\n margin-right: 8px;\n flex-grow: 0;\n flex-shrink: 0;\n max-width: none;\n width: 24px;\n height: 24px; }\n\n.editor-autocompleters__user .editor-autocompleters__user-name {\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n max-width: 200px;\n flex-shrink: 0;\n flex-grow: 1; }\n\n.editor-autocompleters__user .editor-autocompleters__user-slug {\n margin-left: 8px;\n color: #8f98a1;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: none;\n max-width: 100px;\n flex-grow: 0;\n flex-shrink: 0; }\n\n.editor-autocompleters__user:hover .editor-autocompleters__user-slug {\n color: #66c6e4; }\n\n.document-outline {\n margin: 20px 0; }\n .document-outline ul {\n margin: 0;\n padding: 0; }\n\n.document-outline__item {\n display: flex;\n margin: 4px 0; }\n .document-outline__item a {\n text-decoration: none; }\n .document-outline__item .document-outline__emdash::before {\n color: #e2e4e7;\n margin-right: 4px; }\n .document-outline__item.is-h2 .document-outline__emdash::before {\n content: \"—\"; }\n .document-outline__item.is-h3 .document-outline__emdash::before {\n content: \"——\"; }\n .document-outline__item.is-h4 .document-outline__emdash::before {\n content: \"———\"; }\n .document-outline__item.is-h5 .document-outline__emdash::before {\n content: \"————\"; }\n .document-outline__item.is-h6 .document-outline__emdash::before {\n content: \"—————\"; }\n\n.document-outline__button {\n cursor: pointer;\n background: none;\n border: none;\n display: flex;\n align-items: flex-start;\n margin: 0 0 0 -1px;\n padding: 2px 5px 2px 1px;\n color: #23282d;\n text-align: left; }\n .document-outline__button:disabled {\n cursor: default; }\n .document-outline__button:focus {\n box-shadow: 0 0 0 1px rgb(0, 124, 186);\n outline: 1px solid transparent; }\n body.admin-color-sunrise .document-outline__button:focus{\n box-shadow: 0 0 0 1px rgb(209, 134, 74); }\n body.admin-color-ocean .document-outline__button:focus{\n box-shadow: 0 0 0 1px rgb(163, 185, 162); }\n body.admin-color-midnight .document-outline__button:focus{\n box-shadow: 0 0 0 1px rgb(225, 77, 67); }\n body.admin-color-ectoplasm .document-outline__button:focus{\n box-shadow: 0 0 0 1px rgb(167, 182, 86); }\n body.admin-color-coffee .document-outline__button:focus{\n box-shadow: 0 0 0 1px rgb(194, 166, 140); }\n body.admin-color-blue .document-outline__button:focus{\n box-shadow: 0 0 0 1px rgb(217, 171, 89); }\n body.admin-color-light .document-outline__button:focus{\n box-shadow: 0 0 0 1px rgb(0, 133, 186); }\n\n.document-outline__level {\n background: #e2e4e7;\n color: #23282d;\n border-radius: 3px;\n font-size: 13px;\n padding: 1px 6px;\n margin-right: 4px; }\n .is-invalid .document-outline__level {\n background: #f0b849; }\n\n.document-outline__item-content {\n padding: 1px 0; }\n\n.components-editor-notices__dismissible {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n right: 0;\n color: #191e23; }\n\n.components-editor-notices__pinned {\n position: relative;\n left: 0;\n top: 0;\n right: 0;\n color: #191e23; }\n\n.components-editor-notices__dismissible .components-notice,\n.components-editor-notices__pinned .components-notice {\n box-sizing: border-box;\n margin: 0;\n border-bottom: 1px solid rgba(0, 0, 0, 0.2);\n padding: 0 12px;\n min-height: 60px; }\n .components-editor-notices__dismissible .components-notice .components-notice__dismiss,\n .components-editor-notices__pinned .components-notice .components-notice__dismiss {\n margin-top: 12px; }\n\n.components-editor-notices__snackbar {\n width: 100%; }\n\n.editor-entities-saved-states__save-button {\n display: block;\n margin-left: auto;\n margin-right: 0; }\n\n.editor-error-boundary {\n margin: auto;\n max-width: 780px;\n padding: 20px;\n margin-top: 60px;\n box-shadow: 0 3px 30px rgba(25, 30, 35, 0.2); }\n\n.editor-page-attributes__template {\n margin-bottom: 10px; }\n .editor-page-attributes__template label,\n .editor-page-attributes__template select {\n width: 100%; }\n\n.editor-page-attributes__order {\n width: 100%; }\n .editor-page-attributes__order .components-base-control__field {\n display: flex;\n justify-content: space-between;\n align-items: center; }\n .editor-page-attributes__order input {\n width: 66px; }\n\n.editor-post-excerpt__textarea {\n width: 100%;\n margin-bottom: 10px; }\n\n.editor-post-featured-image {\n padding: 0; }\n .editor-post-featured-image__container {\n margin-bottom: 1em;\n position: relative; }\n .editor-post-featured-image .components-spinner {\n position: absolute;\n top: 50%;\n left: 50%;\n margin-top: -9px;\n margin-left: -9px; }\n .editor-post-featured-image .components-button + .components-button {\n display: block;\n margin-top: 1em; }\n .editor-post-featured-image .components-responsive-wrapper__content {\n max-width: 100%;\n width: auto; }\n\n.editor-post-featured-image__toggle,\n.editor-post-featured-image__preview {\n display: block;\n width: 100%;\n padding: 0;\n transition: all 0.1s ease-out;\n box-shadow: 0 0 0 0 #00a0d2; }\n @media (prefers-reduced-motion: reduce) {\n .editor-post-featured-image__toggle,\n .editor-post-featured-image__preview {\n transition-duration: 0s; } }\n\n.editor-post-featured-image__preview {\n height: auto; }\n\n.editor-post-featured-image__preview:not(:disabled):not([aria-disabled=\"true\"]):focus {\n box-shadow: 0 0 0 4px #00a0d2; }\n\n.editor-post-featured-image__toggle {\n border: 1px dashed #a2aab2;\n background-color: #edeff0;\n min-height: 90px;\n line-height: 20px;\n padding: 8px 0;\n text-align: center; }\n .editor-post-featured-image__toggle:hover {\n background-color: #f8f9f9; }\n\n.editor-post-format {\n flex-direction: column;\n align-items: stretch;\n width: 100%; }\n\n.editor-post-format__content {\n display: inline-flex;\n justify-content: space-between;\n align-items: center;\n width: 100%; }\n\n.editor-post-format__suggestion {\n text-align: right;\n font-size: 13px; }\n\n.editor-post-last-revision__title {\n width: 100%;\n font-weight: 600; }\n .editor-post-last-revision__title .dashicon {\n margin-right: 5px; }\n\n.components-button:not(:disabled):not([aria-disabled=\"true\"]).editor-post-last-revision__title {\n height: auto; }\n .components-button:not(:disabled):not([aria-disabled=\"true\"]).editor-post-last-revision__title:hover, .components-button:not(:disabled):not([aria-disabled=\"true\"]).editor-post-last-revision__title:active {\n background: #f3f4f5 !important;\n border: none !important;\n box-shadow: none !important; }\n .components-button:not(:disabled):not([aria-disabled=\"true\"]).editor-post-last-revision__title:focus {\n color: #191e23;\n border: none;\n box-shadow: none;\n outline-offset: -2px;\n outline: 1px dotted #555d66; }\n\n.editor-post-locked-modal {\n height: auto;\n padding-right: 10px;\n padding-left: 10px;\n padding-top: 10px;\n max-width: 480px; }\n .editor-post-locked-modal .components-modal__header {\n height: 36px; }\n .editor-post-locked-modal .components-modal__content {\n height: auto; }\n\n.editor-post-locked-modal__buttons {\n margin-top: 10px; }\n .editor-post-locked-modal__buttons .components-button {\n margin-right: 5px; }\n\n.editor-post-locked-modal__avatar {\n float: left;\n margin: 5px;\n margin-right: 15px; }\n\n.editor-post-permalink {\n display: inline-flex;\n align-items: center;\n flex-wrap: wrap;\n padding: 8px 8px 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px;\n white-space: nowrap;\n background-clip: padding-box;\n border: 1px solid #1e1e1e;\n border-radius: 2px;\n background-color: #fff;\n margin-left: -15px;\n margin-right: -15px; }\n @media (min-width: 480px) {\n .editor-post-permalink {\n padding: 4px; } }\n @media (min-width: 600px) {\n .editor-post-permalink {\n margin-left: -1px;\n margin-right: -1px; } }\n .editor-post-permalink.editor-post-permalink > * {\n margin-bottom: 8px; }\n @media (min-width: 480px) {\n .editor-post-permalink.editor-post-permalink > * {\n margin-bottom: 0; } }\n .editor-post-permalink button {\n flex-shrink: 0; }\n\n.editor-post-permalink__copy {\n border-radius: 4px;\n padding: 6px; }\n\n.editor-post-permalink__copy.is-copied {\n opacity: 0.3; }\n\n.editor-post-permalink__label {\n margin: 0 10px 0 5px;\n font-weight: 600; }\n\n.editor-post-permalink__link {\n color: #7e8993;\n text-decoration: underline;\n margin-right: 10px;\n flex-grow: 1;\n overflow: hidden;\n position: relative;\n white-space: nowrap;\n text-align: left; }\n\n.editor-post-permalink-editor {\n width: 100%;\n min-width: 20%;\n display: inline-flex;\n align-items: center; }\n .editor-post-permalink-editor .editor-post-permalink__editor-container {\n flex: 0 1 100%;\n display: flex;\n overflow: hidden;\n padding: 1px 0; }\n .editor-post-permalink-editor .editor-post-permalink__editor-container .editor-post-permalink-editor__prefix {\n flex: 1 1 auto; }\n @media (min-width: 600px) {\n .editor-post-permalink-editor .editor-post-permalink__editor-container .editor-post-permalink-editor__prefix {\n flex: 1 0 auto; } }\n .editor-post-permalink-editor .editor-post-permalink__editor-container .editor-post-permalink-editor__edit {\n flex: 1 1 100%; }\n .editor-post-permalink-editor .editor-post-permalink-editor__save {\n margin-left: auto; }\n\n.editor-post-permalink-editor__prefix {\n color: #6c7781;\n min-width: 20%;\n overflow: hidden;\n position: relative;\n white-space: nowrap;\n text-overflow: ellipsis; }\n\n.editor-post-permalink input[type=\"text\"].editor-post-permalink-editor__edit {\n min-width: 10%;\n width: 100%;\n margin: 0 3px;\n padding: 2px 4px; }\n\n.editor-post-permalink-editor__suffix {\n color: #6c7781;\n margin-right: 6px;\n flex: 0 0 0%; }\n\n.editor-post-permalink-editor__prefix {\n text-align: left; }\n\n/* rtl:begin:ignore */\n.editor-post-permalink__link {\n text-align: left; }\n\n.editor-post-permalink__editor-container,\n.editor-post-permalink__link {\n direction: ltr; }\n\n.editor-post-permalink__link::after {\n content: \"\";\n display: block;\n position: absolute;\n -webkit-touch-callout: none;\n -webkit-user-select: none;\n -ms-user-select: none;\n user-select: none;\n pointer-events: none;\n background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff 90%);\n top: 0;\n bottom: 0;\n right: 0;\n left: auto;\n width: 20%;\n height: auto; }\n\n/* rtl:end:ignore */\n.editor-post-publish-button__button.has-changes-dot::before {\n background: currentcolor;\n border-radius: 4px;\n content: \"\";\n height: 8px;\n margin: auto 5px auto -3px;\n width: 8px; }\n\n.editor-post-publish-panel {\n background: #fff; }\n\n.editor-post-publish-panel__content {\n min-height: calc(100% - 144px); }\n .editor-post-publish-panel__content .components-spinner {\n display: block;\n margin: 100px auto 0; }\n\n.editor-post-publish-panel__header {\n background: #fff;\n padding-left: 8px;\n padding-right: 8px;\n height: 60px;\n border-bottom: 1px solid #e2e4e7;\n display: flex;\n align-items: center;\n align-content: space-between; }\n .editor-post-publish-panel__header .components-button.has-icon {\n position: absolute;\n right: 8px; }\n\n.editor-post-publish-panel__header-publish-button {\n display: flex;\n justify-content: flex-end;\n flex-grow: 1;\n text-align: right;\n flex-wrap: nowrap; }\n\n.editor-post-publish-panel__header-published {\n flex-grow: 1; }\n\n.editor-post-publish-panel__footer {\n padding: 16px; }\n\n.components-button.editor-post-publish-panel__toggle.is-primary {\n display: inline-flex;\n align-items: center; }\n .components-button.editor-post-publish-panel__toggle.is-primary.is-busy .dashicon {\n display: none; }\n .components-button.editor-post-publish-panel__toggle.is-primary .dashicon {\n margin-right: -4px; }\n\n.editor-post-publish-panel__link {\n font-weight: 400;\n padding-left: 4px; }\n\n.editor-post-publish-panel__prepublish {\n padding: 16px; }\n .editor-post-publish-panel__prepublish strong {\n color: #191e23; }\n .editor-post-publish-panel__prepublish .components-panel__body {\n background: #fff;\n margin-left: -16px;\n margin-right: -16px; }\n .editor-post-publish-panel__prepublish .editor-post-visibility__dialog-legend {\n display: none; }\n .editor-post-publish-panel__prepublish .components-datetime {\n padding: 0; }\n\n.post-publish-panel__postpublish .components-panel__body {\n border-bottom: 1px solid #e2e4e7;\n border-top: none; }\n\n.post-publish-panel__postpublish-buttons {\n display: flex;\n align-content: space-between;\n flex-wrap: wrap;\n margin: -5px; }\n .post-publish-panel__postpublish-buttons > * {\n flex-grow: 1;\n margin: 5px; }\n .post-publish-panel__postpublish-buttons .components-button {\n height: auto;\n justify-content: center;\n padding: 3px 10px 4px;\n line-height: 1.6;\n text-align: center;\n white-space: normal; }\n .post-publish-panel__postpublish-buttons .components-clipboard-button {\n width: 100%; }\n\n.post-publish-panel__postpublish-post-address {\n margin-bottom: 16px; }\n .post-publish-panel__postpublish-post-address input[readonly] {\n padding: 10px;\n background: #e8eaeb;\n overflow: hidden;\n text-overflow: ellipsis; }\n\n.post-publish-panel__postpublish-header {\n font-weight: 500; }\n\n.post-publish-panel__postpublish-subheader {\n margin: 0 0 8px; }\n\n.post-publish-panel__tip {\n color: #f0b849; }\n\n.editor-post-saved-state {\n display: flex;\n align-items: center;\n width: 28px;\n padding: 12px 4px;\n color: #757575;\n overflow: hidden;\n white-space: nowrap; }\n .editor-post-saved-state svg {\n display: inline-block;\n flex: 0 0 auto;\n fill: currentColor;\n margin-right: 8px; }\n @media (min-width: 600px) {\n .editor-post-saved-state {\n width: auto;\n padding: 8px 12px;\n text-indent: inherit; }\n .editor-post-saved-state .dashicon {\n margin-right: 4px; } }\n\n.editor-post-taxonomies__hierarchical-terms-list {\n max-height: 14em;\n overflow: auto;\n padding-left: 2px; }\n\n.editor-post-taxonomies__hierarchical-terms-choice {\n margin-bottom: 8px; }\n\n.editor-post-taxonomies__hierarchical-terms-subchoices {\n margin-top: 8px;\n margin-left: 16px; }\n\n.components-button.editor-post-taxonomies__hierarchical-terms-submit,\n.components-button.editor-post-taxonomies__hierarchical-terms-add {\n margin-top: 12px; }\n\n.editor-post-taxonomies__hierarchical-terms-label {\n display: inline-block;\n margin-top: 12px; }\n\n.editor-post-taxonomies__hierarchical-terms-input {\n margin-top: 8px;\n width: 100%; }\n\n.editor-post-taxonomies__hierarchical-terms-filter {\n margin-bottom: 8px;\n width: 100%; }\n\n.editor-post-text-editor {\n border: 1px solid #e2e4e7 !important;\n display: block;\n margin: 0 0 2em;\n width: 100%;\n box-shadow: none;\n resize: none;\n overflow: hidden;\n font-family: Menlo, Consolas, monaco, monospace !important;\n line-height: 150%;\n border-radius: 0 !important;\n /* Fonts smaller than 16px causes mobile safari to zoom. */\n font-size: 16px !important; }\n @media (min-width: 600px) {\n .editor-post-text-editor {\n font-size: 14px !important; } }\n .editor-post-text-editor:hover, .editor-post-text-editor:focus {\n border: 1px solid #1e1e1e !important;\n box-shadow: none !important;\n outline-offset: -2px !important; }\n\n.editor-post-text-editor__toolbar {\n display: flex;\n flex-direction: row;\n flex-wrap: wrap; }\n .editor-post-text-editor__toolbar button {\n height: 30px;\n background: none;\n padding: 0 8px;\n margin: 3px 4px;\n text-align: center;\n cursor: pointer;\n font-family: Menlo, Consolas, monaco, monospace;\n color: #555d66;\n border: 1px solid transparent; }\n .editor-post-text-editor__toolbar button:first-child {\n margin-left: 0; }\n .editor-post-text-editor__toolbar button:hover, .editor-post-text-editor__toolbar button:focus {\n outline: none;\n border: 1px solid #555d66; }\n\n.editor-post-text-editor__bold {\n font-weight: 600; }\n\n.editor-post-text-editor__italic {\n font-style: italic; }\n\n.editor-post-text-editor__link {\n text-decoration: underline;\n color: #0085ba; }\n\nbody.admin-color-sunrise .editor-post-text-editor__link{\n color: #d1864a; }\n\nbody.admin-color-ocean .editor-post-text-editor__link{\n color: #a3b9a2; }\n\nbody.admin-color-midnight .editor-post-text-editor__link{\n color: #e14d43; }\n\nbody.admin-color-ectoplasm .editor-post-text-editor__link{\n color: #a7b656; }\n\nbody.admin-color-coffee .editor-post-text-editor__link{\n color: #c2a68c; }\n\nbody.admin-color-blue .editor-post-text-editor__link{\n color: #82b4cb; }\n\nbody.admin-color-light .editor-post-text-editor__link{\n color: #0085ba; }\n\n.editor-post-text-editor__del {\n text-decoration: line-through; }\n\n.edit-post-post-visibility__dialog,\n.editor-post-visibility__dialog-fieldset {\n padding: 4px;\n padding-top: 0; }\n .edit-post-post-visibility__dialog .editor-post-visibility__dialog-legend,\n .editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-legend {\n font-weight: 600;\n margin-bottom: 1em;\n margin-top: 0.5em;\n padding: 0; }\n .edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio,\n .editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio {\n margin-top: 2px; }\n .edit-post-post-visibility__dialog .editor-post-visibility__dialog-label,\n .editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-label {\n font-weight: 600; }\n .edit-post-post-visibility__dialog .editor-post-visibility__dialog-info,\n .editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-info {\n margin-top: 0;\n margin-left: 28px; }\n .edit-post-post-visibility__dialog .editor-post-visibility__choice:last-child .editor-post-visibility__dialog-info,\n .editor-post-visibility__dialog-fieldset .editor-post-visibility__choice:last-child .editor-post-visibility__dialog-info {\n margin-bottom: 0; }\n .edit-post-post-visibility__dialog .editor-post-visibility__dialog-password-input,\n .editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-password-input {\n margin-left: 28px; }\n\n.editor-post-title__block {\n position: relative;\n padding: 5px 0;\n font-size: 16px; }\n @media (min-width: 600px) {\n .editor-post-title__block {\n padding: 5px 2px; } }\n .editor-post-title__block .editor-post-title__input {\n display: block;\n width: 100%;\n margin: 0;\n box-shadow: none;\n background: transparent;\n font-family: \"Noto Serif\", serif;\n line-height: 1.4;\n color: #191e23;\n transition: border 0.1s ease-out, box-shadow 0.1s linear;\n padding: 19px 14px;\n word-break: keep-all;\n border: 1px solid transparent;\n border-left-width: 0;\n border-right-width: 0;\n border-radius: 0;\n outline: 1px solid transparent;\n font-size: 2.44em;\n font-weight: 600; }\n @media (prefers-reduced-motion: reduce) {\n .editor-post-title__block .editor-post-title__input {\n transition-duration: 0s; } }\n @media (min-width: 600px) {\n .editor-post-title__block .editor-post-title__input {\n border-width: 1px; } }\n .editor-post-title__block .editor-post-title__input::-webkit-input-placeholder {\n color: rgba(22, 36, 53, 0.55); }\n .editor-post-title__block .editor-post-title__input::-moz-placeholder {\n color: rgba(22, 36, 53, 0.55); }\n .editor-post-title__block .editor-post-title__input:-ms-input-placeholder {\n color: rgba(22, 36, 53, 0.55); }\n .editor-post-title__block .editor-post-title__input:focus {\n border: 1px solid transparent;\n outline: 1px solid transparent;\n box-shadow: none; }\n .editor-post-title__block.is-focus-mode .editor-post-title__input {\n opacity: 0.5;\n transition: opacity 0.1s linear; }\n @media (prefers-reduced-motion: reduce) {\n .editor-post-title__block.is-focus-mode .editor-post-title__input {\n transition-duration: 0s; } }\n .editor-post-title__block.is-focus-mode .editor-post-title__input:focus {\n opacity: 1; }\n\n.editor-post-title .editor-post-permalink {\n font-size: 13px;\n color: #191e23;\n height: auto;\n position: relative;\n top: -2px;\n width: 100%; }\n @media (min-width: 480px) {\n .editor-post-title .editor-post-permalink {\n position: absolute;\n top: -33px;\n right: 0;\n flex-wrap: nowrap;\n width: auto; } }\n @media (min-width: 600px) {\n .editor-post-title .editor-post-permalink {\n left: 2px;\n right: 2px; } }\n\n.editor-post-trash.components-button {\n color: #b52727;\n border-color: #b52727;\n justify-content: center; }\n .editor-post-trash.components-button:not(:disabled):not([aria-disabled=\"true\"]):hover, .editor-post-trash.components-button:not([aria-disabled=\"true\"]):focus {\n color: #a02222;\n border-color: #a02222; }\n\n.table-of-contents__popover.components-popover .components-popover__content {\n min-width: 380px; }\n\n.components-popover.table-of-contents__popover {\n z-index: 99998; }\n\n.table-of-contents__popover .components-popover__content {\n padding: 16px; }\n @media (min-width: 600px) {\n .table-of-contents__popover .components-popover__content {\n max-height: calc(100vh - 120px);\n overflow-y: auto; } }\n\n.table-of-contents__popover hr {\n margin: 10px -16px 0; }\n\n.table-of-contents__wrapper:focus {\n color: #191e23;\n outline-offset: -1px;\n outline: 1px dotted #555d66;\n outline-offset: 8px; }\n\n.table-of-contents__counts {\n display: flex;\n flex-wrap: wrap;\n margin: 0; }\n\n.table-of-contents__count {\n flex-basis: 25%;\n display: flex;\n flex-direction: column;\n font-size: 13px;\n color: #6c7781;\n padding-right: 8px;\n margin-bottom: 0; }\n .table-of-contents__count:last-child {\n padding-right: 0; }\n\n.table-of-contents__number,\n.table-of-contents__popover .word-count {\n font-size: 21px;\n font-weight: 400;\n line-height: 30px;\n color: #555d66; }\n\n.table-of-contents__title {\n display: block;\n margin-top: 20px;\n font-size: 15px;\n font-weight: 600; }\n\n.editor-template-validation-notice {\n display: flex;\n justify-content: space-between;\n align-items: center; }\n .editor-template-validation-notice .components-button {\n margin-left: 5px; }\n","/**\n * Colors\n */\n/**\n * Breakpoints & Media Queries\n */\n/**\n * Colors\n */\n/**\n * Fonts & basic variables.\n */\n/**\n * Grid System.\n * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/\n */\n/**\n * Dimensions.\n */\n/**\n * Shadows.\n */\n/**\n * Editor widths.\n */\n/**\n * Block UI.\n */\n/**\n * Border radii.\n */\n/**\n * Breakpoint mixins\n */\n/**\n * Long content fade mixin\n *\n * Creates a fading overlay to signify that the content is longer\n * than the space allows.\n */\n/**\n * Button states and focus styles\n */\n/**\n * Block Toolbar/Formatting Buttons\n */\n/**\n * Applies editor left position to the selector passed as argument\n */\n/**\n * Styles that are reused verbatim in a few places\n */\n/**\n * Allows users to opt-out of animations via OS-level preferences.\n */\n/**\n * Reset default styles for JavaScript UI based pages.\n * This is a WP-admin agnostic reset\n */\n/**\n * Reset the WP Admin page styles for Gutenberg-like pages.\n */\n#start-resizable-editor-section {\n display: none; }\n\n.wp-block-audio figcaption {\n margin-top: 0.5em;\n margin-bottom: 1em; }\n\n.wp-block-audio audio {\n width: 100%;\n min-width: 300px; }\n\n.wp-block-button {\n color: #fff; }\n .wp-block-button.aligncenter {\n text-align: center; }\n .wp-block-button.alignright {\n /*rtl:ignore*/\n text-align: right; }\n\n.wp-block-button__link {\n background-color: #32373c;\n border: none;\n border-radius: 28px;\n box-shadow: none;\n color: inherit;\n cursor: pointer;\n display: inline-block;\n font-size: 18px;\n margin: 0;\n padding: 12px 24px;\n text-align: center;\n text-decoration: none;\n overflow-wrap: break-word; }\n .wp-block-button__link:hover, .wp-block-button__link:focus, .wp-block-button__link:active, .wp-block-button__link:visited {\n color: inherit; }\n\n.wp-gs .wp-block-button__link:not(.has-background) {\n background-color: var(--wp--color--primary); }\n\n.is-style-squared .wp-block-button__link {\n border-radius: 0; }\n\n.no-border-radius.wp-block-button__link {\n border-radius: 0 !important; }\n\n.is-style-outline {\n color: #32373c; }\n .is-style-outline .wp-block-button__link {\n background-color: transparent;\n border: 2px solid; }\n\n.wp-block-buttons .wp-block-button {\n display: inline-block;\n margin: 4px; }\n\n.wp-block-buttons.aligncenter {\n text-align: center; }\n\n.wp-block-calendar {\n text-align: center; }\n .wp-block-calendar th,\n .wp-block-calendar tbody td {\n padding: 4px;\n border: 1px solid #e2e4e7; }\n .wp-block-calendar tfoot td {\n border: none; }\n .wp-block-calendar table {\n width: 100%;\n border-collapse: collapse;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif; }\n .wp-block-calendar table th {\n font-weight: 400;\n background: #edeff0; }\n .wp-block-calendar a {\n text-decoration: underline; }\n .wp-block-calendar tfoot a {\n color: #00739c; }\n .wp-block-calendar table tbody,\n .wp-block-calendar table caption {\n color: #40464d; }\n\n.wp-block-categories.alignleft {\n /*rtl:ignore*/\n margin-right: 2em; }\n\n.wp-block-categories.alignright {\n /*rtl:ignore*/\n margin-left: 2em; }\n\n.wp-block-columns {\n display: flex;\n margin-bottom: 28px;\n flex-wrap: wrap; }\n @media (min-width: 782px) {\n .wp-block-columns {\n flex-wrap: nowrap; } }\n .wp-block-columns.has-background {\n padding: 20px 30px; }\n\n.wp-block-column {\n flex-grow: 1;\n min-width: 0;\n word-break: break-word;\n overflow-wrap: break-word; }\n @media (max-width: 599px) {\n .wp-block-column {\n flex-basis: 100% !important; } }\n @media (min-width: 600px) and (max-width: 781px) {\n .wp-block-column {\n flex-basis: calc(50% - 16px) !important;\n flex-grow: 0; }\n .wp-block-column:nth-child(even) {\n margin-left: 32px; } }\n @media (min-width: 782px) {\n .wp-block-column {\n flex-basis: 0;\n flex-grow: 1; }\n .wp-block-column[style*=\"flex-basis\"] {\n flex-grow: 0; }\n .wp-block-column:not(:first-child) {\n margin-left: 32px; } }\n\n/**\n * All Columns Alignment\n */\n.wp-block-columns.are-vertically-aligned-top {\n align-items: flex-start; }\n\n.wp-block-columns.are-vertically-aligned-center {\n align-items: center; }\n\n.wp-block-columns.are-vertically-aligned-bottom {\n align-items: flex-end; }\n\n/**\n * Individual Column Alignment\n */\n.wp-block-column.is-vertically-aligned-top {\n align-self: flex-start; }\n\n.wp-block-column.is-vertically-aligned-center {\n -ms-grid-row-align: center;\n align-self: center; }\n\n.wp-block-column.is-vertically-aligned-bottom {\n align-self: flex-end; }\n\n.wp-block-column.is-vertically-aligned-top, .wp-block-column.is-vertically-aligned-center, .wp-block-column.is-vertically-aligned-bottom {\n width: 100%; }\n\n.wp-block-cover-image,\n.wp-block-cover {\n position: relative;\n background-color: #000;\n background-size: cover;\n background-position: center center;\n min-height: 430px;\n height: 100%;\n width: 100%;\n display: flex;\n justify-content: center;\n align-items: center;\n overflow: hidden; }\n .wp-block-cover-image.has-parallax,\n .wp-block-cover.has-parallax {\n background-attachment: fixed; }\n @supports (-webkit-overflow-scrolling: touch) {\n .wp-block-cover-image.has-parallax,\n .wp-block-cover.has-parallax {\n background-attachment: scroll; } }\n @media (prefers-reduced-motion: reduce) {\n .wp-block-cover-image.has-parallax,\n .wp-block-cover.has-parallax {\n background-attachment: scroll; } }\n .wp-block-cover-image.has-background-dim::before,\n .wp-block-cover.has-background-dim::before {\n content: \"\";\n background-color: inherit; }\n .wp-block-cover-image.has-background-dim:not(.has-background-gradient)::before,\n .wp-block-cover-image .wp-block-cover__gradient-background,\n .wp-block-cover.has-background-dim:not(.has-background-gradient)::before,\n .wp-block-cover .wp-block-cover__gradient-background {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n right: 0;\n z-index: 1; }\n .wp-block-cover-image.has-background-dim:not(.has-background-gradient)::before,\n .wp-block-cover-image .wp-block-cover__gradient-background,\n .wp-block-cover.has-background-dim:not(.has-background-gradient)::before,\n .wp-block-cover .wp-block-cover__gradient-background {\n opacity: 0.5; }\n .wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient)::before,\n .wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient)::before {\n opacity: 0.1; }\n .wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,\n .wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background {\n opacity: 0.1; }\n .wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient)::before,\n .wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient)::before {\n opacity: 0.2; }\n .wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,\n .wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background {\n opacity: 0.2; }\n .wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient)::before,\n .wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient)::before {\n opacity: 0.3; }\n .wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,\n .wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background {\n opacity: 0.3; }\n .wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient)::before,\n .wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient)::before {\n opacity: 0.4; }\n .wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,\n .wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background {\n opacity: 0.4; }\n .wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient)::before,\n .wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient)::before {\n opacity: 0.5; }\n .wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,\n .wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background {\n opacity: 0.5; }\n .wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient)::before,\n .wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient)::before {\n opacity: 0.6; }\n .wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,\n .wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background {\n opacity: 0.6; }\n .wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient)::before,\n .wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient)::before {\n opacity: 0.7; }\n .wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,\n .wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background {\n opacity: 0.7; }\n .wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient)::before,\n .wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient)::before {\n opacity: 0.8; }\n .wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,\n .wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background {\n opacity: 0.8; }\n .wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient)::before,\n .wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient)::before {\n opacity: 0.9; }\n .wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,\n .wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background {\n opacity: 0.9; }\n .wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient)::before,\n .wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient)::before {\n opacity: 1; }\n .wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,\n .wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background {\n opacity: 1; }\n .wp-block-cover-image.alignleft, .wp-block-cover-image.alignright,\n .wp-block-cover.alignleft,\n .wp-block-cover.alignright {\n max-width: 290px;\n width: 100%; }\n .wp-block-cover-image::after,\n .wp-block-cover::after {\n display: block;\n content: \"\";\n font-size: 0;\n min-height: inherit; }\n @supports ((position: -webkit-sticky) or (position: sticky)) {\n .wp-block-cover-image::after,\n .wp-block-cover::after {\n content: none; } }\n .wp-block-cover-image.aligncenter, .wp-block-cover-image.alignleft, .wp-block-cover-image.alignright,\n .wp-block-cover.aligncenter,\n .wp-block-cover.alignleft,\n .wp-block-cover.alignright {\n display: flex; }\n .wp-block-cover-image .wp-block-cover__inner-container,\n .wp-block-cover .wp-block-cover__inner-container {\n width: calc(100% - 70px);\n z-index: 1;\n color: #f8f9f9; }\n .wp-block-cover-image p:not(.has-text-color),\n .wp-block-cover-image h1:not(.has-text-color),\n .wp-block-cover-image h2:not(.has-text-color),\n .wp-block-cover-image h3:not(.has-text-color),\n .wp-block-cover-image h4:not(.has-text-color),\n .wp-block-cover-image h5:not(.has-text-color),\n .wp-block-cover-image h6:not(.has-text-color),\n .wp-block-cover-image .wp-block-subhead:not(.has-text-color),\n .wp-block-cover p:not(.has-text-color),\n .wp-block-cover h1:not(.has-text-color),\n .wp-block-cover h2:not(.has-text-color),\n .wp-block-cover h3:not(.has-text-color),\n .wp-block-cover h4:not(.has-text-color),\n .wp-block-cover h5:not(.has-text-color),\n .wp-block-cover h6:not(.has-text-color),\n .wp-block-cover .wp-block-subhead:not(.has-text-color) {\n color: inherit; }\n\n.wp-block-cover__video-background {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translateX(-50%) translateY(-50%);\n width: 100%;\n height: 100%;\n z-index: 0;\n object-fit: cover; }\n\nsection.wp-block-cover-image h2,\n.wp-block-cover-image-text,\n.wp-block-cover-text {\n color: #fff; }\n section.wp-block-cover-image h2 a,\n section.wp-block-cover-image h2 a:hover,\n section.wp-block-cover-image h2 a:focus,\n section.wp-block-cover-image h2 a:active,\n .wp-block-cover-image-text a,\n .wp-block-cover-image-text a:hover,\n .wp-block-cover-image-text a:focus,\n .wp-block-cover-image-text a:active,\n .wp-block-cover-text a,\n .wp-block-cover-text a:hover,\n .wp-block-cover-text a:focus,\n .wp-block-cover-text a:active {\n color: #fff; }\n\n.wp-block-cover-image\n.wp-block-cover.has-left-content {\n justify-content: flex-start; }\n\n.wp-block-cover-image\n.wp-block-cover.has-right-content {\n justify-content: flex-end; }\n\nsection.wp-block-cover-image.has-left-content > h2,\n.wp-block-cover-image.has-left-content .wp-block-cover-image-text,\n.wp-block-cover.has-left-content .wp-block-cover-text {\n margin-left: 0;\n text-align: left; }\n\nsection.wp-block-cover-image.has-right-content > h2,\n.wp-block-cover-image.has-right-content .wp-block-cover-image-text,\n.wp-block-cover.has-right-content .wp-block-cover-text {\n margin-right: 0;\n text-align: right; }\n\nsection.wp-block-cover-image > h2,\n.wp-block-cover-image .wp-block-cover-image-text,\n.wp-block-cover .wp-block-cover-text {\n font-size: 2em;\n line-height: 1.25;\n z-index: 1;\n margin-bottom: 0;\n max-width: 580px;\n padding: 14px;\n text-align: center; }\n\n.block-editor-block-list__block[data-type=\"core/embed\"][data-align=\"left\"],\n.block-editor-block-list__block[data-type=\"core/embed\"][data-align=\"right\"],\n.wp-block-embed.alignleft,\n.wp-block-embed.alignright {\n max-width: 360px;\n width: 100%; }\n\n.wp-block-embed {\n margin-bottom: 1em; }\n .wp-block-embed figcaption {\n margin-top: 0.5em;\n margin-bottom: 1em; }\n\n.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper,\n.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper,\n.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper,\n.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper,\n.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper,\n.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper,\n.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper {\n position: relative; }\n .wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper::before,\n .wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper::before,\n .wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper::before,\n .wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper::before,\n .wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper::before,\n .wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper::before,\n .wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper::before {\n content: \"\";\n display: block;\n padding-top: 50%; }\n .wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper iframe,\n .wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper iframe,\n .wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe,\n .wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper iframe,\n .wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper iframe,\n .wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper iframe,\n .wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper iframe {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n width: 100%;\n height: 100%; }\n\n.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper::before {\n padding-top: 42.85%; }\n\n.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper::before {\n padding-top: 50%; }\n\n.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper::before {\n padding-top: 56.25%; }\n\n.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper::before {\n padding-top: 75%; }\n\n.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper::before {\n padding-top: 100%; }\n\n.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper::before {\n padding-top: 177.78%; }\n\n.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper::before {\n padding-top: 200%; }\n\n.wp-block-file {\n margin-bottom: 1.5em; }\n .wp-block-file.aligncenter {\n text-align: center; }\n .wp-block-file.alignright {\n /*rtl:ignore*/\n text-align: right; }\n .wp-block-file .wp-block-file__button {\n background: #32373c;\n border-radius: 2em;\n color: #fff;\n font-size: 13px;\n padding: 0.5em 1em; }\n .wp-block-file a.wp-block-file__button {\n text-decoration: none; }\n .wp-block-file a.wp-block-file__button:hover, .wp-block-file a.wp-block-file__button:visited, .wp-block-file a.wp-block-file__button:focus, .wp-block-file a.wp-block-file__button:active {\n box-shadow: none;\n color: #fff;\n opacity: 0.85;\n text-decoration: none; }\n .wp-block-file * + .wp-block-file__button {\n margin-left: 0.75em; }\n\n.wp-block-gallery,\n.blocks-gallery-grid {\n display: flex;\n flex-wrap: wrap;\n list-style-type: none;\n padding: 0;\n margin: 0; }\n .wp-block-gallery .blocks-gallery-image,\n .wp-block-gallery .blocks-gallery-item,\n .blocks-gallery-grid .blocks-gallery-image,\n .blocks-gallery-grid .blocks-gallery-item {\n margin: 0 16px 16px 0;\n display: flex;\n flex-grow: 1;\n flex-direction: column;\n justify-content: center;\n position: relative; }\n .wp-block-gallery .blocks-gallery-image figure,\n .wp-block-gallery .blocks-gallery-item figure,\n .blocks-gallery-grid .blocks-gallery-image figure,\n .blocks-gallery-grid .blocks-gallery-item figure {\n margin: 0;\n height: 100%; }\n @supports ((position: -webkit-sticky) or (position: sticky)) {\n .wp-block-gallery .blocks-gallery-image figure,\n .wp-block-gallery .blocks-gallery-item figure,\n .blocks-gallery-grid .blocks-gallery-image figure,\n .blocks-gallery-grid .blocks-gallery-item figure {\n display: flex;\n align-items: flex-end;\n justify-content: flex-start; } }\n .wp-block-gallery .blocks-gallery-image img,\n .wp-block-gallery .blocks-gallery-item img,\n .blocks-gallery-grid .blocks-gallery-image img,\n .blocks-gallery-grid .blocks-gallery-item img {\n display: block;\n max-width: 100%;\n height: auto; }\n .wp-block-gallery .blocks-gallery-image img,\n .wp-block-gallery .blocks-gallery-item img,\n .blocks-gallery-grid .blocks-gallery-image img,\n .blocks-gallery-grid .blocks-gallery-item img {\n width: 100%; }\n @supports ((position: -webkit-sticky) or (position: sticky)) {\n .wp-block-gallery .blocks-gallery-image img,\n .wp-block-gallery .blocks-gallery-item img,\n .blocks-gallery-grid .blocks-gallery-image img,\n .blocks-gallery-grid .blocks-gallery-item img {\n width: auto; } }\n .wp-block-gallery .blocks-gallery-image figcaption,\n .wp-block-gallery .blocks-gallery-item figcaption,\n .blocks-gallery-grid .blocks-gallery-image figcaption,\n .blocks-gallery-grid .blocks-gallery-item figcaption {\n position: absolute;\n bottom: 0;\n width: 100%;\n max-height: 100%;\n overflow: auto;\n padding: 40px 10px 9px;\n color: #fff;\n text-align: center;\n font-size: 13px;\n background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.3) 70%, transparent); }\n .wp-block-gallery .blocks-gallery-image figcaption img,\n .wp-block-gallery .blocks-gallery-item figcaption img,\n .blocks-gallery-grid .blocks-gallery-image figcaption img,\n .blocks-gallery-grid .blocks-gallery-item figcaption img {\n display: inline; }\n .wp-block-gallery.is-cropped .blocks-gallery-image a,\n .wp-block-gallery.is-cropped .blocks-gallery-image img,\n .wp-block-gallery.is-cropped .blocks-gallery-item a,\n .wp-block-gallery.is-cropped .blocks-gallery-item img,\n .blocks-gallery-grid.is-cropped .blocks-gallery-image a,\n .blocks-gallery-grid.is-cropped .blocks-gallery-image img,\n .blocks-gallery-grid.is-cropped .blocks-gallery-item a,\n .blocks-gallery-grid.is-cropped .blocks-gallery-item img {\n width: 100%; }\n @supports ((position: -webkit-sticky) or (position: sticky)) {\n .wp-block-gallery.is-cropped .blocks-gallery-image a,\n .wp-block-gallery.is-cropped .blocks-gallery-image img,\n .wp-block-gallery.is-cropped .blocks-gallery-item a,\n .wp-block-gallery.is-cropped .blocks-gallery-item img,\n .blocks-gallery-grid.is-cropped .blocks-gallery-image a,\n .blocks-gallery-grid.is-cropped .blocks-gallery-image img,\n .blocks-gallery-grid.is-cropped .blocks-gallery-item a,\n .blocks-gallery-grid.is-cropped .blocks-gallery-item img {\n height: 100%;\n flex: 1;\n object-fit: cover; } }\n .wp-block-gallery .blocks-gallery-image,\n .wp-block-gallery .blocks-gallery-item,\n .blocks-gallery-grid .blocks-gallery-image,\n .blocks-gallery-grid .blocks-gallery-item {\n width: calc(50% - 16px); }\n .wp-block-gallery .blocks-gallery-image:nth-of-type(even),\n .wp-block-gallery .blocks-gallery-item:nth-of-type(even),\n .blocks-gallery-grid .blocks-gallery-image:nth-of-type(even),\n .blocks-gallery-grid .blocks-gallery-item:nth-of-type(even) {\n margin-right: 0; }\n .wp-block-gallery.columns-1 .blocks-gallery-image,\n .wp-block-gallery.columns-1 .blocks-gallery-item,\n .blocks-gallery-grid.columns-1 .blocks-gallery-image,\n .blocks-gallery-grid.columns-1 .blocks-gallery-item {\n width: 100%;\n margin-right: 0; }\n @media (min-width: 600px) {\n .wp-block-gallery.columns-3 .blocks-gallery-image,\n .wp-block-gallery.columns-3 .blocks-gallery-item,\n .blocks-gallery-grid.columns-3 .blocks-gallery-image,\n .blocks-gallery-grid.columns-3 .blocks-gallery-item {\n width: calc(33.33333% - 10.66667px);\n margin-right: 16px; }\n .wp-block-gallery.columns-4 .blocks-gallery-image,\n .wp-block-gallery.columns-4 .blocks-gallery-item,\n .blocks-gallery-grid.columns-4 .blocks-gallery-image,\n .blocks-gallery-grid.columns-4 .blocks-gallery-item {\n width: calc(25% - 12px);\n margin-right: 16px; }\n .wp-block-gallery.columns-5 .blocks-gallery-image,\n .wp-block-gallery.columns-5 .blocks-gallery-item,\n .blocks-gallery-grid.columns-5 .blocks-gallery-image,\n .blocks-gallery-grid.columns-5 .blocks-gallery-item {\n width: calc(20% - 12.8px);\n margin-right: 16px; }\n .wp-block-gallery.columns-6 .blocks-gallery-image,\n .wp-block-gallery.columns-6 .blocks-gallery-item,\n .blocks-gallery-grid.columns-6 .blocks-gallery-image,\n .blocks-gallery-grid.columns-6 .blocks-gallery-item {\n width: calc(16.66667% - 13.33333px);\n margin-right: 16px; }\n .wp-block-gallery.columns-7 .blocks-gallery-image,\n .wp-block-gallery.columns-7 .blocks-gallery-item,\n .blocks-gallery-grid.columns-7 .blocks-gallery-image,\n .blocks-gallery-grid.columns-7 .blocks-gallery-item {\n width: calc(14.28571% - 13.71429px);\n margin-right: 16px; }\n .wp-block-gallery.columns-8 .blocks-gallery-image,\n .wp-block-gallery.columns-8 .blocks-gallery-item,\n .blocks-gallery-grid.columns-8 .blocks-gallery-image,\n .blocks-gallery-grid.columns-8 .blocks-gallery-item {\n width: calc(12.5% - 14px);\n margin-right: 16px; }\n .wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n),\n .wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n),\n .blocks-gallery-grid.columns-1 .blocks-gallery-image:nth-of-type(1n),\n .blocks-gallery-grid.columns-1 .blocks-gallery-item:nth-of-type(1n) {\n margin-right: 0; }\n .wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n),\n .wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n),\n .blocks-gallery-grid.columns-2 .blocks-gallery-image:nth-of-type(2n),\n .blocks-gallery-grid.columns-2 .blocks-gallery-item:nth-of-type(2n) {\n margin-right: 0; }\n .wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n),\n .wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n),\n .blocks-gallery-grid.columns-3 .blocks-gallery-image:nth-of-type(3n),\n .blocks-gallery-grid.columns-3 .blocks-gallery-item:nth-of-type(3n) {\n margin-right: 0; }\n .wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n),\n .wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n),\n .blocks-gallery-grid.columns-4 .blocks-gallery-image:nth-of-type(4n),\n .blocks-gallery-grid.columns-4 .blocks-gallery-item:nth-of-type(4n) {\n margin-right: 0; }\n .wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n),\n .wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n),\n .blocks-gallery-grid.columns-5 .blocks-gallery-image:nth-of-type(5n),\n .blocks-gallery-grid.columns-5 .blocks-gallery-item:nth-of-type(5n) {\n margin-right: 0; }\n .wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n),\n .wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n),\n .blocks-gallery-grid.columns-6 .blocks-gallery-image:nth-of-type(6n),\n .blocks-gallery-grid.columns-6 .blocks-gallery-item:nth-of-type(6n) {\n margin-right: 0; }\n .wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n),\n .wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n),\n .blocks-gallery-grid.columns-7 .blocks-gallery-image:nth-of-type(7n),\n .blocks-gallery-grid.columns-7 .blocks-gallery-item:nth-of-type(7n) {\n margin-right: 0; }\n .wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n),\n .wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n),\n .blocks-gallery-grid.columns-8 .blocks-gallery-image:nth-of-type(8n),\n .blocks-gallery-grid.columns-8 .blocks-gallery-item:nth-of-type(8n) {\n margin-right: 0; } }\n .wp-block-gallery .blocks-gallery-image:last-child,\n .wp-block-gallery .blocks-gallery-item:last-child,\n .blocks-gallery-grid .blocks-gallery-image:last-child,\n .blocks-gallery-grid .blocks-gallery-item:last-child {\n margin-right: 0; }\n .wp-block-gallery.alignleft, .wp-block-gallery.alignright,\n .blocks-gallery-grid.alignleft,\n .blocks-gallery-grid.alignright {\n max-width: 290px;\n width: 100%; }\n .wp-block-gallery.aligncenter .blocks-gallery-item figure,\n .blocks-gallery-grid.aligncenter .blocks-gallery-item figure {\n justify-content: center; }\n\n.wp-block-image {\n margin-bottom: 1em; }\n .wp-block-image img {\n max-width: 100%; }\n .wp-block-image.aligncenter {\n text-align: center; }\n .wp-block-image.alignfull img,\n .wp-block-image.alignwide img {\n width: 100%; }\n .wp-block-image .alignleft,\n .wp-block-image .alignright,\n .wp-block-image .aligncenter, .wp-block-image.is-resized {\n display: table;\n margin-left: 0;\n margin-right: 0; }\n .wp-block-image .alignleft > figcaption,\n .wp-block-image .alignright > figcaption,\n .wp-block-image .aligncenter > figcaption, .wp-block-image.is-resized > figcaption {\n display: table-caption;\n caption-side: bottom; }\n .wp-block-image .alignleft {\n /*rtl:ignore*/\n float: left;\n /*rtl:ignore*/\n margin-right: 1em; }\n .wp-block-image .alignright {\n /*rtl:ignore*/\n float: right;\n /*rtl:ignore*/\n margin-left: 1em; }\n .wp-block-image .aligncenter {\n margin-left: auto;\n margin-right: auto; }\n .wp-block-image figcaption {\n margin-top: 0.5em;\n margin-bottom: 1em; }\n\n.is-style-rounded img {\n border-radius: 9999px; }\n\n.is-style-circle-mask img {\n border-radius: 9999px; }\n @supports ((-webkit-mask-image: none) or (mask-image: none)) or (-webkit-mask-image: none) {\n .is-style-circle-mask img {\n /* stylelint-disable */\n -webkit-mask-image: url('data:image/svg+xml;utf8,');\n mask-image: url('data:image/svg+xml;utf8,');\n /* stylelint-enable */\n mask-mode: alpha;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-position: center;\n mask-position: center;\n border-radius: 0; } }\n\n.wp-block-latest-comments__comment {\n font-size: 15px;\n line-height: 1.1;\n list-style: none;\n margin-bottom: 1em; }\n .has-avatars .wp-block-latest-comments__comment {\n min-height: 36px;\n list-style: none; }\n .has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta,\n .has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt {\n margin-left: 52px; }\n .has-dates .wp-block-latest-comments__comment,\n .has-excerpts .wp-block-latest-comments__comment {\n line-height: 1.5; }\n\n.wp-block-latest-comments__comment-excerpt p {\n font-size: 14px;\n line-height: 1.8;\n margin: 5px 0 20px; }\n\n.wp-block-latest-comments__comment-date {\n color: #8f98a1;\n display: block;\n font-size: 12px; }\n\n.wp-block-latest-comments .avatar,\n.wp-block-latest-comments__comment-avatar {\n border-radius: 24px;\n display: block;\n float: left;\n height: 40px;\n margin-right: 12px;\n width: 40px; }\n\n.wp-block-latest-posts.alignleft {\n /*rtl:ignore*/\n margin-right: 2em; }\n\n.wp-block-latest-posts.alignright {\n /*rtl:ignore*/\n margin-left: 2em; }\n\n.wp-block-latest-posts.wp-block-latest-posts__list {\n list-style: none; }\n .wp-block-latest-posts.wp-block-latest-posts__list li {\n clear: both; }\n\n.wp-block-latest-posts.is-grid {\n display: flex;\n flex-wrap: wrap;\n padding: 0; }\n .wp-block-latest-posts.is-grid li {\n margin: 0 16px 16px 0;\n width: 100%; }\n\n@media (min-width: 600px) {\n .wp-block-latest-posts.columns-2 li {\n width: calc((100% / 2) - 16px); }\n .wp-block-latest-posts.columns-3 li {\n width: calc((100% / 3) - 16px); }\n .wp-block-latest-posts.columns-4 li {\n width: calc((100% / 4) - 16px); }\n .wp-block-latest-posts.columns-5 li {\n width: calc((100% / 5) - 16px); }\n .wp-block-latest-posts.columns-6 li {\n width: calc((100% / 6) - 16px); } }\n\n.wp-block-latest-posts__post-date {\n display: block;\n color: #6c7781;\n font-size: 13px; }\n\n.wp-block-latest-posts__post-excerpt {\n margin-top: 8px;\n margin-bottom: 16px; }\n\n.wp-block-latest-posts__featured-image img {\n height: auto;\n width: auto; }\n\n.wp-block-latest-posts__featured-image.alignleft {\n /*rtl:ignore*/\n margin-right: 1em; }\n\n.wp-block-latest-posts__featured-image.alignright {\n /*rtl:ignore*/\n margin-left: 1em; }\n\n.wp-block-latest-posts__featured-image.aligncenter {\n margin-bottom: 1em;\n text-align: center; }\n\n.wp-block-media-text {\n /*!rtl:begin:ignore*/\n direction: ltr;\n /*!rtl:end:ignore*/\n display: -ms-grid;\n display: grid;\n -ms-grid-columns: 50% 1fr;\n grid-template-columns: 50% 1fr;\n -ms-grid-rows: auto;\n grid-template-rows: auto; }\n .wp-block-media-text.has-media-on-the-right {\n -ms-grid-columns: 1fr 50%;\n grid-template-columns: 1fr 50%; }\n\n.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content,\n.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media {\n -ms-grid-row-align: start;\n align-self: start; }\n\n.wp-block-media-text .wp-block-media-text__content,\n.wp-block-media-text .wp-block-media-text__media,\n.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content,\n.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media {\n -ms-grid-row-align: center;\n align-self: center; }\n\n.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content,\n.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media {\n -ms-grid-row-align: end;\n align-self: end; }\n\n.wp-block-media-text .wp-block-media-text__media {\n /*!rtl:begin:ignore*/\n -ms-grid-column: 1;\n grid-column: 1;\n -ms-grid-row: 1;\n grid-row: 1;\n /*!rtl:end:ignore*/\n margin: 0; }\n\n.wp-block-media-text .wp-block-media-text__content {\n direction: ltr;\n /*!rtl:begin:ignore*/\n -ms-grid-column: 2;\n grid-column: 2;\n -ms-grid-row: 1;\n grid-row: 1;\n /*!rtl:end:ignore*/\n padding: 0 8% 0 8%;\n word-break: break-word; }\n\n.wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {\n /*!rtl:begin:ignore*/\n -ms-grid-column: 2;\n grid-column: 2;\n -ms-grid-row: 1;\n grid-row: 1;\n /*!rtl:end:ignore*/ }\n\n.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {\n /*!rtl:begin:ignore*/\n -ms-grid-column: 1;\n grid-column: 1;\n -ms-grid-row: 1;\n grid-row: 1;\n /*!rtl:end:ignore*/ }\n\n.wp-block-media-text > figure > img,\n.wp-block-media-text > figure > video {\n max-width: unset;\n width: 100%;\n vertical-align: middle; }\n\n.wp-block-media-text.is-image-fill figure.wp-block-media-text__media {\n height: 100%;\n min-height: 250px;\n background-size: cover; }\n\n.wp-block-media-text.is-image-fill figure.wp-block-media-text__media > img {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0; }\n\n/*\n* Here we here not able to use a mobile first CSS approach.\n* Custom widths are set using inline styles, and on mobile,\n* we need 100% width, so we use important to overwrite the inline style.\n* If the style were set on mobile first, on desktop styles,\n* we would have no way of setting the style again to the inline style.\n*/\n@media (max-width: 600px) {\n .wp-block-media-text.is-stacked-on-mobile {\n -ms-grid-columns: 100% !important;\n grid-template-columns: 100% !important; }\n .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media {\n -ms-grid-column: 1;\n grid-column: 1;\n -ms-grid-row: 1;\n grid-row: 1; }\n .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {\n -ms-grid-column: 1;\n grid-column: 1;\n -ms-grid-row: 2;\n grid-row: 2; }\n .wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right .wp-block-media-text__media {\n -ms-grid-column: 1;\n grid-column: 1;\n -ms-grid-row: 2;\n grid-row: 2; }\n .wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right .wp-block-media-text__content {\n -ms-grid-column: 1;\n grid-column: 1;\n -ms-grid-row: 1;\n grid-row: 1; } }\n\n/*\n* Frontend: reset the default list styles\n*/\n.wp-block-navigation > ul {\n display: block;\n list-style: none;\n margin: 0;\n padding-left: 0; }\n @media (min-width: 600px) {\n .wp-block-navigation > ul {\n display: flex;\n flex-wrap: wrap; } }\n .wp-block-navigation > ul ul {\n list-style: none;\n padding-left: 0;\n margin-top: 0;\n margin-left: 0; }\n .wp-block-navigation > ul ul li {\n margin: 0; }\n\n/*\n* Frontend: styles for submenu flyout\n*/\n.wp-block-navigation > ul li {\n z-index: 1; }\n .wp-block-navigation > ul li:hover, .wp-block-navigation > ul li:focus-within {\n cursor: pointer;\n z-index: 99999; }\n .wp-block-navigation > ul li:hover > ul,\n .wp-block-navigation > ul li:focus-within > ul,\n .wp-block-navigation > ul li ul:hover,\n .wp-block-navigation > ul li ul:focus {\n visibility: visible;\n opacity: 1;\n display: flex;\n flex-direction: column; }\n\n.wp-block-navigation > ul > li ul {\n position: absolute;\n left: 0;\n top: 100%;\n min-width: 200px;\n max-width: 200px;\n opacity: 0;\n transition: opacity 0.1s linear;\n visibility: hidden; }\n\n/*\n* Styles shared between editor and frontend\n*/\n.wp-block-navigation,\n.wp-block-navigation .block-editor-block-list__layout {\n display: flex;\n flex-wrap: wrap; }\n\n.wp-block-navigation .block-editor-block-list__layout .block-editor-block-list__layout {\n width: 200px; }\n\n.wp-block-navigation .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block {\n margin: 0;\n width: auto; }\n\n.wp-block-navigation,\n.wp-block-navigation > .wp-block-navigation__container {\n align-items: center;\n width: 100%; }\n .wp-block-navigation > .wp-block-navigation-link,\n .wp-block-navigation > .wp-block-navigation__container > .wp-block-navigation-link {\n display: flex;\n margin-top: 0;\n margin-bottom: 0; }\n\n.wp-block-navigation .wp-block-navigation-link {\n position: relative;\n margin: 0;\n min-height: 56px;\n display: flex;\n line-height: 1.4; }\n .wp-block-navigation .wp-block-navigation-link .wp-block,\n .wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link {\n min-height: auto;\n padding: 0; }\n .wp-block-navigation .wp-block-navigation-link .wp-block .wp-block-navigation-link {\n margin: 0; }\n .wp-block-navigation .wp-block-navigation-link > .block-editor-inner-blocks {\n display: none; }\n .wp-block-navigation .wp-block-navigation-link.has-child > .wp-block-navigation__container,\n .wp-block-navigation .wp-block-navigation-link.is-editing.has-child > .block-editor-inner-blocks {\n display: flex;\n border: 1px solid rgba(0, 0, 0, 0.15);\n position: absolute;\n z-index: 1;\n top: 100%;\n left: 0; }\n .wp-block-navigation .wp-block-navigation-link.has-child > .wp-block-navigation__container .block-editor-inner-blocks,\n .wp-block-navigation .wp-block-navigation-link.has-child > .wp-block-navigation__container .wp-block-navigation__container,\n .wp-block-navigation .wp-block-navigation-link.is-editing.has-child > .block-editor-inner-blocks .block-editor-inner-blocks,\n .wp-block-navigation .wp-block-navigation-link.is-editing.has-child > .block-editor-inner-blocks .wp-block-navigation__container {\n left: 100%;\n top: -1px; }\n .wp-block-navigation .wp-block-navigation-link .block-editor-inner-blocks,\n .wp-block-navigation .wp-block-navigation-link .wp-block-navigation__container {\n background-color: inherit;\n color: inherit; }\n .wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__content {\n display: flex;\n align-items: center;\n width: max-content;\n padding: 6px 16px; }\n .wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link:first-child:not(:only-child) .wp-block-navigation-link__content {\n padding-top: 8px; }\n .wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link:last-child .wp-block-navigation-link__content {\n padding-bottom: 8px; }\n .wp-block-navigation .wp-block-navigation-link.has-child .wp-block-navigation-link__content {\n min-width: 100%;\n padding-right: 32px;\n position: relative; }\n .wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__submenu-icon {\n position: absolute;\n right: 16px; }\n .wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__submenu-icon svg {\n fill: currentColor; }\n .wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link svg {\n transform: rotate(0); }\n .wp-block-navigation .wp-block-navigation-link.has-text-color .wp-block-navigation-link__content {\n color: inherit; }\n\n.wp-block-navigation .wp-block-navigation-link:not(.has-text-color) > .block-editor-inner-blocks,\n.wp-block-navigation .wp-block-navigation-link:not(.has-text-color) > .wp-block-navigation__container,\n.wp-block-navigation.is-style-light .wp-block-navigation-link:not(.has-text-color) > .block-editor-inner-blocks,\n.wp-block-navigation.is-style-light .wp-block-navigation-link:not(.has-text-color) > .wp-block-navigation__container {\n color: #111; }\n\n.wp-block-navigation .wp-block-navigation-link:not(.has-background) > .block-editor-inner-blocks,\n.wp-block-navigation .wp-block-navigation-link:not(.has-background) > .wp-block-navigation__container,\n.wp-block-navigation.is-style-light .wp-block-navigation-link:not(.has-background) > .block-editor-inner-blocks,\n.wp-block-navigation.is-style-light .wp-block-navigation-link:not(.has-background) > .wp-block-navigation__container {\n background-color: #fff; }\n\n.wp-block-navigation.is-style-dark .wp-block-navigation-link:not(.has-text-color) > .block-editor-inner-blocks,\n.wp-block-navigation.is-style-dark .wp-block-navigation-link:not(.has-text-color) > .wp-block-navigation__container {\n color: #fff; }\n\n.wp-block-navigation.is-style-dark .wp-block-navigation-link:not(.has-background) > .block-editor-inner-blocks,\n.wp-block-navigation.is-style-dark .wp-block-navigation-link:not(.has-background) > .wp-block-navigation__container {\n background-color: #333; }\n\n/*\n* Frontend: non-shared styles & overrides\n*/\n.wp-block-navigation .wp-block-navigation-link.has-child > .wp-block-navigation__container {\n display: flex;\n flex-direction: column;\n padding: 0; }\n\n/*\n* TODO: organize/untangle styles below this line\n*/\n.wp-block-navigation > ul > li > a {\n display: flex;\n align-items: center; }\n\n.wp-block-navigation > ul > li:first-of-type > a {\n padding-left: 0; }\n\n.wp-block-navigation > ul > li:last-of-type > a {\n padding-right: 0; }\n\n.wp-block-navigation.items-justified-left > ul {\n justify-content: flex-start; }\n\n.wp-block-navigation.items-justified-center > ul {\n justify-content: center; }\n\n.wp-block-navigation.items-justified-right > ul {\n justify-content: flex-end; }\n\n.is-small-text {\n font-size: 14px; }\n\n.is-regular-text {\n font-size: 16px; }\n\n.is-large-text {\n font-size: 36px; }\n\n.is-larger-text {\n font-size: 48px; }\n\n.has-drop-cap:not(:focus)::first-letter {\n float: left;\n font-size: 8.4em;\n line-height: 0.68;\n font-weight: 100;\n margin: 0.05em 0.1em 0 0;\n text-transform: uppercase;\n font-style: normal; }\n\np.has-background {\n padding: 20px 30px; }\n\np.has-text-color a {\n color: inherit; }\n\n.wp-block-pullquote {\n padding: 3em 0;\n margin-left: 0;\n margin-right: 0;\n text-align: center; }\n .wp-block-pullquote.alignleft, .wp-block-pullquote.alignright {\n max-width: 290px; }\n .wp-block-pullquote.alignleft p, .wp-block-pullquote.alignright p {\n font-size: 20px; }\n .wp-block-pullquote p {\n font-size: 28px;\n line-height: 1.6; }\n .wp-block-pullquote cite,\n .wp-block-pullquote footer {\n position: relative; }\n .wp-block-pullquote .has-text-color a {\n color: inherit; }\n\n.wp-block-pullquote:not(.is-style-solid-color) {\n background: none; }\n\n.wp-block-pullquote.is-style-solid-color {\n border: none; }\n .wp-block-pullquote.is-style-solid-color blockquote {\n margin-left: auto;\n margin-right: auto;\n text-align: left;\n max-width: 60%; }\n .wp-block-pullquote.is-style-solid-color blockquote p {\n margin-top: 0;\n margin-bottom: 0;\n font-size: 32px; }\n .wp-block-pullquote.is-style-solid-color blockquote cite {\n text-transform: none;\n font-style: normal; }\n\n.wp-block-pullquote cite {\n color: inherit; }\n\n.wp-block-quote.is-style-large, .wp-block-quote.is-large {\n margin: 0 0 16px;\n padding: 0 1em; }\n .wp-block-quote.is-style-large p, .wp-block-quote.is-large p {\n font-size: 24px;\n font-style: italic;\n line-height: 1.6; }\n .wp-block-quote.is-style-large cite,\n .wp-block-quote.is-style-large footer, .wp-block-quote.is-large cite,\n .wp-block-quote.is-large footer {\n font-size: 18px;\n text-align: right; }\n\n.wp-block-rss.alignleft {\n /*rtl:ignore*/\n margin-right: 2em; }\n\n.wp-block-rss.alignright {\n /*rtl:ignore*/\n margin-left: 2em; }\n\n.wp-block-rss.is-grid {\n display: flex;\n flex-wrap: wrap;\n padding: 0;\n list-style: none; }\n .wp-block-rss.is-grid li {\n margin: 0 16px 16px 0;\n width: 100%; }\n\n@media (min-width: 600px) {\n .wp-block-rss.columns-2 li {\n width: calc(( 100% / 2 ) - 16px); }\n .wp-block-rss.columns-3 li {\n width: calc(( 100% / 3 ) - 16px); }\n .wp-block-rss.columns-4 li {\n width: calc(( 100% / 4 ) - 16px); }\n .wp-block-rss.columns-5 li {\n width: calc(( 100% / 5 ) - 16px); }\n .wp-block-rss.columns-6 li {\n width: calc(( 100% / 6 ) - 16px); } }\n\n.wp-block-rss__item-publish-date,\n.wp-block-rss__item-author {\n display: block;\n color: #6c7781;\n font-size: 13px; }\n\n.wp-block-search {\n display: flex;\n flex-wrap: wrap; }\n .wp-block-search .wp-block-search__label {\n width: 100%; }\n .wp-block-search .wp-block-search__input {\n flex-grow: 1;\n max-width: 360px; }\n .wp-block-search .wp-block-search__button {\n margin-left: 10px; }\n\n.wp-block-separator.is-style-wide {\n border-bottom-width: 1px; }\n\n.wp-block-separator.is-style-dots {\n background: none !important;\n border: none;\n text-align: center;\n max-width: none;\n line-height: 1;\n height: auto; }\n .wp-block-separator.is-style-dots::before {\n content: \"\\00b7 \\00b7 \\00b7\";\n color: currentColor;\n font-size: 20px;\n letter-spacing: 2em;\n padding-left: 2em;\n font-family: serif; }\n\n.wp-block-social-links {\n display: flex;\n justify-content: flex-start;\n padding-left: 0;\n padding-right: 0;\n margin-left: 0; }\n .wp-block-social-links .wp-social-link a,\n .wp-block-social-links .wp-social-link a:hover {\n text-decoration: none;\n border-bottom: 0;\n box-shadow: none; }\n\n.wp-social-link {\n display: block;\n width: 36px;\n height: 36px;\n border-radius: 36px;\n margin-right: 8px;\n transition: transform 0.1s ease; }\n @media (prefers-reduced-motion: reduce) {\n .wp-social-link {\n transition-duration: 0s; } }\n .wp-social-link a {\n padding: 6px;\n display: block;\n line-height: 0;\n transition: transform 0.1s ease; }\n .wp-social-link a,\n .wp-social-link a:hover,\n .wp-social-link a:active,\n .wp-social-link a:visited,\n .wp-social-link svg {\n color: currentColor;\n fill: currentColor; }\n .wp-social-link:hover {\n transform: scale(1.1); }\n\n.wp-block-social-links.aligncenter {\n justify-content: center;\n display: flex; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link {\n background-color: #f0f0f0;\n color: #444; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon {\n background-color: #f90;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp {\n background-color: #1ea0c3;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance {\n background-color: #0757fe;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen {\n background-color: #1e1f26;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart {\n background-color: #02e49b;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble {\n background-color: #e94c89;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox {\n background-color: #4280ff;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy {\n background-color: #f45800;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook {\n background-color: #1977f2;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx {\n background-color: #000;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr {\n background-color: #0461dd;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare {\n background-color: #e65678;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github {\n background-color: #24292d;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads {\n background-color: #eceadd;\n color: #382110; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google {\n background-color: #ea4434;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram {\n background-color: #f00075;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm {\n background-color: #e21b24;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin {\n background-color: #0577b5;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon {\n background-color: #3288d4;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium {\n background-color: #02ab6c;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup {\n background-color: #f6405f;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest {\n background-color: #e60122;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket {\n background-color: #ef4155;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit {\n background-color: #fe4500;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype {\n background-color: #0478d7;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat {\n background-color: #fefc00;\n color: #fff;\n stroke: #000; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud {\n background-color: #ff5600;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify {\n background-color: #1bd760;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr {\n background-color: #011835;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch {\n background-color: #6440a4;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter {\n background-color: #21a1f3;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo {\n background-color: #1eb7ea;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk {\n background-color: #4680c2;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress {\n background-color: #3499cd;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp {\n background-color: #d32422;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube {\n background-color: #ff0100;\n color: #fff; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link {\n background: none;\n padding: 4px; }\n .wp-block-social-links.is-style-logos-only .wp-social-link svg {\n width: 28px;\n height: 28px; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-amazon {\n color: #f90; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp {\n color: #1ea0c3; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-behance {\n color: #0757fe; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-codepen {\n color: #1e1f26; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-deviantart {\n color: #02e49b; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-dribbble {\n color: #e94c89; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-dropbox {\n color: #4280ff; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-etsy {\n color: #f45800; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-facebook {\n color: #1977f2; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx {\n color: #000; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-flickr {\n color: #0461dd; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-foursquare {\n color: #e65678; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-github {\n color: #24292d; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-goodreads {\n color: #382110; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-google {\n color: #ea4434; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-instagram {\n color: #f00075; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-lastfm {\n color: #e21b24; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-linkedin {\n color: #0577b5; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-mastodon {\n color: #3288d4; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-medium {\n color: #02ab6c; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-meetup {\n color: #f6405f; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-pinterest {\n color: #e60122; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-pocket {\n color: #ef4155; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-reddit {\n color: #fe4500; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-skype {\n color: #0478d7; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-snapchat {\n color: #fff;\n stroke: #000; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud {\n color: #ff5600; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-spotify {\n color: #1bd760; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-tumblr {\n color: #011835; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-twitch {\n color: #6440a4; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-twitter {\n color: #21a1f3; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-vimeo {\n color: #1eb7ea; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-vk {\n color: #4680c2; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-wordpress {\n color: #3499cd; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-yelp {\n background-color: #d32422;\n color: #fff; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-youtube {\n color: #ff0100; }\n\n.wp-block-social-links.is-style-pill-shape .wp-social-link {\n width: auto; }\n\n.wp-block-social-links.is-style-pill-shape .wp-social-link a {\n padding-left: 16px;\n padding-right: 16px; }\n\n.wp-block-spacer {\n clear: both; }\n\np.wp-block-subhead {\n font-size: 1.1em;\n font-style: italic;\n opacity: 0.75; }\n\n.wp-block-table {\n overflow-x: auto; }\n .wp-block-table table {\n width: 100%; }\n .wp-block-table .has-fixed-layout {\n table-layout: fixed;\n width: 100%; }\n .wp-block-table .has-fixed-layout td,\n .wp-block-table .has-fixed-layout th {\n word-break: break-word; }\n .wp-block-table.alignleft, .wp-block-table.aligncenter, .wp-block-table.alignright {\n display: table;\n width: auto; }\n .wp-block-table.alignleft td,\n .wp-block-table.alignleft th, .wp-block-table.aligncenter td,\n .wp-block-table.aligncenter th, .wp-block-table.alignright td,\n .wp-block-table.alignright th {\n word-break: break-word; }\n .wp-block-table .has-subtle-light-gray-background-color {\n background-color: #f3f4f5; }\n .wp-block-table .has-subtle-pale-green-background-color {\n background-color: #e9fbe5; }\n .wp-block-table .has-subtle-pale-blue-background-color {\n background-color: #e7f5fe; }\n .wp-block-table .has-subtle-pale-pink-background-color {\n background-color: #fcf0ef; }\n .wp-block-table.is-style-stripes {\n border-spacing: 0;\n border-collapse: inherit;\n background-color: transparent;\n border-bottom: 1px solid #f3f4f5; }\n .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {\n background-color: #f3f4f5; }\n .wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd) {\n background-color: #f3f4f5; }\n .wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd) {\n background-color: #e9fbe5; }\n .wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd) {\n background-color: #e7f5fe; }\n .wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd) {\n background-color: #fcf0ef; }\n .wp-block-table.is-style-stripes th,\n .wp-block-table.is-style-stripes td {\n border-color: transparent; }\n\n.wp-block-text-columns {\n display: flex; }\n .wp-block-text-columns.aligncenter {\n display: flex; }\n .wp-block-text-columns .wp-block-column {\n margin: 0 16px;\n padding: 0; }\n .wp-block-text-columns .wp-block-column:first-child {\n margin-left: 0; }\n .wp-block-text-columns .wp-block-column:last-child {\n margin-right: 0; }\n .wp-block-text-columns.columns-2 .wp-block-column {\n width: calc(100% / 2); }\n .wp-block-text-columns.columns-3 .wp-block-column {\n width: calc(100% / 3); }\n .wp-block-text-columns.columns-4 .wp-block-column {\n width: calc(100% / 4); }\n\n.wp-block-video {\n margin-left: 0;\n margin-right: 0; }\n .wp-block-video video {\n max-width: 100%; }\n @supports ((position: -webkit-sticky) or (position: sticky)) {\n .wp-block-video [poster] {\n object-fit: cover; } }\n .wp-block-video.aligncenter {\n text-align: center; }\n .wp-block-video figcaption {\n margin-top: 0.5em;\n margin-bottom: 1em; }\n\n:root {\n /* stylelint-disable function-comma-space-after */\n /* stylelint-enable function-comma-space-after */ }\n :root .has-pale-pink-background-color {\n background-color: #f78da7; }\n :root .has-vivid-red-background-color {\n background-color: #cf2e2e; }\n :root .has-luminous-vivid-orange-background-color {\n background-color: #ff6900; }\n :root .has-luminous-vivid-amber-background-color {\n background-color: #fcb900; }\n :root .has-light-green-cyan-background-color {\n background-color: #7bdcb5; }\n :root .has-vivid-green-cyan-background-color {\n background-color: #00d084; }\n :root .has-pale-cyan-blue-background-color {\n background-color: #8ed1fc; }\n :root .has-vivid-cyan-blue-background-color {\n background-color: #0693e3; }\n :root .has-vivid-purple-background-color {\n background-color: #9b51e0; }\n :root .has-very-light-gray-background-color {\n background-color: #eee; }\n :root .has-cyan-bluish-gray-background-color {\n background-color: #abb8c3; }\n :root .has-very-dark-gray-background-color {\n background-color: #313131; }\n :root .has-pale-pink-color {\n color: #f78da7; }\n :root .has-vivid-red-color {\n color: #cf2e2e; }\n :root .has-luminous-vivid-orange-color {\n color: #ff6900; }\n :root .has-luminous-vivid-amber-color {\n color: #fcb900; }\n :root .has-light-green-cyan-color {\n color: #7bdcb5; }\n :root .has-vivid-green-cyan-color {\n color: #00d084; }\n :root .has-pale-cyan-blue-color {\n color: #8ed1fc; }\n :root .has-vivid-cyan-blue-color {\n color: #0693e3; }\n :root .has-vivid-purple-color {\n color: #9b51e0; }\n :root .has-very-light-gray-color {\n color: #eee; }\n :root .has-cyan-bluish-gray-color {\n color: #abb8c3; }\n :root .has-very-dark-gray-color {\n color: #313131; }\n :root .has-vivid-cyan-blue-to-vivid-purple-gradient-background {\n background: linear-gradient(135deg, #0693e3 0%, #9b51e0 100%); }\n :root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background {\n background: linear-gradient(135deg, #00d084 0%, #0693e3 100%); }\n :root .has-light-green-cyan-to-vivid-green-cyan-gradient-background {\n background: linear-gradient(135deg, #7adcb4 0%, #00d082 100%); }\n :root .has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {\n background: linear-gradient(135deg, #fcb900 0%, #ff6900 100%); }\n :root .has-luminous-vivid-orange-to-vivid-red-gradient-background {\n background: linear-gradient(135deg, #ff6900 0%, #cf2e2e 100%); }\n :root .has-very-light-gray-to-cyan-bluish-gray-gradient-background {\n background: linear-gradient(135deg, #eeeeee 0%, #a9b8c3 100%); }\n :root .has-cool-to-warm-spectrum-gradient-background {\n background: linear-gradient(135deg, #4aeadc 0%, #9778d1 20%, #cf2aba 40%, #ee2c82 60%, #fb6962 80%, #fef84c 100%); }\n :root .has-blush-light-purple-gradient-background {\n background: linear-gradient(135deg, #ffceec 0%, #9896f0 100%); }\n :root .has-blush-bordeaux-gradient-background {\n background: linear-gradient(135deg, #fecda5 0%, #fe2d2d 50%, #6b003e 100%); }\n :root .has-purple-crush-gradient-background {\n background: linear-gradient(135deg, #34e2e4 0%, #4721fb 50%, #ab1dfe 100%); }\n :root .has-luminous-dusk-gradient-background {\n background: linear-gradient(135deg, #ffcb70 0%, #c751c0 50%, #4158d0 100%); }\n :root .has-hazy-dawn-gradient-background {\n background: linear-gradient(135deg, #faaca8 0%, #dad0ec 100%); }\n :root .has-pale-ocean-gradient-background {\n background: linear-gradient(135deg, #fff5cb 0%, #b6e3d4 50%, #33a7b5 100%); }\n :root .has-electric-grass-gradient-background {\n background: linear-gradient(135deg, #caf880 0%, #71ce7e 100%); }\n :root .has-subdued-olive-gradient-background {\n background: linear-gradient(135deg, #fafae1 0%, #67a671 100%); }\n :root .has-atomic-cream-gradient-background {\n background: linear-gradient(135deg, #fdd79a 0%, #004a59 100%); }\n :root .has-nightshade-gradient-background {\n background: linear-gradient(135deg, #330968 0%, #31cdcf 100%); }\n :root .has-midnight-gradient-background {\n background: linear-gradient(135deg, #020381 0%, #2874fc 100%); }\n\n.has-small-font-size {\n font-size: 13px; }\n\n.has-regular-font-size,\n.has-normal-font-size {\n font-size: 16px; }\n\n.has-medium-font-size {\n font-size: 20px; }\n\n.has-large-font-size {\n font-size: 36px; }\n\n.has-larger-font-size,\n.has-huge-font-size {\n font-size: 42px; }\n\n.has-text-align-center {\n text-align: center; }\n\n.has-text-align-left {\n /*rtl:ignore*/\n text-align: left; }\n\n.has-text-align-right {\n /*rtl:ignore*/\n text-align: right; }\n\n#end-resizable-editor-section {\n display: none; }\n","/**\n * Colors\n */\n/**\n * Breakpoints & Media Queries\n */\n/**\n * Colors\n */\n/**\n * Fonts & basic variables.\n */\n/**\n * Grid System.\n * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/\n */\n/**\n * Dimensions.\n */\n/**\n * Shadows.\n */\n/**\n * Editor widths.\n */\n/**\n * Block UI.\n */\n/**\n * Border radii.\n */\n/**\n * Breakpoint mixins\n */\n/**\n * Long content fade mixin\n *\n * Creates a fading overlay to signify that the content is longer\n * than the space allows.\n */\n/**\n * Button states and focus styles\n */\n/**\n * Block Toolbar/Formatting Buttons\n */\n/**\n * Applies editor left position to the selector passed as argument\n */\n/**\n * Styles that are reused verbatim in a few places\n */\n/**\n * Allows users to opt-out of animations via OS-level preferences.\n */\n/**\n * Reset default styles for JavaScript UI based pages.\n * This is a WP-admin agnostic reset\n */\n/**\n * Reset the WP Admin page styles for Gutenberg-like pages.\n */\n#start-resizable-editor-section {\n display: none; }\n\n.block-editor ul.wp-block-archives {\n padding-left: 2.5em; }\n\n.wp-block-audio {\n margin-left: 0;\n margin-right: 0; }\n\n.edit-post-visual-editor .block-library-block__reusable-block-container .block-editor-writing-flow__click-redirect {\n min-height: auto; }\n\n.block-editor-block-list__block[data-type=\"core/button\"][data-align=\"center\"] {\n text-align: center;\n margin-left: auto;\n margin-right: auto; }\n\n.block-editor-block-list__block[data-type=\"core/button\"][data-align=\"right\"] {\n /*!rtl:ignore*/\n text-align: right; }\n\n.wp-block-button {\n position: relative; }\n .wp-block-button [contenteditable] {\n cursor: text; }\n .wp-block-button:not(.has-text-color):not(.is-style-outline) [data-rich-text-placeholder]::after {\n color: #fff; }\n .wp-block-button .block-editor-rich-text__editable:focus {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px #00a0d2;\n outline: 2px solid transparent;\n outline-offset: -2px; }\n .wp-block-button [data-rich-text-placeholder]::after {\n opacity: 0.8; }\n\n.wp-block-button__inline-link {\n color: #555d66;\n height: 0;\n overflow: hidden;\n max-width: 290px; }\n .wp-block-button__inline-link-input__suggestions {\n max-width: 290px; }\n @media (min-width: 782px) {\n .wp-block-button__inline-link {\n max-width: 260px; }\n .wp-block-button__inline-link-input__suggestions {\n max-width: 260px; } }\n @media (min-width: 960px) {\n .wp-block-button__inline-link {\n max-width: 290px; }\n .wp-block-button__inline-link-input__suggestions {\n max-width: 290px; } }\n .is-selected .wp-block-button__inline-link {\n height: auto;\n overflow: visible;\n margin-top: 16px; }\n\ndiv[data-type=\"core/button\"] {\n display: table; }\n\n.wp-block-buttons .wp-block.block-editor-block-list__block[data-type=\"core/button\"] {\n display: inline-block;\n width: auto; }\n\n.wp-block-buttons[data-align=\"center\"] .block-editor-block-list__layout {\n display: flex;\n align-items: center;\n flex-wrap: wrap;\n justify-content: center; }\n\n.wp-block-buttons[data-align=\"right\"] .block-editor-block-list__layout {\n display: flex;\n justify-content: flex-end; }\n\n.wp-block-buttons .block-editor-block-list__layout > div:last-child {\n display: inline-block; }\n\n.block-editor .wp-block-categories ul {\n padding-left: 2.5em; }\n .block-editor .wp-block-categories ul ul {\n margin-top: 6px; }\n\n.wp-block-code .block-editor-plain-text {\n font-family: Menlo, Consolas, monaco, monospace;\n color: #23282d;\n /* Fonts smaller than 16px causes mobile safari to zoom. */\n font-size: 16px; }\n @media (min-width: 600px) {\n .wp-block-code .block-editor-plain-text {\n font-size: 13px; } }\n .wp-block-code .block-editor-plain-text:focus {\n box-shadow: none; }\n\n.wp-block-columns .wp-block {\n max-width: none; }\n\n.editor-styles-wrapper .block-editor-block-list__block.wp-block-column,\n.editor-styles-wrapper .block-editor-block-list__block.wp-block-columns {\n margin-top: 0;\n margin-bottom: 0; }\n\n@media (min-width: 600px) {\n .editor-styles-wrapper\n.block-editor-block-list__block.wp-block-column:nth-child(even) {\n margin-left: 32px; } }\n\n@media (min-width: 782px) {\n .editor-styles-wrapper\n.block-editor-block-list__block.wp-block-column:not(:first-child) {\n margin-left: 32px; } }\n\n.wp-block-column > *:first-child {\n margin-top: 0 !important; }\n\n.wp-block-column > *:last-child {\n margin-bottom: 0 !important; }\n\n.wp-block-cover-image.components-placeholder h2,\n.wp-block-cover.components-placeholder h2 {\n color: inherit; }\n\n.wp-block-cover-image .block-editor-block-list__layout,\n.wp-block-cover .block-editor-block-list__layout {\n width: 100%; }\n\n.wp-block-cover-image .block-editor-block-list__block,\n.wp-block-cover .block-editor-block-list__block {\n color: #f8f9f9; }\n\n.wp-block-cover-image .wp-block-cover__inner-container,\n.wp-block-cover .wp-block-cover__inner-container {\n text-align: left; }\n\n.wp-block-cover-image .wp-block-cover__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout,\n.wp-block-cover .wp-block-cover__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout {\n margin-left: 0;\n margin-right: 0; }\n\n.wp-block-cover-image .wp-block-cover__placeholder-background-options,\n.wp-block-cover .wp-block-cover__placeholder-background-options {\n width: 100%; }\n\n[data-align=\"left\"] .wp-block-cover-image,\n[data-align=\"right\"] .wp-block-cover-image, [data-align=\"left\"]\n.wp-block-cover,\n[data-align=\"right\"]\n.wp-block-cover {\n max-width: 290px;\n width: 100%; }\n\n.block-library-cover__reset-button {\n margin-left: auto; }\n\n.block-library-cover__resize-container:not(.is-resizing) {\n height: auto !important; }\n\n.wp-block-embed {\n margin-left: 0;\n margin-right: 0;\n clear: both; }\n @media (min-width: 600px) {\n .wp-block-embed {\n min-width: 360px; }\n .wp-block-embed.components-placeholder {\n min-width: 0; } }\n .wp-block-embed.is-loading {\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n padding: 1em;\n min-height: 200px;\n text-align: center;\n background: #f8f9f9; }\n .wp-block-embed.is-loading p {\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px; }\n .wp-block-embed .components-placeholder__error {\n word-break: break-word; }\n .wp-block-embed .components-placeholder__learn-more {\n margin-top: 1em; }\n\n.block-library-embed__interactive-overlay {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n opacity: 0; }\n\n.wp-block-file {\n display: flex;\n justify-content: space-between;\n align-items: center;\n margin-bottom: 0; }\n .wp-block-file .wp-block-file__content-wrapper {\n flex-grow: 1; }\n .wp-block-file .wp-block-file__textlink {\n display: inline-block;\n min-width: 1em; }\n .wp-block-file .wp-block-file__textlink:focus {\n box-shadow: none; }\n .wp-block-file .wp-block-file__button-richtext-wrapper {\n display: inline-block;\n margin-left: 0.75em; }\n .wp-block-file .wp-block-file__copy-url-button {\n margin-left: 1em; }\n\n.wp-block-freeform.block-library-rich-text__tinymce {\n /* Remove blue highlighting of selected images in WebKit */\n /* Image captions */\n /* WP Views */ }\n .wp-block-freeform.block-library-rich-text__tinymce p,\n .wp-block-freeform.block-library-rich-text__tinymce li {\n line-height: 1.8; }\n .wp-block-freeform.block-library-rich-text__tinymce ul,\n .wp-block-freeform.block-library-rich-text__tinymce ol {\n padding-left: 2.5em;\n margin-left: 0; }\n .wp-block-freeform.block-library-rich-text__tinymce blockquote {\n margin: 0;\n box-shadow: inset 0 0 0 0 #e2e4e7;\n border-left: 4px solid #000;\n padding-left: 1em; }\n .wp-block-freeform.block-library-rich-text__tinymce pre {\n white-space: pre-wrap;\n font-family: Menlo, Consolas, monaco, monospace;\n font-size: 14px;\n color: #23282d; }\n .wp-block-freeform.block-library-rich-text__tinymce > *:first-child {\n margin-top: 0; }\n .wp-block-freeform.block-library-rich-text__tinymce > *:last-child {\n margin-bottom: 0; }\n .wp-block-freeform.block-library-rich-text__tinymce.mce-edit-focus {\n outline: none; }\n .wp-block-freeform.block-library-rich-text__tinymce a {\n color: #007fac; }\n .wp-block-freeform.block-library-rich-text__tinymce:focus a[data-mce-selected] {\n padding: 0 2px;\n margin: 0 -2px;\n border-radius: 2px;\n box-shadow: 0 0 0 1px #e5f5fa;\n background: #e5f5fa; }\n .wp-block-freeform.block-library-rich-text__tinymce code {\n padding: 2px;\n border-radius: 2px;\n color: #23282d;\n background: #f3f4f5;\n font-family: Menlo, Consolas, monaco, monospace;\n font-size: 14px; }\n .wp-block-freeform.block-library-rich-text__tinymce:focus code[data-mce-selected] {\n background: #e8eaeb; }\n .wp-block-freeform.block-library-rich-text__tinymce .alignright {\n /*rtl:ignore*/\n float: right;\n /*rtl:ignore*/\n margin: 0.5em 0 0.5em 1em; }\n .wp-block-freeform.block-library-rich-text__tinymce .alignleft {\n /*rtl:ignore*/\n float: left;\n /*rtl:ignore*/\n margin: 0.5em 1em 0.5em 0; }\n .wp-block-freeform.block-library-rich-text__tinymce .aligncenter {\n display: block;\n margin-left: auto;\n margin-right: auto; }\n .wp-block-freeform.block-library-rich-text__tinymce .wp-more-tag {\n width: 96%;\n height: 20px;\n display: block;\n margin: 15px auto;\n outline: 0;\n cursor: default;\n background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAADtgAAAAoBAMAAAA86gLBAAAAJFBMVEVMaXG7u7vBwcHDw8POzs68vLzGxsbMzMy+vr7AwMDQ0NDGxsYKLGzpAAAADHRSTlMA///zWf+/f///TMxNVGuqAAABwklEQVR4Ae3dMXLaQBTH4bfj8UCpx8hq0vgKvgFNemhT6Qo6gg6R+0ZahM2QLmyBJ99XWP9V5+o3jIUcLQEAAAAAAAAAAAAAAAAAAAAAAABQ8j0WL9lfTtlt18uNXAUA8O/KVtfa1tdcrOdSh9gCQAMlh1hMNbZZ1bsrsQWABsrhLRbz7z5in/32UbfUMUbkMQCAh5RfGYv82UdMdZ6HS2wjT2ILAI8r3XmM2B3WvM59vfO2xXYW2yYAENuPU8S+X/N67mKxzy225yaxBQCxLV392UdcvwV0jPVUj98ntkBWT7C7+9u2/V/vGtvXIWJ6/4rtbottWa6Ri0NUT/u72LYttrb97LHdvUXMxxrb8TO2W2TF1rYbbLG1bbGNjMi4+2Sbi1FsbbvNFlvbFtt5fDnE3d9sP1/XeIyV2Nr2U2/guZUuptNrH/dPI9eLB6SaAEBs6wPJf3/PNk9tYgsAYrv/8TFuzx/fvkFqGtrEFgDEdpcZUb7ejXy6ntrEFgDENvL6gsas4vbdyKt4DACI7TxElJv/Z7udpqFNbAFAbKduy2uU2trttM/x28UWAAAAAAAAAAAAAAAAAAAAAAAAAADgDyPwGmGTCZp7AAAAAElFTkSuQmCC);\n background-size: 1900px 20px;\n background-repeat: no-repeat;\n background-position: center; }\n .wp-block-freeform.block-library-rich-text__tinymce img::selection {\n background-color: transparent; }\n .wp-block-freeform.block-library-rich-text__tinymce div.mceTemp {\n -ms-user-select: element; }\n .wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption {\n margin: 0;\n /* dl browser reset */\n max-width: 100%; }\n .wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption a,\n .wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption img {\n display: block; }\n .wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption,\n .wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption * {\n -webkit-user-drag: none; }\n .wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption .wp-caption-dd {\n padding-top: 0.5em;\n margin: 0;\n /* browser dd reset */ }\n .wp-block-freeform.block-library-rich-text__tinymce .wpview {\n width: 99.99%;\n /* All IE need hasLayout, incl. 11 (ugh, not again!!) */\n position: relative;\n clear: both;\n margin-bottom: 16px;\n border: 1px solid transparent; }\n .wp-block-freeform.block-library-rich-text__tinymce .wpview iframe {\n display: block;\n max-width: 100%;\n background: transparent; }\n .wp-block-freeform.block-library-rich-text__tinymce .wpview .mce-shim {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0; }\n .wp-block-freeform.block-library-rich-text__tinymce .wpview[data-mce-selected=\"2\"] .mce-shim {\n display: none; }\n .wp-block-freeform.block-library-rich-text__tinymce .wpview .loading-placeholder {\n border: 1px dashed #e8eaeb;\n padding: 10px; }\n .wp-block-freeform.block-library-rich-text__tinymce .wpview .wpview-error {\n border: 1px solid #e8eaeb;\n padding: 1em 0;\n margin: 0;\n word-wrap: break-word; }\n .wp-block-freeform.block-library-rich-text__tinymce .wpview .wpview-error p {\n margin: 0;\n text-align: center; }\n .wp-block-freeform.block-library-rich-text__tinymce .wpview[data-mce-selected] .loading-placeholder,\n .wp-block-freeform.block-library-rich-text__tinymce .wpview[data-mce-selected] .wpview-error {\n border-color: transparent; }\n .wp-block-freeform.block-library-rich-text__tinymce .wpview .dashicons {\n display: block;\n margin: 0 auto;\n width: 32px;\n height: 32px;\n font-size: 32px; }\n .wp-block-freeform.block-library-rich-text__tinymce .wpview.wpview-type-gallery::after {\n content: \"\";\n display: table;\n clear: both; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery img[data-mce-selected]:focus {\n outline: none; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery a {\n cursor: default; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery {\n margin: auto -6px;\n padding: 6px 0;\n line-height: 1;\n overflow-x: hidden; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-item {\n float: left;\n margin: 0;\n text-align: center;\n padding: 6px;\n box-sizing: border-box; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-caption,\n .wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-icon {\n margin: 0; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-caption {\n font-size: 13px;\n margin: 4px 0; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-1 .gallery-item {\n width: 100%; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-2 .gallery-item {\n width: 50%; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-3 .gallery-item {\n width: 33.33333%; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-4 .gallery-item {\n width: 25%; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-5 .gallery-item {\n width: 20%; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-6 .gallery-item {\n width: 16.66667%; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-7 .gallery-item {\n width: 14.28571%; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-8 .gallery-item {\n width: 12.5%; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-9 .gallery-item {\n width: 11.11111%; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery img {\n max-width: 100%;\n height: auto;\n border: none;\n padding: 0; }\n\ndiv[data-type=\"core/freeform\"]::before {\n transition: border-color 0.1s linear, box-shadow 0.1s linear;\n border: 1px solid #e2e4e7;\n outline: 1px solid transparent; }\n @media (prefers-reduced-motion: reduce) {\n div[data-type=\"core/freeform\"]::before {\n transition-duration: 0s; } }\n\ndiv[data-type=\"core/freeform\"].is-selected::before {\n border-color: #1e1e1e; }\n\ndiv[data-type=\"core/freeform\"] .block-editor-block-contextual-toolbar + div {\n margin-top: 0;\n padding-top: 0; }\n\ndiv[data-type=\"core/freeform\"].is-selected .block-library-rich-text__tinymce::after {\n content: \"\";\n display: table;\n clear: both; }\n\n.mce-toolbar-grp .mce-btn.mce-active button,\n.mce-toolbar-grp .mce-btn.mce-active:hover button,\n.mce-toolbar-grp .mce-btn.mce-active i,\n.mce-toolbar-grp .mce-btn.mce-active:hover i {\n color: #23282d; }\n\n.mce-toolbar-grp .mce-rtl .mce-flow-layout-item.mce-last {\n margin-right: 0;\n margin-left: 8px; }\n\n.mce-toolbar-grp .mce-btn i {\n font-style: normal; }\n\n.block-library-classic__toolbar {\n display: none;\n width: auto;\n margin: 0;\n position: -webkit-sticky;\n position: sticky;\n z-index: 10;\n top: 8px;\n border: 1px solid #e2e4e7;\n border-bottom: none;\n border-radius: 2px;\n margin-bottom: 8px;\n padding: 0; }\n div[data-type=\"core/freeform\"].is-selected .block-library-classic__toolbar,\n div[data-type=\"core/freeform\"].is-typing .block-library-classic__toolbar {\n display: block;\n border-color: #1e1e1e; }\n .block-library-classic__toolbar .mce-tinymce {\n box-shadow: none; }\n @media (min-width: 600px) {\n .block-library-classic__toolbar {\n padding: 0; } }\n .block-library-classic__toolbar:empty {\n display: block;\n background: #f5f5f5;\n border-bottom: 1px solid #e2e4e7; }\n .block-library-classic__toolbar:empty::before {\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px;\n content: attr(data-placeholder);\n color: #555d66;\n line-height: 37px;\n padding: 14px; }\n .block-library-classic__toolbar div.mce-toolbar-grp {\n border-bottom: 1px solid #1e1e1e; }\n .block-library-classic__toolbar .mce-tinymce-inline,\n .block-library-classic__toolbar .mce-tinymce-inline > div,\n .block-library-classic__toolbar div.mce-toolbar-grp,\n .block-library-classic__toolbar div.mce-toolbar-grp > div,\n .block-library-classic__toolbar .mce-menubar,\n .block-library-classic__toolbar .mce-menubar > div {\n height: auto !important;\n width: 100% !important; }\n .block-library-classic__toolbar .mce-container-body.mce-abs-layout {\n overflow: visible; }\n .block-library-classic__toolbar .mce-menubar,\n .block-library-classic__toolbar div.mce-toolbar-grp {\n position: static; }\n .block-library-classic__toolbar .mce-toolbar-grp > div {\n padding: 1px 3px; }\n .block-library-classic__toolbar .mce-toolbar-grp .mce-toolbar:not(:first-child) {\n display: none; }\n .block-library-classic__toolbar.has-advanced-toolbar .mce-toolbar-grp .mce-toolbar {\n display: block; }\n\n.wp-block-gallery li {\n list-style-type: none; }\n\n.wp-block-gallery .block-editor-media-placeholder {\n margin-bottom: 12px;\n padding: 12px; }\n .wp-block-gallery .block-editor-media-placeholder .components-placeholder__label {\n display: none; }\n .wp-block-gallery .block-editor-media-placeholder .components-button {\n margin-bottom: 0; }\n\nfigure.wp-block-gallery {\n display: block;\n margin: 0; }\n\n.blocks-gallery-grid.blocks-gallery-grid {\n padding-left: 0;\n margin-left: 0;\n margin-bottom: 0; }\n\n.blocks-gallery-item figure:not(.is-selected):focus,\n.blocks-gallery-item img:focus {\n outline: none; }\n\n.blocks-gallery-item figure.is-selected {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba;\n border-radius: 2px;\n outline: 2px solid transparent; }\n\nbody.admin-color-sunrise .blocks-gallery-item figure.is-selected {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px #d1864a; }\n\nbody.admin-color-ocean .blocks-gallery-item figure.is-selected {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px #a3b9a2; }\n\nbody.admin-color-midnight .blocks-gallery-item figure.is-selected {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px #e14d43; }\n\nbody.admin-color-ectoplasm .blocks-gallery-item figure.is-selected {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px #a7b656; }\n\nbody.admin-color-coffee .blocks-gallery-item figure.is-selected {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px #c2a68c; }\n\nbody.admin-color-blue .blocks-gallery-item figure.is-selected {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px #d9ab59; }\n\nbody.admin-color-light .blocks-gallery-item figure.is-selected {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px #0085ba; }\n .blocks-gallery-item figure.is-selected img {\n border-radius: 2px; }\n\n.blocks-gallery-item figure.is-transient img {\n opacity: 0.3; }\n\n.blocks-gallery-item .is-selected .block-library-gallery-item__move-menu,\n.blocks-gallery-item .is-selected .block-library-gallery-item__inline-menu {\n background: #fff;\n border: 1px solid #1e1e1e;\n border-radius: 4px;\n transition: box-shadow 0.2s ease-out; }\n @media (prefers-reduced-motion: reduce) {\n .blocks-gallery-item .is-selected .block-library-gallery-item__move-menu,\n .blocks-gallery-item .is-selected .block-library-gallery-item__inline-menu {\n transition-duration: 0s; } }\n .blocks-gallery-item .is-selected .block-library-gallery-item__move-menu:hover,\n .blocks-gallery-item .is-selected .block-library-gallery-item__inline-menu:hover {\n box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); }\n .blocks-gallery-item .is-selected .block-library-gallery-item__move-menu .components-button,\n .blocks-gallery-item .is-selected .block-library-gallery-item__inline-menu .components-button {\n color: #1e1e1e;\n min-width: 24px;\n height: 24px; }\n @media (min-width: 600px) {\n .columns-7 .blocks-gallery-item .is-selected .block-library-gallery-item__move-menu .components-button,\n .columns-8 .blocks-gallery-item .is-selected .block-library-gallery-item__move-menu .components-button, .columns-7\n .blocks-gallery-item .is-selected .block-library-gallery-item__inline-menu .components-button,\n .columns-8\n .blocks-gallery-item .is-selected .block-library-gallery-item__inline-menu .components-button {\n padding: 0;\n width: inherit;\n height: inherit; } }\n .blocks-gallery-item .is-selected .block-library-gallery-item__move-menu .components-button:focus,\n .blocks-gallery-item .is-selected .block-library-gallery-item__inline-menu .components-button:focus {\n color: inherit; }\n\n.block-library-gallery-item__move-menu,\n.block-library-gallery-item__inline-menu {\n margin: 8px;\n display: inline-flex;\n z-index: 20; }\n .block-library-gallery-item__move-menu .components-button,\n .block-library-gallery-item__inline-menu .components-button {\n color: transparent; }\n @media (min-width: 600px) {\n .columns-7 .block-library-gallery-item__move-menu,\n .columns-8 .block-library-gallery-item__move-menu, .columns-7\n .block-library-gallery-item__inline-menu,\n .columns-8\n .block-library-gallery-item__inline-menu {\n padding: 2px; } }\n\n.block-library-gallery-item__inline-menu {\n position: absolute;\n top: -2px;\n right: -2px; }\n\n.block-library-gallery-item__move-menu {\n position: absolute;\n top: -2px;\n left: -2px; }\n\n.blocks-gallery-item__move-backward.components-button,\n.blocks-gallery-item__move-forward.components-button,\n.blocks-gallery-item__remove.components-button {\n padding: 0; }\n\n.blocks-gallery-item .components-spinner {\n position: absolute;\n top: 50%;\n left: 50%;\n margin-top: -9px;\n margin-left: -9px; }\n\n/**\n * Group: All Alignment Settings\n */\n.wp-block[data-type=\"core/group\"] .block-editor-block-list__insertion-point {\n left: 0;\n right: 0; }\n\n.wp-block[data-type=\"core/group\"] > div > .wp-block-group.has-background > .wp-block-group__inner-container > .block-editor-inner-blocks {\n margin-top: -32px;\n margin-bottom: -32px; }\n\n.wp-block[data-type=\"core/group\"] > div > .wp-block-group > .wp-block-group__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block[data-align=\"full\"] {\n margin-left: auto;\n margin-right: auto;\n padding-left: 28px;\n padding-right: 28px; }\n @media (min-width: 600px) {\n .wp-block[data-type=\"core/group\"] > div > .wp-block-group > .wp-block-group__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block[data-align=\"full\"] {\n padding-left: 58px;\n padding-right: 58px; } }\n\n.wp-block[data-type=\"core/group\"] > div > .wp-block-group.has-background > .wp-block-group__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block[data-align=\"full\"] {\n margin-left: -30px;\n width: calc(100% + 60px); }\n\n/**\n * Group: Full Width Alignment\n */\n.wp-block[data-type=\"core/group\"][data-align=\"full\"] > div > .wp-block-group > .wp-block-group__inner-container > .block-editor-inner-blocks {\n margin-left: auto;\n margin-right: auto;\n padding-left: 0;\n padding-right: 0; }\n .wp-block[data-type=\"core/group\"][data-align=\"full\"] > div > .wp-block-group > .wp-block-group__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout {\n margin-left: 0;\n margin-right: 0; }\n\n.wp-block[data-type=\"core/group\"][data-align=\"full\"] > div > .wp-block-group > .wp-block-group__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block[data-align=\"full\"] {\n padding-right: 0;\n padding-left: 0;\n left: 0;\n width: 100%;\n max-width: none; }\n\n.wp-block[data-type=\"core/group\"][data-align=\"full\"] > div > .wp-block-group.has-background > .wp-block-group__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block[data-align=\"full\"] {\n width: calc(100% + 60px); }\n\n[data-type=\"core/group\"].is-selected .block-list-appender {\n margin-left: 0;\n margin-right: 0; }\n\n[data-type=\"core/group\"].is-selected .has-background .block-list-appender {\n margin-top: 18px;\n margin-bottom: 18px; }\n\n.wp-block-html {\n margin-bottom: 28px; }\n .wp-block-html .block-library-html__preview-overlay {\n position: absolute;\n width: 100%;\n height: 100%;\n top: 0;\n left: 0; }\n .wp-block-html .block-editor-plain-text {\n font-family: Menlo, Consolas, monaco, monospace;\n color: #23282d;\n padding: 0.8em 1em;\n border: 1px solid #e2e4e7;\n border-radius: 4px;\n max-height: 250px;\n /* Fonts smaller than 16px causes mobile safari to zoom. */\n font-size: 16px; }\n @media (min-width: 600px) {\n .wp-block-html .block-editor-plain-text {\n font-size: 13px; } }\n .wp-block-html .block-editor-plain-text:focus {\n box-shadow: none; }\n\n.wp-block-image {\n position: relative;\n margin-left: 0;\n margin-right: 0; }\n .wp-block-image.is-transient img {\n opacity: 0.3; }\n .wp-block-image figcaption img {\n display: inline; }\n .wp-block-image .components-spinner {\n position: absolute;\n top: 50%;\n left: 50%;\n margin-top: -9px;\n margin-left: -9px; }\n\n.wp-block-image .components-resizable-box__container {\n display: inline-block; }\n .wp-block-image .components-resizable-box__container img {\n display: block;\n width: inherit;\n height: inherit; }\n\n.wp-block-image.is-focused .components-resizable-box__handle {\n display: block; }\n\n.block-editor-block-list__block[data-type=\"core/image\"][data-align=\"center\"] .wp-block-image {\n margin-left: auto;\n margin-right: auto; }\n\n.block-editor-block-list__block[data-type=\"core/image\"][data-align=\"center\"][data-resized=\"false\"] .wp-block-image > div {\n margin-left: auto;\n margin-right: auto; }\n\n.block-editor-block-list__block[data-type=\"core/image\"] .block-editor-block-toolbar .block-editor-url-input__button-modal {\n position: absolute;\n left: 0;\n right: 0;\n margin: -1px 0; }\n @media (min-width: 600px) {\n .block-editor-block-list__block[data-type=\"core/image\"] .block-editor-block-toolbar .block-editor-url-input__button-modal {\n margin: -1px; } }\n\n[data-type=\"core/image\"][data-align=\"center\"] figure,\n[data-type=\"core/image\"][data-align=\"left\"] figure,\n[data-type=\"core/image\"][data-align=\"right\"] figure {\n margin: 0; }\n\n[data-type=\"core/image\"][data-align=\"wide\"] figure img,\n[data-type=\"core/image\"][data-align=\"full\"] figure img {\n width: 100%; }\n\n[data-type=\"core/image\"] figure.is-resized {\n margin: 0; }\n\n.wp-block-latest-comments.has-avatars .avatar {\n margin-right: 10px; }\n\n.wp-block-latest-comments__comment-excerpt p {\n font-size: 14px;\n line-height: 1.8;\n margin: 5px 0 20px;\n padding-top: 0; }\n\n.wp-block-latest-comments.has-avatars .wp-block-latest-comments__comment {\n min-height: 36px; }\n\n.block-editor .wp-block-latest-posts {\n padding-left: 2.5em; }\n .block-editor .wp-block-latest-posts.is-grid {\n padding-left: 0; }\n\n.wp-block-latest-posts li a > div {\n display: inline; }\n\n.wp-block-legacy-widget__edit-container,\n.wp-block-legacy-widget__preview {\n padding-left: 2.5em;\n padding-right: 2.5em; }\n\n.wp-block-legacy-widget__edit-container .widget-inside {\n border: none;\n display: block;\n box-shadow: none; }\n\n.wp-block-legacy-widget__update-button {\n margin-left: auto;\n display: block; }\n\n.wp-block-legacy-widget__preview {\n overflow: auto; }\n\n.wp-block-legacy-widget__edit-widget-title {\n margin: -14px -13px 0;\n background: #f8f9f9;\n color: #555d66;\n top: -13px;\n position: relative;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px;\n padding: 8px 14px;\n font-weight: 600; }\n\n.wp-block-media-text .__resizable_base__ {\n -ms-grid-column: 1;\n -ms-grid-column-span: 2;\n grid-column: 1 / span 2;\n -ms-grid-row: 2;\n grid-row: 2; }\n\n.wp-block-media-text.is-vertically-aligned-top .block-editor-inner-blocks,\n.wp-block-media-text.is-vertically-aligned-top .editor-media-container__resizer {\n -ms-grid-row-align: start;\n align-self: start; }\n\n.wp-block-media-text .block-editor-inner-blocks,\n.wp-block-media-text .editor-media-container__resizer,\n.wp-block-media-text.is-vertically-aligned-center .block-editor-inner-blocks,\n.wp-block-media-text.is-vertically-aligned-center .editor-media-container__resizer {\n -ms-grid-row-align: center;\n align-self: center; }\n\n.wp-block-media-text.is-vertically-aligned-bottom .block-editor-inner-blocks,\n.wp-block-media-text.is-vertically-aligned-bottom .editor-media-container__resizer {\n -ms-grid-row-align: end;\n align-self: end; }\n\n.wp-block-media-text .editor-media-container__resizer {\n -ms-grid-column: 1;\n grid-column: 1;\n -ms-grid-row: 1;\n grid-row: 1;\n width: 100% !important; }\n\n.wp-block-media-text.is-image-fill .editor-media-container__resizer {\n height: 100% !important; }\n\n.wp-block-media-text.has-media-on-the-right .editor-media-container__resizer {\n -ms-grid-column: 2;\n grid-column: 2;\n -ms-grid-row: 1;\n grid-row: 1; }\n\n.wp-block-media-text .block-editor-inner-blocks {\n word-break: break-word;\n -ms-grid-column: 2;\n grid-column: 2;\n -ms-grid-row: 1;\n grid-row: 1;\n text-align: initial;\n padding: 0 8% 0 8%; }\n\n.wp-block-media-text.has-media-on-the-right .block-editor-inner-blocks {\n -ms-grid-column: 1;\n grid-column: 1;\n -ms-grid-row: 1;\n grid-row: 1; }\n\n.wp-block-media-text > .block-editor-inner-blocks > .block-editor-block-list__layout > .block-editor-block-list__block {\n max-width: unset; }\n\n.editor-media-container__resizer .components-resizable-box__handle {\n display: none; }\n\n.wp-block-media-text.is-selected:not(.is-stacked-on-mobile) .editor-media-container__resizer .components-resizable-box__handle {\n display: block; }\n\n@media (min-width: 600px) {\n .wp-block-media-text.is-selected.is-stacked-on-mobile .editor-media-container__resizer .components-resizable-box__handle {\n display: block; } }\n\n@media (max-width: 600px) {\n .wp-block-media-text.is-stacked-on-mobile .block-editor-inner-blocks {\n -ms-grid-column: 1;\n grid-column: 1;\n -ms-grid-row: 2;\n grid-row: 2; }\n .wp-block-media-text.is-stacked-on-mobile .editor-media-container__resizer {\n -ms-grid-column: 1;\n grid-column: 1;\n -ms-grid-row: 1;\n grid-row: 1; }\n .wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right .block-editor-inner-blocks {\n -ms-grid-column: 1;\n grid-column: 1;\n -ms-grid-row: 1;\n grid-row: 1; }\n .wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right .editor-media-container__resizer {\n -ms-grid-column: 1;\n grid-column: 1;\n -ms-grid-row: 2;\n grid-row: 2; } }\n\n.block-editor-block-list__block[data-type=\"core/more\"] {\n max-width: 100%;\n text-align: center;\n margin-top: 28px;\n margin-bottom: 28px; }\n\n.block-editor .wp-block-more {\n display: block;\n text-align: center;\n white-space: nowrap; }\n .block-editor .wp-block-more input[type=\"text\"] {\n position: relative;\n font-size: 13px;\n text-transform: uppercase;\n font-weight: 600;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n color: #6c7781;\n border: none;\n box-shadow: none;\n white-space: nowrap;\n text-align: center;\n margin: 0;\n border-radius: 4px;\n background: #fff;\n padding: 6px 8px;\n height: 24px;\n max-width: 100%; }\n .block-editor .wp-block-more input[type=\"text\"]:focus {\n box-shadow: none; }\n .block-editor .wp-block-more::before {\n content: \"\";\n position: absolute;\n top: calc(50%);\n left: 0;\n right: 0;\n border-top: 3px dashed #ccd0d4; }\n\n[data-type=\"core/navigation\"] .wp-block-navigation .block-editor-inner-blocks {\n flex: 1; }\n\n[data-type=\"core/navigation\"] .wp-block-navigation .block-editor-inner-blocks > .block-editor-block-list__layout {\n margin-left: 0;\n margin-right: 0; }\n\n[data-type=\"core/navigation\"] .wp-block-navigation.items-justification-left .block-editor-inner-blocks > .block-editor-block-list__layout {\n justify-content: flex-start; }\n\n[data-type=\"core/navigation\"] .wp-block-navigation.items-justification-center .block-editor-inner-blocks > .block-editor-block-list__layout {\n justify-content: center; }\n\n[data-type=\"core/navigation\"] .wp-block-navigation.items-justification-right .block-editor-inner-blocks > .block-editor-block-list__layout {\n justify-content: flex-end; }\n\n[data-type=\"core/navigation\"] .wp-block-navigation .block-editor-block-list__block::before {\n left: 0;\n right: 0; }\n\n[data-type=\"core/navigation\"].is-selected .wp-block-navigation .block-editor-block-list__block::before,\n[data-type=\"core/navigation\"].has-child-selected .wp-block-navigation .block-editor-block-list__block::before {\n border-color: transparent !important; }\n\n[data-type=\"core/navigation\"] .wp-block-navigation .block-editor-block-list__insertion-point {\n display: none; }\n\n[data-type=\"core/navigation\"] .wp-block-navigation .wp-block-navigation-link.is-selected .block-editor-rich-text__editable:focus {\n min-width: 20px; }\n\n.wp-block-navigation .block-list-appender {\n margin: 0;\n display: flex;\n align-items: center; }\n\n.wp-block-navigation__inserter-content {\n padding: 16px; }\n\n/**\n * Colors Selector component\n */\n.block-library-colors-selector {\n width: auto; }\n .block-library-colors-selector .block-library-colors-selector__toggle {\n display: block;\n margin: 0 auto;\n padding: 3px;\n width: auto; }\n .block-library-colors-selector .block-library-colors-selector__icon-container {\n height: 30px;\n position: relative;\n margin: 0 auto;\n padding: 3px;\n display: flex;\n align-items: center;\n border-radius: 4px; }\n .block-library-colors-selector .block-library-colors-selector__state-selection {\n margin-left: auto;\n margin-right: auto; }\n .block-library-colors-selector .block-library-colors-selector__state-selection {\n border-radius: 11px;\n box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);\n width: 22px;\n min-width: 22px;\n height: 22px;\n min-height: 22px;\n line-height: 20px;\n padding: 2px; }\n .block-library-colors-selector .block-library-colors-selector__state-selection.has-text-color > svg,\n .block-library-colors-selector .block-library-colors-selector__state-selection.has-text-color > svg path {\n color: inherit; }\n\n.block-library-colors-selector__popover .color-palette-controller-container {\n padding: 16px; }\n\n.block-library-colors-selector__popover .components-base-control__label {\n height: 20px;\n line-height: 20px; }\n\n.block-library-colors-selector__popover .component-color-indicator {\n float: right;\n margin-top: 2px; }\n\n.block-library-colors-selector__popover .components-panel__body-title {\n display: none; }\n\n.wp-block-navigation-link__field .components-text-control__input.components-text-control__input,\n.wp-block-navigation-link__container {\n border-radius: 0;\n line-height: 36px;\n min-height: 36px; }\n\n/**\n * Adjust Navigation Item.\n */\n.wp-block-navigation-link .block-editor-block-list__layout {\n display: block; }\n\n.wp-block-navigation-link.is-editing, .wp-block-navigation-link.is-selected {\n min-width: 20px; }\n\n.wp-block-navigation-link.has-link .wp-block-navigation-link__label {\n text-decoration: underline; }\n\n.wp-block-navigation-link .block-editor-rich-text__editable.is-selected:not(.keep-placeholder-on-focus):not(:focus)[data-rich-text-placeholder]::after {\n display: inline-block; }\n\n.wp-block-navigation-link .block-list-appender {\n margin: 16px;\n margin-left: 10px;\n margin-top: 10px; }\n\n.wp-block-navigation-link__nofollow-external-link {\n display: block; }\n\n.wp-block-navigation-link__separator {\n margin: 8px 0 8px;\n border-top: 1px solid #e2e4e7; }\n\n.components-popover.wp-block-navigation-link__dropdown-content {\n margin-top: -1px;\n margin-left: -4px; }\n\n.wp-block-navigation-link__dropdown-content .components-popover__content {\n padding: 8px 0; }\n\n.wp-block-navigation .block-editor-block-list__block[data-type=\"core/navigation-link\"] > .block-editor-block-list__insertion-point {\n display: none; }\n\n.block-editor-block-list__block[data-type=\"core/nextpage\"] {\n max-width: 100%;\n margin-top: 28px;\n margin-bottom: 28px; }\n\n.wp-block-nextpage {\n display: block;\n text-align: center;\n white-space: nowrap; }\n .wp-block-nextpage > span {\n font-size: 13px;\n position: relative;\n display: inline-block;\n text-transform: uppercase;\n font-weight: 600;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n color: #6c7781;\n border-radius: 4px;\n background: #fff;\n padding: 6px 8px;\n height: 24px; }\n .wp-block-nextpage::before {\n content: \"\";\n position: absolute;\n top: calc(50%);\n left: 0;\n right: 0;\n border-top: 3px dashed #ccd0d4; }\n\n.block-editor-block-list__block[data-type=\"core/paragraph\"].has-drop-cap:focus {\n min-height: auto !important; }\n\n.block-editor-block-list__block[data-type=\"core/paragraph\"].is-selected::before {\n position: absolute;\n z-index: 1;\n pointer-events: none;\n content: \"\";\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n animation: block-editor-block-list__block-fade-out-animation 0.3s ease-out 0.2s;\n animation-fill-mode: forwards; }\n @media (prefers-reduced-motion: reduce) {\n .block-editor-block-list__block[data-type=\"core/paragraph\"].is-selected::before {\n animation-duration: 1ms; } }\n\n.block-editor-block-list__block[data-type=\"core/paragraph\"].is-selected:not(.is-typing)::before {\n background: rgba(0, 0, 0, 0.03); }\n .is-dark-theme .block-editor-block-list__block[data-type=\"core/paragraph\"].is-selected:not(.is-typing)::before {\n background: rgba(255, 255, 255, 0.1); }\n\n@keyframes block-editor-block-list__block-fade-out-animation {\n from {\n opacity: 1; }\n to {\n opacity: 0; } }\n\n.wp-block-post-excerpt__excerpt.is-inline {\n display: inline-block; }\n\n.block-editor-block-list__block[data-type=\"core/pullquote\"][data-align=\"left\"] p, .block-editor-block-list__block[data-type=\"core/pullquote\"][data-align=\"right\"] p {\n font-size: 20px; }\n\n.wp-block-pullquote blockquote p {\n font-size: 28px;\n line-height: 1.6; }\n\n.wp-block-pullquote.is-style-solid-color {\n margin-left: 0;\n margin-right: 0; }\n .wp-block-pullquote.is-style-solid-color blockquote p {\n font-size: 32px; }\n .wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation {\n text-transform: none;\n font-style: normal; }\n\n.wp-block-pullquote .wp-block-pullquote__citation {\n color: inherit; }\n\n.wp-block-quote__citation {\n font-size: 13px; }\n\n.block-editor .wp-block-rss {\n padding-left: 2.5em; }\n .block-editor .wp-block-rss.is-grid {\n padding-left: 0; }\n\n.wp-block-rss li a > div {\n display: inline; }\n\n.blocks-rss__placeholder-form {\n display: flex;\n align-items: stretch; }\n .blocks-rss__placeholder-form > * {\n margin-bottom: 8px; }\n @media (min-width: 782px) {\n .blocks-rss__placeholder-form > * {\n margin-bottom: 0; } }\n\n.blocks-rss__placeholder-input {\n display: flex;\n align-items: stretch;\n flex-grow: 1; }\n .blocks-rss__placeholder-input .components-base-control__field {\n margin: 0;\n display: flex;\n align-items: stretch;\n flex-grow: 1;\n margin-right: 8px; }\n\n.wp-block-search__input {\n border-radius: 4px;\n border: 1px solid #7e8993;\n color: rgba(14, 28, 46, 0.62);\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px;\n padding: 8px; }\n .wp-block-search__input:focus {\n outline: none; }\n\n.wp-block-search__button {\n background: #f7f7f7;\n border-radius: 4px;\n border: 1px solid #ccc;\n box-shadow: inset 0 -1px 0 #ccc;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px;\n padding: 6px 10px; }\n\n.block-editor-block-list__block[data-type=\"core/separator\"] {\n padding-top: 0.1px;\n padding-bottom: 0.1px; }\n .block-editor-block-list__block[data-type=\"core/separator\"].block-editor-block-list__block {\n margin-top: 0;\n margin-bottom: 0; }\n\n.wp-block-shortcode {\n display: flex;\n flex-direction: column;\n padding: 14px;\n background-color: rgba(139, 139, 150, 0.1);\n font-size: 13px;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n margin-bottom: 28px; }\n .wp-block-shortcode label {\n display: flex;\n align-items: center;\n white-space: nowrap;\n font-weight: 600;\n flex-shrink: 0; }\n .wp-block-shortcode .block-editor-plain-text {\n width: 80%;\n max-height: 250px; }\n .wp-block-shortcode .dashicon {\n margin-right: 8px; }\n\n.wp-social-link {\n padding: 6px; }\n\n.wp-block-social-links.is-style-pill-shape .wp-social-link {\n padding-left: 16px;\n padding-right: 16px; }\n\n.wp-block-social-links div.block-editor-url-input {\n display: inline-block;\n margin-left: 8px; }\n\n.wp-block-social-links .block-editor-block-list__layout {\n display: flex;\n justify-content: flex-start; }\n\n[data-type=\"core/social-links\"] .wp-block-social-links > .block-editor-inner-blocks > .block-editor-block-list__layout {\n margin-left: 0;\n margin-right: 0; }\n\n[data-type=\"core/social-links\"] .wp-block-social-links > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block {\n width: auto;\n padding-left: 0;\n padding-right: 0;\n margin-left: 0;\n margin-right: 0;\n margin-top: 0;\n margin-bottom: 0; }\n\n[data-type=\"core/social-links\"] .wp-block-social-links > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block::before {\n border-right: none;\n border-top: none;\n border-bottom: none; }\n\n[data-type=\"core/social-links\"].is-selected .wp-block-social-links .block-editor-block-list__block::before,\n[data-type=\"core/social-links\"].has-child-selected .wp-block-social-links .block-editor-block-list__block::before {\n border-color: transparent !important; }\n\n[data-type=\"core/social-links\"] .wp-block-social-links .block-editor-block-list__insertion-point {\n display: none; }\n\n.wp-block-social-links .block-list-appender {\n margin: 0;\n display: flex;\n align-items: center; }\n\n[data-type=\"core/social-links\"][data-align=\"center\"] .wp-block-social-links {\n justify-content: center; }\n\n.block-editor-block-preview__content .wp-social-link:disabled {\n opacity: 1; }\n\n[data-type=\"core/social-links\"]:not(.is-selected):not(.has-child-selected) .wp-block-social-links {\n min-height: 36px; }\n\n[data-type=\"core/social-links\"] .wp-social-link__is-incomplete {\n transition: transform 0.1s ease;\n transform-origin: center center; }\n\n[data-type=\"core/social-links\"]:not(.is-selected):not(.has-child-selected) .wp-social-link__is-incomplete {\n opacity: 0;\n transform: scale(0);\n width: 0;\n padding: 0;\n margin-right: 0; }\n\n.wp-social-link.wp-social-link__is-incomplete {\n opacity: 0.5; }\n @media (prefers-reduced-motion: reduce) {\n .wp-social-link.wp-social-link__is-incomplete {\n transition-duration: 0s; } }\n\n.wp-block-social-links .is-selected .wp-social-link__is-incomplete,\n.wp-social-link.wp-social-link__is-incomplete:hover,\n.wp-social-link.wp-social-link__is-incomplete:focus {\n opacity: 1; }\n\n[data-type=\"core/social-links\"] .wp-social-link:focus {\n opacity: 1;\n box-shadow: 0 0 0 2px #fff, 0 0 0 4px #007cba;\n outline: 2px solid transparent; }\n\n.block-library-spacer__resize-container.is-selected {\n background: #f3f4f5; }\n .is-dark-theme .block-library-spacer__resize-container.is-selected {\n background: rgba(255, 255, 255, 0.15); }\n\n.block-library-spacer__resize-container {\n clear: both;\n margin-bottom: 28px; }\n .block-library-spacer__resize-container .components-resizable-box__handle::before {\n content: none; }\n\n.edit-post-visual-editor p.wp-block-subhead {\n color: #6c7781;\n font-size: 1.1em;\n font-style: italic; }\n\n.block-editor-block-list__block[data-type=\"core/table\"][data-align=\"left\"], .block-editor-block-list__block[data-type=\"core/table\"][data-align=\"right\"], .block-editor-block-list__block[data-type=\"core/table\"][data-align=\"center\"] {\n height: auto; }\n .block-editor-block-list__block[data-type=\"core/table\"][data-align=\"left\"] table, .block-editor-block-list__block[data-type=\"core/table\"][data-align=\"right\"] table, .block-editor-block-list__block[data-type=\"core/table\"][data-align=\"center\"] table {\n width: auto; }\n .block-editor-block-list__block[data-type=\"core/table\"][data-align=\"left\"] td,\n .block-editor-block-list__block[data-type=\"core/table\"][data-align=\"left\"] th, .block-editor-block-list__block[data-type=\"core/table\"][data-align=\"right\"] td,\n .block-editor-block-list__block[data-type=\"core/table\"][data-align=\"right\"] th, .block-editor-block-list__block[data-type=\"core/table\"][data-align=\"center\"] td,\n .block-editor-block-list__block[data-type=\"core/table\"][data-align=\"center\"] th {\n word-break: break-word; }\n\n.block-editor-block-list__block[data-type=\"core/table\"][data-align=\"center\"] {\n text-align: initial; }\n .block-editor-block-list__block[data-type=\"core/table\"][data-align=\"center\"] table {\n margin: 0 auto; }\n\n.wp-block-table {\n margin: 0; }\n .wp-block-table table {\n border-collapse: collapse; }\n .wp-block-table td,\n .wp-block-table th {\n border: 1px solid; }\n .wp-block-table td.is-selected,\n .wp-block-table th.is-selected {\n border-color: #00a0d2;\n box-shadow: inset 0 0 0 1px #00a0d2;\n border-style: double; }\n .wp-block-table figcaption {\n color: #555d66;\n font-size: 13px;\n text-align: center; }\n\n.blocks-table__placeholder-form.blocks-table__placeholder-form {\n display: flex;\n flex-direction: column;\n align-items: flex-start; }\n .blocks-table__placeholder-form.blocks-table__placeholder-form > * {\n margin-bottom: 8px; }\n @media (min-width: 782px) {\n .blocks-table__placeholder-form.blocks-table__placeholder-form {\n flex-direction: row;\n align-items: flex-end; }\n .blocks-table__placeholder-form.blocks-table__placeholder-form > * {\n margin-bottom: 0; } }\n\n.blocks-table__placeholder-input {\n width: 112px;\n margin-right: 8px;\n margin-bottom: 0; }\n .blocks-table__placeholder-input input {\n height: 36px; }\n .blocks-table__placeholder-input .components-base-control__field {\n margin-bottom: 0; }\n\n.block-editor .wp-block-tag-cloud a {\n display: inline-block;\n margin-right: 5px; }\n\n.block-editor .wp-block-tag-cloud span {\n display: inline-block;\n margin-left: 5px;\n color: #8f98a1;\n text-decoration: none; }\n\n.wp-block-template-part__placeholder-input-container {\n display: flex;\n flex-wrap: wrap;\n width: 100%; }\n\n.wp-block-template-part__placeholder-input {\n margin: 5px; }\n\n.wp-block-template-part__placeholder-preview {\n margin-bottom: 15px;\n width: 100%; }\n .wp-block-template-part__placeholder-preview .block-editor-block-preview__container {\n padding: 1px; }\n .wp-block-template-part__placeholder-preview .block-editor-block-preview__content {\n position: initial; }\n\n.wp-block-template-part__placeholder-preview-title {\n font-size: 15px;\n font-weight: 600;\n margin-bottom: 4px; }\n\n.wp-block-text-columns .block-editor-rich-text__editable:focus {\n outline: 1px solid #e2e4e7; }\n\npre.wp-block-verse {\n color: #191e23;\n white-space: nowrap;\n font-family: inherit;\n font-size: inherit;\n padding: 1em;\n overflow: auto; }\n\n.block-editor-block-list__block[data-align=\"center\"] {\n text-align: center; }\n\n.editor-video-poster-control .components-button {\n display: block;\n margin-right: 8px; }\n\n.editor-video-poster-control .components-button + .components-button {\n margin-top: 1em; }\n\n/**\n * Import styles from internal editor components used by the blocks.\n */\n.block-editor-block-list__layout .reusable-block-edit-panel {\n align-items: center;\n display: flex;\n flex-wrap: wrap;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px;\n padding: 6px 12px;\n border-radius: 2px;\n background-color: #fff;\n box-shadow: 0 0 0 1px #1e1e1e;\n outline: 1px solid transparent; }\n .block-editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__info {\n margin-right: auto; }\n .block-editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__label {\n margin-right: 8px;\n white-space: nowrap;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px; }\n .block-editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__title {\n flex: 1 1 100%; }\n .block-editor-block-list__layout .reusable-block-edit-panel .components-button.reusable-block-edit-panel__button {\n flex-shrink: 0; }\n @media (min-width: 960px) {\n .block-editor-block-list__layout .reusable-block-edit-panel {\n flex-wrap: nowrap; }\n .block-editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__title {\n margin: 0; }\n .block-editor-block-list__layout .reusable-block-edit-panel .components-button.reusable-block-edit-panel__button {\n margin: 0 0 0 8px; } }\n\n.is-navigate-mode .is-selected .reusable-block-edit-panel {\n border-color: #007cba;\n border-style: solid;\n border-bottom: 0; }\n .is-dark-theme .is-navigate-mode .is-selected .reusable-block-edit-panel {\n border-color: #007cba; }\n\n/**\n * Editor Normalization Styles\n *\n * These are only output in the editor, but styles here are NOT prefixed .editor-styles-wrapper.\n * This allows us to create normalization styles that are easily overridden by editor styles.\n */\n.editor-styles-wrapper .block-editor-block-list__block {\n margin-top: 28px;\n margin-bottom: 28px; }\n\n#end-resizable-editor-section {\n display: none; }\n","/**\n * Colors\n */\n/**\n * Breakpoints & Media Queries\n */\n/**\n * Colors\n */\n/**\n * Fonts & basic variables.\n */\n/**\n * Grid System.\n * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/\n */\n/**\n * Dimensions.\n */\n/**\n * Shadows.\n */\n/**\n * Editor widths.\n */\n/**\n * Block UI.\n */\n/**\n * Border radii.\n */\n/**\n * Breakpoint mixins\n */\n/**\n * Long content fade mixin\n *\n * Creates a fading overlay to signify that the content is longer\n * than the space allows.\n */\n/**\n * Button states and focus styles\n */\n/**\n * Block Toolbar/Formatting Buttons\n */\n/**\n * Applies editor left position to the selector passed as argument\n */\n/**\n * Styles that are reused verbatim in a few places\n */\n/**\n * Allows users to opt-out of animations via OS-level preferences.\n */\n/**\n * Reset default styles for JavaScript UI based pages.\n * This is a WP-admin agnostic reset\n */\n/**\n * Reset the WP Admin page styles for Gutenberg-like pages.\n */\n#start-resizable-editor-section {\n display: none; }\n\n.wp-block-audio figcaption {\n color: #555d66;\n font-size: 13px;\n text-align: center; }\n\n.wp-block-code {\n font-family: Menlo, Consolas, monaco, monospace;\n font-size: 14px;\n color: #23282d;\n padding: 0.8em 1em;\n border: 1px solid #e2e4e7;\n border-radius: 4px; }\n\n.wp-block-embed figcaption {\n color: #555d66;\n font-size: 13px;\n text-align: center; }\n\n.blocks-gallery-caption {\n color: #555d66;\n font-size: 13px;\n text-align: center; }\n\n.wp-block-image figcaption {\n color: #555d66;\n font-size: 13px;\n text-align: center; }\n\n.wp-block-pullquote {\n border-top: 4px solid #555d66;\n border-bottom: 4px solid #555d66;\n margin-bottom: 28px;\n color: #40464d; }\n .wp-block-pullquote cite,\n .wp-block-pullquote footer, .wp-block-pullquote__citation {\n color: #40464d;\n text-transform: uppercase;\n font-size: 13px;\n font-style: normal; }\n\n.wp-block-navigation ul,\n.wp-block-navigation ul li {\n list-style: none; }\n\n.wp-block-quote {\n border-left: 4px solid #000;\n margin: 0 0 28px 0;\n padding-left: 1em; }\n .wp-block-quote cite,\n .wp-block-quote footer, .wp-block-quote__citation {\n color: #6c7781;\n font-size: 13px;\n margin-top: 1em;\n position: relative;\n font-style: normal; }\n .wp-block-quote.has-text-align-right, .wp-block-quote.has-text-align-right {\n border-left: none;\n border-right: 4px solid #000;\n padding-left: 0;\n padding-right: 1em; }\n .wp-block-quote.has-text-align-center, .wp-block-quote.has-text-align-center {\n border: none;\n padding-left: 0; }\n .wp-block-quote.is-style-large, .wp-block-quote.is-large {\n border: none; }\n\n.wp-block-search .wp-block-search__label {\n font-weight: bold; }\n\n.wp-block-group.has-background {\n padding: 20px 30px;\n margin-top: 0;\n margin-bottom: 0; }\n\n.wp-block-separator {\n border: none;\n border-bottom: 2px solid #8f98a1;\n margin-left: auto;\n margin-right: auto; }\n .wp-block-separator:not(.is-style-wide):not(.is-style-dots) {\n max-width: 100px; }\n .wp-block-separator.has-background:not(.is-style-dots) {\n border-bottom: none;\n height: 1px; }\n .wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots) {\n height: 2px; }\n\n.wp-block-table {\n border-collapse: collapse; }\n .wp-block-table thead {\n border-bottom: 3px solid; }\n .wp-block-table tfoot {\n border-top: 3px solid; }\n .wp-block-table td,\n .wp-block-table th {\n padding: 0.5em;\n border: 1px solid;\n word-break: normal; }\n .wp-block-table figcaption {\n color: #555d66;\n font-size: 13px;\n text-align: center; }\n\n.wp-block-video figcaption {\n color: #555d66;\n font-size: 13px;\n text-align: center; }\n\n#end-resizable-editor-section {\n display: none; }\n","/**\n * Colors\n */\n/**\n * Breakpoints & Media Queries\n */\n/**\n * Colors\n */\n/**\n * Fonts & basic variables.\n */\n/**\n * Grid System.\n * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/\n */\n/**\n * Dimensions.\n */\n/**\n * Shadows.\n */\n/**\n * Editor widths.\n */\n/**\n * Block UI.\n */\n/**\n * Border radii.\n */\n/**\n * Breakpoint mixins\n */\n/**\n * Long content fade mixin\n *\n * Creates a fading overlay to signify that the content is longer\n * than the space allows.\n */\n/**\n * Button states and focus styles\n */\n/**\n * Block Toolbar/Formatting Buttons\n */\n/**\n * Applies editor left position to the selector passed as argument\n */\n/**\n * Styles that are reused verbatim in a few places\n */\n/**\n * Allows users to opt-out of animations via OS-level preferences.\n */\n/**\n * Reset default styles for JavaScript UI based pages.\n * This is a WP-admin agnostic reset\n */\n/**\n * Reset the WP Admin page styles for Gutenberg-like pages.\n */\n@media (min-width: 782px) {\n body.js.is-fullscreen-mode {\n margin-top: -46px;\n height: calc(100% + 46px); } }\n @media (min-width: 782px) and (min-width: 782px) {\n body.js.is-fullscreen-mode {\n margin-top: -32px;\n height: calc(100% + 32px); } }\n\n@media (min-width: 782px) {\n body.js.is-fullscreen-mode #adminmenumain,\n body.js.is-fullscreen-mode #wpadminbar {\n display: none; }\n body.js.is-fullscreen-mode #wpcontent,\n body.js.is-fullscreen-mode #wpfooter {\n margin-left: 0; }\n body.js.is-fullscreen-mode .edit-post-header {\n transform: translateY(-100%);\n animation: edit-post-fullscreen-mode__slide-in-animation 0.1s forwards; } }\n @media (min-width: 782px) and (prefers-reduced-motion: reduce) {\n body.js.is-fullscreen-mode .edit-post-header {\n animation-duration: 1ms; } }\n\n@keyframes edit-post-fullscreen-mode__slide-in-animation {\n 100% {\n transform: translateY(0%); } }\n\n.edit-post-header {\n height: 60px;\n background: #fff;\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n max-width: 100vw; }\n @media (min-width: 280px) {\n .edit-post-header {\n flex-wrap: nowrap; } }\n .edit-post-header > .edit-post-header__settings {\n order: 1; }\n @supports ((position: -webkit-sticky) or (position: sticky)) {\n .edit-post-header > .edit-post-header__settings {\n order: initial; } }\n\n.edit-post-header__toolbar {\n display: flex;\n flex-grow: 1;\n padding-left: 24px; }\n\n.edit-post-header__settings {\n display: inline-flex;\n align-items: center;\n flex-wrap: wrap;\n padding-right: 16px; }\n\n/**\n * Buttons in the Toolbar\n */\n.edit-post-header__toolbar .block-editor-inserter__toggle {\n min-width: 32px;\n height: 32px;\n margin-right: 8px; }\n\n.edit-post-header__settings .components-button.is-pressed {\n color: #fff;\n background: #1e1e1e; }\n\n.edit-post-header__settings .components-button.editor-post-save-draft,\n.edit-post-header__settings .editor-post-saved-state,\n.edit-post-header__settings .components-button.editor-post-switch-to-draft,\n.edit-post-header__settings .components-button.editor-post-preview,\n.edit-post-header__settings .components-button.editor-post-preview__dropdown,\n.edit-post-header__settings .components-button.editor-post-publish-button,\n.edit-post-header__settings .components-button.editor-post-publish-panel__toggle {\n padding: 0 6px;\n margin-right: 4px; }\n @media (min-width: 600px) {\n .edit-post-header__settings .components-button.editor-post-save-draft,\n .edit-post-header__settings .editor-post-saved-state,\n .edit-post-header__settings .components-button.editor-post-switch-to-draft,\n .edit-post-header__settings .components-button.editor-post-preview,\n .edit-post-header__settings .components-button.editor-post-preview__dropdown,\n .edit-post-header__settings .components-button.editor-post-publish-button,\n .edit-post-header__settings .components-button.editor-post-publish-panel__toggle {\n padding: 0 12px;\n margin-right: 12px; } }\n\n.edit-post-fullscreen-mode-close.has-icon {\n display: none; }\n @media (min-width: 782px) {\n .edit-post-fullscreen-mode-close.has-icon {\n display: flex;\n align-items: center;\n align-self: stretch;\n border: none;\n background: #23282e;\n color: #fff;\n border-radius: 0;\n height: auto;\n width: 60px; }\n .edit-post-fullscreen-mode-close.has-icon:hover {\n background: #32373d; }\n .edit-post-fullscreen-mode-close.has-icon:active {\n color: #fff; }\n .edit-post-fullscreen-mode-close.has-icon:focus {\n box-shadow: inset 0 0 0 2px rgb(0, 124, 186), inset 0 0 0 3px #fff; }\n body.admin-color-sunrise .edit-post-fullscreen-mode-close.has-icon:focus {\n box-shadow: inset 0 0 0 2px rgb(209, 134, 74), inset 0 0 0 3px #fff; }\n body.admin-color-ocean .edit-post-fullscreen-mode-close.has-icon:focus {\n box-shadow: inset 0 0 0 2px rgb(163, 185, 162), inset 0 0 0 3px #fff; }\n body.admin-color-midnight .edit-post-fullscreen-mode-close.has-icon:focus {\n box-shadow: inset 0 0 0 2px rgb(225, 77, 67), inset 0 0 0 3px #fff; }\n body.admin-color-ectoplasm .edit-post-fullscreen-mode-close.has-icon:focus {\n box-shadow: inset 0 0 0 2px rgb(167, 182, 86), inset 0 0 0 3px #fff; }\n body.admin-color-coffee .edit-post-fullscreen-mode-close.has-icon:focus {\n box-shadow: inset 0 0 0 2px rgb(194, 166, 140), inset 0 0 0 3px #fff; }\n body.admin-color-blue .edit-post-fullscreen-mode-close.has-icon:focus {\n box-shadow: inset 0 0 0 2px rgb(217, 171, 89), inset 0 0 0 3px #fff; }\n body.admin-color-light .edit-post-fullscreen-mode-close.has-icon:focus {\n box-shadow: inset 0 0 0 2px rgb(0, 133, 186), inset 0 0 0 3px #fff; } }\n\n.edit-post-header-toolbar {\n display: inline-flex;\n align-items: center; }\n .edit-post-header-toolbar > .components-button {\n display: none; }\n @media (min-width: 600px) {\n .edit-post-header-toolbar > .components-button {\n display: inline-flex; } }\n .edit-post-header-toolbar .block-editor-block-navigation {\n display: none; }\n @media (min-width: 600px) {\n .edit-post-header-toolbar .block-editor-block-navigation {\n display: flex; } }\n\n.edit-post-header-toolbar__block-toolbar {\n position: absolute;\n top: 61px;\n left: 0;\n right: 0;\n background: #fff;\n border-bottom: 1px solid #e2e4e7; }\n .edit-post-header-toolbar__block-toolbar:empty {\n display: none; }\n .edit-post-header-toolbar__block-toolbar .block-editor-block-toolbar .components-toolbar {\n border-top: none;\n border-bottom: none; }\n .is-sidebar-opened .edit-post-header-toolbar__block-toolbar {\n display: none; }\n @media (min-width: 782px) {\n .is-sidebar-opened .edit-post-header-toolbar__block-toolbar {\n display: block;\n right: 280px; } }\n @media (min-width: 1280px) {\n .edit-post-header-toolbar__block-toolbar {\n padding-left: 8px;\n position: static;\n left: auto;\n right: auto;\n background: none;\n border-bottom: none; }\n .is-sidebar-opened .edit-post-header-toolbar__block-toolbar {\n right: auto; }\n .edit-post-header-toolbar__block-toolbar .block-editor-block-toolbar {\n border-left: 1px solid #e2e4e7; }\n .edit-post-header-toolbar__block-toolbar .block-editor-block-toolbar .components-toolbar {\n height: 60px;\n padding: 6px 0; } }\n\n.edit-post-more-menu {\n margin-left: -4px; }\n .edit-post-more-menu .components-button {\n width: auto;\n padding: 0 2px; }\n @media (min-width: 600px) {\n .edit-post-more-menu {\n margin-left: 0; }\n .edit-post-more-menu .components-button {\n padding: 0 4px; } }\n\n.edit-post-more-menu__content .components-popover__content {\n min-width: 260px; }\n @media (min-width: 480px) {\n .edit-post-more-menu__content .components-popover__content {\n width: auto;\n max-width: 480px; } }\n .edit-post-more-menu__content .components-popover__content .components-dropdown-menu__menu {\n padding: 0; }\n\n.components-popover.edit-post-more-menu__content {\n z-index: 99998; }\n\n.edit-post-pinned-plugins {\n display: none; }\n @media (min-width: 600px) {\n .edit-post-pinned-plugins {\n display: flex; } }\n .edit-post-pinned-plugins .components-button {\n margin-left: 4px; }\n .edit-post-pinned-plugins .components-button.is-pressed {\n margin-left: 5px; }\n .edit-post-pinned-plugins .components-button svg {\n max-width: 24px;\n max-height: 24px; }\n .edit-post-pinned-plugins .components-button:not(.is-pressed) svg,\n .edit-post-pinned-plugins .components-button:not(.is-pressed) svg * {\n stroke: #1e1e1e;\n fill: #1e1e1e;\n stroke-width: 0; }\n .edit-post-pinned-plugins .components-button.is-pressed svg,\n .edit-post-pinned-plugins .components-button.is-pressed svg *,\n .edit-post-pinned-plugins .components-button.is-pressed:hover svg,\n .edit-post-pinned-plugins .components-button.is-pressed:hover svg * {\n stroke: #fff !important;\n fill: #fff !important;\n stroke-width: 0; }\n .edit-post-pinned-plugins .components-button:hover svg,\n .edit-post-pinned-plugins .components-button:hover svg * {\n stroke: #007cba !important;\n fill: #007cba !important;\n stroke-width: 0; }\n\n.edit-post-keyboard-shortcut-help-modal__section {\n margin: 0 0 2rem 0; }\n\n.edit-post-keyboard-shortcut-help-modal__main-shortcuts .edit-post-keyboard-shortcut-help-modal__shortcut-list {\n margin-top: -25px; }\n\n.edit-post-keyboard-shortcut-help-modal__section-title {\n font-size: 0.9rem;\n font-weight: 600; }\n\n.edit-post-keyboard-shortcut-help-modal__shortcut {\n display: flex;\n align-items: baseline;\n padding: 0.6rem 0;\n border-top: 1px solid #e2e4e7;\n margin-bottom: 0; }\n .edit-post-keyboard-shortcut-help-modal__shortcut:last-child {\n border-bottom: 1px solid #e2e4e7; }\n .edit-post-keyboard-shortcut-help-modal__shortcut:empty {\n display: none; }\n\n.edit-post-keyboard-shortcut-help-modal__shortcut-term {\n font-weight: 600;\n margin: 0 0 0 1rem;\n text-align: right; }\n\n.edit-post-keyboard-shortcut-help-modal__shortcut-description {\n flex: 1;\n margin: 0;\n flex-basis: auto; }\n\n.edit-post-keyboard-shortcut-help-modal__shortcut-key-combination {\n display: block;\n background: none;\n margin: 0;\n padding: 0; }\n .edit-post-keyboard-shortcut-help-modal__shortcut-key-combination + .edit-post-keyboard-shortcut-help-modal__shortcut-key-combination {\n margin-top: 10px; }\n\n.edit-post-keyboard-shortcut-help-modal__shortcut-key {\n padding: 0.25rem 0.5rem;\n border-radius: 8%;\n margin: 0 0.2rem 0 0.2rem; }\n .edit-post-keyboard-shortcut-help-modal__shortcut-key:last-child {\n margin: 0 0 0 0.2rem; }\n\n.edit-post-layout__metaboxes {\n flex-shrink: 0; }\n\n.edit-post-layout__metaboxes:not(:empty) {\n border-top: 1px solid #e2e4e7;\n padding: 10px 0 10px;\n clear: both; }\n .edit-post-layout__metaboxes:not(:empty) .edit-post-meta-boxes-area {\n margin: auto 20px; }\n\n.edit-post-layout .components-editor-notices__snackbar {\n position: fixed;\n right: 0;\n bottom: 20px;\n padding-left: 16px;\n padding-right: 16px; }\n\n.edit-post-layout .components-editor-notices__snackbar {\n /* Set left position when auto-fold is not on the body element. */\n left: 0; }\n @media (min-width: 782px) {\n .edit-post-layout .components-editor-notices__snackbar {\n left: 160px; } }\n\n.auto-fold .edit-post-layout .components-editor-notices__snackbar {\n /* Auto fold is when on smaller breakpoints, nav menu auto collapses. */ }\n @media (min-width: 782px) {\n .auto-fold .edit-post-layout .components-editor-notices__snackbar {\n left: 36px; } }\n @media (min-width: 961px) {\n .auto-fold .edit-post-layout .components-editor-notices__snackbar {\n left: 160px; } }\n\n/* Sidebar manually collapsed. */\n.folded .edit-post-layout .components-editor-notices__snackbar {\n left: 0; }\n @media (min-width: 782px) {\n .folded .edit-post-layout .components-editor-notices__snackbar {\n left: 36px; } }\n\n/* Mobile menu opened. */\n@media (max-width: 782px) {\n .auto-fold .wp-responsive-open .edit-post-layout .components-editor-notices__snackbar {\n left: 190px; } }\n\n/* In small screens with responsive menu expanded there is small white space. */\n@media (max-width: 600px) {\n .auto-fold .wp-responsive-open .edit-post-layout .components-editor-notices__snackbar {\n margin-left: -18px; } }\n\nbody.is-fullscreen-mode .edit-post-layout .components-editor-notices__snackbar {\n left: 0 !important; }\n\n.edit-post-layout .editor-post-publish-panel {\n position: fixed;\n z-index: 100001;\n top: 46px;\n bottom: 0;\n right: 0;\n left: 0;\n overflow: auto; }\n @media (min-width: 782px) {\n .edit-post-layout .editor-post-publish-panel {\n z-index: 99998;\n top: 32px;\n left: auto;\n width: 280px;\n border-left: 1px solid #e2e4e7;\n transform: translateX(100%);\n animation: edit-post-post-publish-panel__slide-in-animation 0.1s forwards; } }\n @media (min-width: 782px) and (prefers-reduced-motion: reduce) {\n .edit-post-layout .editor-post-publish-panel {\n animation-duration: 1ms; } }\n @media (min-width: 782px) {\n body.is-fullscreen-mode .edit-post-layout .editor-post-publish-panel {\n top: 0; }\n .is-focusing-regions .edit-post-layout .editor-post-publish-panel {\n transform: translateX(0%); } }\n\n@keyframes edit-post-post-publish-panel__slide-in-animation {\n 100% {\n transform: translateX(0%); } }\n\n.block-editor-editor-skeleton__sidebar > div {\n height: 100%; }\n\n.edit-post-layout .editor-post-publish-panel__header-publish-button {\n justify-content: center; }\n\n.edit-post-layout__toggle-publish-panel,\n.edit-post-layout__toogle-sidebar-panel {\n z-index: 100000;\n position: fixed !important;\n top: -9999em;\n bottom: auto;\n left: auto;\n right: 0;\n width: 280px;\n background-color: #fff;\n border: 1px dotted #e2e4e7;\n height: auto !important;\n padding: 24px;\n display: flex;\n justify-content: center; }\n .block-editor-editor-skeleton__publish:focus .edit-post-layout__toggle-publish-panel,\n .block-editor-editor-skeleton__publish:focus-within .edit-post-layout__toggle-publish-panel,\n .block-editor-editor-skeleton__sidebar:focus .edit-post-layout__toggle-publish-panel,\n .block-editor-editor-skeleton__sidebar:focus-within .edit-post-layout__toggle-publish-panel, .block-editor-editor-skeleton__publish:focus\n .edit-post-layout__toogle-sidebar-panel,\n .block-editor-editor-skeleton__publish:focus-within\n .edit-post-layout__toogle-sidebar-panel,\n .block-editor-editor-skeleton__sidebar:focus\n .edit-post-layout__toogle-sidebar-panel,\n .block-editor-editor-skeleton__sidebar:focus-within\n .edit-post-layout__toogle-sidebar-panel {\n top: auto;\n bottom: 0; }\n\n.edit-post-layout__footer {\n display: none;\n z-index: 30; }\n @media (min-width: 782px) {\n .edit-post-layout__footer {\n display: flex;\n background: #fff;\n height: 24px;\n align-items: center;\n font-size: 13px;\n padding: 0 18px; } }\n .edit-post-layout__footer .table-of-contents {\n margin: auto 0 0 auto; }\n .edit-post-layout__footer .table-of-contents .components-button {\n height: 24px;\n padding: 0; }\n .edit-post-layout__footer .table-of-contents .components-button:focus {\n box-shadow: inset 0 0 0 2px rgb(0, 124, 186);\n outline: 1px solid transparent; }\n body.admin-color-sunrise .edit-post-layout__footer .table-of-contents .components-button:focus {\n box-shadow: inset 0 0 0 2px rgb(209, 134, 74); }\n body.admin-color-ocean .edit-post-layout__footer .table-of-contents .components-button:focus {\n box-shadow: inset 0 0 0 2px rgb(163, 185, 162); }\n body.admin-color-midnight .edit-post-layout__footer .table-of-contents .components-button:focus {\n box-shadow: inset 0 0 0 2px rgb(225, 77, 67); }\n body.admin-color-ectoplasm .edit-post-layout__footer .table-of-contents .components-button:focus {\n box-shadow: inset 0 0 0 2px rgb(167, 182, 86); }\n body.admin-color-coffee .edit-post-layout__footer .table-of-contents .components-button:focus {\n box-shadow: inset 0 0 0 2px rgb(194, 166, 140); }\n body.admin-color-blue .edit-post-layout__footer .table-of-contents .components-button:focus {\n box-shadow: inset 0 0 0 2px rgb(217, 171, 89); }\n body.admin-color-light .edit-post-layout__footer .table-of-contents .components-button:focus {\n box-shadow: inset 0 0 0 2px rgb(0, 133, 186); }\n\n.edit-post-layout .block-editor-editor-skeleton__content {\n background-color: #ccd0d4; }\n\n@media (min-width: 600px) {\n .edit-post-manage-blocks-modal {\n height: calc(100% - 60px - 60px); } }\n\n.edit-post-manage-blocks-modal .components-modal__content {\n padding-bottom: 0;\n display: flex;\n flex-direction: column; }\n\n.edit-post-manage-blocks-modal .components-modal__header {\n flex-shrink: 0;\n margin-bottom: 0; }\n\n.edit-post-manage-blocks-modal__content {\n display: flex;\n flex-direction: column;\n flex: 0 1 100%;\n min-height: 0; }\n\n.edit-post-manage-blocks-modal__no-results {\n font-style: italic;\n padding: 24px 0;\n text-align: center; }\n\n.edit-post-manage-blocks-modal__search {\n margin: 16px 0; }\n .edit-post-manage-blocks-modal__search .components-base-control__field {\n margin-bottom: 0; }\n .edit-post-manage-blocks-modal__search .components-base-control__label {\n margin-top: -4px; }\n .edit-post-manage-blocks-modal__search input[type=\"search\"].components-text-control__input {\n padding: 12px;\n border-radius: 4px; }\n\n.edit-post-manage-blocks-modal__disabled-blocks-count {\n border-top: 1px solid #e2e4e7;\n margin-left: -24px;\n margin-right: -24px;\n padding-top: 0.6rem;\n padding-bottom: 0.6rem;\n padding-left: 24px;\n padding-right: 24px;\n background-color: #f3f4f5; }\n\n.edit-post-manage-blocks-modal__category {\n margin: 0 0 2rem 0; }\n\n.edit-post-manage-blocks-modal__category-title {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n padding: 16px 0;\n background-color: #fff;\n z-index: 1; }\n .edit-post-manage-blocks-modal__category-title .components-base-control__field {\n margin-bottom: 0; }\n .edit-post-manage-blocks-modal__category-title .components-checkbox-control__label {\n font-size: 0.9rem;\n font-weight: 600; }\n\n.edit-post-manage-blocks-modal__show-all {\n margin-right: 8px; }\n\n.edit-post-manage-blocks-modal__checklist {\n margin-top: 0; }\n\n.edit-post-manage-blocks-modal__checklist-item {\n margin-bottom: 0;\n padding-left: 16px;\n border-top: 1px solid #e2e4e7; }\n .edit-post-manage-blocks-modal__checklist-item:last-child {\n border-bottom: 1px solid #e2e4e7; }\n .edit-post-manage-blocks-modal__checklist-item .components-base-control__field {\n align-items: center;\n display: flex;\n margin: 0; }\n .components-modal__content .edit-post-manage-blocks-modal__checklist-item.components-checkbox-control__input-container {\n margin: 0 8px; }\n .edit-post-manage-blocks-modal__checklist-item .components-checkbox-control__label {\n display: flex;\n align-items: center;\n justify-content: space-between;\n flex-grow: 1;\n padding: 0.6rem 0 0.6rem 10px; }\n .edit-post-manage-blocks-modal__checklist-item .block-editor-block-icon {\n margin-right: 10px;\n fill: #555d66; }\n\n.edit-post-manage-blocks-modal__results {\n height: 100%;\n overflow: auto;\n margin-left: -24px;\n margin-right: -24px;\n padding-left: 24px;\n padding-right: 24px;\n border-top: 1px solid #e2e4e7; }\n\n.edit-post-meta-boxes-area {\n position: relative;\n /**\n\t * The wordpress default for most meta-box elements is content-box. Some\n\t * elements such as textarea and input are set to border-box in forms.css.\n\t * These elements therefore specifically set back to border-box here, while\n\t * other elements (such as .button) are unaffected by Gutenberg's style\n\t * because of their higher specificity.\n\t */\n /* Match width and positioning of the meta boxes. Override default styles. */\n /* Override Default meta box stylings */ }\n .edit-post-meta-boxes-area__container,\n .edit-post-meta-boxes-area .inside {\n box-sizing: content-box; }\n .edit-post-meta-boxes-area textarea,\n .edit-post-meta-boxes-area input {\n box-sizing: border-box; }\n .edit-post-meta-boxes-area #poststuff {\n margin: 0 auto;\n padding-top: 0;\n min-width: auto; }\n .edit-post-meta-boxes-area #poststuff h3.hndle,\n .edit-post-meta-boxes-area #poststuff .stuffbox > h3,\n .edit-post-meta-boxes-area #poststuff h2.hndle {\n /* WordPress selectors yolo */\n border-bottom: 1px solid #e2e4e7;\n box-sizing: border-box;\n color: inherit;\n font-weight: 600;\n outline: none;\n padding: 15px;\n position: relative;\n width: 100%; }\n .edit-post-meta-boxes-area .postbox {\n border: 0;\n color: inherit;\n margin-bottom: 0; }\n .edit-post-meta-boxes-area .postbox > .inside {\n border-bottom: 1px solid #e2e4e7;\n color: inherit;\n padding: 0 14px 14px;\n margin: 0; }\n .edit-post-meta-boxes-area .postbox .handlediv {\n height: 44px;\n width: 44px; }\n .edit-post-meta-boxes-area.is-loading::before {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n content: \"\";\n background: transparent;\n z-index: 1; }\n .edit-post-meta-boxes-area .components-spinner {\n position: absolute;\n top: 10px;\n right: 20px;\n z-index: 5; }\n .edit-post-meta-boxes-area .is-hidden {\n display: none; }\n .edit-post-meta-boxes-area .metabox-location-side .postbox input[type=\"checkbox\"] {\n border: 1px solid #6c7781; }\n .edit-post-meta-boxes-area .metabox-location-side .postbox input[type=\"checkbox\"]:checked {\n background: #fff;\n border-color: #6c7781; }\n .edit-post-meta-boxes-area .metabox-location-side .postbox input[type=\"checkbox\"]::before {\n margin: -3px -4px; }\n\n.edit-post-meta-boxes-area__clear {\n clear: both; }\n\n.editor-post-preview__dropdown {\n display: none;\n margin-right: 12px;\n box-shadow: inset 0 0 0 1px #ccc;\n border-radius: 2px;\n padding: 0; }\n\n.editor-post-preview__button-toggle {\n display: flex;\n justify-content: space-between;\n padding: 0 0 0 12px; }\n .editor-post-preview__button-toggle:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(0, 124, 186); }\n body.admin-color-sunrise .editor-post-preview__button-toggle:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(209, 134, 74); }\n body.admin-color-ocean .editor-post-preview__button-toggle:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(163, 185, 162); }\n body.admin-color-midnight .editor-post-preview__button-toggle:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(225, 77, 67); }\n body.admin-color-ectoplasm .editor-post-preview__button-toggle:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(167, 182, 86); }\n body.admin-color-coffee .editor-post-preview__button-toggle:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(194, 166, 140); }\n body.admin-color-blue .editor-post-preview__button-toggle:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(217, 171, 89); }\n body.admin-color-light .editor-post-preview__button-toggle:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px rgb(0, 133, 186); }\n\n.editor-post-preview__button-resize.editor-post-preview__button-resize {\n padding-left: 40px; }\n .editor-post-preview__button-resize.editor-post-preview__button-resize.has-icon {\n padding-left: 8px; }\n\n.editor-post-preview__button-separator {\n border-left: 1px solid #ccc;\n padding: 6px;\n margin-left: 12px;\n display: flex;\n align-items: center;\n justify-content: center; }\n\n.editor-post-preview__dropdown-content .components-popover__content {\n overflow-y: visible;\n padding-bottom: 0; }\n\n.editor-post-preview__dropdown-content .components-menu-group + .components-menu-group {\n border-top: 1px solid #ccc;\n padding: 8px 12px;\n margin-left: -12px;\n margin-right: -12px; }\n\n.editor-post-preview__grouping-external {\n display: flex;\n position: relative; }\n\n.editor-post-preview__button-external {\n padding-left: 40px;\n margin-right: auto;\n width: 100%;\n display: flex;\n justify-content: space-between; }\n\n@media (min-width: 600px) {\n .editor-post-preview {\n display: none; }\n .editor-post-preview__dropdown {\n display: flex; } }\n\n.edit-post-sidebar {\n background: #fff;\n color: #555d66;\n overflow: visible; }\n @media (min-width: 600px) {\n .edit-post-sidebar {\n z-index: auto;\n height: 100%;\n overflow: auto;\n -webkit-overflow-scrolling: touch; } }\n @media (min-width: 782px) {\n .edit-post-sidebar {\n width: 280px; } }\n .edit-post-sidebar > .components-panel {\n border-left: none;\n border-right: none;\n overflow: auto;\n -webkit-overflow-scrolling: touch;\n height: auto;\n max-height: calc(100vh - 146px);\n margin-top: -1px;\n margin-bottom: -1px;\n position: relative; }\n @media (min-width: 600px) {\n .edit-post-sidebar > .components-panel {\n overflow: visible;\n height: auto;\n max-height: none; } }\n .edit-post-sidebar > .components-panel .components-panel__header {\n position: fixed;\n z-index: 1;\n top: 0;\n left: 0;\n right: 0;\n height: 50px; }\n @media (min-width: 600px) {\n .edit-post-sidebar > .components-panel .components-panel__header {\n position: inherit;\n top: auto;\n left: auto;\n right: auto; } }\n .edit-post-sidebar p {\n margin-top: 0; }\n .edit-post-sidebar h2,\n .edit-post-sidebar h3 {\n font-size: 13px;\n color: #555d66;\n margin-bottom: 1.5em; }\n .edit-post-sidebar hr {\n border-top: none;\n border-bottom: 1px solid #e2e4e7;\n margin: 1.5em 0; }\n .edit-post-sidebar div.components-toolbar {\n box-shadow: none;\n margin-bottom: 1.5em; }\n .edit-post-sidebar div.components-toolbar:last-child {\n margin-bottom: 0; }\n .edit-post-sidebar p + div.components-toolbar {\n margin-top: -1em; }\n .edit-post-sidebar .block-editor-skip-to-selected-block:focus {\n top: auto;\n right: 10px;\n bottom: 10px;\n left: auto; }\n\n/* Text Editor specific */\n.components-panel__header.edit-post-sidebar__header {\n background: #fff;\n padding-right: 8px; }\n .components-panel__header.edit-post-sidebar__header .edit-post-sidebar__title {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n width: 100%; }\n @media (min-width: 782px) {\n .components-panel__header.edit-post-sidebar__header {\n display: none; } }\n\n.components-panel__header.edit-post-sidebar__panel-tabs {\n justify-content: flex-start;\n padding-left: 0;\n padding-right: 4px;\n border-top: 0;\n margin-top: 0; }\n .components-panel__header.edit-post-sidebar__panel-tabs .components-button.has-icon {\n display: none;\n margin-left: auto; }\n @media (min-width: 782px) {\n .components-panel__header.edit-post-sidebar__panel-tabs .components-button.has-icon {\n display: flex; } }\n\n.edit-post-sidebar__panel-tab {\n background: transparent;\n border: none;\n border-radius: 0;\n box-shadow: none;\n cursor: pointer;\n height: 50px;\n padding: 3px 15px;\n margin-left: 0;\n font-weight: 400;\n outline-offset: -1px;\n transition: box-shadow 0.1s linear; }\n @media (prefers-reduced-motion: reduce) {\n .edit-post-sidebar__panel-tab {\n transition-duration: 0s; } }\n .edit-post-sidebar__panel-tab.is-active {\n box-shadow: inset 0 -3px #007cba;\n font-weight: 600;\n position: relative; }\n body.admin-color-sunrise .edit-post-sidebar__panel-tab.is-active {\n box-shadow: inset 0 -3px #837425; }\n body.admin-color-ocean .edit-post-sidebar__panel-tab.is-active {\n box-shadow: inset 0 -3px #5e7d5e; }\n body.admin-color-midnight .edit-post-sidebar__panel-tab.is-active {\n box-shadow: inset 0 -3px #497b8d; }\n body.admin-color-ectoplasm .edit-post-sidebar__panel-tab.is-active {\n box-shadow: inset 0 -3px #523f6d; }\n body.admin-color-coffee .edit-post-sidebar__panel-tab.is-active {\n box-shadow: inset 0 -3px #59524c; }\n body.admin-color-blue .edit-post-sidebar__panel-tab.is-active {\n box-shadow: inset 0 -3px #417e9B; }\n body.admin-color-light .edit-post-sidebar__panel-tab.is-active {\n box-shadow: inset 0 -3px #007cba; }\n .edit-post-sidebar__panel-tab.is-active::before {\n content: \"\";\n position: absolute;\n top: 0;\n bottom: 1px;\n right: 0;\n left: 0;\n border-bottom: 3px solid transparent; }\n .edit-post-sidebar__panel-tab:focus:not(:disabled) {\n color: #191e23;\n outline-offset: -1px;\n outline: 1px dotted #555d66;\n box-shadow: none; }\n\n.components-panel__body.is-opened.edit-post-last-revision__panel {\n padding: 0; }\n\n.editor-post-last-revision__title.components-button {\n padding: 13px 16px; }\n\n.editor-post-author__select {\n margin: -5px 0;\n width: 100%; }\n @supports ((position: -webkit-sticky) or (position: sticky)) {\n .editor-post-author__select {\n width: auto; } }\n\n.edit-post-post-link__link-post-name {\n font-weight: 600; }\n\n.edit-post-post-link__preview-label {\n margin: 0; }\n\n.edit-post-post-link__link {\n text-align: left;\n word-wrap: break-word;\n display: block; }\n\n/* rtl:begin:ignore */\n.edit-post-post-link__preview-link-container {\n direction: ltr; }\n\n/* rtl:end:ignore */\n.edit-post-post-schedule {\n width: 100%;\n position: relative; }\n\n.components-button.edit-post-post-schedule__toggle {\n text-align: right; }\n\n.editor-post-slug__input {\n margin: -5px 0;\n padding: 2px; }\n\n.edit-post-post-status .edit-post-post-publish-dropdown__switch-to-draft {\n margin-top: 15px;\n width: 100%;\n text-align: center; }\n\n.edit-post-post-visibility {\n width: 100%; }\n\n@media (min-width: 782px) {\n .edit-post-post-visibility__dialog .components-popover__content {\n width: 257px; } }\n\n.edit-post-post-visibility__dialog-legend {\n font-weight: 600; }\n\n.edit-post-post-visibility__choice {\n margin: 10px 0; }\n\n.edit-post-post-visibility__dialog-radio,\n.edit-post-post-visibility__dialog-label {\n vertical-align: top; }\n\n.edit-post-post-visibility__dialog-password-input {\n width: calc(100% - 20px);\n margin-left: 20px; }\n\n.edit-post-post-visibility__dialog-info {\n color: #7e8993;\n padding-left: 20px;\n font-style: italic;\n margin: 4px 0 0;\n line-height: 1.4; }\n\n.components-panel__header.edit-post-sidebar__panel-tabs {\n justify-content: flex-start;\n padding-left: 0;\n padding-right: 4px;\n border-top: 0; }\n .components-panel__header.edit-post-sidebar__panel-tabs ul {\n display: flex; }\n .components-panel__header.edit-post-sidebar__panel-tabs li {\n margin: 0; }\n\n.components-button.edit-post-sidebar__panel-tab {\n background: transparent;\n border: none;\n box-shadow: none;\n cursor: pointer;\n display: inline-block;\n padding: 3px 15px;\n margin-left: 0;\n font-weight: 400;\n color: #191e23;\n outline-offset: -1px;\n transition: box-shadow 0.1s linear; }\n @media (prefers-reduced-motion: reduce) {\n .components-button.edit-post-sidebar__panel-tab {\n transition-duration: 0s; } }\n .components-button.edit-post-sidebar__panel-tab::after {\n content: attr(data-label);\n display: block;\n font-weight: 600;\n height: 0;\n overflow: hidden;\n speak: none;\n visibility: hidden; }\n .components-button.edit-post-sidebar__panel-tab.is-active {\n box-shadow: inset 0 -4px #007cba;\n font-weight: 600;\n position: relative; }\n body.admin-color-sunrise .components-button.edit-post-sidebar__panel-tab.is-active {\n box-shadow: inset 0 -4px #837425; }\n body.admin-color-ocean .components-button.edit-post-sidebar__panel-tab.is-active {\n box-shadow: inset 0 -4px #5e7d5e; }\n body.admin-color-midnight .components-button.edit-post-sidebar__panel-tab.is-active {\n box-shadow: inset 0 -4px #497b8d; }\n body.admin-color-ectoplasm .components-button.edit-post-sidebar__panel-tab.is-active {\n box-shadow: inset 0 -4px #523f6d; }\n body.admin-color-coffee .components-button.edit-post-sidebar__panel-tab.is-active {\n box-shadow: inset 0 -4px #59524c; }\n body.admin-color-blue .components-button.edit-post-sidebar__panel-tab.is-active {\n box-shadow: inset 0 -4px #417e9B; }\n body.admin-color-light .components-button.edit-post-sidebar__panel-tab.is-active {\n box-shadow: inset 0 -4px #007cba; }\n .components-button.edit-post-sidebar__panel-tab.is-active::before {\n content: \"\";\n position: absolute;\n top: 0;\n bottom: 1px;\n right: 0;\n left: 0;\n border-bottom: 4px solid transparent; }\n .components-button.edit-post-sidebar__panel-tab:focus {\n background-color: transparent;\n color: #191e23;\n outline-offset: -1px;\n outline: 1px dotted #555d66; }\n\n/* Text Editor specific */\n.components-panel__header.edit-post-sidebar-header__small {\n background: #fff;\n padding-right: 4px; }\n .components-panel__header.edit-post-sidebar-header__small .edit-post-sidebar__title {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n width: 100%; }\n @media (min-width: 782px) {\n .components-panel__header.edit-post-sidebar-header__small {\n display: none; } }\n\n.components-panel__header.edit-post-sidebar-header {\n padding-right: 4px;\n background: #f3f4f5; }\n .components-panel__header.edit-post-sidebar-header .components-button.has-icon {\n display: none;\n margin-left: auto; }\n .components-panel__header.edit-post-sidebar-header .components-button.has-icon ~ .components-button {\n margin-left: 0; }\n @media (min-width: 782px) {\n .components-panel__header.edit-post-sidebar-header .components-button.has-icon {\n display: flex; } }\n\n.edit-post-text-editor {\n position: relative;\n width: 100%;\n background-color: #fff;\n flex-grow: 1;\n padding-top: 56px; }\n .edit-post-text-editor .editor-post-title__block textarea {\n border: 1px solid #e2e4e7;\n margin-bottom: 4px;\n padding: 14px; }\n .edit-post-text-editor .editor-post-title__block textarea:focus, .edit-post-text-editor .editor-post-title__block textarea:hover {\n border: 1px solid #000; }\n .edit-post-text-editor .editor-post-permalink {\n margin-top: -6px;\n box-shadow: none;\n border: none;\n outline: 1px solid #1e1e1e; }\n @media (min-width: 600px) {\n .edit-post-text-editor .editor-post-title,\n .edit-post-text-editor .editor-post-title__block {\n padding: 0; } }\n\n.edit-post-text-editor__toolbar {\n position: absolute;\n top: 8px;\n left: 0;\n right: 0;\n height: 48px;\n line-height: 48px;\n padding: 0 8px 0 16px;\n display: flex; }\n .edit-post-text-editor__toolbar h2 {\n margin: 0 auto 0 0;\n font-size: 13px;\n color: #555d66; }\n .edit-post-text-editor__toolbar .components-button svg {\n order: 1; }\n\n.edit-post-text-editor__body {\n max-width: calc(100% - 32px);\n margin-left: 16px;\n margin-right: 16px;\n padding-top: 40px; }\n @media (min-width: 600px) {\n .edit-post-text-editor__body {\n max-width: 580px;\n margin-left: auto;\n margin-right: auto; } }\n\n.edit-post-visual-editor {\n position: relative;\n padding-top: 50px;\n background-color: #fff;\n flex: 1 1 auto; }\n .edit-post-visual-editor .components-button {\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif; }\n @supports ((position: -webkit-sticky) or (position: sticky)) {\n .edit-post-visual-editor {\n flex-basis: 100%; } }\n\n.edit-post-visual-editor > .block-editor__typewriter,\n.edit-post-visual-editor > .block-editor__typewriter > div,\n.edit-post-visual-editor > .block-editor__typewriter > div > .block-editor-writing-flow,\n.edit-post-visual-editor > .block-editor__typewriter > div > .block-editor-writing-flow > .block-editor-writing-flow__click-redirect {\n height: 100%; }\n\n.edit-post-visual-editor .block-editor-writing-flow__click-redirect {\n min-height: 40vh;\n width: 100%; }\n\n.has-metaboxes .edit-post-visual-editor .block-editor-writing-flow__click-redirect {\n height: 0; }\n\n.edit-post-visual-editor .block-editor-block-list__block {\n margin-left: auto;\n margin-right: auto; }\n\n@media (min-width: 600px) {\n .editor-post-title {\n padding-left: 58px;\n padding-right: 58px; } }\n\n.edit-post-visual-editor .editor-post-title__block {\n margin-left: auto;\n margin-right: auto;\n margin-bottom: 32px; }\n .edit-post-visual-editor .editor-post-title__block > div {\n margin-left: 0;\n margin-right: 0; }\n @media (min-width: 600px) {\n .edit-post-visual-editor .editor-post-title__block > div {\n margin-left: -16px;\n margin-right: -16px; } }\n\n.edit-post-options-modal__section {\n margin: 0 0 2rem 0; }\n\n.edit-post-options-modal__section-title {\n font-size: 0.9rem;\n font-weight: 600; }\n\n.edit-post-options-modal__option {\n border-top: 1px solid #e2e4e7; }\n .edit-post-options-modal__option:last-child {\n border-bottom: 1px solid #e2e4e7; }\n .edit-post-options-modal__option .components-base-control__field {\n align-items: center;\n display: flex;\n margin: 0; }\n .edit-post-options-modal__option .components-checkbox-control__label {\n flex-grow: 1;\n padding: 0.6rem 0 0.6rem 10px; }\n\n.edit-post-options-modal__custom-fields-confirmation-message, .edit-post-options-modal__custom-fields-confirmation-button {\n margin: 0 0 0.6rem 48px; }\n @media (min-width: 782px) {\n .edit-post-options-modal__custom-fields-confirmation-message, .edit-post-options-modal__custom-fields-confirmation-button {\n margin-left: 38px; } }\n @media (min-width: 600px) {\n .edit-post-options-modal__custom-fields-confirmation-message, .edit-post-options-modal__custom-fields-confirmation-button {\n max-width: 300px; } }\n\n.edit-post-welcome-guide__page {\n display: flex;\n flex-direction: column;\n justify-content: center;\n position: relative; }\n @media (min-width: 600px) {\n .edit-post-welcome-guide__page {\n min-height: 300px;\n padding-left: 344px; } }\n\n.edit-post-welcome-guide__heading {\n font-family: \"Noto Serif\", serif;\n font-size: 21px;\n line-height: 1.4;\n margin: 8px 0; }\n\n.edit-post-welcome-guide__image {\n background: #66c6e4;\n border-radius: 4px;\n height: 200px;\n margin: 8px 0; }\n @media (min-width: 600px) {\n .edit-post-welcome-guide__image {\n position: absolute;\n left: 0;\n top: 50%;\n height: 300px;\n width: 320px;\n margin-top: -150px; } }\n\n.edit-post-welcome-guide__text {\n font-size: 16px;\n line-height: 1.4;\n margin: 8px 0; }\n\n.edit-post-welcome-guide__inserter-icon {\n margin: 0 4px;\n position: relative;\n top: 4px; }\n\n@media (min-width: 600px) {\n .edit-post-welcome-guide {\n width: 600px; } }\n\n/**\n * Animations\n */\n@keyframes edit-post__fade-in-animation {\n from {\n opacity: 0; }\n to {\n opacity: 1; } }\n\nhtml.wp-toolbar {\n background: #fff; }\n\nbody.block-editor-page {\n background: #fff;\n /* We hide legacy notices in Gutenberg Based Pages, because they were not designed in a way that scaled well.\n\t Plugins can use Gutenberg notices if they need to pass on information to the user when they are editing. */ }\n body.block-editor-page #wpcontent {\n padding-left: 0; }\n body.block-editor-page #wpbody-content {\n padding-bottom: 0; }\n body.block-editor-page #wpbody-content > div:not(.block-editor):not(#screen-meta) {\n display: none; }\n body.block-editor-page #wpfooter {\n display: none; }\n body.block-editor-page .a11y-speak-region {\n left: -1px;\n top: -1px; }\n body.block-editor-page ul#adminmenu a.wp-has-current-submenu::after,\n body.block-editor-page ul#adminmenu > li.current > a.current::after {\n border-right-color: #fff; }\n body.block-editor-page .media-frame select.attachment-filters:last-of-type {\n width: auto;\n max-width: 100%; }\n\n.edit-post-header,\n.edit-post-visual-editor,\n.edit-post-text-editor,\n.edit-post-sidebar,\n.editor-post-publish-panel,\n.components-popover,\n.components-modal__frame {\n box-sizing: border-box; }\n .edit-post-header *,\n .edit-post-header *::before,\n .edit-post-header *::after,\n .edit-post-visual-editor *,\n .edit-post-visual-editor *::before,\n .edit-post-visual-editor *::after,\n .edit-post-text-editor *,\n .edit-post-text-editor *::before,\n .edit-post-text-editor *::after,\n .edit-post-sidebar *,\n .edit-post-sidebar *::before,\n .edit-post-sidebar *::after,\n .editor-post-publish-panel *,\n .editor-post-publish-panel *::before,\n .editor-post-publish-panel *::after,\n .components-popover *,\n .components-popover *::before,\n .components-popover *::after,\n .components-modal__frame *,\n .components-modal__frame *::before,\n .components-modal__frame *::after {\n box-sizing: inherit; }\n .edit-post-header .input-control,\n .edit-post-header input[type=\"text\"],\n .edit-post-header input[type=\"search\"],\n .edit-post-header input[type=\"radio\"],\n .edit-post-header input[type=\"tel\"],\n .edit-post-header input[type=\"time\"],\n .edit-post-header input[type=\"url\"],\n .edit-post-header input[type=\"week\"],\n .edit-post-header input[type=\"password\"],\n .edit-post-header input[type=\"checkbox\"],\n .edit-post-header input[type=\"color\"],\n .edit-post-header input[type=\"date\"],\n .edit-post-header input[type=\"datetime\"],\n .edit-post-header input[type=\"datetime-local\"],\n .edit-post-header input[type=\"email\"],\n .edit-post-header input[type=\"month\"],\n .edit-post-header input[type=\"number\"],\n .edit-post-header select,\n .edit-post-header textarea,\n .edit-post-visual-editor .input-control,\n .edit-post-visual-editor input[type=\"text\"],\n .edit-post-visual-editor input[type=\"search\"],\n .edit-post-visual-editor input[type=\"radio\"],\n .edit-post-visual-editor input[type=\"tel\"],\n .edit-post-visual-editor input[type=\"time\"],\n .edit-post-visual-editor input[type=\"url\"],\n .edit-post-visual-editor input[type=\"week\"],\n .edit-post-visual-editor input[type=\"password\"],\n .edit-post-visual-editor input[type=\"checkbox\"],\n .edit-post-visual-editor input[type=\"color\"],\n .edit-post-visual-editor input[type=\"date\"],\n .edit-post-visual-editor input[type=\"datetime\"],\n .edit-post-visual-editor input[type=\"datetime-local\"],\n .edit-post-visual-editor input[type=\"email\"],\n .edit-post-visual-editor input[type=\"month\"],\n .edit-post-visual-editor input[type=\"number\"],\n .edit-post-visual-editor select,\n .edit-post-visual-editor textarea,\n .edit-post-text-editor .input-control,\n .edit-post-text-editor input[type=\"text\"],\n .edit-post-text-editor input[type=\"search\"],\n .edit-post-text-editor input[type=\"radio\"],\n .edit-post-text-editor input[type=\"tel\"],\n .edit-post-text-editor input[type=\"time\"],\n .edit-post-text-editor input[type=\"url\"],\n .edit-post-text-editor input[type=\"week\"],\n .edit-post-text-editor input[type=\"password\"],\n .edit-post-text-editor input[type=\"checkbox\"],\n .edit-post-text-editor input[type=\"color\"],\n .edit-post-text-editor input[type=\"date\"],\n .edit-post-text-editor input[type=\"datetime\"],\n .edit-post-text-editor input[type=\"datetime-local\"],\n .edit-post-text-editor input[type=\"email\"],\n .edit-post-text-editor input[type=\"month\"],\n .edit-post-text-editor input[type=\"number\"],\n .edit-post-text-editor select,\n .edit-post-text-editor textarea,\n .edit-post-sidebar .input-control,\n .edit-post-sidebar input[type=\"text\"],\n .edit-post-sidebar input[type=\"search\"],\n .edit-post-sidebar input[type=\"radio\"],\n .edit-post-sidebar input[type=\"tel\"],\n .edit-post-sidebar input[type=\"time\"],\n .edit-post-sidebar input[type=\"url\"],\n .edit-post-sidebar input[type=\"week\"],\n .edit-post-sidebar input[type=\"password\"],\n .edit-post-sidebar input[type=\"checkbox\"],\n .edit-post-sidebar input[type=\"color\"],\n .edit-post-sidebar input[type=\"date\"],\n .edit-post-sidebar input[type=\"datetime\"],\n .edit-post-sidebar input[type=\"datetime-local\"],\n .edit-post-sidebar input[type=\"email\"],\n .edit-post-sidebar input[type=\"month\"],\n .edit-post-sidebar input[type=\"number\"],\n .edit-post-sidebar select,\n .edit-post-sidebar textarea,\n .editor-post-publish-panel .input-control,\n .editor-post-publish-panel input[type=\"text\"],\n .editor-post-publish-panel input[type=\"search\"],\n .editor-post-publish-panel input[type=\"radio\"],\n .editor-post-publish-panel input[type=\"tel\"],\n .editor-post-publish-panel input[type=\"time\"],\n .editor-post-publish-panel input[type=\"url\"],\n .editor-post-publish-panel input[type=\"week\"],\n .editor-post-publish-panel input[type=\"password\"],\n .editor-post-publish-panel input[type=\"checkbox\"],\n .editor-post-publish-panel input[type=\"color\"],\n .editor-post-publish-panel input[type=\"date\"],\n .editor-post-publish-panel input[type=\"datetime\"],\n .editor-post-publish-panel input[type=\"datetime-local\"],\n .editor-post-publish-panel input[type=\"email\"],\n .editor-post-publish-panel input[type=\"month\"],\n .editor-post-publish-panel input[type=\"number\"],\n .editor-post-publish-panel select,\n .editor-post-publish-panel textarea,\n .components-popover .input-control,\n .components-popover input[type=\"text\"],\n .components-popover input[type=\"search\"],\n .components-popover input[type=\"radio\"],\n .components-popover input[type=\"tel\"],\n .components-popover input[type=\"time\"],\n .components-popover input[type=\"url\"],\n .components-popover input[type=\"week\"],\n .components-popover input[type=\"password\"],\n .components-popover input[type=\"checkbox\"],\n .components-popover input[type=\"color\"],\n .components-popover input[type=\"date\"],\n .components-popover input[type=\"datetime\"],\n .components-popover input[type=\"datetime-local\"],\n .components-popover input[type=\"email\"],\n .components-popover input[type=\"month\"],\n .components-popover input[type=\"number\"],\n .components-popover select,\n .components-popover textarea,\n .components-modal__frame .input-control,\n .components-modal__frame input[type=\"text\"],\n .components-modal__frame input[type=\"search\"],\n .components-modal__frame input[type=\"radio\"],\n .components-modal__frame input[type=\"tel\"],\n .components-modal__frame input[type=\"time\"],\n .components-modal__frame input[type=\"url\"],\n .components-modal__frame input[type=\"week\"],\n .components-modal__frame input[type=\"password\"],\n .components-modal__frame input[type=\"checkbox\"],\n .components-modal__frame input[type=\"color\"],\n .components-modal__frame input[type=\"date\"],\n .components-modal__frame input[type=\"datetime\"],\n .components-modal__frame input[type=\"datetime-local\"],\n .components-modal__frame input[type=\"email\"],\n .components-modal__frame input[type=\"month\"],\n .components-modal__frame input[type=\"number\"],\n .components-modal__frame select,\n .components-modal__frame textarea {\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n padding: 6px 8px;\n box-shadow: 0 0 0 transparent;\n transition: box-shadow 0.1s linear;\n border-radius: 4px;\n border: 1px solid #7e8993;\n /* Fonts smaller than 16px causes mobile safari to zoom. */\n font-size: 16px;\n /* Override core line-height. To be reviewed. */\n line-height: normal; }\n @media (prefers-reduced-motion: reduce) {\n .edit-post-header .input-control,\n .edit-post-header input[type=\"text\"],\n .edit-post-header input[type=\"search\"],\n .edit-post-header input[type=\"radio\"],\n .edit-post-header input[type=\"tel\"],\n .edit-post-header input[type=\"time\"],\n .edit-post-header input[type=\"url\"],\n .edit-post-header input[type=\"week\"],\n .edit-post-header input[type=\"password\"],\n .edit-post-header input[type=\"checkbox\"],\n .edit-post-header input[type=\"color\"],\n .edit-post-header input[type=\"date\"],\n .edit-post-header input[type=\"datetime\"],\n .edit-post-header input[type=\"datetime-local\"],\n .edit-post-header input[type=\"email\"],\n .edit-post-header input[type=\"month\"],\n .edit-post-header input[type=\"number\"],\n .edit-post-header select,\n .edit-post-header textarea,\n .edit-post-visual-editor .input-control,\n .edit-post-visual-editor input[type=\"text\"],\n .edit-post-visual-editor input[type=\"search\"],\n .edit-post-visual-editor input[type=\"radio\"],\n .edit-post-visual-editor input[type=\"tel\"],\n .edit-post-visual-editor input[type=\"time\"],\n .edit-post-visual-editor input[type=\"url\"],\n .edit-post-visual-editor input[type=\"week\"],\n .edit-post-visual-editor input[type=\"password\"],\n .edit-post-visual-editor input[type=\"checkbox\"],\n .edit-post-visual-editor input[type=\"color\"],\n .edit-post-visual-editor input[type=\"date\"],\n .edit-post-visual-editor input[type=\"datetime\"],\n .edit-post-visual-editor input[type=\"datetime-local\"],\n .edit-post-visual-editor input[type=\"email\"],\n .edit-post-visual-editor input[type=\"month\"],\n .edit-post-visual-editor input[type=\"number\"],\n .edit-post-visual-editor select,\n .edit-post-visual-editor textarea,\n .edit-post-text-editor .input-control,\n .edit-post-text-editor input[type=\"text\"],\n .edit-post-text-editor input[type=\"search\"],\n .edit-post-text-editor input[type=\"radio\"],\n .edit-post-text-editor input[type=\"tel\"],\n .edit-post-text-editor input[type=\"time\"],\n .edit-post-text-editor input[type=\"url\"],\n .edit-post-text-editor input[type=\"week\"],\n .edit-post-text-editor input[type=\"password\"],\n .edit-post-text-editor input[type=\"checkbox\"],\n .edit-post-text-editor input[type=\"color\"],\n .edit-post-text-editor input[type=\"date\"],\n .edit-post-text-editor input[type=\"datetime\"],\n .edit-post-text-editor input[type=\"datetime-local\"],\n .edit-post-text-editor input[type=\"email\"],\n .edit-post-text-editor input[type=\"month\"],\n .edit-post-text-editor input[type=\"number\"],\n .edit-post-text-editor select,\n .edit-post-text-editor textarea,\n .edit-post-sidebar .input-control,\n .edit-post-sidebar input[type=\"text\"],\n .edit-post-sidebar input[type=\"search\"],\n .edit-post-sidebar input[type=\"radio\"],\n .edit-post-sidebar input[type=\"tel\"],\n .edit-post-sidebar input[type=\"time\"],\n .edit-post-sidebar input[type=\"url\"],\n .edit-post-sidebar input[type=\"week\"],\n .edit-post-sidebar input[type=\"password\"],\n .edit-post-sidebar input[type=\"checkbox\"],\n .edit-post-sidebar input[type=\"color\"],\n .edit-post-sidebar input[type=\"date\"],\n .edit-post-sidebar input[type=\"datetime\"],\n .edit-post-sidebar input[type=\"datetime-local\"],\n .edit-post-sidebar input[type=\"email\"],\n .edit-post-sidebar input[type=\"month\"],\n .edit-post-sidebar input[type=\"number\"],\n .edit-post-sidebar select,\n .edit-post-sidebar textarea,\n .editor-post-publish-panel .input-control,\n .editor-post-publish-panel input[type=\"text\"],\n .editor-post-publish-panel input[type=\"search\"],\n .editor-post-publish-panel input[type=\"radio\"],\n .editor-post-publish-panel input[type=\"tel\"],\n .editor-post-publish-panel input[type=\"time\"],\n .editor-post-publish-panel input[type=\"url\"],\n .editor-post-publish-panel input[type=\"week\"],\n .editor-post-publish-panel input[type=\"password\"],\n .editor-post-publish-panel input[type=\"checkbox\"],\n .editor-post-publish-panel input[type=\"color\"],\n .editor-post-publish-panel input[type=\"date\"],\n .editor-post-publish-panel input[type=\"datetime\"],\n .editor-post-publish-panel input[type=\"datetime-local\"],\n .editor-post-publish-panel input[type=\"email\"],\n .editor-post-publish-panel input[type=\"month\"],\n .editor-post-publish-panel input[type=\"number\"],\n .editor-post-publish-panel select,\n .editor-post-publish-panel textarea,\n .components-popover .input-control,\n .components-popover input[type=\"text\"],\n .components-popover input[type=\"search\"],\n .components-popover input[type=\"radio\"],\n .components-popover input[type=\"tel\"],\n .components-popover input[type=\"time\"],\n .components-popover input[type=\"url\"],\n .components-popover input[type=\"week\"],\n .components-popover input[type=\"password\"],\n .components-popover input[type=\"checkbox\"],\n .components-popover input[type=\"color\"],\n .components-popover input[type=\"date\"],\n .components-popover input[type=\"datetime\"],\n .components-popover input[type=\"datetime-local\"],\n .components-popover input[type=\"email\"],\n .components-popover input[type=\"month\"],\n .components-popover input[type=\"number\"],\n .components-popover select,\n .components-popover textarea,\n .components-modal__frame .input-control,\n .components-modal__frame input[type=\"text\"],\n .components-modal__frame input[type=\"search\"],\n .components-modal__frame input[type=\"radio\"],\n .components-modal__frame input[type=\"tel\"],\n .components-modal__frame input[type=\"time\"],\n .components-modal__frame input[type=\"url\"],\n .components-modal__frame input[type=\"week\"],\n .components-modal__frame input[type=\"password\"],\n .components-modal__frame input[type=\"checkbox\"],\n .components-modal__frame input[type=\"color\"],\n .components-modal__frame input[type=\"date\"],\n .components-modal__frame input[type=\"datetime\"],\n .components-modal__frame input[type=\"datetime-local\"],\n .components-modal__frame input[type=\"email\"],\n .components-modal__frame input[type=\"month\"],\n .components-modal__frame input[type=\"number\"],\n .components-modal__frame select,\n .components-modal__frame textarea {\n transition-duration: 0s; } }\n @media (min-width: 600px) {\n .edit-post-header .input-control,\n .edit-post-header input[type=\"text\"],\n .edit-post-header input[type=\"search\"],\n .edit-post-header input[type=\"radio\"],\n .edit-post-header input[type=\"tel\"],\n .edit-post-header input[type=\"time\"],\n .edit-post-header input[type=\"url\"],\n .edit-post-header input[type=\"week\"],\n .edit-post-header input[type=\"password\"],\n .edit-post-header input[type=\"checkbox\"],\n .edit-post-header input[type=\"color\"],\n .edit-post-header input[type=\"date\"],\n .edit-post-header input[type=\"datetime\"],\n .edit-post-header input[type=\"datetime-local\"],\n .edit-post-header input[type=\"email\"],\n .edit-post-header input[type=\"month\"],\n .edit-post-header input[type=\"number\"],\n .edit-post-header select,\n .edit-post-header textarea,\n .edit-post-visual-editor .input-control,\n .edit-post-visual-editor input[type=\"text\"],\n .edit-post-visual-editor input[type=\"search\"],\n .edit-post-visual-editor input[type=\"radio\"],\n .edit-post-visual-editor input[type=\"tel\"],\n .edit-post-visual-editor input[type=\"time\"],\n .edit-post-visual-editor input[type=\"url\"],\n .edit-post-visual-editor input[type=\"week\"],\n .edit-post-visual-editor input[type=\"password\"],\n .edit-post-visual-editor input[type=\"checkbox\"],\n .edit-post-visual-editor input[type=\"color\"],\n .edit-post-visual-editor input[type=\"date\"],\n .edit-post-visual-editor input[type=\"datetime\"],\n .edit-post-visual-editor input[type=\"datetime-local\"],\n .edit-post-visual-editor input[type=\"email\"],\n .edit-post-visual-editor input[type=\"month\"],\n .edit-post-visual-editor input[type=\"number\"],\n .edit-post-visual-editor select,\n .edit-post-visual-editor textarea,\n .edit-post-text-editor .input-control,\n .edit-post-text-editor input[type=\"text\"],\n .edit-post-text-editor input[type=\"search\"],\n .edit-post-text-editor input[type=\"radio\"],\n .edit-post-text-editor input[type=\"tel\"],\n .edit-post-text-editor input[type=\"time\"],\n .edit-post-text-editor input[type=\"url\"],\n .edit-post-text-editor input[type=\"week\"],\n .edit-post-text-editor input[type=\"password\"],\n .edit-post-text-editor input[type=\"checkbox\"],\n .edit-post-text-editor input[type=\"color\"],\n .edit-post-text-editor input[type=\"date\"],\n .edit-post-text-editor input[type=\"datetime\"],\n .edit-post-text-editor input[type=\"datetime-local\"],\n .edit-post-text-editor input[type=\"email\"],\n .edit-post-text-editor input[type=\"month\"],\n .edit-post-text-editor input[type=\"number\"],\n .edit-post-text-editor select,\n .edit-post-text-editor textarea,\n .edit-post-sidebar .input-control,\n .edit-post-sidebar input[type=\"text\"],\n .edit-post-sidebar input[type=\"search\"],\n .edit-post-sidebar input[type=\"radio\"],\n .edit-post-sidebar input[type=\"tel\"],\n .edit-post-sidebar input[type=\"time\"],\n .edit-post-sidebar input[type=\"url\"],\n .edit-post-sidebar input[type=\"week\"],\n .edit-post-sidebar input[type=\"password\"],\n .edit-post-sidebar input[type=\"checkbox\"],\n .edit-post-sidebar input[type=\"color\"],\n .edit-post-sidebar input[type=\"date\"],\n .edit-post-sidebar input[type=\"datetime\"],\n .edit-post-sidebar input[type=\"datetime-local\"],\n .edit-post-sidebar input[type=\"email\"],\n .edit-post-sidebar input[type=\"month\"],\n .edit-post-sidebar input[type=\"number\"],\n .edit-post-sidebar select,\n .edit-post-sidebar textarea,\n .editor-post-publish-panel .input-control,\n .editor-post-publish-panel input[type=\"text\"],\n .editor-post-publish-panel input[type=\"search\"],\n .editor-post-publish-panel input[type=\"radio\"],\n .editor-post-publish-panel input[type=\"tel\"],\n .editor-post-publish-panel input[type=\"time\"],\n .editor-post-publish-panel input[type=\"url\"],\n .editor-post-publish-panel input[type=\"week\"],\n .editor-post-publish-panel input[type=\"password\"],\n .editor-post-publish-panel input[type=\"checkbox\"],\n .editor-post-publish-panel input[type=\"color\"],\n .editor-post-publish-panel input[type=\"date\"],\n .editor-post-publish-panel input[type=\"datetime\"],\n .editor-post-publish-panel input[type=\"datetime-local\"],\n .editor-post-publish-panel input[type=\"email\"],\n .editor-post-publish-panel input[type=\"month\"],\n .editor-post-publish-panel input[type=\"number\"],\n .editor-post-publish-panel select,\n .editor-post-publish-panel textarea,\n .components-popover .input-control,\n .components-popover input[type=\"text\"],\n .components-popover input[type=\"search\"],\n .components-popover input[type=\"radio\"],\n .components-popover input[type=\"tel\"],\n .components-popover input[type=\"time\"],\n .components-popover input[type=\"url\"],\n .components-popover input[type=\"week\"],\n .components-popover input[type=\"password\"],\n .components-popover input[type=\"checkbox\"],\n .components-popover input[type=\"color\"],\n .components-popover input[type=\"date\"],\n .components-popover input[type=\"datetime\"],\n .components-popover input[type=\"datetime-local\"],\n .components-popover input[type=\"email\"],\n .components-popover input[type=\"month\"],\n .components-popover input[type=\"number\"],\n .components-popover select,\n .components-popover textarea,\n .components-modal__frame .input-control,\n .components-modal__frame input[type=\"text\"],\n .components-modal__frame input[type=\"search\"],\n .components-modal__frame input[type=\"radio\"],\n .components-modal__frame input[type=\"tel\"],\n .components-modal__frame input[type=\"time\"],\n .components-modal__frame input[type=\"url\"],\n .components-modal__frame input[type=\"week\"],\n .components-modal__frame input[type=\"password\"],\n .components-modal__frame input[type=\"checkbox\"],\n .components-modal__frame input[type=\"color\"],\n .components-modal__frame input[type=\"date\"],\n .components-modal__frame input[type=\"datetime\"],\n .components-modal__frame input[type=\"datetime-local\"],\n .components-modal__frame input[type=\"email\"],\n .components-modal__frame input[type=\"month\"],\n .components-modal__frame input[type=\"number\"],\n .components-modal__frame select,\n .components-modal__frame textarea {\n font-size: 13px;\n /* Override core line-height. To be reviewed. */\n line-height: normal; } }\n .edit-post-header .input-control:focus,\n .edit-post-header input[type=\"text\"]:focus,\n .edit-post-header input[type=\"search\"]:focus,\n .edit-post-header input[type=\"radio\"]:focus,\n .edit-post-header input[type=\"tel\"]:focus,\n .edit-post-header input[type=\"time\"]:focus,\n .edit-post-header input[type=\"url\"]:focus,\n .edit-post-header input[type=\"week\"]:focus,\n .edit-post-header input[type=\"password\"]:focus,\n .edit-post-header input[type=\"checkbox\"]:focus,\n .edit-post-header input[type=\"color\"]:focus,\n .edit-post-header input[type=\"date\"]:focus,\n .edit-post-header input[type=\"datetime\"]:focus,\n .edit-post-header input[type=\"datetime-local\"]:focus,\n .edit-post-header input[type=\"email\"]:focus,\n .edit-post-header input[type=\"month\"]:focus,\n .edit-post-header input[type=\"number\"]:focus,\n .edit-post-header select:focus,\n .edit-post-header textarea:focus,\n .edit-post-visual-editor .input-control:focus,\n .edit-post-visual-editor input[type=\"text\"]:focus,\n .edit-post-visual-editor input[type=\"search\"]:focus,\n .edit-post-visual-editor input[type=\"radio\"]:focus,\n .edit-post-visual-editor input[type=\"tel\"]:focus,\n .edit-post-visual-editor input[type=\"time\"]:focus,\n .edit-post-visual-editor input[type=\"url\"]:focus,\n .edit-post-visual-editor input[type=\"week\"]:focus,\n .edit-post-visual-editor input[type=\"password\"]:focus,\n .edit-post-visual-editor input[type=\"checkbox\"]:focus,\n .edit-post-visual-editor input[type=\"color\"]:focus,\n .edit-post-visual-editor input[type=\"date\"]:focus,\n .edit-post-visual-editor input[type=\"datetime\"]:focus,\n .edit-post-visual-editor input[type=\"datetime-local\"]:focus,\n .edit-post-visual-editor input[type=\"email\"]:focus,\n .edit-post-visual-editor input[type=\"month\"]:focus,\n .edit-post-visual-editor input[type=\"number\"]:focus,\n .edit-post-visual-editor select:focus,\n .edit-post-visual-editor textarea:focus,\n .edit-post-text-editor .input-control:focus,\n .edit-post-text-editor input[type=\"text\"]:focus,\n .edit-post-text-editor input[type=\"search\"]:focus,\n .edit-post-text-editor input[type=\"radio\"]:focus,\n .edit-post-text-editor input[type=\"tel\"]:focus,\n .edit-post-text-editor input[type=\"time\"]:focus,\n .edit-post-text-editor input[type=\"url\"]:focus,\n .edit-post-text-editor input[type=\"week\"]:focus,\n .edit-post-text-editor input[type=\"password\"]:focus,\n .edit-post-text-editor input[type=\"checkbox\"]:focus,\n .edit-post-text-editor input[type=\"color\"]:focus,\n .edit-post-text-editor input[type=\"date\"]:focus,\n .edit-post-text-editor input[type=\"datetime\"]:focus,\n .edit-post-text-editor input[type=\"datetime-local\"]:focus,\n .edit-post-text-editor input[type=\"email\"]:focus,\n .edit-post-text-editor input[type=\"month\"]:focus,\n .edit-post-text-editor input[type=\"number\"]:focus,\n .edit-post-text-editor select:focus,\n .edit-post-text-editor textarea:focus,\n .edit-post-sidebar .input-control:focus,\n .edit-post-sidebar input[type=\"text\"]:focus,\n .edit-post-sidebar input[type=\"search\"]:focus,\n .edit-post-sidebar input[type=\"radio\"]:focus,\n .edit-post-sidebar input[type=\"tel\"]:focus,\n .edit-post-sidebar input[type=\"time\"]:focus,\n .edit-post-sidebar input[type=\"url\"]:focus,\n .edit-post-sidebar input[type=\"week\"]:focus,\n .edit-post-sidebar input[type=\"password\"]:focus,\n .edit-post-sidebar input[type=\"checkbox\"]:focus,\n .edit-post-sidebar input[type=\"color\"]:focus,\n .edit-post-sidebar input[type=\"date\"]:focus,\n .edit-post-sidebar input[type=\"datetime\"]:focus,\n .edit-post-sidebar input[type=\"datetime-local\"]:focus,\n .edit-post-sidebar input[type=\"email\"]:focus,\n .edit-post-sidebar input[type=\"month\"]:focus,\n .edit-post-sidebar input[type=\"number\"]:focus,\n .edit-post-sidebar select:focus,\n .edit-post-sidebar textarea:focus,\n .editor-post-publish-panel .input-control:focus,\n .editor-post-publish-panel input[type=\"text\"]:focus,\n .editor-post-publish-panel input[type=\"search\"]:focus,\n .editor-post-publish-panel input[type=\"radio\"]:focus,\n .editor-post-publish-panel input[type=\"tel\"]:focus,\n .editor-post-publish-panel input[type=\"time\"]:focus,\n .editor-post-publish-panel input[type=\"url\"]:focus,\n .editor-post-publish-panel input[type=\"week\"]:focus,\n .editor-post-publish-panel input[type=\"password\"]:focus,\n .editor-post-publish-panel input[type=\"checkbox\"]:focus,\n .editor-post-publish-panel input[type=\"color\"]:focus,\n .editor-post-publish-panel input[type=\"date\"]:focus,\n .editor-post-publish-panel input[type=\"datetime\"]:focus,\n .editor-post-publish-panel input[type=\"datetime-local\"]:focus,\n .editor-post-publish-panel input[type=\"email\"]:focus,\n .editor-post-publish-panel input[type=\"month\"]:focus,\n .editor-post-publish-panel input[type=\"number\"]:focus,\n .editor-post-publish-panel select:focus,\n .editor-post-publish-panel textarea:focus,\n .components-popover .input-control:focus,\n .components-popover input[type=\"text\"]:focus,\n .components-popover input[type=\"search\"]:focus,\n .components-popover input[type=\"radio\"]:focus,\n .components-popover input[type=\"tel\"]:focus,\n .components-popover input[type=\"time\"]:focus,\n .components-popover input[type=\"url\"]:focus,\n .components-popover input[type=\"week\"]:focus,\n .components-popover input[type=\"password\"]:focus,\n .components-popover input[type=\"checkbox\"]:focus,\n .components-popover input[type=\"color\"]:focus,\n .components-popover input[type=\"date\"]:focus,\n .components-popover input[type=\"datetime\"]:focus,\n .components-popover input[type=\"datetime-local\"]:focus,\n .components-popover input[type=\"email\"]:focus,\n .components-popover input[type=\"month\"]:focus,\n .components-popover input[type=\"number\"]:focus,\n .components-popover select:focus,\n .components-popover textarea:focus,\n .components-modal__frame .input-control:focus,\n .components-modal__frame input[type=\"text\"]:focus,\n .components-modal__frame input[type=\"search\"]:focus,\n .components-modal__frame input[type=\"radio\"]:focus,\n .components-modal__frame input[type=\"tel\"]:focus,\n .components-modal__frame input[type=\"time\"]:focus,\n .components-modal__frame input[type=\"url\"]:focus,\n .components-modal__frame input[type=\"week\"]:focus,\n .components-modal__frame input[type=\"password\"]:focus,\n .components-modal__frame input[type=\"checkbox\"]:focus,\n .components-modal__frame input[type=\"color\"]:focus,\n .components-modal__frame input[type=\"date\"]:focus,\n .components-modal__frame input[type=\"datetime\"]:focus,\n .components-modal__frame input[type=\"datetime-local\"]:focus,\n .components-modal__frame input[type=\"email\"]:focus,\n .components-modal__frame input[type=\"month\"]:focus,\n .components-modal__frame input[type=\"number\"]:focus,\n .components-modal__frame select:focus,\n .components-modal__frame textarea:focus {\n color: #191e23;\n border-color: #007cba;\n box-shadow: 0 0 0 1px #007cba;\n outline: 2px solid transparent; }\n .edit-post-header input[type=\"number\"],\n .edit-post-visual-editor input[type=\"number\"],\n .edit-post-text-editor input[type=\"number\"],\n .edit-post-sidebar input[type=\"number\"],\n .editor-post-publish-panel input[type=\"number\"],\n .components-popover input[type=\"number\"],\n .components-modal__frame input[type=\"number\"] {\n padding-left: 4px;\n padding-right: 4px; }\n .edit-post-header select,\n .edit-post-visual-editor select,\n .edit-post-text-editor select,\n .edit-post-sidebar select,\n .editor-post-publish-panel select,\n .components-popover select,\n .components-modal__frame select {\n padding: 3px 24px 3px 8px;\n font-size: 13px;\n color: #555d66; }\n .edit-post-header select:focus,\n .edit-post-visual-editor select:focus,\n .edit-post-text-editor select:focus,\n .edit-post-sidebar select:focus,\n .editor-post-publish-panel select:focus,\n .components-popover select:focus,\n .components-modal__frame select:focus {\n border-color: #008dbe;\n outline: 2px solid transparent;\n outline-offset: 0; }\n .edit-post-header input[type=\"checkbox\"],\n .edit-post-header input[type=\"radio\"],\n .edit-post-visual-editor input[type=\"checkbox\"],\n .edit-post-visual-editor input[type=\"radio\"],\n .edit-post-text-editor input[type=\"checkbox\"],\n .edit-post-text-editor input[type=\"radio\"],\n .edit-post-sidebar input[type=\"checkbox\"],\n .edit-post-sidebar input[type=\"radio\"],\n .editor-post-publish-panel input[type=\"checkbox\"],\n .editor-post-publish-panel input[type=\"radio\"],\n .components-popover input[type=\"checkbox\"],\n .components-popover input[type=\"radio\"],\n .components-modal__frame input[type=\"checkbox\"],\n .components-modal__frame input[type=\"radio\"] {\n border: 2px solid #757575;\n margin-right: 12px;\n transition: none; }\n .edit-post-header input[type=\"checkbox\"]:focus,\n .edit-post-header input[type=\"radio\"]:focus,\n .edit-post-visual-editor input[type=\"checkbox\"]:focus,\n .edit-post-visual-editor input[type=\"radio\"]:focus,\n .edit-post-text-editor input[type=\"checkbox\"]:focus,\n .edit-post-text-editor input[type=\"radio\"]:focus,\n .edit-post-sidebar input[type=\"checkbox\"]:focus,\n .edit-post-sidebar input[type=\"radio\"]:focus,\n .editor-post-publish-panel input[type=\"checkbox\"]:focus,\n .editor-post-publish-panel input[type=\"radio\"]:focus,\n .components-popover input[type=\"checkbox\"]:focus,\n .components-popover input[type=\"radio\"]:focus,\n .components-modal__frame input[type=\"checkbox\"]:focus,\n .components-modal__frame input[type=\"radio\"]:focus {\n border-color: #757575;\n box-shadow: 0 0 0 1px #757575; }\n .edit-post-header input[type=\"checkbox\"]:checked,\n .edit-post-header input[type=\"radio\"]:checked,\n .edit-post-visual-editor input[type=\"checkbox\"]:checked,\n .edit-post-visual-editor input[type=\"radio\"]:checked,\n .edit-post-text-editor input[type=\"checkbox\"]:checked,\n .edit-post-text-editor input[type=\"radio\"]:checked,\n .edit-post-sidebar input[type=\"checkbox\"]:checked,\n .edit-post-sidebar input[type=\"radio\"]:checked,\n .editor-post-publish-panel input[type=\"checkbox\"]:checked,\n .editor-post-publish-panel input[type=\"radio\"]:checked,\n .components-popover input[type=\"checkbox\"]:checked,\n .components-popover input[type=\"radio\"]:checked,\n .components-modal__frame input[type=\"checkbox\"]:checked,\n .components-modal__frame input[type=\"radio\"]:checked {\n background: #11a0d2;\n border-color: #11a0d2; }\n body.admin-color-sunrise .edit-post-header input[type=\"checkbox\"]:checked, body.admin-color-sunrise .edit-post-header input[type=\"radio\"]:checked, body.admin-color-sunrise .edit-post-visual-editor input[type=\"checkbox\"]:checked, body.admin-color-sunrise .edit-post-visual-editor input[type=\"radio\"]:checked, body.admin-color-sunrise .edit-post-text-editor input[type=\"checkbox\"]:checked, body.admin-color-sunrise .edit-post-text-editor input[type=\"radio\"]:checked, body.admin-color-sunrise .edit-post-sidebar input[type=\"checkbox\"]:checked, body.admin-color-sunrise .edit-post-sidebar input[type=\"radio\"]:checked, body.admin-color-sunrise .editor-post-publish-panel input[type=\"checkbox\"]:checked, body.admin-color-sunrise .editor-post-publish-panel input[type=\"radio\"]:checked, body.admin-color-sunrise .components-popover input[type=\"checkbox\"]:checked, body.admin-color-sunrise .components-popover input[type=\"radio\"]:checked, body.admin-color-sunrise .components-modal__frame input[type=\"checkbox\"]:checked, body.admin-color-sunrise .components-modal__frame input[type=\"radio\"]:checked {\n background: #c8b03c;\n border-color: #c8b03c; }\n body.admin-color-ocean .edit-post-header input[type=\"checkbox\"]:checked, body.admin-color-ocean .edit-post-header input[type=\"radio\"]:checked, body.admin-color-ocean .edit-post-visual-editor input[type=\"checkbox\"]:checked, body.admin-color-ocean .edit-post-visual-editor input[type=\"radio\"]:checked, body.admin-color-ocean .edit-post-text-editor input[type=\"checkbox\"]:checked, body.admin-color-ocean .edit-post-text-editor input[type=\"radio\"]:checked, body.admin-color-ocean .edit-post-sidebar input[type=\"checkbox\"]:checked, body.admin-color-ocean .edit-post-sidebar input[type=\"radio\"]:checked, body.admin-color-ocean .editor-post-publish-panel input[type=\"checkbox\"]:checked, body.admin-color-ocean .editor-post-publish-panel input[type=\"radio\"]:checked, body.admin-color-ocean .components-popover input[type=\"checkbox\"]:checked, body.admin-color-ocean .components-popover input[type=\"radio\"]:checked, body.admin-color-ocean .components-modal__frame input[type=\"checkbox\"]:checked, body.admin-color-ocean .components-modal__frame input[type=\"radio\"]:checked {\n background: #a3b9a2;\n border-color: #a3b9a2; }\n body.admin-color-midnight .edit-post-header input[type=\"checkbox\"]:checked, body.admin-color-midnight .edit-post-header input[type=\"radio\"]:checked, body.admin-color-midnight .edit-post-visual-editor input[type=\"checkbox\"]:checked, body.admin-color-midnight .edit-post-visual-editor input[type=\"radio\"]:checked, body.admin-color-midnight .edit-post-text-editor input[type=\"checkbox\"]:checked, body.admin-color-midnight .edit-post-text-editor input[type=\"radio\"]:checked, body.admin-color-midnight .edit-post-sidebar input[type=\"checkbox\"]:checked, body.admin-color-midnight .edit-post-sidebar input[type=\"radio\"]:checked, body.admin-color-midnight .editor-post-publish-panel input[type=\"checkbox\"]:checked, body.admin-color-midnight .editor-post-publish-panel input[type=\"radio\"]:checked, body.admin-color-midnight .components-popover input[type=\"checkbox\"]:checked, body.admin-color-midnight .components-popover input[type=\"radio\"]:checked, body.admin-color-midnight .components-modal__frame input[type=\"checkbox\"]:checked, body.admin-color-midnight .components-modal__frame input[type=\"radio\"]:checked {\n background: #77a6b9;\n border-color: #77a6b9; }\n body.admin-color-ectoplasm .edit-post-header input[type=\"checkbox\"]:checked, body.admin-color-ectoplasm .edit-post-header input[type=\"radio\"]:checked, body.admin-color-ectoplasm .edit-post-visual-editor input[type=\"checkbox\"]:checked, body.admin-color-ectoplasm .edit-post-visual-editor input[type=\"radio\"]:checked, body.admin-color-ectoplasm .edit-post-text-editor input[type=\"checkbox\"]:checked, body.admin-color-ectoplasm .edit-post-text-editor input[type=\"radio\"]:checked, body.admin-color-ectoplasm .edit-post-sidebar input[type=\"checkbox\"]:checked, body.admin-color-ectoplasm .edit-post-sidebar input[type=\"radio\"]:checked, body.admin-color-ectoplasm .editor-post-publish-panel input[type=\"checkbox\"]:checked, body.admin-color-ectoplasm .editor-post-publish-panel input[type=\"radio\"]:checked, body.admin-color-ectoplasm .components-popover input[type=\"checkbox\"]:checked, body.admin-color-ectoplasm .components-popover input[type=\"radio\"]:checked, body.admin-color-ectoplasm .components-modal__frame input[type=\"checkbox\"]:checked, body.admin-color-ectoplasm .components-modal__frame input[type=\"radio\"]:checked {\n background: #a7b656;\n border-color: #a7b656; }\n body.admin-color-coffee .edit-post-header input[type=\"checkbox\"]:checked, body.admin-color-coffee .edit-post-header input[type=\"radio\"]:checked, body.admin-color-coffee .edit-post-visual-editor input[type=\"checkbox\"]:checked, body.admin-color-coffee .edit-post-visual-editor input[type=\"radio\"]:checked, body.admin-color-coffee .edit-post-text-editor input[type=\"checkbox\"]:checked, body.admin-color-coffee .edit-post-text-editor input[type=\"radio\"]:checked, body.admin-color-coffee .edit-post-sidebar input[type=\"checkbox\"]:checked, body.admin-color-coffee .edit-post-sidebar input[type=\"radio\"]:checked, body.admin-color-coffee .editor-post-publish-panel input[type=\"checkbox\"]:checked, body.admin-color-coffee .editor-post-publish-panel input[type=\"radio\"]:checked, body.admin-color-coffee .components-popover input[type=\"checkbox\"]:checked, body.admin-color-coffee .components-popover input[type=\"radio\"]:checked, body.admin-color-coffee .components-modal__frame input[type=\"checkbox\"]:checked, body.admin-color-coffee .components-modal__frame input[type=\"radio\"]:checked {\n background: #c2a68c;\n border-color: #c2a68c; }\n body.admin-color-blue .edit-post-header input[type=\"checkbox\"]:checked, body.admin-color-blue .edit-post-header input[type=\"radio\"]:checked, body.admin-color-blue .edit-post-visual-editor input[type=\"checkbox\"]:checked, body.admin-color-blue .edit-post-visual-editor input[type=\"radio\"]:checked, body.admin-color-blue .edit-post-text-editor input[type=\"checkbox\"]:checked, body.admin-color-blue .edit-post-text-editor input[type=\"radio\"]:checked, body.admin-color-blue .edit-post-sidebar input[type=\"checkbox\"]:checked, body.admin-color-blue .edit-post-sidebar input[type=\"radio\"]:checked, body.admin-color-blue .editor-post-publish-panel input[type=\"checkbox\"]:checked, body.admin-color-blue .editor-post-publish-panel input[type=\"radio\"]:checked, body.admin-color-blue .components-popover input[type=\"checkbox\"]:checked, body.admin-color-blue .components-popover input[type=\"radio\"]:checked, body.admin-color-blue .components-modal__frame input[type=\"checkbox\"]:checked, body.admin-color-blue .components-modal__frame input[type=\"radio\"]:checked {\n background: #82b4cb;\n border-color: #82b4cb; }\n body.admin-color-light .edit-post-header input[type=\"checkbox\"]:checked, body.admin-color-light .edit-post-header input[type=\"radio\"]:checked, body.admin-color-light .edit-post-visual-editor input[type=\"checkbox\"]:checked, body.admin-color-light .edit-post-visual-editor input[type=\"radio\"]:checked, body.admin-color-light .edit-post-text-editor input[type=\"checkbox\"]:checked, body.admin-color-light .edit-post-text-editor input[type=\"radio\"]:checked, body.admin-color-light .edit-post-sidebar input[type=\"checkbox\"]:checked, body.admin-color-light .edit-post-sidebar input[type=\"radio\"]:checked, body.admin-color-light .editor-post-publish-panel input[type=\"checkbox\"]:checked, body.admin-color-light .editor-post-publish-panel input[type=\"radio\"]:checked, body.admin-color-light .components-popover input[type=\"checkbox\"]:checked, body.admin-color-light .components-popover input[type=\"radio\"]:checked, body.admin-color-light .components-modal__frame input[type=\"checkbox\"]:checked, body.admin-color-light .components-modal__frame input[type=\"radio\"]:checked {\n background: #11a0d2;\n border-color: #11a0d2; }\n .edit-post-header input[type=\"checkbox\"]:checked:focus,\n .edit-post-header input[type=\"radio\"]:checked:focus,\n .edit-post-visual-editor input[type=\"checkbox\"]:checked:focus,\n .edit-post-visual-editor input[type=\"radio\"]:checked:focus,\n .edit-post-text-editor input[type=\"checkbox\"]:checked:focus,\n .edit-post-text-editor input[type=\"radio\"]:checked:focus,\n .edit-post-sidebar input[type=\"checkbox\"]:checked:focus,\n .edit-post-sidebar input[type=\"radio\"]:checked:focus,\n .editor-post-publish-panel input[type=\"checkbox\"]:checked:focus,\n .editor-post-publish-panel input[type=\"radio\"]:checked:focus,\n .components-popover input[type=\"checkbox\"]:checked:focus,\n .components-popover input[type=\"radio\"]:checked:focus,\n .components-modal__frame input[type=\"checkbox\"]:checked:focus,\n .components-modal__frame input[type=\"radio\"]:checked:focus {\n box-shadow: 0 0 0 2px #757575; }\n .edit-post-header input[type=\"checkbox\"],\n .edit-post-visual-editor input[type=\"checkbox\"],\n .edit-post-text-editor input[type=\"checkbox\"],\n .edit-post-sidebar input[type=\"checkbox\"],\n .editor-post-publish-panel input[type=\"checkbox\"],\n .components-popover input[type=\"checkbox\"],\n .components-modal__frame input[type=\"checkbox\"] {\n border-radius: 2px; }\n .edit-post-header input[type=\"checkbox\"]:checked::before, .edit-post-header input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .edit-post-visual-editor input[type=\"checkbox\"]:checked::before,\n .edit-post-visual-editor input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .edit-post-text-editor input[type=\"checkbox\"]:checked::before,\n .edit-post-text-editor input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .edit-post-sidebar input[type=\"checkbox\"]:checked::before,\n .edit-post-sidebar input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .editor-post-publish-panel input[type=\"checkbox\"]:checked::before,\n .editor-post-publish-panel input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .components-popover input[type=\"checkbox\"]:checked::before,\n .components-popover input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .components-modal__frame input[type=\"checkbox\"]:checked::before,\n .components-modal__frame input[type=\"checkbox\"][aria-checked=\"mixed\"]::before {\n margin: -3px -5px;\n color: #fff; }\n @media (min-width: 782px) {\n .edit-post-header input[type=\"checkbox\"]:checked::before, .edit-post-header input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .edit-post-visual-editor input[type=\"checkbox\"]:checked::before,\n .edit-post-visual-editor input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .edit-post-text-editor input[type=\"checkbox\"]:checked::before,\n .edit-post-text-editor input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .edit-post-sidebar input[type=\"checkbox\"]:checked::before,\n .edit-post-sidebar input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .editor-post-publish-panel input[type=\"checkbox\"]:checked::before,\n .editor-post-publish-panel input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .components-popover input[type=\"checkbox\"]:checked::before,\n .components-popover input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .components-modal__frame input[type=\"checkbox\"]:checked::before,\n .components-modal__frame input[type=\"checkbox\"][aria-checked=\"mixed\"]::before {\n margin: -4px 0 0 -5px; } }\n .edit-post-header input[type=\"checkbox\"][aria-checked=\"mixed\"],\n .edit-post-visual-editor input[type=\"checkbox\"][aria-checked=\"mixed\"],\n .edit-post-text-editor input[type=\"checkbox\"][aria-checked=\"mixed\"],\n .edit-post-sidebar input[type=\"checkbox\"][aria-checked=\"mixed\"],\n .editor-post-publish-panel input[type=\"checkbox\"][aria-checked=\"mixed\"],\n .components-popover input[type=\"checkbox\"][aria-checked=\"mixed\"],\n .components-modal__frame input[type=\"checkbox\"][aria-checked=\"mixed\"] {\n background: #11a0d2;\n border-color: #11a0d2; }\n body.admin-color-sunrise .edit-post-header input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-sunrise .edit-post-visual-editor input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-sunrise .edit-post-text-editor input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-sunrise .edit-post-sidebar input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-sunrise .editor-post-publish-panel input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-sunrise .components-popover input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-sunrise .components-modal__frame input[type=\"checkbox\"][aria-checked=\"mixed\"] {\n background: #c8b03c;\n border-color: #c8b03c; }\n body.admin-color-ocean .edit-post-header input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-ocean .edit-post-visual-editor input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-ocean .edit-post-text-editor input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-ocean .edit-post-sidebar input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-ocean .editor-post-publish-panel input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-ocean .components-popover input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-ocean .components-modal__frame input[type=\"checkbox\"][aria-checked=\"mixed\"] {\n background: #a3b9a2;\n border-color: #a3b9a2; }\n body.admin-color-midnight .edit-post-header input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-midnight .edit-post-visual-editor input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-midnight .edit-post-text-editor input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-midnight .edit-post-sidebar input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-midnight .editor-post-publish-panel input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-midnight .components-popover input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-midnight .components-modal__frame input[type=\"checkbox\"][aria-checked=\"mixed\"] {\n background: #77a6b9;\n border-color: #77a6b9; }\n body.admin-color-ectoplasm .edit-post-header input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-ectoplasm .edit-post-visual-editor input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-ectoplasm .edit-post-text-editor input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-ectoplasm .edit-post-sidebar input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-ectoplasm .editor-post-publish-panel input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-ectoplasm .components-popover input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-ectoplasm .components-modal__frame input[type=\"checkbox\"][aria-checked=\"mixed\"] {\n background: #a7b656;\n border-color: #a7b656; }\n body.admin-color-coffee .edit-post-header input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-coffee .edit-post-visual-editor input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-coffee .edit-post-text-editor input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-coffee .edit-post-sidebar input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-coffee .editor-post-publish-panel input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-coffee .components-popover input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-coffee .components-modal__frame input[type=\"checkbox\"][aria-checked=\"mixed\"] {\n background: #c2a68c;\n border-color: #c2a68c; }\n body.admin-color-blue .edit-post-header input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-blue .edit-post-visual-editor input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-blue .edit-post-text-editor input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-blue .edit-post-sidebar input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-blue .editor-post-publish-panel input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-blue .components-popover input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-blue .components-modal__frame input[type=\"checkbox\"][aria-checked=\"mixed\"] {\n background: #82b4cb;\n border-color: #82b4cb; }\n body.admin-color-light .edit-post-header input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-light .edit-post-visual-editor input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-light .edit-post-text-editor input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-light .edit-post-sidebar input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-light .editor-post-publish-panel input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-light .components-popover input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-light .components-modal__frame input[type=\"checkbox\"][aria-checked=\"mixed\"] {\n background: #11a0d2;\n border-color: #11a0d2; }\n .edit-post-header input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .edit-post-visual-editor input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .edit-post-text-editor input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .edit-post-sidebar input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .editor-post-publish-panel input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .components-popover input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .components-modal__frame input[type=\"checkbox\"][aria-checked=\"mixed\"]::before {\n content: \"\\f460\";\n float: left;\n display: inline-block;\n vertical-align: middle;\n width: 16px;\n /* stylelint-disable */\n font: normal 30px/1 dashicons;\n /* stylelint-enable */\n speak: none;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale; }\n @media (min-width: 782px) {\n .edit-post-header input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .edit-post-visual-editor input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .edit-post-text-editor input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .edit-post-sidebar input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .editor-post-publish-panel input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .components-popover input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .components-modal__frame input[type=\"checkbox\"][aria-checked=\"mixed\"]::before {\n float: none;\n font-size: 21px; } }\n .edit-post-header input[type=\"checkbox\"][aria-checked=\"mixed\"]:focus,\n .edit-post-visual-editor input[type=\"checkbox\"][aria-checked=\"mixed\"]:focus,\n .edit-post-text-editor input[type=\"checkbox\"][aria-checked=\"mixed\"]:focus,\n .edit-post-sidebar input[type=\"checkbox\"][aria-checked=\"mixed\"]:focus,\n .editor-post-publish-panel input[type=\"checkbox\"][aria-checked=\"mixed\"]:focus,\n .components-popover input[type=\"checkbox\"][aria-checked=\"mixed\"]:focus,\n .components-modal__frame input[type=\"checkbox\"][aria-checked=\"mixed\"]:focus {\n box-shadow: 0 0 0 2px #555d66; }\n .edit-post-header input[type=\"radio\"],\n .edit-post-visual-editor input[type=\"radio\"],\n .edit-post-text-editor input[type=\"radio\"],\n .edit-post-sidebar input[type=\"radio\"],\n .editor-post-publish-panel input[type=\"radio\"],\n .components-popover input[type=\"radio\"],\n .components-modal__frame input[type=\"radio\"] {\n border-radius: 50%; }\n .edit-post-header input[type=\"radio\"]:checked::before,\n .edit-post-visual-editor input[type=\"radio\"]:checked::before,\n .edit-post-text-editor input[type=\"radio\"]:checked::before,\n .edit-post-sidebar input[type=\"radio\"]:checked::before,\n .editor-post-publish-panel input[type=\"radio\"]:checked::before,\n .components-popover input[type=\"radio\"]:checked::before,\n .components-modal__frame input[type=\"radio\"]:checked::before {\n width: 6px;\n height: 6px;\n margin: 6px 0 0 6px;\n background-color: #fff; }\n @media (min-width: 782px) {\n .edit-post-header input[type=\"radio\"]:checked::before,\n .edit-post-visual-editor input[type=\"radio\"]:checked::before,\n .edit-post-text-editor input[type=\"radio\"]:checked::before,\n .edit-post-sidebar input[type=\"radio\"]:checked::before,\n .editor-post-publish-panel input[type=\"radio\"]:checked::before,\n .components-popover input[type=\"radio\"]:checked::before,\n .components-modal__frame input[type=\"radio\"]:checked::before {\n margin: 3px 0 0 3px; } }\n .edit-post-header input::-webkit-input-placeholder,\n .edit-post-header textarea::-webkit-input-placeholder,\n .edit-post-visual-editor input::-webkit-input-placeholder,\n .edit-post-visual-editor textarea::-webkit-input-placeholder,\n .edit-post-text-editor input::-webkit-input-placeholder,\n .edit-post-text-editor textarea::-webkit-input-placeholder,\n .edit-post-sidebar input::-webkit-input-placeholder,\n .edit-post-sidebar textarea::-webkit-input-placeholder,\n .editor-post-publish-panel input::-webkit-input-placeholder,\n .editor-post-publish-panel textarea::-webkit-input-placeholder,\n .components-popover input::-webkit-input-placeholder,\n .components-popover textarea::-webkit-input-placeholder,\n .components-modal__frame input::-webkit-input-placeholder,\n .components-modal__frame textarea::-webkit-input-placeholder {\n color: rgba(14, 28, 46, 0.62); }\n .edit-post-header input::-moz-placeholder,\n .edit-post-header textarea::-moz-placeholder,\n .edit-post-visual-editor input::-moz-placeholder,\n .edit-post-visual-editor textarea::-moz-placeholder,\n .edit-post-text-editor input::-moz-placeholder,\n .edit-post-text-editor textarea::-moz-placeholder,\n .edit-post-sidebar input::-moz-placeholder,\n .edit-post-sidebar textarea::-moz-placeholder,\n .editor-post-publish-panel input::-moz-placeholder,\n .editor-post-publish-panel textarea::-moz-placeholder,\n .components-popover input::-moz-placeholder,\n .components-popover textarea::-moz-placeholder,\n .components-modal__frame input::-moz-placeholder,\n .components-modal__frame textarea::-moz-placeholder {\n opacity: 1;\n color: rgba(14, 28, 46, 0.62); }\n .edit-post-header input:-ms-input-placeholder,\n .edit-post-header textarea:-ms-input-placeholder,\n .edit-post-visual-editor input:-ms-input-placeholder,\n .edit-post-visual-editor textarea:-ms-input-placeholder,\n .edit-post-text-editor input:-ms-input-placeholder,\n .edit-post-text-editor textarea:-ms-input-placeholder,\n .edit-post-sidebar input:-ms-input-placeholder,\n .edit-post-sidebar textarea:-ms-input-placeholder,\n .editor-post-publish-panel input:-ms-input-placeholder,\n .editor-post-publish-panel textarea:-ms-input-placeholder,\n .components-popover input:-ms-input-placeholder,\n .components-popover textarea:-ms-input-placeholder,\n .components-modal__frame input:-ms-input-placeholder,\n .components-modal__frame textarea:-ms-input-placeholder {\n color: rgba(14, 28, 46, 0.62); }\n .is-dark-theme .edit-post-header input::-webkit-input-placeholder, .is-dark-theme\n .edit-post-header textarea::-webkit-input-placeholder, .is-dark-theme\n .edit-post-visual-editor input::-webkit-input-placeholder, .is-dark-theme\n .edit-post-visual-editor textarea::-webkit-input-placeholder, .is-dark-theme\n .edit-post-text-editor input::-webkit-input-placeholder, .is-dark-theme\n .edit-post-text-editor textarea::-webkit-input-placeholder, .is-dark-theme\n .edit-post-sidebar input::-webkit-input-placeholder, .is-dark-theme\n .edit-post-sidebar textarea::-webkit-input-placeholder, .is-dark-theme\n .editor-post-publish-panel input::-webkit-input-placeholder, .is-dark-theme\n .editor-post-publish-panel textarea::-webkit-input-placeholder, .is-dark-theme\n .components-popover input::-webkit-input-placeholder, .is-dark-theme\n .components-popover textarea::-webkit-input-placeholder, .is-dark-theme\n .components-modal__frame input::-webkit-input-placeholder, .is-dark-theme\n .components-modal__frame textarea::-webkit-input-placeholder {\n color: rgba(255, 255, 255, 0.65); }\n .is-dark-theme .edit-post-header input::-moz-placeholder, .is-dark-theme\n .edit-post-header textarea::-moz-placeholder, .is-dark-theme\n .edit-post-visual-editor input::-moz-placeholder, .is-dark-theme\n .edit-post-visual-editor textarea::-moz-placeholder, .is-dark-theme\n .edit-post-text-editor input::-moz-placeholder, .is-dark-theme\n .edit-post-text-editor textarea::-moz-placeholder, .is-dark-theme\n .edit-post-sidebar input::-moz-placeholder, .is-dark-theme\n .edit-post-sidebar textarea::-moz-placeholder, .is-dark-theme\n .editor-post-publish-panel input::-moz-placeholder, .is-dark-theme\n .editor-post-publish-panel textarea::-moz-placeholder, .is-dark-theme\n .components-popover input::-moz-placeholder, .is-dark-theme\n .components-popover textarea::-moz-placeholder, .is-dark-theme\n .components-modal__frame input::-moz-placeholder, .is-dark-theme\n .components-modal__frame textarea::-moz-placeholder {\n opacity: 1;\n color: rgba(255, 255, 255, 0.65); }\n .is-dark-theme .edit-post-header input:-ms-input-placeholder, .is-dark-theme\n .edit-post-header textarea:-ms-input-placeholder, .is-dark-theme\n .edit-post-visual-editor input:-ms-input-placeholder, .is-dark-theme\n .edit-post-visual-editor textarea:-ms-input-placeholder, .is-dark-theme\n .edit-post-text-editor input:-ms-input-placeholder, .is-dark-theme\n .edit-post-text-editor textarea:-ms-input-placeholder, .is-dark-theme\n .edit-post-sidebar input:-ms-input-placeholder, .is-dark-theme\n .edit-post-sidebar textarea:-ms-input-placeholder, .is-dark-theme\n .editor-post-publish-panel input:-ms-input-placeholder, .is-dark-theme\n .editor-post-publish-panel textarea:-ms-input-placeholder, .is-dark-theme\n .components-popover input:-ms-input-placeholder, .is-dark-theme\n .components-popover textarea:-ms-input-placeholder, .is-dark-theme\n .components-modal__frame input:-ms-input-placeholder, .is-dark-theme\n .components-modal__frame textarea:-ms-input-placeholder {\n color: rgba(255, 255, 255, 0.65); }\n\n@media (min-width: 600px) {\n .block-editor__container {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n min-height: calc(100vh - 46px); } }\n\n@media (min-width: 782px) {\n .block-editor__container {\n min-height: calc(100vh - 32px); }\n body.is-fullscreen-mode .block-editor__container {\n min-height: 100vh; } }\n\n.block-editor__container img {\n max-width: 100%;\n height: auto; }\n\n.block-editor__container iframe {\n width: 100%; }\n\n.block-editor__container .components-navigate-regions {\n height: 100%; }\n\n.wp-block {\n max-width: 580px; }\n .wp-block[data-align=\"wide\"], .wp-block.alignwide {\n max-width: 1100px; }\n .wp-block[data-align=\"full\"], .wp-block.alignfull {\n max-width: none; }\n","/**\n * Colors\n */\n/**\n * Breakpoints & Media Queries\n */\n/**\n * Colors\n */\n/**\n * Fonts & basic variables.\n */\n/**\n * Grid System.\n * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/\n */\n/**\n * Dimensions.\n */\n/**\n * Shadows.\n */\n/**\n * Editor widths.\n */\n/**\n * Block UI.\n */\n/**\n * Border radii.\n */\n/**\n * Breakpoint mixins\n */\n/**\n * Long content fade mixin\n *\n * Creates a fading overlay to signify that the content is longer\n * than the space allows.\n */\n/**\n * Button states and focus styles\n */\n/**\n * Block Toolbar/Formatting Buttons\n */\n/**\n * Applies editor left position to the selector passed as argument\n */\n/**\n * Styles that are reused verbatim in a few places\n */\n/**\n * Allows users to opt-out of animations via OS-level preferences.\n */\n/**\n * Reset default styles for JavaScript UI based pages.\n * This is a WP-admin agnostic reset\n */\n/**\n * Reset the WP Admin page styles for Gutenberg-like pages.\n */\n.block-editor-format-toolbar__image-container-content {\n display: flex; }\n .block-editor-format-toolbar__image-container-content .components-button {\n align-self: flex-end;\n height: 30px;\n margin-bottom: 8px;\n margin-right: 8px;\n padding: 0 6px; }\n\n.block-editor-format-toolbar__image-container-value {\n margin: 7px;\n flex-grow: 1;\n flex-shrink: 1;\n white-space: nowrap;\n min-width: 150px;\n max-width: 500px; }\n .block-editor-format-toolbar__image-container-value.components-base-control .components-base-control__field {\n margin-bottom: 0; }\n .block-editor-format-toolbar__image-container-value.components-base-control .components-base-control__label {\n display: block; }\n\n.block-editor-format-toolbar__link-container-content {\n display: flex; }\n\n.block-editor-format-toolbar__link-container-value {\n margin: 7px;\n flex-grow: 1;\n flex-shrink: 1;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n min-width: 150px;\n max-width: 500px; }\n .block-editor-format-toolbar__link-container-value.has-invalid-link {\n color: #d94f4f; }\n\n.components-inline-color__indicator {\n position: absolute;\n background: #000;\n height: 3px;\n width: 20px;\n bottom: 6px;\n left: auto;\n right: auto;\n margin: 0 5px; }\n\n.components-inline-color-popover .components-popover__content {\n padding: 20px 18px; }\n .components-inline-color-popover .components-popover__content .components-color-palette {\n margin-top: 0.6rem; }\n .components-inline-color-popover .components-popover__content .components-base-control__title {\n display: block;\n margin-bottom: 16px;\n font-weight: 600;\n color: #191e23; }\n .components-inline-color-popover .components-popover__content .component-color-indicator {\n vertical-align: text-bottom; }\n\n.format-library-text-color-button {\n position: relative; }\n\n.format-library-text-color-button__indicator {\n height: 4px;\n width: 20px;\n position: absolute;\n bottom: 10px;\n left: 8px; }\n","/**\n * Colors\n */\n/**\n * Breakpoints & Media Queries\n */\n/**\n * Colors\n */\n/**\n * Fonts & basic variables.\n */\n/**\n * Grid System.\n * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/\n */\n/**\n * Dimensions.\n */\n/**\n * Shadows.\n */\n/**\n * Editor widths.\n */\n/**\n * Block UI.\n */\n/**\n * Border radii.\n */\n/**\n * Breakpoint mixins\n */\n/**\n * Long content fade mixin\n *\n * Creates a fading overlay to signify that the content is longer\n * than the space allows.\n */\n/**\n * Button states and focus styles\n */\n/**\n * Block Toolbar/Formatting Buttons\n */\n/**\n * Applies editor left position to the selector passed as argument\n */\n/**\n * Styles that are reused verbatim in a few places\n */\n/**\n * Allows users to opt-out of animations via OS-level preferences.\n */\n/**\n * Reset default styles for JavaScript UI based pages.\n * This is a WP-admin agnostic reset\n */\n/**\n * Reset the WP Admin page styles for Gutenberg-like pages.\n */\n.list-reusable-blocks-import-dropdown__content .components-popover__content {\n padding: 10px; }\n\n.list-reusable-blocks-import-form__label {\n display: block;\n margin-bottom: 10px; }\n\n.list-reusable-blocks-import-form__button {\n margin-top: 20px;\n float: right; }\n\n.list-reusable-blocks-import-form .components-notice__content {\n margin: 0; }\n\n.list-reusable-blocks__container {\n display: inline-flex;\n align-items: center;\n position: relative;\n top: -3px; }\n .list-reusable-blocks__container .components-button {\n height: 26px; }\n",".gutenberg__editor .block-editor-block-types-list__list-item{width:30%}.gutenberg__editor .components-drop-zone__provider,.gutenberg__editor .components-navigate-regions{height:auto;position:static}.gutenberg__editor .edit-post-layout__content{position:static;margin-left:0;min-height:calc(250px - 56px);height:auto;overflow-y:auto}.gutenberg__editor .edit-post-layout{height:auto;position:relative;top:0;left:0}.gutenberg__editor .edit-post-pinned-plugins{display:flex}.gutenberg__editor .edit-post-visual-editor{padding-top:25px;padding-bottom:75px;height:auto}.gutenberg__editor .block-editor-block-breadcrumb .components-button.is-tertiary{padding:0 8px}.gutenberg__editor .components-button.has-icon{padding:0}@media (min-width: 600px){.gutenberg__editor .edit-post-header{position:static;top:0}.gutenberg__editor .edit-post-layout{padding-top:0}}.gutenberg__editor.fixed-height .components-drop-zone__provider,.gutenberg__editor.fixed-height .components-navigate-regions{height:100%;position:absolute;top:0;bottom:0;right:0;left:0}.gutenberg__editor.fixed-height .edit-post-layout__content{height:calc(100% - 56px)}.gutenberg__editor.fixed-height .edit-post-layout{height:100%}.gutenberg__editor.fixed-height .editor-writing-flow{height:auto}.gutenberg__content .wp-block-columns{display:flex}.laraberg__editor{width:auto;overflow:hidden;border:1px solid #e2e4e7;box-sizing:border-box;min-height:400px;height:auto;position:relative;top:0;left:0;bottom:0;right:0}.laraberg__editor *:focus{outline:none}.laraberg__editor .components-notice-list{position:-webkit-sticky;position:sticky;top:0;z-index:100}.laraberg__editor .edit-post-header{z-index:100;box-sizing:border-box;position:-webkit-sticky;position:sticky}.laraberg__editor .edit-post-sidebar .edit-post-sidebar__panel-tabs ul{list-style:none;margin:0;padding:0}.laraberg__editor .editor-media-placeholder__media-library-button{margin-bottom:0.5rem}.laraberg__editor .components-placeholder{width:auto}.laraberg__editor .screen-reader-text,.laraberg__editor .screen-reader-text span,.laraberg__editor .ui-helper-hidden-accessible{border:0;clip:rect(1px, 1px, 1px, 1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal !important}.laraberg__editor input[type=\"checkbox\"],.laraberg__editor input[type=\"color\"],.laraberg__editor input[type=\"date\"],.laraberg__editor input[type=\"datetime-local\"],.laraberg__editor input[type=\"datetime\"],.laraberg__editor input[type=\"email\"],.laraberg__editor input[type=\"month\"],.laraberg__editor input[type=\"number\"],.laraberg__editor input[type=\"password\"],.laraberg__editor input[type=\"radio\"],.laraberg__editor input[type=\"search\"],.laraberg__editor input[type=\"tel\"],.laraberg__editor input[type=\"text\"],.laraberg__editor input[type=\"time\"],.laraberg__editor input[type=\"url\"],.laraberg__editor input[type=\"week\"],.laraberg__editor select,.laraberg__editor textarea{border:1px solid #ddd;box-shadow:inset 0 1px 2px rgba(0,0,0,0.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out}.laraberg__editor .editor-inserter__manage-reusable-blocks{display:none}.laraberg__editor iframe{border:0;max-width:100%}.laraberg__editor .laraberg-sidebar-content{padding:15px;margin:unset}.gutenberg__content .alignleft{float:left;margin-right:1rem}.gutenberg__content .alignright{float:right;margin-left:1rem}.gutenberg__content h1,.gutenberg__content h2,.gutenberg__content h3,.gutenberg__content h4,.gutenberg__content h5,.gutenberg__content h6{margin-bottom:24px}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper iframe{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper::before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper::before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper::before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper::before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper::before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper::before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper::before{content:\"\";display:block;padding-top:50%}.laraberg-sidebar{display:none}.wp-block-html .block-editor-plain-text{width:100%}\n"],"sourceRoot":""}
\ No newline at end of file
+{"version":3,"sources":["webpack:////Users/maurice/Projects/js/gutenberg/packages/components/build-style/style.css","webpack:////Users/maurice/Projects/js/gutenberg/packages/block-editor/build-style/style.css","webpack:////Users/maurice/Projects/js/gutenberg/packages/nux/build-style/style.css","webpack:////Users/maurice/Projects/js/gutenberg/packages/editor/build-style/style.css","webpack:////Users/maurice/Projects/js/gutenberg/packages/block-library/build-style/style.css","webpack:////Users/maurice/Projects/js/gutenberg/packages/block-library/build-style/editor.css","webpack:////Users/maurice/Projects/js/gutenberg/packages/block-library/build-style/theme.css","webpack:////Users/maurice/Projects/js/gutenberg/packages/edit-post/build-style/style.css","webpack:////Users/maurice/Projects/js/gutenberg/packages/format-library/build-style/style.css","webpack:////Users/maurice/Projects/js/gutenberg/packages/list-reusable-blocks/build-style/style.css","webpack:///./src/resources/scss/laraberg.scss"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gCAAgC;AAChC;AACA;AACA,8BAA8B,EAAE;AAChC;AACA,+BAA+B;AAC/B;AACA,gCAAgC;AAChC;AACA,kCAAkC;AAClC;AACA,mCAAmC;;AAEnC;AACA;AACA,oDAAoD;AACpD;AACA,kDAAkD,EAAE;;AAEpD;AACA;AACA,gCAAgC;AAChC;AACA;AACA,8BAA8B,EAAE;AAChC;AACA,gCAAgC;AAChC;AACA,iCAAiC;;AAEjC;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA,mEAAmE;;AAEnE;AACA;AACA,iBAAiB;AACjB;AACA,eAAe;AACf;AACA,iBAAiB,EAAE;;AAEnB;AACA,aAAa;AACb;AACA,mBAAmB;;AAEnB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA;AACA,cAAc;AACd;AACA,2CAA2C;AAC3C;AACA,4CAA4C;AAC5C;AACA,6CAA6C;AAC7C;AACA,2CAA2C;AAC3C;AACA,4CAA4C;AAC5C;AACA,6CAA6C;AAC7C;AACA,4CAA4C;AAC5C;AACA,2CAA2C;;AAE3C;AACA;AACA,kBAAkB;AAClB;AACA,uBAAuB;AACvB;AACA,6BAA6B;AAC7B;AACA;AACA,uBAAuB;AACvB;AACA;AACA,uBAAuB;;AAEvB;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA,wCAAwC;AACxC;AACA;AACA,wCAAwC;AACxC;AACA;AACA,wCAAwC;AACxC;AACA;AACA,wCAAwC;AACxC;AACA;AACA,wCAAwC;AACxC;AACA;AACA,wCAAwC;AACxC;AACA;AACA,wCAAwC;AACxC;AACA;AACA,wCAAwC;AACxC;AACA,wBAAwB;AACxB;AACA,iCAAiC;AACjC;AACA,iCAAiC;AACjC;AACA;AACA,iBAAiB;AACjB;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;;AAE1C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8BAA8B,EAAE;AAChC;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA;AACA,mCAAmC;AACnC;AACA,oCAAoC;AACpC;AACA,oCAAoC;AACpC;AACA,oCAAoC;AACpC;AACA,oCAAoC;AACpC;AACA,oCAAoC;AACpC;AACA,oCAAoC;AACpC;AACA,oCAAoC;AACpC;AACA;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA,kCAAkC;AAClC;AACA,mCAAmC;AACnC;AACA,iCAAiC;AACjC;AACA,kCAAkC;AAClC;AACA,mCAAmC;AACnC;AACA,kCAAkC;AAClC;AACA,iCAAiC;AACjC;AACA;AACA,kBAAkB;AAClB;AACA,oCAAoC;AACpC;AACA,qCAAqC;AACrC;AACA,mCAAmC;AACnC;AACA,oCAAoC;AACpC;AACA,qCAAqC;AACrC;AACA,oCAAoC;AACpC;AACA,mCAAmC;AACnC;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA,sCAAsC;AACtC;AACA;AACA,uCAAuC;AACvC;AACA;AACA,qCAAqC;AACrC;AACA;AACA,sCAAsC;AACtC;AACA;AACA,uCAAuC;AACvC;AACA;AACA,sCAAsC;AACtC;AACA;AACA,qCAAqC;AACrC;AACA;AACA,qCAAqC;AACrC;AACA,4DAA4D;AAC5D;AACA,4DAA4D;AAC5D;AACA,4DAA4D;AAC5D;AACA,4DAA4D;AAC5D;AACA,4DAA4D;AAC5D;AACA,4DAA4D;AAC5D;AACA,4DAA4D;AAC5D;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA,sCAAsC;AACtC;AACA;AACA;AACA,uCAAuC;AACvC;AACA;AACA;AACA,qCAAqC;AACrC;AACA;AACA;AACA,uCAAuC;AACvC;AACA;AACA;AACA,uCAAuC;AACvC;AACA;AACA;AACA,uCAAuC;AACvC;AACA;AACA;AACA,sCAAsC;AACtC;AACA,+DAA+D;AAC/D;AACA,gEAAgE;AAChE;AACA,iEAAiE;AACjE;AACA,+DAA+D;AAC/D;AACA,gEAAgE;AAChE;AACA,iEAAiE;AACjE;AACA,gEAAgE;AAChE;AACA,+DAA+D;AAC/D;AACA;AACA;AACA;AACA;AACA;AACA,qCAAqC;AACrC;AACA;AACA,sCAAsC;AACtC;AACA;AACA,uCAAuC;AACvC;AACA;AACA,qCAAqC;AACrC;AACA;AACA,sCAAsC;AACtC;AACA;AACA,uCAAuC;AACvC;AACA;AACA,sCAAsC;AACtC;AACA;AACA,qCAAqC;AACrC;AACA;AACA;AACA,qBAAqB;AACrB;AACA,6BAA6B;AAC7B;AACA,8BAA8B;AAC9B;AACA,4BAA4B;AAC5B;AACA,6BAA6B;AAC7B;AACA,8BAA8B;AAC9B;AACA,6BAA6B;AAC7B;AACA,4BAA4B;AAC5B;AACA;AACA,iDAAiD;AACjD;AACA;AACA,kDAAkD;AAClD;AACA;AACA,mDAAmD;AACnD;AACA;AACA,iDAAiD;AACjD;AACA;AACA,kDAAkD;AAClD;AACA;AACA,mDAAmD;AACnD;AACA;AACA,kDAAkD;AAClD;AACA;AACA,iDAAiD;AACjD;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,mBAAmB;AACnB;AACA;AACA,mBAAmB;AACnB;AACA;AACA,mBAAmB;AACnB;AACA;AACA,mBAAmB;AACnB;AACA;AACA,mBAAmB;AACnB;AACA;AACA,mBAAmB;AACnB;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA,gCAAgC,EAAE;AAClC;AACA,qBAAqB;AACrB;AACA;AACA,2EAA2E;AAC3E;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA,kBAAkB;AAClB;AACA;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,qBAAqB;AACrB;AACA,4BAA4B;AAC5B;AACA,wBAAwB;AACxB;AACA;AACA,wBAAwB;AACxB;AACA;AACA,qCAAqC;AACrC;AACA,4DAA4D;AAC5D;AACA,4DAA4D;AAC5D;AACA,4DAA4D;AAC5D;AACA,4DAA4D;AAC5D;AACA,4DAA4D;AAC5D;AACA,4DAA4D;AAC5D;AACA,4DAA4D;AAC5D;AACA,0BAA0B;AAC1B;AACA;AACA,kBAAkB;AAClB;AACA,iBAAiB;;AAEjB;AACA;AACA,iCAAiC,EAAE;;AAEnC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,6CAA6C;AAC7C;AACA;AACA;AACA,kBAAkB,EAAE;AACpB;AACA;AACA;AACA,mCAAmC;AACnC;AACA;AACA,0BAA0B;AAC1B;AACA,iBAAiB;AACjB;AACA,iBAAiB;AACjB;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA;AACA,mBAAmB,EAAE;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA,gBAAgB,EAAE;;AAElB;AACA;AACA;AACA,cAAc;AACd;AACA;AACA,8BAA8B;;AAE9B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mCAAmC;AACnC;AACA;AACA,8BAA8B,EAAE;AAChC;AACA,0BAA0B;AAC1B;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,u5CAAu5C;;AAEv5C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA,8BAA8B,EAAE;AAChC;AACA,4CAA4C;AAC5C;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qCAAqC;AACrC;AACA;AACA;AACA,kBAAkB;;AAElB;AACA;AACA,mBAAmB;;AAEnB;AACA,qBAAqB;AACrB;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA,wBAAwB;;AAExB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,2BAA2B;;AAE3B;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,0BAA0B;;AAE1B;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oDAAoD;AACpD;AACA;AACA;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY;;AAEZ;AACA,mBAAmB;;AAEnB;AACA;AACA,sEAAsE;;AAEtE;AACA,8DAA8D;;AAE9D;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mCAAmC;;AAEnC;AACA;AACA,UAAU;;AAEV;AACA;AACA;AACA,oDAAoD;;AAEpD;AACA;AACA;AACA;AACA;AACA;AACA,YAAY;;AAEZ;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA,8GAA8G;;AAE9G;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mCAAmC;;AAEnC;AACA;AACA,qCAAqC;AACrC;AACA;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA,yIAAyI;;AAEzI;AACA;AACA;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA,eAAe;AACf;AACA,qBAAqB;;AAErB;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA,kBAAkB;AAClB;AACA,kBAAkB;;AAElB;AACA;AACA,iBAAiB;;AAEjB;AACA,kBAAkB;;AAElB;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;AACb;AACA;AACA;AACA;AACA,oDAAoD;;AAEpD;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA,iCAAiC;;AAEjC;AACA;AACA,mBAAmB;;AAEnB;AACA,eAAe;AACf;AACA,qBAAqB;AACrB;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA,oCAAoC;AACpC;AACA;AACA,oCAAoC;AACpC;AACA;AACA,oCAAoC;AACpC;AACA;AACA,oCAAoC;AACpC;AACA;AACA,oCAAoC;AACpC;AACA;AACA,oCAAoC;AACpC;AACA;AACA,oCAAoC;AACpC;AACA;AACA,oCAAoC;AACpC;AACA;AACA;AACA;AACA;AACA,WAAW;;AAEX;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA,8BAA8B;AAC9B;AACA,wBAAwB;AACxB;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB;;AAElB;AACA,aAAa;;AAEb;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA,4BAA4B;;AAE5B;AACA,iBAAiB;;AAEjB;AACA,4BAA4B;;AAE5B;AACA,iBAAiB;;AAEjB;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8BAA8B;;AAE9B;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,eAAe;;AAEf;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA,wBAAwB;;AAExB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,iBAAiB;;AAEjB;AACA,UAAU;;AAEV;AACA,WAAW;;AAEX;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA;AACA,wBAAwB;;AAExB;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB;;AAElB;AACA,aAAa;;AAEb;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA;AACA;AACA,WAAW;;AAEX;AACA,mCAAmC;;AAEnC;AACA;AACA;AACA;AACA,WAAW;;AAEX;AACA,mCAAmC;;AAEnC;AACA;AACA;AACA;AACA,UAAU;;AAEV;AACA,kCAAkC;;AAElC;AACA;AACA,qBAAqB;;AAErB;AACA;AACA,eAAe;;AAEf;AACA;AACA,eAAe;;AAEf;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA,YAAY;;AAEZ;AACA;AACA;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA,aAAa;;AAEb;AACA,aAAa;;AAEb;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,aAAa;;AAEb;AACA,kBAAkB;;AAElB;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA,YAAY;;AAEZ;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA,wBAAwB;;AAExB;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,oBAAoB;;AAEpB;AACA,4BAA4B;;AAE5B;AACA;AACA;AACA;AACA;AACA;AACA,wBAAwB;;AAExB;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA,aAAa;;AAEb;AACA,aAAa;;AAEb;AACA;AACA,YAAY;;AAEZ;AACA,iBAAiB;;AAEjB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA,qBAAqB;;AAErB;AACA;AACA,aAAa;;AAEb;AACA,YAAY;;AAEZ;AACA;AACA;AACA;AACA;AACA,UAAU;;AAEV;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY;;AAEZ;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA,4BAA4B;;AAE5B;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA,aAAa;;AAEb;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;;AAEb;AACA,iBAAiB;;AAEjB;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA,mBAAmB;;AAEnB;AACA,eAAe;;AAEf;AACA,qBAAqB;;AAErB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA,WAAW;;AAEX;AACA,oBAAoB;;AAEpB;AACA,aAAa;;AAEb;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA,qBAAqB;;AAErB;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA,YAAY;;AAEZ;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA,kBAAkB;;AAElB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,qCAAqC;;AAErC;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA,cAAc;;AAEd;AACA,cAAc;;AAEd;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA;AACA;AACA;AACA,aAAa;;AAEb;AACA,aAAa;;AAEb;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,wBAAwB;;AAExB;AACA,sBAAsB;;AAEtB;AACA;AACA,4BAA4B;;AAE5B;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8BAA8B;;AAE9B;AACA,eAAe;;AAEf;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA,wBAAwB;;AAExB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,iBAAiB;;AAEjB;AACA,UAAU;;AAEV;AACA,WAAW;;AAEX;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA;AACA,wBAAwB;;AAExB;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA,aAAa;AACb;AACA,kBAAkB;AAClB;AACA,gBAAgB;AAChB;AACA;AACA,mCAAmC;AACnC;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA,cAAc;AACd;AACA;AACA;AACA;AACA;AACA,8BAA8B;AAC9B;AACA;AACA;AACA,gCAAgC,EAAE;AAClC;AACA;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA,gCAAgC;AAChC;AACA,YAAY;AACZ;AACA,oBAAoB;AACpB;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA,qCAAqC;AACrC;AACA,oEAAoE;AACpE;AACA,oEAAoE;AACpE;AACA,oEAAoE;AACpE;AACA,oEAAoE;AACpE;AACA,oEAAoE;AACpE;AACA,oEAAoE;AACpE;AACA,oEAAoE;AACpE;AACA;AACA,kCAAkC;AAClC;AACA,wBAAwB;AACxB;AACA,wBAAwB;AACxB;AACA,wBAAwB;AACxB;AACA,wBAAwB;AACxB;AACA,wBAAwB;AACxB;AACA,wBAAwB;AACxB;AACA,wBAAwB;AACxB;AACA,mCAAmC;AACnC;AACA,oCAAoC;AACpC;AACA,qCAAqC;AACrC;AACA,mCAAmC;AACnC;AACA,oCAAoC;AACpC;AACA,qCAAqC;AACrC;AACA,qCAAqC;AACrC;AACA,mCAAmC;AACnC;AACA,uCAAuC;AACvC;AACA;AACA,cAAc;AACd;AACA;AACA;AACA,qCAAqC;AACrC;AACA;AACA,sCAAsC;AACtC;AACA;AACA,sCAAsC;AACtC;AACA;AACA,sCAAsC;AACtC;AACA;AACA,sCAAsC;AACtC;AACA;AACA,sCAAsC;AACtC;AACA;AACA,sCAAsC;AACtC;AACA;AACA,sCAAsC;AACtC;AACA,cAAc;AACd;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA,uBAAuB;;AAEvB;AACA,uBAAuB;AACvB;AACA;AACA,yBAAyB;AACzB;AACA,qBAAqB;AACrB;AACA,kBAAkB;AAClB;AACA,kBAAkB;AAClB;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA,qBAAqB;AACrB;AACA,wBAAwB;AACxB;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA,iCAAiC;AACjC;AACA;AACA,mBAAmB;AACnB;AACA;AACA,kBAAkB;AAClB;AACA;AACA,0CAA0C;AAC1C;AACA,0CAA0C;;AAE1C;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,cAAc;;AAEd;AACA,cAAc;;AAEd;AACA,mBAAmB;;AAEnB;AACA,oBAAoB;;AAEpB;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,wBAAwB;;AAExB;AACA,cAAc;;AAEd;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA,YAAY;AACZ;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA,8BAA8B;;AAE9B;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA,8BAA8B,EAAE;AAChC;AACA;AACA;AACA,oDAAoD;AACpD;AACA;AACA,gCAAgC,EAAE;AAClC;AACA,6CAA6C;;AAE7C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yCAAyC;AACzC;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA,0CAA0C;;AAE1C;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,mIAAmI;;AAEnI;AACA,eAAe;;AAEf;AACA,wBAAwB;;AAExB;AACA,gBAAgB;;AAEhB;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA,wBAAwB;AACxB;AACA,2BAA2B;AAC3B;AACA;AACA;AACA,kBAAkB;;AAElB;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;AACd;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8BAA8B;;AAE9B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;AACd;AACA,eAAe;AACf;AACA,kBAAkB;AAClB;AACA,kBAAkB;AAClB;AACA,kBAAkB;AAClB;AACA,kBAAkB;AAClB;AACA,kBAAkB;AAClB;AACA,kBAAkB;AAClB;AACA,kBAAkB;AAClB;AACA,kBAAkB;;AAElB;AACA;AACA,gBAAgB;AAChB;AACA,sBAAsB;AACtB;AACA;AACA,qBAAqB;AACrB;AACA,wBAAwB;;AAExB;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA,2BAA2B;AAC3B;AACA;AACA,6BAA6B;AAC7B;AACA;AACA,iBAAiB;AACjB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA,YAAY;;AAEZ;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA;AACA;AACA,eAAe;AACf;AACA,cAAc;AACd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qCAAqC;AACrC;AACA;AACA,gCAAgC,EAAE;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,gCAAgC,EAAE;AAClC;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA,mBAAmB;AACnB;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA;AACA,wBAAwB;AACxB;AACA,oDAAoD;AACpD;AACA,oDAAoD;AACpD;AACA,oDAAoD;AACpD;AACA,oDAAoD;AACpD;AACA,oDAAoD;AACpD;AACA,oDAAoD;AACpD;AACA,oDAAoD;AACpD;AACA;AACA;AACA,gCAAgC;AAChC;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA,qBAAqB;AACrB;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA,sCAAsC;;AAEtC;AACA;AACA;AACA,2BAA2B,EAAE;;AAE7B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,8BAA8B,EAAE;AAChC;AACA;AACA,0BAA0B;AAC1B;AACA;AACA;AACA,mCAAmC;AACnC;AACA;AACA,oCAAoC;AACpC;AACA;AACA,oCAAoC;AACpC;AACA;AACA,oCAAoC;AACpC;AACA;AACA,oCAAoC;AACpC;AACA;AACA,oCAAoC;AACpC;AACA;AACA,oCAAoC;AACpC;AACA;AACA,oCAAoC;AACpC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA,uBAAuB;AACvB;AACA,gBAAgB;;AAEhB;AACA;AACA,qBAAqB;;AAErB;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA,wBAAwB;AACxB;AACA;AACA,wBAAwB;AACxB;AACA;AACA,mBAAmB;AACnB;AACA;AACA,wBAAwB;AACxB;AACA;AACA,qBAAqB;AACrB;AACA,qBAAqB;AACrB;AACA,qBAAqB;AACrB;AACA,qBAAqB;AACrB;AACA,qBAAqB;AACrB;AACA,qBAAqB;AACrB;AACA,qBAAqB;AACrB;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA,qBAAqB;AACrB;AACA;AACA;AACA,2BAA2B;AAC3B;AACA,qBAAqB;AACrB;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA;AACA,oDAAoD;AACpD;AACA;AACA;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA;AACA;AACA;AACA;AACA,0BAA0B;;AAE1B;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA,gBAAgB;;AAEhB;AACA,6BAA6B;;AAE7B;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;AACd;AACA;AACA,uBAAuB,EAAE;;AAEzB;AACA,YAAY;AACZ;AACA;AACA,kBAAkB;AAClB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA,aAAa,EAAE;;AAEf;AACA;AACA,qBAAqB;;AAErB;AACA;AACA,mBAAmB;AACnB;AACA,cAAc;AACd;AACA;AACA,sBAAsB,EAAE;;AAExB;AACA,UAAU;AACV;AACA;AACA,+BAA+B;AAC/B;AACA,0BAA0B,EAAE;;AAE5B;AACA,WAAW;AACX;AACA;AACA,+BAA+B;AAC/B;AACA;AACA,iBAAiB,EAAE;;AAEnB;AACA;AACA,WAAW;AACX;AACA;AACA,qBAAqB,EAAE;;AAEvB;AACA;AACA,kBAAkB,EAAE;;AAEpB;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wCAAwC;AACxC;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA,2BAA2B,EAAE;;AAE7B;AACA;AACA;AACA,gCAAgC;;AAEhC;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA,cAAc;AACd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA,sBAAsB,EAAE;;AAExB;AACA;AACA,qBAAqB;AACrB;AACA;AACA,sBAAsB;AACtB;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gCAAgC;AAChC;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oCAAoC,EAAE;AACtC;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA;AACA,qBAAqB;AACrB;AACA,kBAAkB,EAAE;;AAEpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA,kBAAkB,EAAE;AACpB;AACA;AACA,qBAAqB;AACrB;AACA;AACA,cAAc;AACd;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA,wBAAwB;;AAExB;AACA,wBAAwB;AACxB;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA,wBAAwB,EAAE;;AAE1B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA,uBAAuB;AACvB;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;;AAE9B;AACA;AACA,yBAAyB;;AAEzB;AACA,oBAAoB;;AAEpB;AACA,0BAA0B;;AAE1B;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA,kCAAkC;AAClC;AACA,qBAAqB;;AAErB;AACA;AACA;AACA,cAAc;AACd;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,qBAAqB;AACrB;AACA;AACA,2BAA2B;;AAE3B;AACA,mBAAmB;;AAEnB;AACA;AACA,mCAAmC;AACnC;AACA,sBAAsB;AACtB;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mCAAmC;AACnC;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA,0CAA0C;AAC1C;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA;AACA,qBAAqB;;AAErB;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8BAA8B,EAAE;AAChC;AACA;AACA,qBAAqB;AACrB;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uCAAuC;AACvC;AACA;AACA,gCAAgC,EAAE;AAClC;AACA;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA,0BAA0B;;AAE1B;AACA,qBAAqB;;AAErB;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,iBAAiB;AACjB;AACA;AACA;AACA,mBAAmB;AACnB;AACA,kBAAkB;;AAElB;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iCAAiC;AACjC;AACA;AACA;AACA;AACA;AACA,8BAA8B,EAAE;AAChC;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;AACb;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA,iBAAiB;;AAEjB;AACA,qBAAqB;;AAErB;AACA;AACA,cAAc;;AAEd;AACA;AACA,aAAa;;AAEb;AACA;AACA,sBAAsB;AACtB;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,qBAAqB;AACrB;AACA,oBAAoB;;AAEpB;AACA;AACA,sBAAsB;;AAEtB;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA,qBAAqB;;AAErB;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;AACb;AACA,eAAe;AACf;AACA;AACA;AACA;AACA;AACA,gCAAgC;AAChC;AACA,qBAAqB;AACrB;AACA,gCAAgC;AAChC;AACA,6BAA6B;AAC7B;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA,uBAAuB;AACvB;AACA,qBAAqB;AACrB;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA,sBAAsB;AACtB;AACA,kBAAkB;AAClB;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA,wBAAwB;AACxB;AACA,oBAAoB;AACpB;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA,sCAAsC;AACtC;AACA,uBAAuB;AACvB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA,sCAAsC;AACtC;AACA,iBAAiB;AACjB;AACA,cAAc;AACd;AACA;AACA,kBAAkB;AAClB;AACA,qBAAqB;AACrB;AACA,sBAAsB;AACtB;AACA,sBAAsB;AACtB;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC;AAClC;AACA,iBAAiB;AACjB;AACA;AACA,gCAAgC;AAChC;AACA;AACA,eAAe;AACf;AACA,uBAAuB;AACvB;AACA;AACA,gBAAgB;AAChB;AACA,wBAAwB;;AAExB;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA;AACA;AACA,wBAAwB;;AAExB;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA,aAAa;;AAEb;AACA;AACA;AACA,yBAAyB;AACzB;AACA,kBAAkB;AAClB;AACA,qBAAqB;;AAErB;AACA,qBAAqB;;AAErB;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA,eAAe;AACf;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;;AAEb;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;AACtB;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA;AACA,wBAAwB;;AAExB;AACA,aAAa;;AAEb;AACA,aAAa;;AAEb;AACA,aAAa;;AAEb;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA,gCAAgC;AAChC;AACA;AACA;AACA;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA;AACA;AACA;AACA;AACA,gCAAgC;AAChC;AACA;AACA;AACA;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA;AACA;AACA,eAAe;AACf;AACA;AACA,eAAe,EAAE;;AAEjB;AACA;AACA;AACA,eAAe;AACf;AACA;AACA,eAAe,EAAE;;AAEjB;AACA;AACA,2BAA2B;;AAE3B;AACA,0BAA0B;;AAE1B;AACA,yBAAyB;;AAEzB;AACA,4BAA4B;;AAE5B;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA,mBAAmB;;AAEnB;AACA,cAAc;;AAEd;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2DAA2D;AAC3D;AACA;AACA;AACA,wBAAwB,EAAE;;AAE1B;AACA;AACA,oBAAoB,EAAE;;AAEtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA,yBAAyB,EAAE;AAC3B;AACA,8BAA8B;AAC9B;AACA;AACA,kDAAkD;;AAElD;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;AACb;AACA;AACA,kCAAkC;AAClC;AACA;AACA;AACA,+BAA+B;AAC/B;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,4BAA4B;AAC5B;AACA,8BAA8B,EAAE;;AAEhC;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA,sCAAsC;AACtC;AACA,sCAAsC;AACtC;AACA,sCAAsC;AACtC;AACA,sCAAsC;AACtC;AACA,sCAAsC;AACtC;AACA,sCAAsC;AACtC;AACA,sCAAsC;AACtC;AACA,sCAAsC;AACtC;AACA;AACA,uBAAuB;AACvB;AACA,wEAAwE;AACxE;AACA,wEAAwE;AACxE;AACA,wEAAwE;AACxE;AACA,wEAAwE;AACxE;AACA,wEAAwE;AACxE;AACA,wEAAwE;AACxE;AACA,wEAAwE;AACxE;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2CAA2C;AAC3C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,oEAAoE;AACpE;AACA,oEAAoE;AACpE;AACA,oEAAoE;AACpE;AACA,oEAAoE;AACpE;AACA,oEAAoE;AACpE;AACA,oEAAoE;AACpE;AACA,oEAAoE;AACpE;AACA,oEAAoE;;AAEpE;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA,uBAAuB;AACvB;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA;AACA,gCAAgC,EAAE;AAClC;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,0BAA0B;AAC1B;AACA;AACA;AACA,mCAAmC;AACnC;AACA,gEAAgE;AAChE;AACA,gEAAgE;AAChE;AACA,gEAAgE;AAChE;AACA,gEAAgE;AAChE;AACA,gEAAgE;AAChE;AACA,gEAAgE;AAChE;AACA,gEAAgE;AAChE;AACA;AACA;AACA;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA,yBAAyB;AACzB;AACA,yBAAyB,EAAE;;AAE3B;AACA,qBAAqB;AACrB;AACA,4BAA4B;AAC5B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA,kBAAkB;AAClB;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB;;AAElB;AACA;AACA,YAAY;AACZ;AACA;AACA,oBAAoB,EAAE;;AAEtB;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA,mBAAmB;AACnB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,+BAA+B;;AAE/B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB;;AClnIlB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,sBAAsB;AACtB;AACA,uBAAuB;;AAEvB;AACA;AACA,gCAAgC;;AAEhC;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,sBAAsB;;AAEtB;AACA,qBAAqB;;AAErB;AACA,aAAa;;AAEb;AACA,YAAY;;AAEZ;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA;AACA,gBAAgB;AAChB;AACA;AACA,sBAAsB;AACtB;AACA,wBAAwB;AACxB;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA,qCAAqC;AACrC;AACA;AACA,oCAAoC;AACpC;AACA;AACA,gCAAgC,EAAE;AAClC;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC;;AAElC;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA;AACA;AACA;AACA;AACA,mCAAmC;AACnC;AACA;AACA;AACA;AACA,gCAAgC,EAAE;AAClC;AACA;AACA;AACA,mCAAmC;AACnC;AACA;AACA;AACA,4BAA4B;;AAE5B;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sCAAsC;AACtC;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA;AACA;AACA;AACA,4BAA4B;;AAE5B;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,6CAA6C;;AAE7C;AACA,gCAAgC;;AAEhC;AACA,gBAAgB;;AAEhB;AACA,iBAAiB;;AAEjB;AACA,kBAAkB;;AAElB;AACA,cAAc;;AAEd;AACA;AACA,aAAa;;AAEb;AACA;AACA,qBAAqB;;AAErB;AACA;AACA,YAAY;AACZ;AACA,kBAAkB;;AAElB;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA,eAAe;AACf;AACA;AACA,oBAAoB,EAAE;AACtB;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA,sBAAsB;AACtB;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA,gCAAgC;AAChC;AACA;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA;AACA,eAAe;AACf;AACA,eAAe;AACf;AACA,eAAe,EAAE;;AAEjB;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA,wBAAwB,EAAE;;AAE1B;AACA;AACA,gCAAgC;AAChC;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA,gBAAgB;AAChB;AACA;AACA,wBAAwB;;AAExB;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA,8BAA8B,EAAE;AAChC;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA,gCAAgC;;AAEhC;AACA;AACA;AACA;AACA;AACA,cAAc;AACd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA,sCAAsC;AACtC;AACA,sCAAsC;AACtC;AACA,sCAAsC;AACtC;AACA,sCAAsC;AACtC;AACA,sCAAsC;AACtC;AACA,sCAAsC;AACtC;AACA,sCAAsC;AACtC;AACA,sCAAsC;;AAEtC;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA,wBAAwB;;AAExB;AACA;AACA;AACA;AACA,cAAc;AACd;AACA;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA,cAAc;AACd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA,0BAA0B;AAC1B;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA,qBAAqB;AACrB;AACA,eAAe;;AAEf;AACA,gBAAgB;;AAEhB;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA,0BAA0B,EAAE;AAC5B;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA,4BAA4B,EAAE;;AAE9B;AACA,gBAAgB;AAChB;AACA,qBAAqB;AACrB;AACA;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,gCAAgC,EAAE;;AAElC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B;;AAE5B;AACA,4BAA4B;;AAE5B;AACA,4BAA4B;;AAE5B;AACA,4BAA4B;;AAE5B;AACA,4BAA4B;;AAE5B;AACA,4BAA4B;;AAE5B;AACA,4BAA4B;;AAE5B;AACA,4BAA4B;;AAE5B;AACA,iBAAiB;;AAEjB;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA,YAAY;AACZ;AACA;AACA,cAAc;AACd;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA,qBAAqB;AACrB;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;;AAE1C;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA,0BAA0B;;AAE1B;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA,eAAe;;AAEf;AACA,mBAAmB;AACnB;AACA,oBAAoB;;AAEpB;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA,sBAAsB,EAAE;;AAExB;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA,mBAAmB;AACnB;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA,0BAA0B;AAC1B;AACA,gCAAgC;AAChC;AACA,gCAAgC;AAChC;AACA;AACA,sBAAsB;AACtB;AACA;AACA,oBAAoB;AACpB;AACA,qBAAqB;AACrB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA,mBAAmB;AACnB;AACA;AACA,uBAAuB;AACvB;AACA,kBAAkB;;AAElB;AACA;AACA,sBAAsB;;AAEtB;AACA,gBAAgB;;AAEhB;AACA,aAAa;;AAEb;AACA;AACA;AACA,UAAU;;AAEV;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA,0BAA0B;;AAE1B;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA,2BAA2B;;AAE3B;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA,2BAA2B;;AAE3B;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA,wBAAwB;;AAExB;AACA,eAAe;AACf;AACA,4BAA4B;AAC5B;AACA,uBAAuB;;AAEvB;AACA,eAAe;;AAEf;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,YAAY;;AAEZ;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B;;AAE5B;AACA;AACA;AACA,mBAAmB;AACnB;AACA,uBAAuB;AACvB;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA;AACA;AACA,iBAAiB;AACjB;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA,qBAAqB;AACrB;AACA;AACA,sBAAsB;;AAEtB;AACA,aAAa;;AAEb;AACA;AACA;AACA,iCAAiC;;AAEjC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA,mCAAmC;AACnC;AACA,oCAAoC;AACpC;AACA,oCAAoC;AACpC;AACA,oCAAoC;AACpC;AACA,oCAAoC;AACpC;AACA,oCAAoC;AACpC;AACA,oCAAoC;AACpC;AACA,oCAAoC;AACpC;AACA,0BAA0B;AAC1B;AACA,0BAA0B;AAC1B;AACA,0BAA0B;AAC1B;AACA,0BAA0B;AAC1B;AACA,0BAA0B;AAC1B;AACA,0BAA0B;AAC1B;AACA,0BAA0B;AAC1B;AACA,0BAA0B;AAC1B;AACA,sBAAsB;AACtB;AACA,8BAA8B;;AAE9B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,mBAAmB;;AAEnB;AACA,qBAAqB;;AAErB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA,iBAAiB;;AAEjB;AACA,cAAc;AACd;AACA;AACA,sBAAsB;;AAEtB;AACA,aAAa;AACb;AACA;AACA,8BAA8B;;AAE9B;AACA;AACA,aAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA,aAAa;AACb;AACA,uBAAuB;AACvB;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB,EAAE;;AAEtB;AACA;AACA;AACA,aAAa;;AAEb;AACA,gCAAgC;;AAEhC;AACA,iBAAiB;;AAEjB;AACA,qBAAqB;;AAErB;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA,eAAe;;AAEf;AACA,cAAc;;AAEd;AACA;AACA;AACA,eAAe;;AAEf;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB;;AAElB;AACA,mBAAmB;;AAEnB;AACA,yBAAyB;;AAEzB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA,oBAAoB;AACpB;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA,cAAc;AACd;AACA;AACA,gBAAgB;AAChB;AACA,6BAA6B;AAC7B;AACA;AACA,eAAe;AACf;AACA;AACA,yBAAyB;AACzB;AACA,mBAAmB;AACnB;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sCAAsC;AACtC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,wCAAwC;AACxC;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA,kBAAkB;;AAElB;AACA,qBAAqB;;AAErB;AACA;AACA,qBAAqB;;AAErB;AACA,8BAA8B;;AAE9B;AACA,wBAAwB;;AAExB;AACA,gBAAgB;;AAEhB;AACA,YAAY;;AAEZ;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA,mCAAmC;AACnC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA,gCAAgC,EAAE;AAClC;AACA,uCAAuC;AACvC;AACA,kBAAkB;;AAElB;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,aAAa;AACb;AACA;AACA;AACA;AACA,mBAAmB,EAAE;AACrB;AACA;AACA,kBAAkB;;AAElB;AACA;AACA,wBAAwB,EAAE;;AAE1B;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA,sBAAsB,EAAE;AACxB;AACA;AACA;AACA,mCAAmC;AACnC;AACA;AACA,oCAAoC;AACpC;AACA;AACA,oCAAoC;AACpC;AACA;AACA,oCAAoC;AACpC;AACA;AACA,oCAAoC;AACpC;AACA;AACA,oCAAoC;AACpC;AACA;AACA,oCAAoC;AACpC;AACA;AACA,oCAAoC;;AAEpC;AACA,mBAAmB;;AAEnB;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA,kFAAkF;AAClF;AACA;AACA;AACA;AACA,kFAAkF;;AAElF;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA,8BAA8B;AAC9B;AACA,wBAAwB;AACxB;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA,4BAA4B;AAC5B;AACA,mBAAmB;AACnB;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA,oCAAoC;AACpC;AACA,0BAA0B;AAC1B;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA,sBAAsB;AACtB;AACA,kBAAkB;;AAElB;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC;;AAElC;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA,qBAAqB;AACrB;AACA,qBAAqB;;AAErB;AACA,sBAAsB;AACtB;AACA,qBAAqB;;AAErB;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA,iBAAiB;;AAEjB;AACA,sBAAsB;AACtB;AACA;AACA,oBAAoB;;AAEpB;AACA,qBAAqB;AACrB;AACA;AACA,mCAAmC;AACnC;AACA;AACA,2BAA2B;AAC3B;AACA;AACA,0BAA0B;AAC1B;AACA,wBAAwB;AACxB;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA,UAAU;;AAEV;AACA;AACA;AACA;AACA,YAAY;;AAEZ;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA,8BAA8B,EAAE;AAChC;AACA;AACA,oBAAoB;AACpB;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B;AAC9B;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA;AACA,oCAAoC;AACpC;AACA;AACA,8BAA8B,EAAE;AAChC;AACA;AACA,uBAAuB;AACvB;AACA,mCAAmC;AACnC;AACA;AACA,gCAAgC,EAAE;;AAElC;AACA;AACA,kBAAkB;;AAElB;AACA,gBAAgB;;AAEhB;AACA,oBAAoB;;AAEpB;AACA,mBAAmB;;AAEnB;AACA,mBAAmB;AACnB;AACA,cAAc;AACd;AACA;AACA,gBAAgB;AAChB;AACA,uBAAuB;AACvB;AACA;AACA,uBAAuB;AACvB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,kBAAkB;AAClB;AACA,iBAAiB;;AAEjB;AACA;AACA,mBAAmB;AACnB;AACA,qBAAqB;AACrB;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,kBAAkB;;AAElB;AACA,mBAAmB;;AAEnB;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA,qBAAqB,EAAE;;AAEvB;AACA,iBAAiB;;AAEjB;AACA,wBAAwB;;AAExB;AACA;AACA,iBAAiB;;AAEjB;AACA,gBAAgB;AAChB;AACA;AACA,kCAAkC;AAClC;AACA,kCAAkC;AAClC;AACA,kCAAkC;AAClC;AACA,kCAAkC;AAClC;AACA,kCAAkC;AAClC;AACA,kCAAkC;AAClC;AACA,kCAAkC;AAClC;AACA,kCAAkC;;AAElC;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA,eAAe;;AAEf;AACA;AACA,qBAAqB;;AAErB;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA,oBAAoB;;AAEpB;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,+BAA+B;;AAE/B;AACA,0BAA0B;;AAE1B;AACA,gBAAgB;;AAEhB;AACA,uBAAuB;;AAEvB;AACA;AACA,gBAAgB;;AAEhB;AACA,gBAAgB;AAChB;AACA,uBAAuB;AACvB;AACA,kBAAkB;;AAElB;AACA,eAAe;;AAEf;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA,wBAAwB;;AAExB;AACA;AACA,eAAe;AACf;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA,qBAAqB,EAAE;AACvB;AACA;AACA;AACA;AACA,wBAAwB,EAAE;AAC1B;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA,uBAAuB,EAAE;;AAEzB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,wBAAwB;AACxB;AACA;AACA;AACA,kBAAkB;AAClB;AACA,kCAAkC;AAClC;AACA,mCAAmC;AACnC;AACA,iCAAiC;AACjC;AACA,kCAAkC;AAClC;AACA,mCAAmC;AACnC;AACA,mCAAmC;AACnC;AACA,iCAAiC;;AAEjC;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wBAAwB;;AAExB;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA,0BAA0B;AAC1B;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA,gCAAgC;;AAEhC;AACA,mBAAmB;;AAEnB;AACA,oBAAoB;;AAEpB;AACA,gBAAgB;;AAEhB;AACA,eAAe;;AAEf;AACA,eAAe;AACf;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA,qBAAqB;AACrB;AACA;AACA,qCAAqC;AACrC;AACA,kEAAkE;AAClE;AACA,kEAAkE;AAClE;AACA,kEAAkE;AAClE;AACA,kEAAkE;AAClE;AACA,kEAAkE;AAClE;AACA,kEAAkE;AAClE;AACA,kEAAkE;;AAElE;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,8BAA8B;;AAE9B;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA,gCAAgC;;AAEhC;AACA;AACA,gBAAgB;AAChB;AACA;AACA,qBAAqB;AACrB;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA,kBAAkB;AAClB;AACA,sBAAsB;;AAEtB;AACA,0BAA0B;;AAE1B;AACA;AACA,yBAAyB;;AAEzB;AACA,eAAe;;AAEf;AACA;AACA,kBAAkB;;AAElB;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,+DAA+D;AAC/D;AACA;AACA,8BAA8B,EAAE;AAChC;AACA;AACA,wBAAwB,EAAE;AAC1B;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oCAAoC;AACpC;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,2BAA2B,EAAE;;AAE7B;AACA,gBAAgB;;AAEhB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gCAAgC,EAAE;;AAElC;AACA;AACA,4BAA4B,EAAE;;AAE9B;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA,yBAAyB,EAAE;;AAE3B;AACA;AACA;AACA;AACA,eAAe,EAAE;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA,mBAAmB,EAAE;;AAErB;AACA,mBAAmB;;AAEnB;AACA,4BAA4B;;AAE5B;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA,wBAAwB,EAAE;AAC1B;AACA;AACA,sCAAsC;AACtC;AACA,sCAAsC;AACtC;AACA,sCAAsC;AACtC;AACA,sCAAsC;AACtC;AACA,sCAAsC;AACtC;AACA,sCAAsC;AACtC;AACA,sCAAsC;AACtC;AACA,sCAAsC;;AAEtC;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,qCAAqC;AACrC;AACA;AACA,0BAA0B;AAC1B;AACA;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,iBAAiB;;AAEjB;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,gBAAgB;;AAEhB;AACA,kBAAkB;;AAElB;AACA;AACA,sBAAsB;AACtB;AACA,oBAAoB;AACpB;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,0BAA0B;AAC1B;AACA;AACA,qBAAqB,EAAE;AACvB;AACA,kBAAkB;AAClB;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA,gCAAgC;AAChC;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA;AACA,mCAAmC;AACnC;AACA,0DAA0D;AAC1D;AACA,0DAA0D;AAC1D;AACA,0DAA0D;AAC1D;AACA,0DAA0D;AAC1D;AACA,0DAA0D;AAC1D;AACA,0DAA0D;AAC1D;AACA,0DAA0D;AAC1D;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA;AACA,wBAAwB;AACxB;AACA,0DAA0D;AAC1D;AACA,0DAA0D;AAC1D;AACA,0DAA0D;AAC1D;AACA,0DAA0D;AAC1D;AACA,0DAA0D;AAC1D;AACA,0DAA0D;AAC1D;AACA,0DAA0D;AAC1D;AACA,0DAA0D;AAC1D;AACA,qBAAqB;;AAErB;AACA,qBAAqB;AACrB;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA,kBAAkB;AAClB;AACA,kBAAkB,EAAE;;AC1gFpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA;AACA,wBAAwB,EAAE;;AAE1B;AACA;AACA,eAAe;AACf;AACA;AACA,mBAAmB,EAAE;AACrB;AACA;AACA;AACA,WAAW;;AAEX;AACA,mBAAmB;;AAEnB;AACA,kBAAkB;;AAElB;AACA,oBAAoB;;AAEpB;AACA,mBAAmB;;AAEnB;AACA,sBAAsB;;AAEtB;AACA,mBAAmB;;AAEnB;AACA,qBAAqB;;AAErB;AACA,oBAAoB;;AAEpB;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB,EAAE;;AAEpB;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA,kBAAkB;;AAElB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA,sBAAsB;;ACpJtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;AACjB;AACA;AACA,eAAe;;AAEf;AACA;AACA,gBAAgB;AAChB;AACA,0BAA0B;AAC1B;AACA;AACA,sBAAsB;AACtB;AACA,iBAAiB;AACjB;AACA,kBAAkB;AAClB;AACA,mBAAmB;AACnB;AACA,oBAAoB;AACpB;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA,oBAAoB;AACpB;AACA;AACA,mCAAmC;AACnC;AACA,oCAAoC;AACpC;AACA,oCAAoC;AACpC;AACA,oCAAoC;AACpC;AACA,oCAAoC;AACpC;AACA,oCAAoC;AACpC;AACA,oCAAoC;AACpC;AACA,oCAAoC;;AAEpC;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA,wBAAwB;;AAExB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA,qBAAqB;;AAErB;AACA,cAAc;AACd;AACA;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gCAAgC,EAAE;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B,EAAE;AAC9B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qCAAqC;AACrC;AACA;AACA,sCAAsC;AACtC;AACA;AACA,sCAAsC;AACtC;AACA;AACA,sCAAsC;AACtC;AACA;AACA,sCAAsC;AACtC;AACA;AACA,sCAAsC;AACtC;AACA;AACA,sCAAsC;AACtC;AACA;AACA,sCAAsC;AACtC;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA,oCAAoC;AACpC;AACA;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,sCAAsC;AACtC;AACA,uBAAuB;AACvB;AACA;AACA,kBAAkB;AAClB;AACA;AACA,gCAAgC,EAAE;AAClC;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2CAA2C;AAC3C;AACA;AACA;AACA,4BAA4B,EAAE;AAC9B;AACA,wCAAwC;AACxC;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA,6BAA6B;AAC7B;AACA;AACA,8BAA8B,EAAE;AAChC;AACA;AACA,kCAAkC;AAClC;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA,kCAAkC;AAClC;AACA;AACA,qCAAqC;AACrC;AACA;AACA;AACA,qCAAqC;AACrC;AACA;AACA,qCAAqC;AACrC;AACA,kBAAkB;AAClB;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA;AACA;AACA,qCAAqC;AACrC;AACA,eAAe;AACf;AACA,uBAAuB;AACvB;AACA,sBAAsB,EAAE;AACxB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iCAAiC;AACjC;AACA;AACA,iBAAiB;AACjB;AACA,qCAAqC;AACrC;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA,+CAA+C;;AAE/C;AACA,sBAAsB;AACtB;AACA;AACA,gBAAgB;;AAEhB;AACA,cAAc;AACd;AACA;AACA;AACA,wBAAwB;AACxB;AACA,gBAAgB;;AAEhB;AACA;AACA,sBAAsB;;AAEtB;AACA,aAAa;AACb;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA,oBAAoB;AACpB;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA;AACA;AACA,8BAA8B;AAC9B;AACA;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA,eAAe;;AAEf;AACA,gCAAgC;;AAEhC;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA,8BAA8B;;AAE9B;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA,kBAAkB;;AAElB;AACA;AACA,mBAAmB;AACnB;AACA,sBAAsB;;AAEtB;AACA,eAAe;AACf;AACA,wBAAwB;AACxB;AACA;AACA,qBAAqB;AACrB;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;;AAE1C;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,iBAAiB;AACjB;AACA,iBAAiB;;AAEjB;AACA,mBAAmB;AACnB;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;;AAEb;AACA,mBAAmB;;AAEnB;AACA,iCAAiC;AACjC;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,+BAA+B;AAC/B;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA,eAAe;;AAEf;AACA,gBAAgB;;AAEhB;AACA;AACA,sBAAsB;AACtB;AACA,kBAAkB;AAClB;AACA,uBAAuB;;AAEvB;AACA;AACA,oBAAoB;;AAEpB;AACA,gBAAgB;AAChB;AACA,mBAAmB;AACnB;AACA;AACA;AACA,wBAAwB;AACxB;AACA,kBAAkB;;AAElB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA,gBAAgB;;AAEhB;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,4BAA4B;;AAE5B;AACA,mBAAmB;;AAEnB;AACA,kBAAkB;;AAElB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA,0BAA0B,EAAE;;AAE5B;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA,qBAAqB;;AAErB;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,6BAA6B;AAC7B;AACA;AACA,iCAAiC,EAAE;AACnC;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA,oBAAoB;AACpB;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA,qBAAqB;AACrB;AACA;AACA,sBAAsB;;AAEtB;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA,gCAAgC,EAAE;AAClC;AACA;AACA,0BAA0B,EAAE;AAC5B;AACA,oCAAoC;AACpC;AACA,oCAAoC;AACpC;AACA,oCAAoC;AACpC;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA,oCAAoC;AACpC;AACA;AACA,gCAAgC,EAAE;AAClC;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,0BAA0B;AAC1B;AACA;AACA,0BAA0B;;AAE1B;AACA,mBAAmB;;AAEnB;AACA,iBAAiB;;AAEjB;AACA,gBAAgB;AAChB;AACA;AACA;AACA,uBAAuB,EAAE;;AAEzB;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wCAAwC;;AAExC;AACA,wCAAwC;;AAExC;AACA,wCAAwC;;AAExC;AACA,wCAAwC;;AAExC;AACA,wCAAwC;;AAExC;AACA,wCAAwC;;AAExC;AACA,wCAAwC;;AAExC;AACA,wCAAwC;;AAExC;AACA;AACA;AACA,YAAY;;AAEZ;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA,sBAAsB;AACtB;AACA,qBAAqB;;AC58BrB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B;AAC5B;AACA,gBAAgB;AAChB;AACA,uBAAuB;AACvB;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,8BAA8B;;AAE9B;AACA;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA,mBAAmB;;AAEnB;AACA,qBAAqB;;AAErB;AACA,qBAAqB;AACrB;AACA;AACA;AACA,8BAA8B;AAC9B;AACA,iBAAiB;AACjB;AACA;AACA;AACA,qIAAqI;AACrI;AACA;AACA,wBAAwB;AACxB;AACA,+BAA+B;AAC/B;AACA,mBAAmB;AACnB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA,wBAAwB,EAAE;AAC1B;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,kCAAkC,EAAE;AACpC;AACA;AACA;AACA,mBAAmB;AACnB;AACA,0BAA0B,EAAE;AAC5B;AACA;AACA;AACA,mBAAmB;AACnB;AACA,qBAAqB;AACrB;AACA,0BAA0B,EAAE;;AAE5B;AACA;AACA;AACA;AACA,0BAA0B;;AAE1B;AACA,sBAAsB;;AAEtB;AACA,wBAAwB;;AAExB;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA,yBAAyB;;AAEzB;AACA,uBAAuB;;AAEvB;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA,iCAAiC;AACjC;AACA;AACA;AACA,sCAAsC,EAAE;AACxC;AACA;AACA;AACA,sCAAsC,EAAE;AACxC;AACA;AACA,2BAA2B;AAC3B;AACA;AACA;AACA,gCAAgC;AAChC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,eAAe;AACf;AACA;AACA,eAAe;AACf;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA,sBAAsB,EAAE;AACxB;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA,cAAc;AACd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA,8BAA8B;;AAE9B;AACA;AACA,4BAA4B;;AAE5B;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA,qBAAqB;AACrB;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA,sBAAsB;;AAEtB;AACA,mBAAmB;;AAEnB;AACA,sBAAsB;;AAEtB;AACA,mBAAmB;;AAEnB;AACA,oBAAoB;;AAEpB;AACA,uBAAuB;;AAEvB;AACA,oBAAoB;;AAEpB;AACA,uBAAuB;AACvB;AACA,uBAAuB;AACvB;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA,0BAA0B;AAC1B;AACA;AACA;AACA;AACA,4BAA4B;AAC5B;AACA,wBAAwB;;AAExB;AACA;AACA;AACA;AACA;AACA;AACA,YAAY;AACZ;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sCAAsC,EAAE;AACxC;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA;AACA,sBAAsB,EAAE;AACxB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mGAAmG;AACnG;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,0BAA0B,EAAE;AAC5B;AACA;AACA;AACA;AACA,4BAA4B;AAC5B;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,sBAAsB,EAAE;AACxB;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA,4BAA4B;;AAE5B;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,qBAAqB;AACrB;AACA,oBAAoB;AACpB;AACA,uBAAuB;AACvB;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA,uBAAuB;AACvB;AACA;AACA,uBAAuB;;AAEvB;AACA,wBAAwB;;AAExB;AACA,wBAAwB;AACxB;AACA;AACA;AACA,kDAAkD;AAClD,kDAAkD;AAClD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB,EAAE;;AAEzB;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA,qBAAqB;AACrB;AACA;AACA,wBAAwB;AACxB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,mBAAmB;;AAEnB;AACA,mBAAmB;AACnB;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA,aAAa;AACb;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA,mCAAmC;AACnC;AACA,mCAAmC;AACnC;AACA,mCAAmC;AACnC;AACA,mCAAmC;AACnC;AACA,mCAAmC,EAAE;;AAErC;AACA;AACA;AACA,kBAAkB;;AAElB;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA,cAAc;;AAEd;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,qBAAqB;;AAErB;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA;AACA,mCAAmC;;AAEnC;AACA;AACA;AACA,wBAAwB;;AAExB;AACA;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY;;AAEZ;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY;;AAEZ;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2CAA2C;AAC3C;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA,gBAAgB,EAAE;;AAElB;AACA;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA,oBAAoB;AACpB;AACA,mBAAmB;AACnB;AACA,yBAAyB;AACzB;AACA;AACA,iBAAiB;AACjB;AACA;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC;AAClC;AACA,6BAA6B,EAAE;;AAE/B;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA,2BAA2B;;AAE3B;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA,2BAA2B;;AAE3B;AACA;AACA,oBAAoB;AACpB;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,4BAA4B;;AAE5B;AACA;AACA,oBAAoB;AACpB;AACA,uBAAuB;AACvB;AACA;AACA,iCAAiC,EAAE;;AAEnC;AACA;AACA,cAAc;;AAEd;AACA;AACA,yBAAyB;;AAEzB;AACA,cAAc;;AAEd;AACA,yBAAyB;;AAEzB;AACA,8BAA8B;;AAE9B;AACA,0BAA0B;;AAE1B;AACA,4BAA4B;;AAE5B;AACA,kBAAkB;;AAElB;AACA,kBAAkB;;AAElB;AACA,kBAAkB;;AAElB;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,qBAAqB;;AAErB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA,uBAAuB;AACvB;AACA,oBAAoB;AACpB;AACA;AACA,kBAAkB;AAClB;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA,qBAAqB;AACrB;AACA,sBAAsB;AACtB;AACA;AACA,qBAAqB;AACrB;AACA;AACA,uBAAuB;AACvB;AACA,mBAAmB;;AAEnB;AACA,mBAAmB;;AAEnB;AACA,eAAe;AACf;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA,yBAAyB;;AAEzB;AACA,iBAAiB;;AAEjB;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA,qCAAqC;AACrC;AACA,qCAAqC;AACrC;AACA,qCAAqC;AACrC;AACA,qCAAqC;AACrC;AACA,qCAAqC,EAAE;;AAEvC;AACA;AACA;AACA;AACA,kBAAkB;;AAElB;AACA;AACA,kBAAkB;AAClB;AACA,gBAAgB;AAChB;AACA;AACA,qBAAqB;AACrB;AACA,sBAAsB;;AAEtB;AACA,2BAA2B;;AAE3B;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA,8BAA8B,EAAE;AAChC;AACA;AACA;AACA;AACA,oCAAoC;AACpC;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA,0BAA0B;;AAE1B;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;;AAEd;AACA;AACA,eAAe;AACf;AACA;AACA,iBAAiB;;AAEjB;AACA,cAAc;;AAEd;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,cAAc;;AAEd;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA;AACA,eAAe;;AAEf;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA;AACA,cAAc;;AAEd;AACA,cAAc;;AAEd;AACA,cAAc;;AAEd;AACA;AACA,sBAAsB;;AAEtB;AACA,cAAc;;AAEd;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA,mBAAmB;AACnB;AACA,gBAAgB;AAChB;AACA;AACA,gBAAgB;AAChB;AACA;AACA,6BAA6B;AAC7B;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA,6BAA6B;AAC7B;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA;AACA;AACA;AACA,qCAAqC;AACrC;AACA,gCAAgC;AAChC;AACA,gCAAgC;AAChC;AACA,gCAAgC;AAChC;AACA,gCAAgC;AAChC;AACA,gCAAgC;AAChC;AACA;AACA,gCAAgC;;AAEhC;AACA,gBAAgB;AAChB;AACA,kBAAkB;AAClB;AACA;AACA,eAAe;AACf;AACA,qBAAqB;AACrB;AACA,sBAAsB;AACtB;AACA,0BAA0B;AAC1B;AACA,0BAA0B;AAC1B;AACA,0BAA0B;;AAE1B;AACA;AACA,kBAAkB;AAClB;AACA,oBAAoB;AACpB;AACA;AACA,wBAAwB,EAAE;AAC1B;AACA,uBAAuB;AACvB;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA,2BAA2B;AAC3B;AACA,2BAA2B;AAC3B;AACA,8BAA8B;AAC9B;AACA,8BAA8B;AAC9B;AACA,2BAA2B;AAC3B;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,gBAAgB;AAChB;AACA,gBAAgB;AAChB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA,gBAAgB;AAChB;AACA,kEAAkE;AAClE;AACA,kEAAkE;AAClE;AACA,kEAAkE;AAClE;AACA,kEAAkE;AAClE;AACA,kEAAkE;AAClE;AACA,kEAAkE;AAClE;AACA,sHAAsH;AACtH;AACA,kEAAkE;AAClE;AACA,+EAA+E;AAC/E;AACA,+EAA+E;AAC/E;AACA,+EAA+E;AAC/E;AACA,kEAAkE;AAClE;AACA,+EAA+E;AAC/E;AACA,kEAAkE;AAClE;AACA,kEAAkE;AAClE;AACA,kEAAkE;AAClE;AACA,kEAAkE;AAClE;AACA,kEAAkE;;AAElE;AACA;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA,kBAAkB;;AAElB;AACA;AACA,kBAAkB;;AAElB;AACA;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA,kBAAkB;;AAElB;AACA,qBAAqB;;AAErB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,oBAAoB;;AAEpB;AACA,gBAAgB;;AAEhB;AACA,cAAc;;ACtwDd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA,sBAAsB;;AAEtB;AACA;AACA,kBAAkB;;AAElB;AACA,mBAAmB;;AAEnB;AACA;AACA,mBAAmB;;AAEnB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,eAAe;AACf;AACA,gBAAgB;AAChB;AACA;AACA;AACA,yBAAyB;AACzB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,qBAAqB;AACrB;AACA;AACA,uBAAuB;AACvB;AACA,yBAAyB,EAAE;AAC3B;AACA;AACA,uBAAuB;AACvB;AACA,yBAAyB,EAAE;AAC3B;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,iBAAiB;;AAEjB;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA,0BAA0B;;AAE1B;AACA;AACA,4BAA4B;;AAE5B;AACA,wBAAwB;;AAExB;AACA,sBAAsB;AACtB;AACA,oBAAoB;;AAEpB;AACA,iBAAiB;;AAEjB;AACA,kBAAkB;;AAElB;AACA;AACA;AACA,sBAAsB,EAAE;;AAExB;AACA;AACA;AACA,sBAAsB,EAAE;;AAExB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA,cAAc;;AAEd;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA,kBAAkB;;AAElB;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA,oBAAoB;;AAEpB;AACA,0BAA0B;;AAE1B;AACA;AACA;AACA,cAAc;AACd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA,sBAAsB;AACtB;AACA,2BAA2B;AAC3B;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,iBAAiB;AACjB;AACA;AACA,mBAAmB;AACnB;AACA,uBAAuB;AACvB;AACA;AACA,wBAAwB;AACxB;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,kBAAkB;AAClB;AACA,qBAAqB;AACrB;AACA,kBAAkB;AAClB;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA,8BAA8B;AAC9B;AACA;AACA;AACA;AACA,8BAA8B;AAC9B;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yCAAyC;AACzC;AACA;AACA,gCAAgC;AAChC;AACA,kCAAkC;AAClC;AACA,6BAA6B;AAC7B;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA,qBAAqB;AACrB;AACA;AACA,8BAA8B;AAC9B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA;AACA,8BAA8B;AAC9B;AACA;AACA;AACA;AACA;AACA,cAAc;AACd;AACA,oBAAoB;AACpB;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,2BAA2B;AAC3B;AACA;AACA,gCAAgC;AAChC;AACA;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA,kBAAkB;AAClB;AACA,kBAAkB;AAClB;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA;AACA,cAAc;AACd;AACA;AACA,kBAAkB;AAClB;AACA,gBAAgB;AAChB;AACA,eAAe;AACf;AACA,qBAAqB;AACrB;AACA,eAAe;AACf;AACA,eAAe;AACf;AACA,qBAAqB;AACrB;AACA,qBAAqB;AACrB;AACA,iBAAiB;AACjB;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA,iCAAiC;AACjC;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA,wBAAwB;;AAExB;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA,mBAAmB;;AAEnB;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;AACb;AACA;AACA;AACA,0BAA0B;AAC1B;AACA,qBAAqB;AACrB;AACA;AACA,iBAAiB,EAAE;AACnB;AACA;AACA;AACA,qCAAqC;AACrC;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA,qCAAqC;AACrC;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA,sBAAsB;AACtB;AACA;AACA,qBAAqB;AACrB;AACA,qBAAqB;AACrB;AACA,kBAAkB;AAClB;AACA,mBAAmB;;AAEnB;AACA,wBAAwB;;AAExB;AACA;AACA,gBAAgB;AAChB;AACA,kBAAkB;AAClB;AACA,qBAAqB;;AAErB;AACA;AACA,YAAY;;AAEZ;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA,iCAAiC;;AAEjC;AACA,gDAAgD;;AAEhD;AACA,gDAAgD;;AAEhD;AACA,gDAAgD;;AAEhD;AACA,gDAAgD;;AAEhD;AACA,gDAAgD;;AAEhD;AACA,gDAAgD;;AAEhD;AACA,gDAAgD;AAChD;AACA,uBAAuB;;AAEvB;AACA,eAAe;;AAEf;AACA;AACA;AACA;AACA;AACA,uCAAuC;AACvC;AACA;AACA;AACA,8BAA8B,EAAE;AAChC;AACA;AACA,8CAA8C;AAC9C;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wBAAwB,EAAE;AAC1B;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,cAAc;AACd;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB,EAAE;;AAErB;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA,aAAa;AACb;AACA;AACA,yBAAyB;AACzB;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA,4BAA4B,EAAE;AAC9B;AACA;AACA,6BAA6B;;AAE7B;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA,kBAAkB;;AAElB;AACA,2BAA2B;;AAE3B;AACA;AACA,kBAAkB;;AAElB;AACA;AACA,sBAAsB;;AAEtB;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA;AACA,YAAY;AACZ;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA,wBAAwB,EAAE;AAC1B;AACA,uBAAuB;;AAEvB;AACA,YAAY;;AAEZ;AACA,qBAAqB;AACrB;AACA,iBAAiB;AACjB;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA,wBAAwB;AACxB;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA,mBAAmB,EAAE;;AAErB;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA,mBAAmB;;AAEnB;AACA,sBAAsB;AACtB;AACA,oBAAoB;;AAEpB;AACA,kBAAkB;;AAElB;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA,aAAa;;AAEb;AACA;AACA,iBAAiB;;AAEjB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA,wBAAwB;;AAExB;AACA;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA,0BAA0B;;AAE1B;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA,mBAAmB;;AAEnB;AACA,gBAAgB;;AAEhB;AACA,iBAAiB;;AAEjB;AACA;AACA,mBAAmB,EAAE;;AAErB;AACA;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA,gBAAgB,EAAE;;AAElB;AACA;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA,mCAAmC;;AAEnC;AACA;AACA;AACA;AACA,kBAAkB;;AAElB;AACA,YAAY;;AAEZ;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA,cAAc;;AAEd;AACA,gBAAgB;;AAEhB;AACA;AACA,aAAa;;AAEb;AACA;AACA,qBAAqB;;AAErB;AACA;AACA,sBAAsB;;AAEtB;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA,cAAc;AACd;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA,qBAAqB;;AAErB;AACA,gBAAgB;;AAEhB;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,kBAAkB;;AAElB;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA,kBAAkB;;AAElB;AACA,wBAAwB;;AAExB;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA,iBAAiB;;AAEjB;AACA;AACA,gCAAgC;;AAEhC;AACA;AACA,oBAAoB;;AAEpB;AACA,iBAAiB;;AAEjB;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA;AACA,mCAAmC;;AAEnC;AACA,8BAA8B;;AAE9B;AACA,wBAAwB;;AAExB;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA,gBAAgB;;AAEhB;AACA,YAAY;;AAEZ;AACA;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,kBAAkB;;AAElB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,kBAAkB;AAClB;AACA,oBAAoB;AACpB;AACA;AACA,uBAAuB;;AAEvB;AACA,iBAAiB;;AAEjB;AACA,kBAAkB;;AAElB;AACA,sBAAsB;AACtB;AACA,oBAAoB;;AAEpB;AACA,kBAAkB;;AAElB;AACA;AACA,uBAAuB;AACvB;AACA,uBAAuB;AACvB;AACA;AACA,uBAAuB,EAAE;;AAEzB;AACA;AACA;AACA,eAAe;AACf;AACA;AACA;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA,wBAAwB;AACxB;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,sBAAsB;AACtB;AACA,sBAAsB;;AAEtB;AACA;AACA,eAAe;;AAEf;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA,oBAAoB;;AAEpB;AACA,aAAa;;AAEb;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA,0BAA0B;;AAE1B;AACA,aAAa;;AAEb;AACA,mBAAmB;;AAEnB;AACA;AACA,kCAAkC;;AAElC;AACA;AACA;AACA;AACA;AACA,kBAAkB;;AAElB;AACA,eAAe;AACf;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA;AACA,iCAAiC;;AAEjC;AACA;AACA,aAAa;;AAEb;AACA,sBAAsB;AACtB;AACA,0CAA0C;;AAE1C;AACA;AACA,sBAAsB;AACtB;AACA,kBAAkB;;AAElB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA,eAAe;AACf;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA;AACA;AACA,2BAA2B;;AAE3B;AACA,sBAAsB;AACtB;AACA,mBAAmB;;AAEnB;AACA,YAAY;AACZ;AACA,8BAA8B;AAC9B;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA,0BAA0B;AAC1B;AACA,uBAAuB;AACvB;AACA;AACA;AACA,4BAA4B;AAC5B;AACA,yBAAyB,EAAE;;AAE3B;AACA;AACA;AACA,mBAAmB;AACnB;AACA,iBAAiB;AACjB;AACA,qBAAqB;;AAErB;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA,wBAAwB;;AAExB;AACA;AACA;AACA,cAAc;;AAEd;AACA,cAAc;;AAEd;AACA;AACA,cAAc;AACd;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,6BAA6B;;AAE7B;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA,qBAAqB;;AAErB;AACA,iBAAiB;;AAEjB;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iCAAiC;AACjC;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA,mBAAmB;AACnB;AACA,mBAAmB;AACnB;AACA;AACA,wBAAwB;AACxB;AACA,kBAAkB;AAClB;AACA,0BAA0B,EAAE;;AAE5B;AACA,gCAAgC;AAChC;AACA,kCAAkC;;AAElC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA,gBAAgB;;ACz7ChB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA,mBAAmB;;AAEnB;AACA,YAAY;;AAEZ;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA,oBAAoB;AACpB;AACA,iBAAiB;;AAEjB;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA,qBAAqB;AACrB;AACA;AACA,gBAAgB;AAChB;AACA,gBAAgB;;AAEhB;AACA,4BAA4B;AAC5B;AACA,6BAA6B;AAC7B;AACA,0BAA0B;AAC1B;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,gBAAgB;;AC9KhB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA,oBAAoB,EAAE;;AAEtB;AACA;AACA,sBAAsB;AACtB;AACA;AACA,sBAAsB;AACtB;AACA,qBAAqB;AACrB;AACA;AACA,sBAAsB,EAAE;;AAExB;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA;AACA,wCAAwC,EAAE;AAC1C;AACA;AACA,mBAAmB,EAAE;AACrB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA,yBAAyB,EAAE;AAC3B;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA,oBAAoB,EAAE;AACtB;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,oBAAoB;AACpB;AACA;AACA,qBAAqB,EAAE;;AAEvB;AACA;AACA,cAAc;AACd;AACA;AACA;AACA,qBAAqB,EAAE;;AAEvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY;AACZ;AACA;AACA,gBAAgB;AAChB;AACA,eAAe,EAAE;;AAEjB;AACA;AACA,UAAU;AACV;AACA;AACA,kBAAkB,EAAE;;AAEpB;AACA;AACA;AACA;AACA,iBAAiB,EAAE;AACnB;AACA;AACA,kBAAkB,EAAE;;AAEpB;AACA;AACA,UAAU;AACV;AACA;AACA,iBAAiB,EAAE;;AAEnB;AACA;AACA;AACA,gBAAgB,EAAE;;AAElB;AACA;AACA;AACA,uBAAuB,EAAE;;AAEzB;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA,8BAA8B;;AAE9B;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA,kBAAkB,EAAE;;AAEpB;AACA;AACA;AACA,mCAAmC,EAAE;;AAErC;AACA;AACA,oCAAoC,EAAE;;AAEtC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA,aAAa,EAAE;;AAEf;AACA;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA,qBAAqB,EAAE;;AAEvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA,cAAc;;AAEd;AACA,gBAAgB;AAChB;AACA;AACA,oBAAoB,EAAE;AACtB;AACA,qBAAqB;AACrB;AACA,uBAAuB;AACvB;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA,wBAAwB,EAAE;AAC1B;AACA,aAAa;AACb;AACA;AACA,uBAAuB,EAAE;;AAEzB;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA,yBAAyB,EAAE;AAC3B;AACA,kBAAkB;AAClB;AACA;AACA,uBAAuB,EAAE;;AAEzB;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA,0BAA0B,EAAE;;AAE5B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB,EAAE;;AAE3B;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA,8BAA8B;AAC9B;AACA,sBAAsB;;AAEtB;AACA,oBAAoB;;AAEpB;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA,4BAA4B;AAC5B;AACA,oBAAoB;AACpB;AACA,sEAAsE;AACtE;AACA,sEAAsE;AACtE;AACA,sEAAsE;AACtE;AACA,sEAAsE;AACtE;AACA,sEAAsE;AACtE;AACA,sEAAsE;AACtE;AACA,sEAAsE;AACtE;AACA,sEAAsE,EAAE;;AAExE;AACA;AACA,sBAAsB;AACtB;AACA,kBAAkB;AAClB;AACA;AACA,6BAA6B,EAAE;AAC/B;AACA,yBAAyB;AACzB;AACA,kBAAkB;AAClB;AACA;AACA,sBAAsB,EAAE;;AAExB;AACA;AACA;AACA;AACA;AACA;AACA,mCAAmC;AACnC;AACA,kBAAkB;AAClB;AACA;AACA;AACA,wBAAwB;AACxB;AACA,kBAAkB;AAClB;AACA;AACA;AACA,mBAAmB,EAAE;AACrB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,0BAA0B;AAC1B;AACA,oBAAoB;AACpB;AACA,uCAAuC;AACvC;AACA;AACA;AACA,uBAAuB,EAAE;;AAEzB;AACA;AACA;AACA;AACA;AACA,aAAa;;AAEb;AACA,oBAAoB;AACpB;AACA;AACA,mBAAmB;AACnB;AACA;AACA,qBAAqB;AACrB;AACA,uBAAuB,EAAE;;AAEzB;AACA,mBAAmB;AACnB;AACA;AACA;AACA,uBAAuB,EAAE;AACzB;AACA,eAAe;;AAEf;AACA,iBAAiB;;AAEjB;AACA,qBAAqB;;AAErB;AACA,oBAAoB;;AAEpB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,qCAAqC;AACrC;AACA,kBAAkB;;AAElB;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,aAAa;AACb;AACA,qBAAqB;;AAErB;AACA;AACA;AACA,4BAA4B;AAC5B;AACA,yBAAyB;;AAEzB;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,cAAc;AACd;AACA,sBAAsB;;AAEtB;AACA;AACA;AACA;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA,UAAU;AACV;AACA;AACA,kBAAkB,EAAE;;AAEpB;AACA;AACA;AACA;AACA,iBAAiB,EAAE;AACnB;AACA;AACA,kBAAkB,EAAE;;AAEpB;AACA;AACA,UAAU;AACV;AACA;AACA,iBAAiB,EAAE;;AAEnB;AACA;AACA;AACA,gBAAgB,EAAE;;AAElB;AACA;AACA;AACA,uBAAuB,EAAE;;AAEzB;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gFAAgF,EAAE;AAClF;AACA;AACA,8BAA8B,EAAE;AAChC;AACA;AACA,eAAe;AACf;AACA,kCAAkC,EAAE;;AAEpC;AACA;AACA,8BAA8B,EAAE;;AAEhC;AACA,eAAe;;AAEf;AACA,0BAA0B;;AAE1B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,0BAA0B;AAC1B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd;AACA;AACA,cAAc;AACd;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB,EAAE;;AAExB;AACA,4BAA4B;;AAE5B;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,oBAAoB,EAAE;;AAEtB;AACA,kCAAkC;AAClC;AACA;AACA,mBAAmB,EAAE;;AAErB;AACA;AACA,qCAAqC,EAAE;;AAEvC;AACA;AACA;AACA,yBAAyB;;AAEzB;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,iBAAiB;AACjB;AACA,qBAAqB;AACrB;AACA,qBAAqB;AACrB;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B;;AAE5B;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;AACb;AACA,qBAAqB;AACrB;AACA;AACA,qBAAqB;;AAErB;AACA,oBAAoB;;AAEpB;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA,gCAAgC;AAChC;AACA,qCAAqC;AACrC;AACA;AACA;AACA,cAAc;AACd;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA,kBAAkB;;AAElB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gCAAgC;;AAEhC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,2BAA2B;AAC3B;AACA;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA,cAAc;AACd;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA;AACA;AACA,eAAe;AACf;AACA,kBAAkB;AAClB;AACA,8BAA8B;AAC9B;AACA;AACA,4BAA4B;AAC5B;AACA,wBAAwB;;AAExB;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA,sBAAsB;AACtB;AACA;AACA,sBAAsB,EAAE;;AAExB;AACA,aAAa;;AAEb;AACA,qBAAqB;;AAErB;AACA;AACA,cAAc;AACd;AACA;AACA,kBAAkB,EAAE;;AAEpB;AACA,mBAAmB;;AAEnB;AACA;AACA,YAAY;;AAEZ;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,oBAAoB;;AAEpB;AACA;AACA,eAAe;;AAEf;AACA;AACA;AACA,qBAAqB;;AAErB;AACA,cAAc;;AAEd;AACA;AACA,iBAAiB,EAAE;;AAEnB;AACA,mBAAmB;;AAEnB;AACA,iBAAiB;;AAEjB;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA,kBAAkB;AAClB;AACA,cAAc;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA,uBAAuB;AACvB;AACA,wEAAwE;AACxE;AACA,wEAAwE;AACxE;AACA,wEAAwE;AACxE;AACA,wEAAwE;AACxE;AACA,wEAAwE;AACxE;AACA,wEAAwE;AACxE;AACA,wEAAwE;AACxE;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2CAA2C;AAC3C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,0CAA0C;AAC1C;AACA,oEAAoE;AACpE;AACA,oEAAoE;AACpE;AACA,oEAAoE;AACpE;AACA,oEAAoE;AACpE;AACA,oEAAoE;AACpE;AACA,oEAAoE;AACpE;AACA,oEAAoE;AACpE;AACA,oEAAoE;;AAEpE;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA,oBAAoB;AACpB;AACA;AACA;AACA,oBAAoB;AACpB;AACA,kCAAkC;AAClC;AACA;AACA,mBAAmB,EAAE;;AAErB;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA,yBAAyB,EAAE;AAC3B;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,aAAa;;AAEb;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA,mCAAmC,EAAE;AACrC;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA,qIAAqI;AACrI;AACA;AACA,uBAAuB,EAAE;;AAEzB;AACA;AACA;AACA;AACA,eAAe;;AAEf;AACA;AACA,cAAc;;AAEd;AACA,YAAY;;AAEZ;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA,0BAA0B,EAAE;AAC5B;AACA;AACA;AACA,wBAAwB;;AAExB;AACA,qBAAqB;;AAErB;AACA;AACA,mBAAmB;;AAEnB;AACA,gCAAgC;AAChC;AACA,qCAAqC;AACrC;AACA;AACA;AACA,cAAc;AACd;AACA;AACA,kCAAkC;;AAElC;AACA,0BAA0B;AAC1B;AACA;AACA,wBAAwB,EAAE;AAC1B;AACA;AACA,uBAAuB,EAAE;;AAEzB;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA,0BAA0B,EAAE;;AAE5B;AACA;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB,EAAE;;AAE3B;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA,WAAW;;AAEX;AACA;AACA,iBAAiB,EAAE;;AAEnB;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA,eAAe,EAAE;;AAEjB;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA,sBAAsB;AACtB;AACA,kBAAkB;AAClB;AACA,kBAAkB;AAClB;AACA;AACA,cAAc;AACd;AACA;AACA,6BAA6B;AAC7B;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gCAAgC,EAAE;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B,EAAE;AAC9B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qCAAqC;AACrC;AACA;AACA,sCAAsC;AACtC;AACA;AACA,sCAAsC;AACtC;AACA;AACA,sCAAsC;AACtC;AACA;AACA,sCAAsC;AACtC;AACA;AACA,sCAAsC;AACtC;AACA;AACA,sCAAsC;AACtC;AACA;AACA,sCAAsC;AACtC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oCAAoC;AACpC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sCAAsC;AACtC;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gCAAgC,EAAE;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA,4BAA4B;AAC5B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2CAA2C;AAC3C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B,EAAE;AAC9B;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wCAAwC;AACxC;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,6BAA6B;AAC7B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8BAA8B,EAAE;AAChC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qCAAqC;AACrC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qCAAqC;AACrC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qCAAqC;;AAErC;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mCAAmC,EAAE;;AAErC;AACA;AACA,mCAAmC;AACnC;AACA,wBAAwB,EAAE;;AAE1B;AACA;AACA,eAAe;;AAEf;AACA,cAAc;;AAEd;AACA,eAAe;;AAEf;AACA,mBAAmB;AACnB;AACA,sBAAsB;AACtB;AACA,oBAAoB;;ACzqEpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,qBAAqB;AACrB;AACA,mBAAmB;;AAEnB;AACA,gBAAgB;;AAEhB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,mBAAmB;;AAEnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA,qBAAqB;AACrB;AACA,uBAAuB;AACvB;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA,gCAAgC;;AAEhC;AACA,qBAAqB;;AAErB;AACA;AACA;AACA;AACA;AACA,YAAY;;AC7HZ;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;;AAEhB;AACA;AACA,sBAAsB;;AAEtB;AACA;AACA,eAAe;;AAEf;AACA,YAAY;;AAEZ;AACA;AACA;AACA;AACA,YAAY;AACZ;AACA,iBAAiB;;AC/EjB,6DAA6D,UAAU,mGAAmG,YAAY,gBAAgB,8CAA8C,gBAAgB,cAAc,8BAA8B,YAAY,gBAAgB,qCAAqC,YAAY,kBAAkB,MAAM,OAAO,6CAA6C,aAAa,4CAA4C,iBAAiB,oBAAoB,YAAY,iFAAiF,cAAc,+CAA+C,UAAU,0BAA0B,qCAAqC,gBAAgB,MAAM,qCAAqC,eAAe,6HAA6H,YAAY,kBAAkB,MAAM,SAAS,QAAQ,OAAO,2DAA2D,yBAAyB,kDAAkD,YAAY,qDAAqD,YAAY,sCAAsC,aAAa,kBAAkB,WAAW,gBAAgB,yBAAyB,sBAAsB,iBAAiB,YAAY,kBAAkB,MAAM,OAAO,SAAS,QAAQ,0BAA0B,aAAa,0CAA0C,wBAAwB,gBAAgB,MAAM,YAAY,oCAAoC,YAAY,sBAAsB,wBAAwB,gBAAgB,uEAAuE,gBAAgB,SAAS,UAAU,kEAAkE,qBAAqB,0CAA0C,WAAW,gIAAgI,SAAS,8BAA8B,6BAA6B,qBAAqB,WAAW,YAAY,gBAAgB,UAAU,kBAAkB,UAAU,4BAA4B,gqBAAgqB,sBAAsB,4CAA4C,sBAAsB,cAAc,UAAU,yCAAyC,2DAA2D,aAAa,yBAAyB,SAAS,eAAe,4CAA4C,aAAa,aAAa,+BAA+B,WAAW,kBAAkB,gCAAgC,YAAY,iBAAiB,0IAA0I,mBAAmB,mnBAAmnB,kBAAkB,MAAM,QAAQ,SAAS,OAAO,WAAW,YAAY,0nBAA0nB,WAAW,cAAc,gBAAgB,kBAAkB,aAAa,wCAAwC","file":"../css/laraberg.css","sourcesContent":["/**\n * Colors\n */\n/**\n * Breakpoints & Media Queries\n */\n/**\n * Colors\n */\n/**\n * Fonts & basic variables.\n */\n/**\n * Grid System.\n * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/\n */\n/**\n * Dimensions.\n */\n/**\n * Shadows.\n */\n/**\n * Editor widths.\n */\n/**\n * Block UI.\n */\n/**\n * Border radii.\n */\n/**\n * Breakpoint mixins\n */\n/**\n * Long content fade mixin\n *\n * Creates a fading overlay to signify that the content is longer\n * than the space allows.\n */\n/**\n * Focus styles.\n */\n/**\n * Applies editor left position to the selector passed as argument\n */\n/**\n * Styles that are reused verbatim in a few places\n */\n/**\n * Allows users to opt-out of animations via OS-level preferences.\n */\n/**\n * Reset default styles for JavaScript UI based pages.\n * This is a WP-admin agnostic reset\n */\n/**\n * Reset the WP Admin page styles for Gutenberg-like pages.\n */\n.components-animate__appear {\n animation: components-animate__appear-animation 0.1s cubic-bezier(0, 0, 0.2, 1) 0s;\n animation-fill-mode: forwards; }\n @media (prefers-reduced-motion: reduce) {\n .components-animate__appear {\n animation-duration: 1ms; } }\n .components-animate__appear.is-from-top, .components-animate__appear.is-from-top.is-from-left {\n transform-origin: top left; }\n .components-animate__appear.is-from-top.is-from-right {\n transform-origin: top right; }\n .components-animate__appear.is-from-bottom, .components-animate__appear.is-from-bottom.is-from-left {\n transform-origin: bottom left; }\n .components-animate__appear.is-from-bottom.is-from-right {\n transform-origin: bottom right; }\n\n@keyframes components-animate__appear-animation {\n from {\n transform: translateY(-2em) scaleY(0) scaleX(0); }\n to {\n transform: translateY(0%) scaleY(1) scaleX(1); } }\n\n.components-animate__slide-in {\n animation: components-animate__slide-in-animation 0.1s cubic-bezier(0, 0, 0.2, 1);\n animation-fill-mode: forwards; }\n @media (prefers-reduced-motion: reduce) {\n .components-animate__slide-in {\n animation-duration: 1ms; } }\n .components-animate__slide-in.is-from-left {\n transform: translateX(100%); }\n .components-animate__slide-in.is-from-right {\n transform: translateX(-100%); }\n\n@keyframes components-animate__slide-in-animation {\n 100% {\n transform: translateX(0%); } }\n\n.components-animate__loading {\n animation: components-animate__loading 1.6s ease-in-out infinite; }\n\n@keyframes components-animate__loading {\n 0% {\n opacity: 0.5; }\n 50% {\n opacity: 1; }\n 100% {\n opacity: 0.5; } }\n\n.components-angle-picker-control {\n width: 50%; }\n .components-angle-picker-control.components-base-control .components-base-control__label {\n display: block; }\n\n.components-angle-picker-control__input-field {\n width: calc(100% - 36px);\n max-width: 100px; }\n\n.components-angle-picker-control__angle-circle {\n width: 28px;\n height: 28px;\n border: 2px solid #555d66;\n border-radius: 50%;\n float: left;\n margin-right: 4px;\n cursor: grab; }\n\n.components-angle-picker-control__angle-circle-indicator-wrapper {\n position: relative;\n width: 100%;\n height: 100%; }\n\n.components-angle-picker-control__angle-circle-indicator {\n width: 1px;\n height: 1px;\n border-radius: 50%;\n border: 3px solid #555d66;\n display: block;\n position: absolute;\n top: -14px;\n bottom: 0;\n left: 0;\n right: 0;\n margin: auto;\n background: #555d66; }\n\n.components-autocomplete__popover .components-popover__content {\n padding: 16px; }\n\n.components-autocomplete__result.components-button {\n display: flex;\n height: auto;\n min-height: 36px;\n text-align: left;\n width: 100%; }\n .components-autocomplete__result.components-button.is-selected {\n box-shadow: 0 0 0 2px rgb(0, 124, 186); }\n body.admin-color-sunrise .components-autocomplete__result.components-button.is-selected {\n box-shadow: 0 0 0 2px rgb(209, 134, 74); }\n body.admin-color-ocean .components-autocomplete__result.components-button.is-selected {\n box-shadow: 0 0 0 2px rgb(163, 185, 162); }\n body.admin-color-midnight .components-autocomplete__result.components-button.is-selected {\n box-shadow: 0 0 0 2px rgb(225, 77, 67); }\n body.admin-color-ectoplasm .components-autocomplete__result.components-button.is-selected {\n box-shadow: 0 0 0 2px rgb(167, 182, 86); }\n body.admin-color-coffee .components-autocomplete__result.components-button.is-selected {\n box-shadow: 0 0 0 2px rgb(194, 166, 140); }\n body.admin-color-blue .components-autocomplete__result.components-button.is-selected {\n box-shadow: 0 0 0 2px rgb(217, 171, 89); }\n body.admin-color-light .components-autocomplete__result.components-button.is-selected {\n box-shadow: 0 0 0 2px rgb(0, 133, 186); }\n\n.components-base-control {\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px; }\n .components-base-control .components-base-control__field {\n margin-bottom: 8px; }\n .components-panel__row .components-base-control .components-base-control__field {\n margin-bottom: inherit; }\n .components-base-control .components-base-control__label {\n display: inline-block;\n margin-bottom: 8px; }\n .components-base-control .components-base-control__help {\n margin-top: -8px;\n font-style: italic; }\n\n.components-button-group {\n display: inline-block; }\n .components-button-group .components-button {\n border-radius: 0;\n display: inline-flex;\n color: #007cba;\n box-shadow: inset 0 0 0 1px #007cba; }\n body.admin-color-sunrise .components-button-group .components-button {\n color: #d1864a;\n box-shadow: inset 0 0 0 1px #d1864a; }\n body.admin-color-ocean .components-button-group .components-button {\n color: #a3b9a2;\n box-shadow: inset 0 0 0 1px #a3b9a2; }\n body.admin-color-midnight .components-button-group .components-button {\n color: #e14d43;\n box-shadow: inset 0 0 0 1px #e14d43; }\n body.admin-color-ectoplasm .components-button-group .components-button {\n color: #a7b656;\n box-shadow: inset 0 0 0 1px #a7b656; }\n body.admin-color-coffee .components-button-group .components-button {\n color: #c2a68c;\n box-shadow: inset 0 0 0 1px #c2a68c; }\n body.admin-color-blue .components-button-group .components-button {\n color: #d9ab59;\n box-shadow: inset 0 0 0 1px #d9ab59; }\n body.admin-color-light .components-button-group .components-button {\n color: #0085ba;\n box-shadow: inset 0 0 0 1px #0085ba; }\n .components-button-group .components-button + .components-button {\n margin-left: -1px; }\n .components-button-group .components-button:first-child {\n border-radius: 2px 0 0 2px; }\n .components-button-group .components-button:last-child {\n border-radius: 0 2px 2px 0; }\n .components-button-group .components-button:focus, .components-button-group .components-button.is-primary {\n position: relative;\n z-index: 1; }\n .components-button-group .components-button.is-primary {\n box-shadow: inset 0 0 0 1px #007cba; }\n body.admin-color-sunrise .components-button-group .components-button.is-primary {\n box-shadow: inset 0 0 0 1px #d1864a; }\n body.admin-color-ocean .components-button-group .components-button.is-primary {\n box-shadow: inset 0 0 0 1px #a3b9a2; }\n body.admin-color-midnight .components-button-group .components-button.is-primary {\n box-shadow: inset 0 0 0 1px #e14d43; }\n body.admin-color-ectoplasm .components-button-group .components-button.is-primary {\n box-shadow: inset 0 0 0 1px #a7b656; }\n body.admin-color-coffee .components-button-group .components-button.is-primary {\n box-shadow: inset 0 0 0 1px #c2a68c; }\n body.admin-color-blue .components-button-group .components-button.is-primary {\n box-shadow: inset 0 0 0 1px #d9ab59; }\n body.admin-color-light .components-button-group .components-button.is-primary {\n box-shadow: inset 0 0 0 1px #0085ba; }\n\n.components-button {\n display: inline-flex;\n text-decoration: none;\n font-size: 13px;\n margin: 0;\n border: 0;\n cursor: pointer;\n -webkit-appearance: none;\n background: none;\n transition: box-shadow 0.1s linear;\n height: 36px;\n align-items: center;\n box-sizing: border-box;\n padding: 6px 12px;\n overflow: hidden;\n border-radius: 2px;\n color: #1e1e1e;\n /**\n\t * Primary button style.\n\t */\n /**\n\t * Secondary and tertiary buttons.\n\t */\n /**\n\t * Secondary button style.\n\t */\n /**\n\t * Tertiary buttons.\n\t */\n /**\n\t * Link buttons.\n\t */ }\n @media (prefers-reduced-motion: reduce) {\n .components-button {\n transition-duration: 0s; } }\n .components-button[aria-expanded=\"true\"], .components-button:hover {\n color: #007cba; }\n body.admin-color-sunrise .components-button[aria-expanded=\"true\"], body.admin-color-sunrise .components-button:hover {\n color: #d1864a; }\n body.admin-color-ocean .components-button[aria-expanded=\"true\"], body.admin-color-ocean .components-button:hover {\n color: #a3b9a2; }\n body.admin-color-midnight .components-button[aria-expanded=\"true\"], body.admin-color-midnight .components-button:hover {\n color: #e14d43; }\n body.admin-color-ectoplasm .components-button[aria-expanded=\"true\"], body.admin-color-ectoplasm .components-button:hover {\n color: #a7b656; }\n body.admin-color-coffee .components-button[aria-expanded=\"true\"], body.admin-color-coffee .components-button:hover {\n color: #c2a68c; }\n body.admin-color-blue .components-button[aria-expanded=\"true\"], body.admin-color-blue .components-button:hover {\n color: #d9ab59; }\n body.admin-color-light .components-button[aria-expanded=\"true\"], body.admin-color-light .components-button:hover {\n color: #0085ba; }\n .components-button[aria-disabled=\"true\"]:hover {\n color: initial; }\n .components-button:focus:not(:disabled) {\n box-shadow: 0 0 0 1.5px #007cba;\n outline: 1px solid transparent; }\n body.admin-color-sunrise .components-button:focus:not(:disabled) {\n box-shadow: 0 0 0 1.5px #d1864a; }\n body.admin-color-ocean .components-button:focus:not(:disabled) {\n box-shadow: 0 0 0 1.5px #a3b9a2; }\n body.admin-color-midnight .components-button:focus:not(:disabled) {\n box-shadow: 0 0 0 1.5px #e14d43; }\n body.admin-color-ectoplasm .components-button:focus:not(:disabled) {\n box-shadow: 0 0 0 1.5px #a7b656; }\n body.admin-color-coffee .components-button:focus:not(:disabled) {\n box-shadow: 0 0 0 1.5px #c2a68c; }\n body.admin-color-blue .components-button:focus:not(:disabled) {\n box-shadow: 0 0 0 1.5px #d9ab59; }\n body.admin-color-light .components-button:focus:not(:disabled) {\n box-shadow: 0 0 0 1.5px #0085ba; }\n .components-button.is-primary {\n white-space: nowrap;\n background: rgb(0, 124, 186);\n color: #fff;\n text-decoration: none;\n text-shadow: none; }\n body.admin-color-sunrise .components-button.is-primary {\n background: rgb(209, 134, 74); }\n body.admin-color-ocean .components-button.is-primary {\n background: rgb(163, 185, 162); }\n body.admin-color-midnight .components-button.is-primary {\n background: rgb(225, 77, 67); }\n body.admin-color-ectoplasm .components-button.is-primary {\n background: rgb(167, 182, 86); }\n body.admin-color-coffee .components-button.is-primary {\n background: rgb(194, 166, 140); }\n body.admin-color-blue .components-button.is-primary {\n background: rgb(217, 171, 89); }\n body.admin-color-light .components-button.is-primary {\n background: rgb(0, 133, 186); }\n .components-button.is-primary:hover:not(:disabled) {\n background: rgb(0, 112, 167);\n color: #fff; }\n body.admin-color-sunrise .components-button.is-primary:hover:not(:disabled) {\n background: rgb(188, 121, 67); }\n body.admin-color-ocean .components-button.is-primary:hover:not(:disabled) {\n background: rgb(147, 167, 146); }\n body.admin-color-midnight .components-button.is-primary:hover:not(:disabled) {\n background: rgb(203, 69, 60); }\n body.admin-color-ectoplasm .components-button.is-primary:hover:not(:disabled) {\n background: rgb(150, 164, 77); }\n body.admin-color-coffee .components-button.is-primary:hover:not(:disabled) {\n background: rgb(175, 149, 126); }\n body.admin-color-blue .components-button.is-primary:hover:not(:disabled) {\n background: rgb(195, 154, 80); }\n body.admin-color-light .components-button.is-primary:hover:not(:disabled) {\n background: rgb(0, 120, 167); }\n .components-button.is-primary:active:not(:disabled) {\n background: rgb(0, 99, 149);\n border-color: rgb(0, 99, 149);\n color: #fff; }\n body.admin-color-sunrise .components-button.is-primary:active:not(:disabled) {\n background: rgb(167, 107, 59);\n border-color: rgb(167, 107, 59); }\n body.admin-color-ocean .components-button.is-primary:active:not(:disabled) {\n background: rgb(130, 148, 130);\n border-color: rgb(130, 148, 130); }\n body.admin-color-midnight .components-button.is-primary:active:not(:disabled) {\n background: rgb(180, 62, 54);\n border-color: rgb(180, 62, 54); }\n body.admin-color-ectoplasm .components-button.is-primary:active:not(:disabled) {\n background: rgb(134, 146, 69);\n border-color: rgb(134, 146, 69); }\n body.admin-color-coffee .components-button.is-primary:active:not(:disabled) {\n background: rgb(155, 133, 112);\n border-color: rgb(155, 133, 112); }\n body.admin-color-blue .components-button.is-primary:active:not(:disabled) {\n background: rgb(174, 137, 71);\n border-color: rgb(174, 137, 71); }\n body.admin-color-light .components-button.is-primary:active:not(:disabled) {\n background: rgb(0, 106, 149);\n border-color: rgb(0, 106, 149); }\n .components-button.is-primary:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #007cba;\n outline: 1px solid transparent; }\n body.admin-color-sunrise .components-button.is-primary:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #d1864a; }\n body.admin-color-ocean .components-button.is-primary:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #a3b9a2; }\n body.admin-color-midnight .components-button.is-primary:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #e14d43; }\n body.admin-color-ectoplasm .components-button.is-primary:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #a7b656; }\n body.admin-color-coffee .components-button.is-primary:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #c2a68c; }\n body.admin-color-blue .components-button.is-primary:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #d9ab59; }\n body.admin-color-light .components-button.is-primary:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #0085ba; }\n .components-button.is-primary:disabled, .components-button.is-primary:disabled:active:enabled, .components-button.is-primary[aria-disabled=\"true\"], .components-button.is-primary[aria-disabled=\"true\"]:enabled, .components-button.is-primary[aria-disabled=\"true\"]:active:enabled {\n color: rgb(102, 176, 214);\n background: rgb(25, 137, 193);\n border-color: rgb(25, 137, 193);\n opacity: 1; }\n body.admin-color-sunrise .components-button.is-primary:disabled, body.admin-color-sunrise .components-button.is-primary:disabled:active:enabled, body.admin-color-sunrise .components-button.is-primary[aria-disabled=\"true\"], body.admin-color-sunrise .components-button.is-primary[aria-disabled=\"true\"]:enabled, body.admin-color-sunrise .components-button.is-primary[aria-disabled=\"true\"]:active:enabled {\n color: rgb(227, 182, 146);\n background: rgb(214, 146, 92);\n border-color: rgb(214, 146, 92); }\n body.admin-color-ocean .components-button.is-primary:disabled, body.admin-color-ocean .components-button.is-primary:disabled:active:enabled, body.admin-color-ocean .components-button.is-primary[aria-disabled=\"true\"], body.admin-color-ocean .components-button.is-primary[aria-disabled=\"true\"]:enabled, body.admin-color-ocean .components-button.is-primary[aria-disabled=\"true\"]:active:enabled {\n color: rgb(200, 213, 199);\n background: rgb(172, 192, 171);\n border-color: rgb(172, 192, 171); }\n body.admin-color-midnight .components-button.is-primary:disabled, body.admin-color-midnight .components-button.is-primary:disabled:active:enabled, body.admin-color-midnight .components-button.is-primary[aria-disabled=\"true\"], body.admin-color-midnight .components-button.is-primary[aria-disabled=\"true\"]:enabled, body.admin-color-midnight .components-button.is-primary[aria-disabled=\"true\"]:active:enabled {\n color: rgb(237, 148, 142);\n background: rgb(228, 95, 86);\n border-color: rgb(228, 95, 86); }\n body.admin-color-ectoplasm .components-button.is-primary:disabled, body.admin-color-ectoplasm .components-button.is-primary:disabled:active:enabled, body.admin-color-ectoplasm .components-button.is-primary[aria-disabled=\"true\"], body.admin-color-ectoplasm .components-button.is-primary[aria-disabled=\"true\"]:enabled, body.admin-color-ectoplasm .components-button.is-primary[aria-disabled=\"true\"]:active:enabled {\n color: rgb(202, 211, 154);\n background: rgb(176, 189, 103);\n border-color: rgb(176, 189, 103); }\n body.admin-color-coffee .components-button.is-primary:disabled, body.admin-color-coffee .components-button.is-primary:disabled:active:enabled, body.admin-color-coffee .components-button.is-primary[aria-disabled=\"true\"], body.admin-color-coffee .components-button.is-primary[aria-disabled=\"true\"]:enabled, body.admin-color-coffee .components-button.is-primary[aria-disabled=\"true\"]:active:enabled {\n color: rgb(218, 202, 186);\n background: rgb(200, 175, 152);\n border-color: rgb(200, 175, 152); }\n body.admin-color-blue .components-button.is-primary:disabled, body.admin-color-blue .components-button.is-primary:disabled:active:enabled, body.admin-color-blue .components-button.is-primary[aria-disabled=\"true\"], body.admin-color-blue .components-button.is-primary[aria-disabled=\"true\"]:enabled, body.admin-color-blue .components-button.is-primary[aria-disabled=\"true\"]:active:enabled {\n color: rgb(232, 205, 155);\n background: rgb(221, 179, 106);\n border-color: rgb(221, 179, 106); }\n body.admin-color-light .components-button.is-primary:disabled, body.admin-color-light .components-button.is-primary:disabled:active:enabled, body.admin-color-light .components-button.is-primary[aria-disabled=\"true\"], body.admin-color-light .components-button.is-primary[aria-disabled=\"true\"]:enabled, body.admin-color-light .components-button.is-primary[aria-disabled=\"true\"]:active:enabled {\n color: rgb(102, 182, 214);\n background: rgb(25, 145, 193);\n border-color: rgb(25, 145, 193); }\n .components-button.is-primary:disabled:focus:enabled, .components-button.is-primary:disabled:active:enabled:focus:enabled, .components-button.is-primary[aria-disabled=\"true\"]:focus:enabled, .components-button.is-primary[aria-disabled=\"true\"]:enabled:focus:enabled, .components-button.is-primary[aria-disabled=\"true\"]:active:enabled:focus:enabled {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(0, 124, 186); }\n body.admin-color-sunrise .components-button.is-primary:disabled:focus:enabled, body.admin-color-sunrise .components-button.is-primary:disabled:active:enabled:focus:enabled, body.admin-color-sunrise .components-button.is-primary[aria-disabled=\"true\"]:focus:enabled, body.admin-color-sunrise .components-button.is-primary[aria-disabled=\"true\"]:enabled:focus:enabled, body.admin-color-sunrise .components-button.is-primary[aria-disabled=\"true\"]:active:enabled:focus:enabled {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(209, 134, 74); }\n body.admin-color-ocean .components-button.is-primary:disabled:focus:enabled, body.admin-color-ocean .components-button.is-primary:disabled:active:enabled:focus:enabled, body.admin-color-ocean .components-button.is-primary[aria-disabled=\"true\"]:focus:enabled, body.admin-color-ocean .components-button.is-primary[aria-disabled=\"true\"]:enabled:focus:enabled, body.admin-color-ocean .components-button.is-primary[aria-disabled=\"true\"]:active:enabled:focus:enabled {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(163, 185, 162); }\n body.admin-color-midnight .components-button.is-primary:disabled:focus:enabled, body.admin-color-midnight .components-button.is-primary:disabled:active:enabled:focus:enabled, body.admin-color-midnight .components-button.is-primary[aria-disabled=\"true\"]:focus:enabled, body.admin-color-midnight .components-button.is-primary[aria-disabled=\"true\"]:enabled:focus:enabled, body.admin-color-midnight .components-button.is-primary[aria-disabled=\"true\"]:active:enabled:focus:enabled {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(225, 77, 67); }\n body.admin-color-ectoplasm .components-button.is-primary:disabled:focus:enabled, body.admin-color-ectoplasm .components-button.is-primary:disabled:active:enabled:focus:enabled, body.admin-color-ectoplasm .components-button.is-primary[aria-disabled=\"true\"]:focus:enabled, body.admin-color-ectoplasm .components-button.is-primary[aria-disabled=\"true\"]:enabled:focus:enabled, body.admin-color-ectoplasm .components-button.is-primary[aria-disabled=\"true\"]:active:enabled:focus:enabled {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(167, 182, 86); }\n body.admin-color-coffee .components-button.is-primary:disabled:focus:enabled, body.admin-color-coffee .components-button.is-primary:disabled:active:enabled:focus:enabled, body.admin-color-coffee .components-button.is-primary[aria-disabled=\"true\"]:focus:enabled, body.admin-color-coffee .components-button.is-primary[aria-disabled=\"true\"]:enabled:focus:enabled, body.admin-color-coffee .components-button.is-primary[aria-disabled=\"true\"]:active:enabled:focus:enabled {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(194, 166, 140); }\n body.admin-color-blue .components-button.is-primary:disabled:focus:enabled, body.admin-color-blue .components-button.is-primary:disabled:active:enabled:focus:enabled, body.admin-color-blue .components-button.is-primary[aria-disabled=\"true\"]:focus:enabled, body.admin-color-blue .components-button.is-primary[aria-disabled=\"true\"]:enabled:focus:enabled, body.admin-color-blue .components-button.is-primary[aria-disabled=\"true\"]:active:enabled:focus:enabled {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(217, 171, 89); }\n body.admin-color-light .components-button.is-primary:disabled:focus:enabled, body.admin-color-light .components-button.is-primary:disabled:active:enabled:focus:enabled, body.admin-color-light .components-button.is-primary[aria-disabled=\"true\"]:focus:enabled, body.admin-color-light .components-button.is-primary[aria-disabled=\"true\"]:enabled:focus:enabled, body.admin-color-light .components-button.is-primary[aria-disabled=\"true\"]:active:enabled:focus:enabled {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(0, 133, 186); }\n .components-button.is-primary.is-busy, .components-button.is-primary.is-busy:disabled, .components-button.is-primary.is-busy[aria-disabled=\"true\"] {\n color: #fff;\n background-size: 100px 100%;\n /* stylelint-disable */\n background-image: linear-gradient(-45deg, #007cba 28%, rgb(0, 99, 149) 28%, rgb(0, 99, 149) 72%, #007cba 72%);\n /* stylelint-enable */\n border-color: rgb(0, 124, 186); }\n body.admin-color-sunrise .components-button.is-primary.is-busy, body.admin-color-sunrise .components-button.is-primary.is-busy:disabled, body.admin-color-sunrise .components-button.is-primary.is-busy[aria-disabled=\"true\"] {\n background-image: linear-gradient(-45deg, #d1864a 28%, rgb(167, 107, 59) 28%, rgb(167, 107, 59) 72%, #d1864a 72%);\n border-color: rgb(209, 134, 74); }\n body.admin-color-ocean .components-button.is-primary.is-busy, body.admin-color-ocean .components-button.is-primary.is-busy:disabled, body.admin-color-ocean .components-button.is-primary.is-busy[aria-disabled=\"true\"] {\n background-image: linear-gradient(-45deg, #a3b9a2 28%, rgb(130, 148, 130) 28%, rgb(130, 148, 130) 72%, #a3b9a2 72%);\n border-color: rgb(163, 185, 162); }\n body.admin-color-midnight .components-button.is-primary.is-busy, body.admin-color-midnight .components-button.is-primary.is-busy:disabled, body.admin-color-midnight .components-button.is-primary.is-busy[aria-disabled=\"true\"] {\n background-image: linear-gradient(-45deg, #e14d43 28%, rgb(180, 62, 54) 28%, rgb(180, 62, 54) 72%, #e14d43 72%);\n border-color: rgb(225, 77, 67); }\n body.admin-color-ectoplasm .components-button.is-primary.is-busy, body.admin-color-ectoplasm .components-button.is-primary.is-busy:disabled, body.admin-color-ectoplasm .components-button.is-primary.is-busy[aria-disabled=\"true\"] {\n background-image: linear-gradient(-45deg, #a7b656 28%, rgb(134, 146, 69) 28%, rgb(134, 146, 69) 72%, #a7b656 72%);\n border-color: rgb(167, 182, 86); }\n body.admin-color-coffee .components-button.is-primary.is-busy, body.admin-color-coffee .components-button.is-primary.is-busy:disabled, body.admin-color-coffee .components-button.is-primary.is-busy[aria-disabled=\"true\"] {\n background-image: linear-gradient(-45deg, #c2a68c 28%, rgb(155, 133, 112) 28%, rgb(155, 133, 112) 72%, #c2a68c 72%);\n border-color: rgb(194, 166, 140); }\n body.admin-color-blue .components-button.is-primary.is-busy, body.admin-color-blue .components-button.is-primary.is-busy:disabled, body.admin-color-blue .components-button.is-primary.is-busy[aria-disabled=\"true\"] {\n background-image: linear-gradient(-45deg, #d9ab59 28%, rgb(174, 137, 71) 28%, rgb(174, 137, 71) 72%, #d9ab59 72%);\n border-color: rgb(217, 171, 89); }\n body.admin-color-light .components-button.is-primary.is-busy, body.admin-color-light .components-button.is-primary.is-busy:disabled, body.admin-color-light .components-button.is-primary.is-busy[aria-disabled=\"true\"] {\n background-image: linear-gradient(-45deg, #0085ba 28%, rgb(0, 106, 149) 28%, rgb(0, 106, 149) 72%, #0085ba 72%);\n border-color: rgb(0, 133, 186); }\n .components-button.is-secondary:active:not(:disabled), .components-button.is-tertiary:active:not(:disabled) {\n background: #e7e8e9;\n color: rgb(0, 112, 167);\n box-shadow: none; }\n body.admin-color-sunrise .components-button.is-secondary:active:not(:disabled), body.admin-color-sunrise .components-button.is-tertiary:active:not(:disabled) {\n color: rgb(188, 121, 67); }\n body.admin-color-ocean .components-button.is-secondary:active:not(:disabled), body.admin-color-ocean .components-button.is-tertiary:active:not(:disabled) {\n color: rgb(147, 167, 146); }\n body.admin-color-midnight .components-button.is-secondary:active:not(:disabled), body.admin-color-midnight .components-button.is-tertiary:active:not(:disabled) {\n color: rgb(203, 69, 60); }\n body.admin-color-ectoplasm .components-button.is-secondary:active:not(:disabled), body.admin-color-ectoplasm .components-button.is-tertiary:active:not(:disabled) {\n color: rgb(150, 164, 77); }\n body.admin-color-coffee .components-button.is-secondary:active:not(:disabled), body.admin-color-coffee .components-button.is-tertiary:active:not(:disabled) {\n color: rgb(175, 149, 126); }\n body.admin-color-blue .components-button.is-secondary:active:not(:disabled), body.admin-color-blue .components-button.is-tertiary:active:not(:disabled) {\n color: rgb(195, 154, 80); }\n body.admin-color-light .components-button.is-secondary:active:not(:disabled), body.admin-color-light .components-button.is-tertiary:active:not(:disabled) {\n color: rgb(0, 120, 167); }\n .components-button.is-secondary:hover:not(:disabled), .components-button.is-tertiary:hover:not(:disabled) {\n color: rgb(0, 112, 167);\n box-shadow: inset 0 0 0 1px rgb(0, 112, 167); }\n body.admin-color-sunrise .components-button.is-secondary:hover:not(:disabled), body.admin-color-sunrise .components-button.is-tertiary:hover:not(:disabled) {\n color: rgb(188, 121, 67);\n box-shadow: inset 0 0 0 1px rgb(188, 121, 67); }\n body.admin-color-ocean .components-button.is-secondary:hover:not(:disabled), body.admin-color-ocean .components-button.is-tertiary:hover:not(:disabled) {\n color: rgb(147, 167, 146);\n box-shadow: inset 0 0 0 1px rgb(147, 167, 146); }\n body.admin-color-midnight .components-button.is-secondary:hover:not(:disabled), body.admin-color-midnight .components-button.is-tertiary:hover:not(:disabled) {\n color: rgb(203, 69, 60);\n box-shadow: inset 0 0 0 1px rgb(203, 69, 60); }\n body.admin-color-ectoplasm .components-button.is-secondary:hover:not(:disabled), body.admin-color-ectoplasm .components-button.is-tertiary:hover:not(:disabled) {\n color: rgb(150, 164, 77);\n box-shadow: inset 0 0 0 1px rgb(150, 164, 77); }\n body.admin-color-coffee .components-button.is-secondary:hover:not(:disabled), body.admin-color-coffee .components-button.is-tertiary:hover:not(:disabled) {\n color: rgb(175, 149, 126);\n box-shadow: inset 0 0 0 1px rgb(175, 149, 126); }\n body.admin-color-blue .components-button.is-secondary:hover:not(:disabled), body.admin-color-blue .components-button.is-tertiary:hover:not(:disabled) {\n color: rgb(195, 154, 80);\n box-shadow: inset 0 0 0 1px rgb(195, 154, 80); }\n body.admin-color-light .components-button.is-secondary:hover:not(:disabled), body.admin-color-light .components-button.is-tertiary:hover:not(:disabled) {\n color: rgb(0, 120, 167);\n box-shadow: inset 0 0 0 1px rgb(0, 120, 167); }\n .components-button.is-secondary:disabled, .components-button.is-secondary[aria-disabled=\"true\"], .components-button.is-secondary[aria-disabled=\"true\"]:hover, .components-button.is-tertiary:disabled, .components-button.is-tertiary[aria-disabled=\"true\"], .components-button.is-tertiary[aria-disabled=\"true\"]:hover {\n color: #828282;\n background: #f4f5f5;\n transform: none;\n opacity: 1;\n box-shadow: none; }\n .components-button.is-secondary {\n box-shadow: inset 0 0 0 1px #007cba;\n outline: 1px solid transparent;\n white-space: nowrap;\n color: #007cba;\n background: transparent; }\n body.admin-color-sunrise .components-button.is-secondary {\n box-shadow: inset 0 0 0 1px #d1864a;\n color: #d1864a; }\n body.admin-color-ocean .components-button.is-secondary {\n box-shadow: inset 0 0 0 1px #a3b9a2;\n color: #a3b9a2; }\n body.admin-color-midnight .components-button.is-secondary {\n box-shadow: inset 0 0 0 1px #e14d43;\n color: #e14d43; }\n body.admin-color-ectoplasm .components-button.is-secondary {\n box-shadow: inset 0 0 0 1px #a7b656;\n color: #a7b656; }\n body.admin-color-coffee .components-button.is-secondary {\n box-shadow: inset 0 0 0 1px #c2a68c;\n color: #c2a68c; }\n body.admin-color-blue .components-button.is-secondary {\n box-shadow: inset 0 0 0 1px #d9ab59;\n color: #d9ab59; }\n body.admin-color-light .components-button.is-secondary {\n box-shadow: inset 0 0 0 1px #0085ba;\n color: #0085ba; }\n .components-button.is-tertiary {\n white-space: nowrap;\n color: #007cba;\n background: transparent;\n padding: 6px; }\n body.admin-color-sunrise .components-button.is-tertiary {\n color: #d1864a; }\n body.admin-color-ocean .components-button.is-tertiary {\n color: #a3b9a2; }\n body.admin-color-midnight .components-button.is-tertiary {\n color: #e14d43; }\n body.admin-color-ectoplasm .components-button.is-tertiary {\n color: #a7b656; }\n body.admin-color-coffee .components-button.is-tertiary {\n color: #c2a68c; }\n body.admin-color-blue .components-button.is-tertiary {\n color: #d9ab59; }\n body.admin-color-light .components-button.is-tertiary {\n color: #0085ba; }\n .components-button.is-tertiary .dashicon {\n display: inline-block;\n flex: 0 0 auto; }\n .components-button.is-link {\n margin: 0;\n padding: 0;\n box-shadow: none;\n border: 0;\n border-radius: 0;\n background: none;\n outline: none;\n text-align: left;\n /* Mimics the default link style in common.css */\n color: #0073aa;\n text-decoration: underline;\n transition-property: border, background, color;\n transition-duration: 0.05s;\n transition-timing-function: ease-in-out;\n height: auto; }\n @media (prefers-reduced-motion: reduce) {\n .components-button.is-link {\n transition-duration: 0s; } }\n .components-button.is-link:hover:not(:disabled), .components-button.is-link:active:not(:disabled) {\n color: #00a0d2; }\n .components-button.is-link:focus {\n color: #124964;\n box-shadow: 0 0 0 1px #5b9dd9, 0 0 1.5px 1px rgba(30, 140, 190, 0.8); }\n .components-button.is-link.is-destructive {\n color: #d94f4f; }\n .components-button:not([aria-disabled=\"true\"]):active {\n color: inherit; }\n .components-button:disabled, .components-button[aria-disabled=\"true\"] {\n cursor: default;\n opacity: 0.3; }\n .components-button.is-busy, .components-button.is-secondary.is-busy, .components-button.is-secondary.is-busy:disabled, .components-button.is-secondary.is-busy[aria-disabled=\"true\"] {\n animation: components-button__busy-animation 2500ms infinite linear;\n opacity: 1;\n background-size: 100px 100%;\n /* stylelint-disable */\n background-image: linear-gradient(-45deg, rgb(250, 250, 250) 28%, rgb(224, 224, 224) 28%, rgb(224, 224, 224) 72%, rgb(250, 250, 250) 72%);\n /* stylelint-enable */ }\n .components-button.is-small {\n height: 24px;\n line-height: 22px;\n padding: 0 8px;\n font-size: 11px; }\n .components-button.is-small.has-icon:not(.has-text) {\n width: 24px; }\n .components-button.has-icon {\n padding: 6px;\n min-width: 36px;\n justify-content: center; }\n .components-button.has-icon .dashicon {\n display: inline-block;\n flex: 0 0 auto; }\n .components-button.has-icon.has-text {\n justify-content: left; }\n .components-button.has-icon.has-text svg {\n margin-right: 8px; }\n .components-button.is-pressed {\n color: #fff;\n background: #1e1e1e; }\n .components-button.is-pressed:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #007cba;\n outline: 2px solid transparent; }\n body.admin-color-sunrise .components-button.is-pressed:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #d1864a; }\n body.admin-color-ocean .components-button.is-pressed:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #a3b9a2; }\n body.admin-color-midnight .components-button.is-pressed:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #e14d43; }\n body.admin-color-ectoplasm .components-button.is-pressed:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #a7b656; }\n body.admin-color-coffee .components-button.is-pressed:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #c2a68c; }\n body.admin-color-blue .components-button.is-pressed:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #d9ab59; }\n body.admin-color-light .components-button.is-pressed:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #0085ba; }\n .components-button.is-pressed:hover:not(:disabled) {\n background: #1e1e1e; }\n .components-button svg {\n fill: currentColor;\n outline: none; }\n .components-button .components-visually-hidden {\n height: auto; }\n\n@keyframes components-button__busy-animation {\n 0% {\n background-position: 200px 0; } }\n\n.components-checkbox-control__input[type=\"checkbox\"] {\n border: 1px solid #b4b9be;\n background: #fff;\n color: #555;\n clear: none;\n cursor: pointer;\n display: inline-block;\n line-height: 0;\n margin: 0 4px 0 0;\n outline: 0;\n padding: 0 !important;\n text-align: center;\n vertical-align: top;\n width: 24px;\n height: 24px;\n -webkit-appearance: none;\n box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n transition: 0.05s border-color ease-in-out; }\n @media (min-width: 600px) {\n .components-checkbox-control__input[type=\"checkbox\"] {\n height: 20px;\n width: 20px; } }\n .components-checkbox-control__input[type=\"checkbox\"]:focus {\n border-color: #5b9dd9;\n box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);\n outline: 2px solid transparent; }\n .components-checkbox-control__input[type=\"checkbox\"]:checked {\n background: #11a0d2;\n border-color: #11a0d2; }\n .components-checkbox-control__input[type=\"checkbox\"]:checked::-ms-check {\n opacity: 0; }\n .components-checkbox-control__input[type=\"checkbox\"]:focus:checked {\n border: none; }\n .components-checkbox-control__input[type=\"checkbox\"]:checked::before {\n content: none; }\n\n.components-checkbox-control__input-container {\n position: relative;\n display: inline-block;\n margin-right: 12px;\n vertical-align: middle;\n width: 24px;\n height: 24px; }\n @media (min-width: 600px) {\n .components-checkbox-control__input-container {\n width: 20px;\n height: 20px; } }\n\nsvg.components-checkbox-control__checked {\n fill: #fff;\n cursor: pointer;\n position: absolute;\n left: 0;\n top: 0;\n width: 24px;\n height: 24px;\n -webkit-user-select: none;\n -ms-user-select: none;\n user-select: none;\n pointer-events: none; }\n @media (min-width: 600px) {\n svg.components-checkbox-control__checked {\n left: -2px;\n top: -2px; } }\n\n.components-circular-option-picker {\n display: inline-block;\n margin-top: 0.6rem;\n width: 100%; }\n .components-circular-option-picker .components-circular-option-picker__custom-clear-wrapper {\n display: flex;\n justify-content: flex-end; }\n\n.components-circular-option-picker__option-wrapper {\n display: inline-block;\n height: 28px;\n width: 28px;\n margin-right: 12px;\n margin-bottom: 12px;\n vertical-align: top;\n transform: scale(1);\n transition: 100ms transform ease; }\n @media (prefers-reduced-motion: reduce) {\n .components-circular-option-picker__option-wrapper {\n transition-duration: 0s; } }\n .components-circular-option-picker__option-wrapper:hover {\n transform: scale(1.2); }\n .components-circular-option-picker__option-wrapper > div {\n height: 100%;\n width: 100%; }\n\n.components-circular-option-picker__option-wrapper::before {\n content: \"\";\n position: absolute;\n top: 1px;\n left: 1px;\n bottom: 1px;\n right: 1px;\n border-radius: 50%;\n z-index: -1;\n /* stylelint-disable-next-line function-url-quotes */\n background: url('data:image/svg+xml,%3Csvg width=\"28\" height=\"28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"%3E%3Cpath d=\"M6 8V6H4v2h2zM8 8V6h2v2H8zM10 16H8v-2h2v2zM12 16v-2h2v2h-2zM12 18v-2h-2v2H8v2h2v-2h2zM14 18v2h-2v-2h2zM16 18h-2v-2h2v2z\" fill=\"%23555D65\"/%3E%3Cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18 18h2v-2h-2v-2h2v-2h-2v-2h2V8h-2v2h-2V8h-2v2h2v2h-2v2h2v2h2v2zm-2-4v-2h2v2h-2z\" fill=\"%23555D65\"/%3E%3Cpath d=\"M18 18v2h-2v-2h2z\" fill=\"%23555D65\"/%3E%3Cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 10V8H6v2H4v2h2v2H4v2h2v2H4v2h2v2H4v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h2V4h-2v2h-2V4h-2v2h-2V4h-2v2h-2V4h-2v2h2v2h-2v2H8zm0 2v-2H6v2h2zm2 0v-2h2v2h-2zm0 2v-2H8v2H6v2h2v2H6v2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h-2v2h-2V6h-2v2h-2v2h2v2h-2v2h-2z\" fill=\"%23555D65\"/%3E%3Cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 0H2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h2V4h-2V2h2V0h-2v2h-2V0h-2v2h-2V0h-2v2h-2V0h-2v2h-2V0h-2v2H8V0H6v2H4V0zm0 4V2H2v2h2zm2 0V2h2v2H6zm0 2V4H4v2H2v2h2v2H2v2h2v2H2v2h2v2H2v2h2v2H2v2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h2V4h-2V2h-2v2h-2V2h-2v2h-2V2h-2v2h-2V2h-2v2H8v2H6z\" fill=\"%23555D65\"/%3E%3C/svg%3E'); }\n\n.components-circular-option-picker__option {\n display: inline-block;\n vertical-align: top;\n height: 100%;\n width: 100%;\n border: none;\n border-radius: 50%;\n background: transparent;\n box-shadow: inset 0 0 0 14px;\n transition: 100ms box-shadow ease;\n cursor: pointer; }\n @media (prefers-reduced-motion: reduce) {\n .components-circular-option-picker__option {\n transition-duration: 0s; } }\n .components-circular-option-picker__option:hover {\n box-shadow: inset 0 0 0 14px !important; }\n .components-circular-option-picker__option.is-pressed {\n box-shadow: inset 0 0 0 4px;\n position: relative;\n z-index: 1;\n overflow: visible; }\n .components-circular-option-picker__option.is-pressed + svg {\n position: absolute;\n left: 2px;\n top: 2px;\n border-radius: 50%;\n z-index: 2;\n pointer-events: none; }\n .components-circular-option-picker__option::after {\n content: \"\";\n position: absolute;\n top: -1px;\n left: -1px;\n bottom: -1px;\n right: -1px;\n border-radius: 50%;\n box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);\n border: 1px solid transparent; }\n .components-circular-option-picker__option:focus::after {\n content: \"\";\n border: 2px solid #606a73;\n width: 32px;\n height: 32px;\n position: absolute;\n top: -2px;\n left: -2px;\n border-radius: 50%;\n box-shadow: inset 0 0 0 2px #fff; }\n .components-circular-option-picker__option.components-button:focus {\n background-color: transparent;\n box-shadow: inset 0 0 0 14px;\n outline: none; }\n\n.components-circular-option-picker__button-action .components-circular-option-picker__option {\n color: #fff;\n background: #fff; }\n\n.components-circular-option-picker__dropdown-link-action {\n margin-right: 16px; }\n .components-circular-option-picker__dropdown-link-action .components-button {\n line-height: 22px; }\n\n.component-color-indicator {\n width: 25px;\n height: 16px;\n margin-left: 0.8rem;\n border: 1px solid #dadada;\n display: inline-block; }\n .component-color-indicator + .component-color-indicator {\n margin-left: 0.5rem; }\n\n/**\n * Parts of this source were derived and modified from react-color,\n * released under the MIT license.\n *\n * https://github.com/casesandberg/react-color/\n *\n * Copyright (c) 2015 Case Sandberg\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n * THE SOFTWARE.\n */\n.components-color-picker {\n width: 100%;\n overflow: hidden; }\n .components-color-picker * {\n box-sizing: border-box; }\n\n.components-color-picker__saturation {\n width: 100%;\n padding-bottom: 55%;\n position: relative; }\n\n.components-color-picker__body {\n padding: 16px 16px 12px; }\n\n.components-color-picker__controls {\n display: flex; }\n\n.components-color-picker__saturation-pointer,\n.components-color-picker__hue-pointer,\n.components-color-picker__alpha-pointer {\n padding: 0;\n position: absolute;\n cursor: pointer;\n box-shadow: none;\n border: none; }\n\n/* CURRENT COLOR COMPONENT */\n.components-color-picker__swatch {\n margin-right: 8px;\n width: 32px;\n height: 32px;\n border-radius: 50%;\n position: relative;\n overflow: hidden;\n background-image: linear-gradient(45deg, #ddd 25%, transparent 25%), linear-gradient(-45deg, #ddd 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #ddd 75%), linear-gradient(-45deg, transparent 75%, #ddd 75%);\n background-size: 10px 10px;\n background-position: 0 0, 0 5px, 5px -5px, -5px 0; }\n .is-alpha-disabled .components-color-picker__swatch {\n width: 12px;\n height: 12px;\n margin-top: 0; }\n\n.components-color-picker__active {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n border-radius: 50%;\n box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);\n z-index: 2; }\n\n/* SATURATION COMPONENT */\n.components-color-picker__saturation-color,\n.components-color-picker__saturation-white,\n.components-color-picker__saturation-black {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0; }\n\n.components-color-picker__saturation-color {\n overflow: hidden; }\n\n.components-color-picker__saturation-white {\n /*rtl:ignore*/\n background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0)); }\n\n.components-color-picker__saturation-black {\n background: linear-gradient(to top, #000, rgba(0, 0, 0, 0)); }\n\n.components-color-picker__saturation-pointer {\n width: 14px;\n height: 14px;\n padding: 0;\n box-shadow: 0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0, 0, 0, 0.3), 0 0 1px 2px rgba(0, 0, 0, 0.4);\n border-radius: 50%;\n background-color: transparent;\n transform: translate(-4px, -4px); }\n\n/* HUE & ALPHA BARS */\n.components-color-picker__toggles {\n flex: 1; }\n\n.components-color-picker__alpha {\n background-image: linear-gradient(45deg, #ddd 25%, transparent 25%), linear-gradient(-45deg, #ddd 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #ddd 75%), linear-gradient(-45deg, transparent 75%, #ddd 75%);\n background-size: 10px 10px;\n background-position: 0 0, 0 5px, 5px -5px, -5px 0; }\n\n.components-color-picker__hue-gradient,\n.components-color-picker__alpha-gradient {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0; }\n\n.components-color-picker__hue,\n.components-color-picker__alpha {\n height: 12px;\n position: relative; }\n\n.is-alpha-enabled .components-color-picker__hue {\n margin-bottom: 8px; }\n\n.components-color-picker__hue-bar,\n.components-color-picker__alpha-bar {\n position: relative;\n margin: 0 3px;\n height: 100%;\n padding: 0 2px; }\n\n.components-color-picker__hue-gradient {\n /*rtl:ignore*/\n background: linear-gradient(to right, #f00 0%, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%); }\n\n.components-color-picker__hue-pointer,\n.components-color-picker__alpha-pointer {\n /*rtl:ignore*/\n left: 0;\n width: 14px;\n height: 14px;\n border-radius: 50%;\n box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);\n background: #fff;\n transform: translate(-7px, -1px); }\n\n.components-color-picker__hue-pointer,\n.components-color-picker__saturation-pointer {\n transition: box-shadow 0.1s linear; }\n @media (prefers-reduced-motion: reduce) {\n .components-color-picker__hue-pointer,\n .components-color-picker__saturation-pointer {\n transition-duration: 0s; } }\n\n.components-color-picker__saturation-pointer:focus {\n box-shadow: 0 0 0 2px #fff, 0 0 0 4px #00a0d2, 0 0 5px 0 #00a0d2, inset 0 0 1px 1px rgba(0, 0, 0, 0.3), 0 0 1px 2px rgba(0, 0, 0, 0.4); }\n\n.components-color-picker__hue-pointer:focus,\n.components-color-picker__alpha-pointer:focus {\n border-color: #00a0d2;\n box-shadow: 0 0 0 2px #00a0d2, 0 0 3px 0 #00a0d2;\n outline: 2px solid transparent;\n outline-offset: -2px; }\n\n/* INPUTS COMPONENT */\n.components-color-picker__inputs-wrapper {\n margin: 0 -4px;\n padding-top: 16px;\n display: flex;\n align-items: flex-end; }\n .components-color-picker__inputs-wrapper fieldset {\n flex: 1;\n border: none;\n margin: 0;\n padding: 0; }\n .components-color-picker__inputs-wrapper .components-color-picker__inputs-fields .components-text-control__input[type=\"number\"] {\n padding: 6px 8px; }\n\n.components-color-picker__inputs-field {\n width: 100%; }\n\n.components-color-picker__inputs-fields {\n display: flex;\n /*rtl:ignore*/\n direction: ltr;\n flex-grow: 1;\n margin-right: 4px; }\n .components-color-picker__inputs-fields .components-base-control + .components-base-control {\n margin-top: 0; }\n .components-color-picker__inputs-fields .components-base-control__field {\n margin: 0 4px; }\n\n.components-color-picker__inputs-toggle {\n height: 30px;\n padding: 0 5px; }\n\n.components-custom-gradient-picker {\n margin-top: 8px; }\n\n.components-custom-gradient-picker__gradient-bar:not(.has-gradient) {\n opacity: 0.4; }\n\n.components-custom-gradient-picker__gradient-bar {\n width: 100%;\n height: 24px;\n border-radius: 24px;\n margin-bottom: 8px;\n padding-left: 3px;\n padding-right: 21px; }\n .components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__markers-container {\n position: relative; }\n .components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__insert-point {\n border-radius: 50%;\n background: #fff;\n padding: 2px;\n min-width: 24px;\n width: 24px;\n height: 24px;\n position: relative; }\n .components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__insert-point svg {\n height: 100%;\n width: 100%; }\n .components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button {\n border: 2px solid #fff;\n border-radius: 50%;\n height: 18px;\n padding: 0;\n position: absolute;\n width: 18px;\n top: 3px; }\n .components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button.is-active {\n background: #fafafa;\n color: #23282d;\n border-color: #999;\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba; }\n\n.components-custom-gradient-picker__color-picker-popover .components-custom-gradient-picker__remove-control-point {\n margin-left: auto;\n margin-right: auto;\n display: block;\n margin-bottom: 8px; }\n\n.components-custom-gradient-picker__inserter {\n width: 100%; }\n\n.components-custom-gradient-picker__liner-gradient-indicator {\n display: inline-block;\n flex: 0 auto;\n width: 20px;\n height: 20px; }\n\n.components-custom-gradient-picker__ui-line {\n display: flex;\n justify-content: space-between; }\n\n.components-custom-gradient-picker .components-custom-gradient-picker__ui-line .components-base-control.components-angle-picker,\n.components-custom-gradient-picker .components-custom-gradient-picker__ui-line .components-base-control.components-custom-gradient-picker__type-picker {\n margin-bottom: 0; }\n\n.components-custom-gradient-picker .components-custom-gradient-picker__toolbar {\n border: none; }\n .components-custom-gradient-picker .components-custom-gradient-picker__toolbar > div + div {\n margin-left: 1px; }\n .components-custom-gradient-picker .components-custom-gradient-picker__toolbar button.is-pressed > svg {\n background: #fff;\n border: 1px solid #7e8993;\n border-radius: 2px; }\n\n.components-custom-select-control {\n color: #555d66;\n position: relative; }\n\n.components-custom-select-control__label {\n display: block;\n margin-bottom: 5px; }\n\n.components-custom-select-control__button {\n border: 1px solid #757575;\n border-radius: 2px;\n display: inline;\n min-height: 30px;\n min-width: 130px;\n position: relative;\n text-align: left; }\n .components-custom-select-control__button:focus:not(:disabled) {\n border-color: #007cba;\n box-shadow: 0 0 0 0.5px #007cba; }\n body.admin-color-sunrise .components-custom-select-control__button:focus:not(:disabled) {\n border-color: #d1864a;\n box-shadow: 0 0 0 0.5px #d1864a; }\n body.admin-color-ocean .components-custom-select-control__button:focus:not(:disabled) {\n border-color: #a3b9a2;\n box-shadow: 0 0 0 0.5px #a3b9a2; }\n body.admin-color-midnight .components-custom-select-control__button:focus:not(:disabled) {\n border-color: #e14d43;\n box-shadow: 0 0 0 0.5px #e14d43; }\n body.admin-color-ectoplasm .components-custom-select-control__button:focus:not(:disabled) {\n border-color: #a7b656;\n box-shadow: 0 0 0 0.5px #a7b656; }\n body.admin-color-coffee .components-custom-select-control__button:focus:not(:disabled) {\n border-color: #c2a68c;\n box-shadow: 0 0 0 0.5px #c2a68c; }\n body.admin-color-blue .components-custom-select-control__button:focus:not(:disabled) {\n border-color: #d9ab59;\n box-shadow: 0 0 0 0.5px #d9ab59; }\n body.admin-color-light .components-custom-select-control__button:focus:not(:disabled) {\n border-color: #0085ba;\n box-shadow: 0 0 0 0.5px #0085ba; }\n .components-custom-select-control__button-icon {\n height: 100%;\n padding: 0 4px;\n position: absolute;\n right: 0;\n top: 0; }\n\n.components-custom-select-control__menu {\n background-color: #fff;\n max-height: 400px;\n min-width: 100%;\n overflow: auto;\n padding: 0;\n position: absolute;\n z-index: 1000000; }\n .components-custom-select-control__menu:focus {\n border: 1px solid #1e1e1e;\n border-radius: 2px;\n outline: none;\n transition: none; }\n\n.components-custom-select-control__item {\n align-items: center;\n display: flex;\n list-style-type: none;\n padding: 10px 5px 10px 25px; }\n .components-custom-select-control__item.is-highlighted {\n background: #e2e4e7; }\n .components-custom-select-control__item-icon {\n margin-left: -20px;\n margin-right: 0; }\n\nsvg.dashicon {\n fill: currentColor;\n outline: none; }\n\n/*rtl:begin:ignore*/\n.PresetDateRangePicker_panel {\n padding: 0 22px 11px; }\n\n.PresetDateRangePicker_button {\n position: relative;\n height: 100%;\n text-align: center;\n background: 0 0;\n border: 2px solid #00a699;\n color: #00a699;\n padding: 4px 12px;\n margin-right: 8px;\n font: inherit;\n font-weight: 700;\n line-height: normal;\n overflow: visible;\n box-sizing: border-box;\n cursor: pointer; }\n\n.PresetDateRangePicker_button:active {\n outline: 0; }\n\n.PresetDateRangePicker_button__selected {\n color: #fff;\n background: #00a699; }\n\n.SingleDatePickerInput {\n display: inline-block;\n background-color: #fff; }\n\n.SingleDatePickerInput__withBorder {\n border-radius: 2px;\n border: 1px solid #dbdbdb; }\n\n.SingleDatePickerInput__rtl {\n direction: rtl; }\n\n.SingleDatePickerInput__disabled {\n background-color: #f2f2f2; }\n\n.SingleDatePickerInput__block {\n display: block; }\n\n.SingleDatePickerInput__showClearDate {\n padding-right: 30px; }\n\n.SingleDatePickerInput_clearDate {\n background: 0 0;\n border: 0;\n color: inherit;\n font: inherit;\n line-height: normal;\n overflow: visible;\n cursor: pointer;\n padding: 10px;\n margin: 0 10px 0 5px;\n position: absolute;\n right: 0;\n top: 50%;\n transform: translateY(-50%); }\n\n.SingleDatePickerInput_clearDate__default:focus,\n.SingleDatePickerInput_clearDate__default:hover {\n background: #dbdbdb;\n border-radius: 50%; }\n\n.SingleDatePickerInput_clearDate__small {\n padding: 6px; }\n\n.SingleDatePickerInput_clearDate__hide {\n visibility: hidden; }\n\n.SingleDatePickerInput_clearDate_svg {\n fill: #82888a;\n height: 12px;\n width: 15px;\n vertical-align: middle; }\n\n.SingleDatePickerInput_clearDate_svg__small {\n height: 9px; }\n\n.SingleDatePickerInput_calendarIcon {\n background: 0 0;\n border: 0;\n color: inherit;\n font: inherit;\n line-height: normal;\n overflow: visible;\n cursor: pointer;\n display: inline-block;\n vertical-align: middle;\n padding: 10px;\n margin: 0 5px 0 10px; }\n\n.SingleDatePickerInput_calendarIcon_svg {\n fill: #82888a;\n height: 15px;\n width: 14px;\n vertical-align: middle; }\n\n.SingleDatePicker {\n position: relative;\n display: inline-block; }\n\n.SingleDatePicker__block {\n display: block; }\n\n.SingleDatePicker_picker {\n z-index: 1;\n background-color: #fff;\n position: absolute; }\n\n.SingleDatePicker_picker__rtl {\n direction: rtl; }\n\n.SingleDatePicker_picker__directionLeft {\n left: 0; }\n\n.SingleDatePicker_picker__directionRight {\n right: 0; }\n\n.SingleDatePicker_picker__portal {\n background-color: rgba(0, 0, 0, 0.3);\n position: fixed;\n top: 0;\n left: 0;\n height: 100%;\n width: 100%; }\n\n.SingleDatePicker_picker__fullScreenPortal {\n background-color: #fff; }\n\n.SingleDatePicker_closeButton {\n background: 0 0;\n border: 0;\n color: inherit;\n font: inherit;\n line-height: normal;\n overflow: visible;\n cursor: pointer;\n position: absolute;\n top: 0;\n right: 0;\n padding: 15px;\n z-index: 2; }\n\n.SingleDatePicker_closeButton:focus,\n.SingleDatePicker_closeButton:hover {\n color: #b0b3b4;\n text-decoration: none; }\n\n.SingleDatePicker_closeButton_svg {\n height: 15px;\n width: 15px;\n fill: #cacccd; }\n\n.DayPickerKeyboardShortcuts_buttonReset {\n background: 0 0;\n border: 0;\n border-radius: 0;\n color: inherit;\n font: inherit;\n line-height: normal;\n overflow: visible;\n padding: 0;\n cursor: pointer;\n font-size: 14px; }\n\n.DayPickerKeyboardShortcuts_buttonReset:active {\n outline: 0; }\n\n.DayPickerKeyboardShortcuts_show {\n width: 22px;\n position: absolute;\n z-index: 2; }\n\n.DayPickerKeyboardShortcuts_show__bottomRight {\n border-top: 26px solid transparent;\n border-right: 33px solid #00a699;\n bottom: 0;\n right: 0; }\n\n.DayPickerKeyboardShortcuts_show__bottomRight:hover {\n border-right: 33px solid #008489; }\n\n.DayPickerKeyboardShortcuts_show__topRight {\n border-bottom: 26px solid transparent;\n border-right: 33px solid #00a699;\n top: 0;\n right: 0; }\n\n.DayPickerKeyboardShortcuts_show__topRight:hover {\n border-right: 33px solid #008489; }\n\n.DayPickerKeyboardShortcuts_show__topLeft {\n border-bottom: 26px solid transparent;\n border-left: 33px solid #00a699;\n top: 0;\n left: 0; }\n\n.DayPickerKeyboardShortcuts_show__topLeft:hover {\n border-left: 33px solid #008489; }\n\n.DayPickerKeyboardShortcuts_showSpan {\n color: #fff;\n position: absolute; }\n\n.DayPickerKeyboardShortcuts_showSpan__bottomRight {\n bottom: 0;\n right: -28px; }\n\n.DayPickerKeyboardShortcuts_showSpan__topRight {\n top: 1px;\n right: -28px; }\n\n.DayPickerKeyboardShortcuts_showSpan__topLeft {\n top: 1px;\n left: -28px; }\n\n.DayPickerKeyboardShortcuts_panel {\n overflow: auto;\n background: #fff;\n border: 1px solid #dbdbdb;\n border-radius: 2px;\n position: absolute;\n top: 0;\n bottom: 0;\n right: 0;\n left: 0;\n z-index: 2;\n padding: 22px;\n margin: 33px; }\n\n.DayPickerKeyboardShortcuts_title {\n font-size: 16px;\n font-weight: 700;\n margin: 0; }\n\n.DayPickerKeyboardShortcuts_list {\n list-style: none;\n padding: 0;\n font-size: 14px; }\n\n.DayPickerKeyboardShortcuts_close {\n position: absolute;\n right: 22px;\n top: 22px;\n z-index: 2; }\n\n.DayPickerKeyboardShortcuts_close:active {\n outline: 0; }\n\n.DayPickerKeyboardShortcuts_closeSvg {\n height: 15px;\n width: 15px;\n fill: #cacccd; }\n\n.DayPickerKeyboardShortcuts_closeSvg:focus,\n.DayPickerKeyboardShortcuts_closeSvg:hover {\n fill: #82888a; }\n\n.CalendarDay {\n box-sizing: border-box;\n cursor: pointer;\n font-size: 14px;\n text-align: center; }\n\n.CalendarDay:active {\n outline: 0; }\n\n.CalendarDay__defaultCursor {\n cursor: default; }\n\n.CalendarDay__default {\n border: 1px solid #e4e7e7;\n color: #484848;\n background: #fff; }\n\n.CalendarDay__default:hover {\n background: #e4e7e7;\n border: 1px double #e4e7e7;\n color: inherit; }\n\n.CalendarDay__hovered_offset {\n background: #f4f5f5;\n border: 1px double #e4e7e7;\n color: inherit; }\n\n.CalendarDay__outside {\n border: 0;\n background: #fff;\n color: #484848; }\n\n.CalendarDay__outside:hover {\n border: 0; }\n\n.CalendarDay__blocked_minimum_nights {\n background: #fff;\n border: 1px solid #eceeee;\n color: #cacccd; }\n\n.CalendarDay__blocked_minimum_nights:active,\n.CalendarDay__blocked_minimum_nights:hover {\n background: #fff;\n color: #cacccd; }\n\n.CalendarDay__highlighted_calendar {\n background: #ffe8bc;\n color: #484848; }\n\n.CalendarDay__highlighted_calendar:active,\n.CalendarDay__highlighted_calendar:hover {\n background: #ffce71;\n color: #484848; }\n\n.CalendarDay__selected_span {\n background: #66e2da;\n border: 1px solid #33dacd;\n color: #fff; }\n\n.CalendarDay__selected_span:active,\n.CalendarDay__selected_span:hover {\n background: #33dacd;\n border: 1px solid #33dacd;\n color: #fff; }\n\n.CalendarDay__last_in_range {\n border-right: #00a699; }\n\n.CalendarDay__selected,\n.CalendarDay__selected:active,\n.CalendarDay__selected:hover {\n background: #00a699;\n border: 1px solid #00a699;\n color: #fff; }\n\n.CalendarDay__hovered_span,\n.CalendarDay__hovered_span:hover {\n background: #b2f1ec;\n border: 1px solid #80e8e0;\n color: #007a87; }\n\n.CalendarDay__hovered_span:active {\n background: #80e8e0;\n border: 1px solid #80e8e0;\n color: #007a87; }\n\n.CalendarDay__blocked_calendar,\n.CalendarDay__blocked_calendar:active,\n.CalendarDay__blocked_calendar:hover {\n background: #cacccd;\n border: 1px solid #cacccd;\n color: #82888a; }\n\n.CalendarDay__blocked_out_of_range,\n.CalendarDay__blocked_out_of_range:active,\n.CalendarDay__blocked_out_of_range:hover {\n background: #fff;\n border: 1px solid #e4e7e7;\n color: #cacccd; }\n\n.CalendarMonth {\n background: #fff;\n text-align: center;\n vertical-align: top;\n -webkit-user-select: none;\n -ms-user-select: none;\n user-select: none; }\n\n.CalendarMonth_table {\n border-collapse: collapse;\n border-spacing: 0; }\n\n.CalendarMonth_verticalSpacing {\n border-collapse: separate; }\n\n.CalendarMonth_caption {\n color: #484848;\n font-size: 18px;\n text-align: center;\n padding-top: 22px;\n padding-bottom: 37px;\n caption-side: initial; }\n\n.CalendarMonth_caption__verticalScrollable {\n padding-top: 12px;\n padding-bottom: 7px; }\n\n.CalendarMonthGrid {\n background: #fff;\n text-align: left;\n z-index: 0; }\n\n.CalendarMonthGrid__animating {\n z-index: 1; }\n\n.CalendarMonthGrid__horizontal {\n position: absolute;\n left: 9px; }\n\n.CalendarMonthGrid__vertical {\n margin: 0 auto; }\n\n.CalendarMonthGrid__vertical_scrollable {\n margin: 0 auto;\n overflow-y: scroll; }\n\n.CalendarMonthGrid_month__horizontal {\n display: inline-block;\n vertical-align: top;\n min-height: 100%; }\n\n.CalendarMonthGrid_month__hideForAnimation {\n position: absolute;\n z-index: -1;\n opacity: 0;\n pointer-events: none; }\n\n.CalendarMonthGrid_month__hidden {\n visibility: hidden; }\n\n.DayPickerNavigation {\n position: relative;\n z-index: 2; }\n\n.DayPickerNavigation__horizontal {\n height: 0; }\n\n.DayPickerNavigation__verticalDefault {\n position: absolute;\n width: 100%;\n height: 52px;\n bottom: 0;\n left: 0; }\n\n.DayPickerNavigation__verticalScrollableDefault {\n position: relative; }\n\n.DayPickerNavigation_button {\n cursor: pointer;\n -webkit-user-select: none;\n -ms-user-select: none;\n user-select: none;\n border: 0;\n padding: 0;\n margin: 0; }\n\n.DayPickerNavigation_button__default {\n border: 1px solid #e4e7e7;\n background-color: #fff;\n color: #757575; }\n\n.DayPickerNavigation_button__default:focus,\n.DayPickerNavigation_button__default:hover {\n border: 1px solid #c4c4c4; }\n\n.DayPickerNavigation_button__default:active {\n background: #f2f2f2; }\n\n.DayPickerNavigation_button__horizontalDefault {\n position: absolute;\n top: 18px;\n line-height: .78;\n border-radius: 3px;\n padding: 6px 9px; }\n\n.DayPickerNavigation_leftButton__horizontalDefault {\n left: 22px; }\n\n.DayPickerNavigation_rightButton__horizontalDefault {\n right: 22px; }\n\n.DayPickerNavigation_button__verticalDefault {\n padding: 5px;\n background: #fff;\n box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);\n position: relative;\n display: inline-block;\n height: 100%;\n width: 50%; }\n\n.DayPickerNavigation_nextButton__verticalDefault {\n border-left: 0; }\n\n.DayPickerNavigation_nextButton__verticalScrollableDefault {\n width: 100%; }\n\n.DayPickerNavigation_svg__horizontal {\n height: 19px;\n width: 19px;\n fill: #82888a;\n display: block; }\n\n.DayPickerNavigation_svg__vertical {\n height: 42px;\n width: 42px;\n fill: #484848;\n display: block; }\n\n.DayPicker {\n background: #fff;\n position: relative;\n text-align: left; }\n\n.DayPicker__horizontal {\n background: #fff; }\n\n.DayPicker__verticalScrollable {\n height: 100%; }\n\n.DayPicker__hidden {\n visibility: hidden; }\n\n.DayPicker__withBorder {\n box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.07);\n border-radius: 3px; }\n\n.DayPicker_portal__horizontal {\n box-shadow: none;\n position: absolute;\n left: 50%;\n top: 50%; }\n\n.DayPicker_portal__vertical {\n position: initial; }\n\n.DayPicker_focusRegion {\n outline: 0; }\n\n.DayPicker_calendarInfo__horizontal,\n.DayPicker_wrapper__horizontal {\n display: inline-block;\n vertical-align: top; }\n\n.DayPicker_weekHeaders {\n position: relative; }\n\n.DayPicker_weekHeaders__horizontal {\n margin-left: 9px; }\n\n.DayPicker_weekHeader {\n color: #757575;\n position: absolute;\n top: 62px;\n z-index: 2;\n text-align: left; }\n\n.DayPicker_weekHeader__vertical {\n left: 50%; }\n\n.DayPicker_weekHeader__verticalScrollable {\n top: 0;\n display: table-row;\n border-bottom: 1px solid #dbdbdb;\n background: #fff;\n margin-left: 0;\n left: 0;\n width: 100%;\n text-align: center; }\n\n.DayPicker_weekHeader_ul {\n list-style: none;\n margin: 1px 0;\n padding-left: 0;\n padding-right: 0;\n font-size: 14px; }\n\n.DayPicker_weekHeader_li {\n display: inline-block;\n text-align: center; }\n\n.DayPicker_transitionContainer {\n position: relative;\n overflow: hidden;\n border-radius: 3px; }\n\n.DayPicker_transitionContainer__horizontal {\n transition: height .2s ease-in-out; }\n\n.DayPicker_transitionContainer__vertical {\n width: 100%; }\n\n.DayPicker_transitionContainer__verticalScrollable {\n padding-top: 20px;\n height: 100%;\n position: absolute;\n top: 0;\n bottom: 0;\n right: 0;\n left: 0;\n overflow-y: scroll; }\n\n.DateInput {\n margin: 0;\n padding: 0;\n background: #fff;\n position: relative;\n display: inline-block;\n width: 130px;\n vertical-align: middle; }\n\n.DateInput__small {\n width: 97px; }\n\n.DateInput__block {\n width: 100%; }\n\n.DateInput__disabled {\n background: #f2f2f2;\n color: #dbdbdb; }\n\n.DateInput_input {\n font-weight: 200;\n font-size: 19px;\n line-height: 24px;\n color: #484848;\n background-color: #fff;\n width: 100%;\n padding: 11px 11px 9px;\n border: 0;\n border-top: 0;\n border-right: 0;\n border-bottom: 2px solid transparent;\n border-left: 0;\n border-radius: 0; }\n\n.DateInput_input__small {\n font-size: 15px;\n line-height: 18px;\n letter-spacing: .2px;\n padding: 7px 7px 5px; }\n\n.DateInput_input__regular {\n font-weight: auto; }\n\n.DateInput_input__readOnly {\n -webkit-user-select: none;\n -ms-user-select: none;\n user-select: none; }\n\n.DateInput_input__focused {\n outline: 0;\n background: #fff;\n border: 0;\n border-top: 0;\n border-right: 0;\n border-bottom: 2px solid #008489;\n border-left: 0; }\n\n.DateInput_input__disabled {\n background: #f2f2f2;\n font-style: italic; }\n\n.DateInput_screenReaderMessage {\n border: 0;\n clip: rect(0, 0, 0, 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px; }\n\n.DateInput_fang {\n position: absolute;\n width: 20px;\n height: 10px;\n left: 22px;\n z-index: 2; }\n\n.DateInput_fangShape {\n fill: #fff; }\n\n.DateInput_fangStroke {\n stroke: #dbdbdb;\n fill: transparent; }\n\n.DateRangePickerInput {\n background-color: #fff;\n display: inline-block; }\n\n.DateRangePickerInput__disabled {\n background: #f2f2f2; }\n\n.DateRangePickerInput__withBorder {\n border-radius: 2px;\n border: 1px solid #dbdbdb; }\n\n.DateRangePickerInput__rtl {\n direction: rtl; }\n\n.DateRangePickerInput__block {\n display: block; }\n\n.DateRangePickerInput__showClearDates {\n padding-right: 30px; }\n\n.DateRangePickerInput_arrow {\n display: inline-block;\n vertical-align: middle;\n color: #484848; }\n\n.DateRangePickerInput_arrow_svg {\n vertical-align: middle;\n fill: #484848;\n height: 24px;\n width: 24px; }\n\n.DateRangePickerInput_clearDates {\n background: 0 0;\n border: 0;\n color: inherit;\n font: inherit;\n line-height: normal;\n overflow: visible;\n cursor: pointer;\n padding: 10px;\n margin: 0 10px 0 5px;\n position: absolute;\n right: 0;\n top: 50%;\n transform: translateY(-50%); }\n\n.DateRangePickerInput_clearDates__small {\n padding: 6px; }\n\n.DateRangePickerInput_clearDates_default:focus,\n.DateRangePickerInput_clearDates_default:hover {\n background: #dbdbdb;\n border-radius: 50%; }\n\n.DateRangePickerInput_clearDates__hide {\n visibility: hidden; }\n\n.DateRangePickerInput_clearDates_svg {\n fill: #82888a;\n height: 12px;\n width: 15px;\n vertical-align: middle; }\n\n.DateRangePickerInput_clearDates_svg__small {\n height: 9px; }\n\n.DateRangePickerInput_calendarIcon {\n background: 0 0;\n border: 0;\n color: inherit;\n font: inherit;\n line-height: normal;\n overflow: visible;\n cursor: pointer;\n display: inline-block;\n vertical-align: middle;\n padding: 10px;\n margin: 0 5px 0 10px; }\n\n.DateRangePickerInput_calendarIcon_svg {\n fill: #82888a;\n height: 15px;\n width: 14px;\n vertical-align: middle; }\n\n.DateRangePicker {\n position: relative;\n display: inline-block; }\n\n.DateRangePicker__block {\n display: block; }\n\n.DateRangePicker_picker {\n z-index: 1;\n background-color: #fff;\n position: absolute; }\n\n.DateRangePicker_picker__rtl {\n direction: rtl; }\n\n.DateRangePicker_picker__directionLeft {\n left: 0; }\n\n.DateRangePicker_picker__directionRight {\n right: 0; }\n\n.DateRangePicker_picker__portal {\n background-color: rgba(0, 0, 0, 0.3);\n position: fixed;\n top: 0;\n left: 0;\n height: 100%;\n width: 100%; }\n\n.DateRangePicker_picker__fullScreenPortal {\n background-color: #fff; }\n\n.DateRangePicker_closeButton {\n background: 0 0;\n border: 0;\n color: inherit;\n font: inherit;\n line-height: normal;\n overflow: visible;\n cursor: pointer;\n position: absolute;\n top: 0;\n right: 0;\n padding: 15px;\n z-index: 2; }\n\n.DateRangePicker_closeButton:focus,\n.DateRangePicker_closeButton:hover {\n color: #b0b3b4;\n text-decoration: none; }\n\n.DateRangePicker_closeButton_svg {\n height: 15px;\n width: 15px;\n fill: #cacccd; }\n\n/*rtl:end:ignore*/\n.components-datetime {\n padding: 0; }\n .components-datetime .components-datetime__calendar-help {\n padding: 16px; }\n .components-datetime .components-datetime__calendar-help h4 {\n margin: 0; }\n .components-datetime .components-datetime__buttons {\n display: flex;\n justify-content: space-between; }\n .components-datetime .components-datetime__date-help-button {\n display: block;\n margin-left: auto; }\n .components-datetime fieldset {\n border: 0;\n padding: 0;\n margin: 0; }\n .components-datetime select,\n .components-datetime input {\n box-shadow: 0 0 0 transparent;\n transition: box-shadow 0.1s linear;\n border-radius: 2px;\n border: 1px solid #757575; }\n @media (prefers-reduced-motion: reduce) {\n .components-datetime select,\n .components-datetime input {\n transition-duration: 0s; } }\n .components-datetime select,\n .components-datetime input[type=\"number\"],\n .components-datetime .components-button {\n height: 30px;\n margin-top: 0;\n margin-bottom: 0; }\n\n.components-datetime__date {\n min-height: 236px;\n border-top: 1px solid #e2e4e7; }\n .components-datetime__date .DayPickerNavigation_leftButton__horizontalDefault {\n left: 0; }\n .components-datetime__date .CalendarMonth_caption {\n font-size: 13px; }\n .components-datetime__date .CalendarMonth_table {\n border-collapse: separate;\n border-spacing: 2px; }\n .components-datetime__date .CalendarDay {\n font-size: 13px;\n border: none;\n border-radius: 50%;\n text-align: center; }\n .components-datetime__date .CalendarDay:focus {\n box-shadow: inset 0 0 0 1.5px #0085ba, inset 0 0 0 2.5px #fff;\n outline: 2px solid transparent; }\n body.admin-color-sunrise .components-datetime__date .CalendarDay:focus {\n box-shadow: inset 0 0 0 1.5px #d1864a, inset 0 0 0 2.5px #fff; }\n body.admin-color-ocean .components-datetime__date .CalendarDay:focus {\n box-shadow: inset 0 0 0 1.5px #a3b9a2, inset 0 0 0 2.5px #fff; }\n body.admin-color-midnight .components-datetime__date .CalendarDay:focus {\n box-shadow: inset 0 0 0 1.5px #e14d43, inset 0 0 0 2.5px #fff; }\n body.admin-color-ectoplasm .components-datetime__date .CalendarDay:focus {\n box-shadow: inset 0 0 0 1.5px #a7b656, inset 0 0 0 2.5px #fff; }\n body.admin-color-coffee .components-datetime__date .CalendarDay:focus {\n box-shadow: inset 0 0 0 1.5px #c2a68c, inset 0 0 0 2.5px #fff; }\n body.admin-color-blue .components-datetime__date .CalendarDay:focus {\n box-shadow: inset 0 0 0 1.5px #82b4cb, inset 0 0 0 2.5px #fff; }\n body.admin-color-light .components-datetime__date .CalendarDay:focus {\n box-shadow: inset 0 0 0 1.5px #0085ba, inset 0 0 0 2.5px #fff; }\n .components-datetime__date .CalendarDay__selected {\n background: #0085ba;\n border: 2px solid transparent; }\n body.admin-color-sunrise .components-datetime__date .CalendarDay__selected {\n background: #d1864a; }\n body.admin-color-ocean .components-datetime__date .CalendarDay__selected {\n background: #a3b9a2; }\n body.admin-color-midnight .components-datetime__date .CalendarDay__selected {\n background: #e14d43; }\n body.admin-color-ectoplasm .components-datetime__date .CalendarDay__selected {\n background: #a7b656; }\n body.admin-color-coffee .components-datetime__date .CalendarDay__selected {\n background: #c2a68c; }\n body.admin-color-blue .components-datetime__date .CalendarDay__selected {\n background: #82b4cb; }\n body.admin-color-light .components-datetime__date .CalendarDay__selected {\n background: #0085ba; }\n .components-datetime__date .CalendarDay__selected:hover {\n background: rgb(0, 113, 158); }\n body.admin-color-sunrise .components-datetime__date .CalendarDay__selected:hover {\n background: rgb(178, 114, 63); }\n body.admin-color-ocean .components-datetime__date .CalendarDay__selected:hover {\n background: rgb(139, 157, 138); }\n body.admin-color-midnight .components-datetime__date .CalendarDay__selected:hover {\n background: rgb(191, 65, 57); }\n body.admin-color-ectoplasm .components-datetime__date .CalendarDay__selected:hover {\n background: rgb(142, 155, 73); }\n body.admin-color-coffee .components-datetime__date .CalendarDay__selected:hover {\n background: rgb(165, 141, 119); }\n body.admin-color-blue .components-datetime__date .CalendarDay__selected:hover {\n background: rgb(111, 153, 173); }\n body.admin-color-light .components-datetime__date .CalendarDay__selected:hover {\n background: rgb(0, 113, 158); }\n .components-datetime__date .CalendarDay__selected:focus {\n box-shadow: inset 0 0 0 1px #fff; }\n .components-datetime__date .DayPickerNavigation_button__horizontalDefault {\n padding: 2px 8px;\n top: 20px; }\n .components-datetime__date .DayPickerNavigation_button__horizontalDefault:focus {\n border-color: rgb(0, 124, 186);\n box-shadow: 0 0 0 0.5px #007cba;\n outline: 2px solid transparent; }\n body.admin-color-sunrise .components-datetime__date .DayPickerNavigation_button__horizontalDefault:focus {\n border-color: rgb(209, 134, 74);\n box-shadow: 0 0 0 0.5px #d1864a; }\n body.admin-color-ocean .components-datetime__date .DayPickerNavigation_button__horizontalDefault:focus {\n border-color: rgb(163, 185, 162);\n box-shadow: 0 0 0 0.5px #a3b9a2; }\n body.admin-color-midnight .components-datetime__date .DayPickerNavigation_button__horizontalDefault:focus {\n border-color: rgb(225, 77, 67);\n box-shadow: 0 0 0 0.5px #e14d43; }\n body.admin-color-ectoplasm .components-datetime__date .DayPickerNavigation_button__horizontalDefault:focus {\n border-color: rgb(167, 182, 86);\n box-shadow: 0 0 0 0.5px #a7b656; }\n body.admin-color-coffee .components-datetime__date .DayPickerNavigation_button__horizontalDefault:focus {\n border-color: rgb(194, 166, 140);\n box-shadow: 0 0 0 0.5px #c2a68c; }\n body.admin-color-blue .components-datetime__date .DayPickerNavigation_button__horizontalDefault:focus {\n border-color: rgb(217, 171, 89);\n box-shadow: 0 0 0 0.5px #d9ab59; }\n body.admin-color-light .components-datetime__date .DayPickerNavigation_button__horizontalDefault:focus {\n border-color: rgb(0, 133, 186);\n box-shadow: 0 0 0 0.5px #0085ba; }\n .components-datetime__date .DayPicker_weekHeader {\n top: 50px; }\n .components-datetime__date .DayPicker_weekHeader .DayPicker_weekHeader_ul {\n margin: 1px 0;\n padding-left: 0;\n padding-right: 0; }\n .components-datetime__date.is-description-visible .DayPicker,\n .components-datetime__date.is-description-visible .components-datetime__date-help-button {\n visibility: hidden; }\n\n.components-datetime__time {\n padding-bottom: 16px; }\n .components-datetime__time fieldset {\n position: relative;\n margin-bottom: 0.5em; }\n .components-datetime__time fieldset + fieldset {\n margin-bottom: 0; }\n .components-datetime__time .components-datetime__time-field-am-pm fieldset {\n margin-top: 0; }\n .components-datetime__time .components-datetime__time-wrapper {\n display: flex; }\n .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-separator {\n display: inline-block;\n padding: 0 3px 0 0;\n color: #555d66; }\n .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field-time {\n /*rtl:ignore*/\n direction: ltr; }\n .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field select {\n margin-right: 4px; }\n .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field select:focus {\n position: relative;\n z-index: 1; }\n .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type=\"number\"] {\n padding: 2px;\n margin-right: 4px;\n text-align: center;\n -moz-appearance: textfield; }\n .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type=\"number\"]:focus {\n position: relative;\n z-index: 1; }\n .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type=\"number\"]::-webkit-inner-spin-button {\n -webkit-appearance: none;\n margin: 0; }\n .components-datetime__time.is-12-hour .components-datetime__time-field-day input {\n margin: -4px 0 0 !important;\n border-radius: 4px 0 0 4px !important; }\n .components-datetime__time.is-12-hour .components-datetime__time-field-year input {\n border-radius: 0 4px 4px 0 !important; }\n\n.components-datetime__time-legend {\n font-weight: 600;\n margin-top: 0.5em; }\n .components-datetime__time-legend.invisible {\n position: absolute;\n top: -999em;\n left: -999em; }\n\n.components-datetime__time-field-hours-input,\n.components-datetime__time-field-minutes-input,\n.components-datetime__time-field-day-input {\n width: 35px; }\n\n.components-datetime__time-field-year-input {\n width: 55px; }\n\n.components-datetime__time-field-month-select {\n max-width: 145px; }\n\n.components-popover .components-datetime__date {\n padding-left: 4px; }\n\n.block-editor-dimension-control .components-base-control__field {\n display: flex;\n align-items: center; }\n\n.block-editor-dimension-control .components-base-control__label {\n display: flex;\n align-items: center;\n margin-right: 1em;\n margin-bottom: 0; }\n .block-editor-dimension-control .components-base-control__label .dashicon {\n margin-right: 0.5em; }\n\n.block-editor-dimension-control.is-manual .components-base-control__label {\n width: 10em; }\n\n.components-disabled {\n position: relative;\n pointer-events: none; }\n .components-disabled::after {\n content: \"\";\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0; }\n .components-disabled * {\n pointer-events: none; }\n\nbody.is-dragging-components-draggable {\n cursor: move;\n /* Fallback for IE/Edge < 14 */\n cursor: grabbing !important; }\n\n.components-draggable__invisible-drag-image {\n position: fixed;\n left: -1000px;\n height: 50px;\n width: 50px; }\n\n.components-draggable__clone {\n position: fixed;\n padding: 20px;\n background: transparent;\n pointer-events: none;\n z-index: 1000000000;\n opacity: 0.8; }\n\n.components-drop-zone {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 40;\n visibility: hidden;\n opacity: 0;\n transition: 0.3s opacity, 0.3s background-color, 0s visibility 0.3s;\n border: 2px solid #0071a1;\n border-radius: 2px; }\n @media (prefers-reduced-motion: reduce) {\n .components-drop-zone {\n transition-duration: 0s; } }\n .components-drop-zone.is-active {\n opacity: 1;\n visibility: visible;\n transition: 0.3s opacity, 0.3s background-color; }\n @media (prefers-reduced-motion: reduce) {\n .components-drop-zone.is-active {\n transition-duration: 0s; } }\n .components-drop-zone.is-dragging-over-element {\n background-color: rgba(0, 113, 161, 0.8); }\n\n.components-drop-zone__content {\n position: absolute;\n top: 50%;\n left: 0;\n right: 0;\n z-index: 50;\n transform: translateY(-50%);\n width: 100%;\n text-align: center;\n color: #fff;\n transition: transform 0.2s ease-in-out; }\n @media (prefers-reduced-motion: reduce) {\n .components-drop-zone__content {\n transition-duration: 0s; } }\n\n.components-drop-zone.is-dragging-over-element .components-drop-zone__content {\n transform: translateY(-50%) scale(1.05); }\n\n.components-drop-zone__content-icon,\n.components-drop-zone__content-text {\n display: block; }\n\n.components-drop-zone__content-icon {\n margin: 0 auto;\n line-height: 0;\n fill: currentColor; }\n\n.components-drop-zone__content-text {\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif; }\n\n.components-drop-zone__provider {\n height: 100%; }\n\n.components-dropdown {\n display: inline-block; }\n\n.components-dropdown__content .components-popover__content {\n padding: 12px; }\n\n.components-dropdown-menu__popover .components-popover__content {\n width: 200px; }\n\n.components-dropdown-menu__menu {\n width: 100%;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px;\n line-height: 1.4; }\n .components-dropdown-menu__menu .components-dropdown-menu__menu-item,\n .components-dropdown-menu__menu .components-menu-item {\n width: 100%;\n padding: 6px;\n outline: none;\n cursor: pointer;\n margin-bottom: 4px; }\n .components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator,\n .components-dropdown-menu__menu .components-menu-item.has-separator {\n margin-top: 6px;\n position: relative;\n overflow: visible; }\n .components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator::before,\n .components-dropdown-menu__menu .components-menu-item.has-separator::before {\n display: block;\n content: \"\";\n box-sizing: content-box;\n background-color: #e2e4e7;\n position: absolute;\n top: -3px;\n left: 0;\n right: 0;\n height: 1px; }\n .components-dropdown-menu__menu .components-dropdown-menu__menu-item.is-active svg,\n .components-dropdown-menu__menu .components-menu-item.is-active svg {\n color: #fff;\n background: #1e1e1e;\n box-shadow: 0 0 0 1px #1e1e1e;\n border-radius: 1px; }\n .components-dropdown-menu__menu .components-dropdown-menu__menu-item > svg,\n .components-dropdown-menu__menu .components-menu-item > svg {\n border-radius: 2px;\n width: 24px;\n height: 24px; }\n .components-dropdown-menu__menu .components-menu-item__button,\n .components-dropdown-menu__menu .components-menu-item__button.components-button {\n min-height: 36px;\n height: auto;\n padding-left: 40px;\n text-align: left; }\n .components-dropdown-menu__menu .components-menu-item__button.has-icon,\n .components-dropdown-menu__menu .components-menu-item__button.components-button.has-icon {\n padding-left: 8px; }\n .components-dropdown-menu__menu .components-menu-group {\n padding: 12px;\n margin-top: 0;\n margin-bottom: 0;\n margin-left: -12px;\n margin-right: -12px; }\n .components-dropdown-menu__menu .components-menu-group:first-child {\n margin-top: -12px; }\n .components-dropdown-menu__menu .components-menu-group:last-child {\n margin-bottom: -12px; }\n .components-dropdown-menu__menu .components-menu-group + .components-menu-group {\n margin-top: 0;\n border-top: 1px solid #ccc;\n padding: 12px; }\n\n.components-dropdown-menu__menu.no-icons .components-menu-item__button.components-button {\n padding: 0 12px; }\n\n.components-external-link__icon {\n width: 1.4em;\n height: 1.4em;\n margin: -0.2em 0.1em 0;\n vertical-align: middle;\n fill: currentColor; }\n\n.components-focal-point-picker-wrapper {\n background-color: transparent;\n border: 1px solid #e2e4e7;\n height: 200px;\n width: 100%;\n padding: 14px; }\n\n.components-focal-point-picker {\n align-items: center;\n cursor: pointer;\n display: flex;\n height: 100%;\n justify-content: center;\n position: relative;\n width: 100%; }\n .components-focal-point-picker img {\n height: auto;\n max-height: 100%;\n max-width: 100%;\n width: auto;\n -webkit-user-select: none;\n -ms-user-select: none;\n user-select: none; }\n\n.components-focal-point-picker__icon_container {\n background-color: transparent;\n cursor: grab;\n height: 30px;\n opacity: 0.8;\n position: absolute;\n will-change: transform;\n width: 30px;\n z-index: 10000; }\n .components-focal-point-picker__icon_container.is-dragging {\n cursor: grabbing; }\n\n.components-focal-point-picker__icon {\n display: block;\n height: 100%;\n left: -15px;\n position: absolute;\n top: -15px;\n width: 100%; }\n .components-focal-point-picker__icon .components-focal-point-picker__icon-outline {\n fill: #fff; }\n .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {\n fill: #0085ba; }\n body.admin-color-sunrise .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {\n fill: #d1864a; }\n body.admin-color-ocean .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {\n fill: #a3b9a2; }\n body.admin-color-midnight .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {\n fill: #e14d43; }\n body.admin-color-ectoplasm .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {\n fill: #a7b656; }\n body.admin-color-coffee .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {\n fill: #c2a68c; }\n body.admin-color-blue .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {\n fill: #82b4cb; }\n body.admin-color-light .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {\n fill: #0085ba; }\n\n.components-focal-point-picker_position-display-container {\n margin: 1em 0;\n display: flex; }\n .components-focal-point-picker_position-display-container .components-base-control__field {\n margin: 0 1em 0 0; }\n .components-focal-point-picker_position-display-container input[type=\"number\"].components-text-control__input {\n max-width: 4em;\n padding: 6px 4px; }\n .components-focal-point-picker_position-display-container span {\n margin: 0 0 0 0.2em; }\n\n.components-font-size-picker__controls {\n max-width: 248px;\n display: flex;\n align-items: center;\n margin-bottom: 24px; }\n .components-font-size-picker__controls .components-font-size-picker__number {\n display: inline-block;\n font-weight: 500;\n height: 30px;\n margin-bottom: 0;\n margin-left: 0;\n margin-right: 8px;\n margin-top: 5px;\n width: 54px; }\n .components-font-size-picker__controls .components-font-size-picker__number[value=\"\"] + .components-button {\n cursor: default;\n opacity: 0.3;\n pointer-events: none; }\n .components-font-size-picker__controls .components-font-size-picker__number-container {\n display: flex;\n flex-direction: column; }\n .components-font-size-picker__controls .components-font-size-picker__select {\n margin-right: 8px;\n flex-grow: 1; }\n .components-font-size-picker__controls .components-color-palette__clear {\n height: 30px;\n margin-top: 23px; }\n\n.components-font-size-picker__custom-input .components-range-control__slider + .dashicon {\n width: 30px;\n height: 30px; }\n\n.components-font-size-picker {\n border: 0;\n padding: 0;\n margin: 0; }\n\n.components-form-toggle {\n position: relative;\n display: inline-block; }\n .components-form-toggle .components-form-toggle__on,\n .components-form-toggle .components-form-toggle__off {\n position: absolute;\n top: 6px;\n box-sizing: border-box; }\n .components-form-toggle .components-form-toggle__off {\n color: #6c7781;\n fill: currentColor;\n right: 6px; }\n .components-form-toggle .components-form-toggle__on {\n left: 8px; }\n .components-form-toggle .components-form-toggle__track {\n content: \"\";\n display: inline-block;\n box-sizing: border-box;\n vertical-align: top;\n background-color: #fff;\n border: 2px solid #6c7781;\n width: 36px;\n height: 18px;\n border-radius: 9px;\n transition: 0.2s background ease; }\n @media (prefers-reduced-motion: reduce) {\n .components-form-toggle .components-form-toggle__track {\n transition-duration: 0s; } }\n .components-form-toggle .components-form-toggle__thumb {\n display: block;\n position: absolute;\n box-sizing: border-box;\n top: 4px;\n left: 4px;\n width: 10px;\n height: 10px;\n border-radius: 50%;\n transition: 0.1s transform ease;\n background-color: #6c7781;\n border: 5px solid #6c7781; }\n @media (prefers-reduced-motion: reduce) {\n .components-form-toggle .components-form-toggle__thumb {\n transition-duration: 0s; } }\n .components-form-toggle:hover .components-form-toggle__track {\n border: 2px solid #555d66; }\n .components-form-toggle:hover .components-form-toggle__thumb {\n background-color: #555d66;\n border: 5px solid #6c7781; }\n .components-form-toggle:hover .components-form-toggle__off {\n color: #555d66; }\n .components-form-toggle.is-checked .components-form-toggle__track {\n background-color: #11a0d2;\n border: 2px solid #11a0d2;\n border: 9px solid transparent; }\n body.admin-color-sunrise .components-form-toggle.is-checked .components-form-toggle__track {\n background-color: #c8b03c;\n border: 2px solid #c8b03c; }\n body.admin-color-ocean .components-form-toggle.is-checked .components-form-toggle__track {\n background-color: #a3b9a2;\n border: 2px solid #a3b9a2; }\n body.admin-color-midnight .components-form-toggle.is-checked .components-form-toggle__track {\n background-color: #77a6b9;\n border: 2px solid #77a6b9; }\n body.admin-color-ectoplasm .components-form-toggle.is-checked .components-form-toggle__track {\n background-color: #a7b656;\n border: 2px solid #a7b656; }\n body.admin-color-coffee .components-form-toggle.is-checked .components-form-toggle__track {\n background-color: #c2a68c;\n border: 2px solid #c2a68c; }\n body.admin-color-blue .components-form-toggle.is-checked .components-form-toggle__track {\n background-color: #82b4cb;\n border: 2px solid #82b4cb; }\n body.admin-color-light .components-form-toggle.is-checked .components-form-toggle__track {\n background-color: #11a0d2;\n border: 2px solid #11a0d2; }\n .components-form-toggle__input:focus + .components-form-toggle__track {\n box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px #007cba;\n outline: 2px solid transparent;\n outline-offset: 2px; }\n body.admin-color-sunrise .components-form-toggle__input:focus + .components-form-toggle__track {\n box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px #d1864a; }\n body.admin-color-ocean .components-form-toggle__input:focus + .components-form-toggle__track {\n box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px #a3b9a2; }\n body.admin-color-midnight .components-form-toggle__input:focus + .components-form-toggle__track {\n box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px #e14d43; }\n body.admin-color-ectoplasm .components-form-toggle__input:focus + .components-form-toggle__track {\n box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px #a7b656; }\n body.admin-color-coffee .components-form-toggle__input:focus + .components-form-toggle__track {\n box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px #c2a68c; }\n body.admin-color-blue .components-form-toggle__input:focus + .components-form-toggle__track {\n box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px #d9ab59; }\n body.admin-color-light .components-form-toggle__input:focus + .components-form-toggle__track {\n box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px #0085ba; }\n .components-form-toggle.is-checked .components-form-toggle__thumb {\n background-color: #fff;\n border-width: 0;\n transform: translateX(18px); }\n .components-form-toggle.is-checked::before {\n background-color: #11a0d2;\n border: 2px solid #11a0d2; }\n body.admin-color-sunrise .components-form-toggle.is-checked::before {\n background-color: #c8b03c;\n border: 2px solid #c8b03c; }\n body.admin-color-ocean .components-form-toggle.is-checked::before {\n background-color: #a3b9a2;\n border: 2px solid #a3b9a2; }\n body.admin-color-midnight .components-form-toggle.is-checked::before {\n background-color: #77a6b9;\n border: 2px solid #77a6b9; }\n body.admin-color-ectoplasm .components-form-toggle.is-checked::before {\n background-color: #a7b656;\n border: 2px solid #a7b656; }\n body.admin-color-coffee .components-form-toggle.is-checked::before {\n background-color: #c2a68c;\n border: 2px solid #c2a68c; }\n body.admin-color-blue .components-form-toggle.is-checked::before {\n background-color: #82b4cb;\n border: 2px solid #82b4cb; }\n body.admin-color-light .components-form-toggle.is-checked::before {\n background-color: #11a0d2;\n border: 2px solid #11a0d2; }\n .components-disabled .components-form-toggle {\n opacity: 0.3; }\n\n.components-form-toggle input.components-form-toggle__input[type=\"checkbox\"] {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n opacity: 0;\n margin: 0;\n padding: 0;\n z-index: 1;\n border: none; }\n .components-form-toggle input.components-form-toggle__input[type=\"checkbox\"]:checked {\n background: none; }\n .components-form-toggle input.components-form-toggle__input[type=\"checkbox\"]::before {\n content: \"\"; }\n\n.components-form-toggle .components-form-toggle__on {\n outline: 1px solid transparent;\n outline-offset: -1px;\n border: 1px solid #000;\n filter: invert(100%) contrast(500%); }\n\n@supports (-ms-high-contrast-adjust: auto) {\n .components-form-toggle .components-form-toggle__on {\n filter: none;\n border: 1px solid #fff; } }\n\n.components-form-token-field__input-container {\n display: flex;\n flex-wrap: wrap;\n align-items: flex-start;\n width: 100%;\n margin: 0 0 8px 0;\n padding: 4px;\n background-color: #fff;\n border: 1px solid #ccd0d4;\n color: #32373c;\n cursor: text;\n box-shadow: 0 0 0 transparent;\n transition: box-shadow 0.1s linear;\n border-radius: 2px;\n border: 1px solid #757575; }\n @media (prefers-reduced-motion: reduce) {\n .components-form-token-field__input-container {\n transition-duration: 0s; } }\n .components-form-token-field__input-container.is-disabled {\n background: #e2e4e7;\n border-color: #ccd0d4; }\n .components-form-token-field__input-container.is-active {\n border-color: rgb(0, 124, 186);\n box-shadow: 0 0 0 0.5px #007cba;\n outline: 2px solid transparent; }\n body.admin-color-sunrise .components-form-token-field__input-container.is-active {\n border-color: rgb(209, 134, 74);\n box-shadow: 0 0 0 0.5px #d1864a; }\n body.admin-color-ocean .components-form-token-field__input-container.is-active {\n border-color: rgb(163, 185, 162);\n box-shadow: 0 0 0 0.5px #a3b9a2; }\n body.admin-color-midnight .components-form-token-field__input-container.is-active {\n border-color: rgb(225, 77, 67);\n box-shadow: 0 0 0 0.5px #e14d43; }\n body.admin-color-ectoplasm .components-form-token-field__input-container.is-active {\n border-color: rgb(167, 182, 86);\n box-shadow: 0 0 0 0.5px #a7b656; }\n body.admin-color-coffee .components-form-token-field__input-container.is-active {\n border-color: rgb(194, 166, 140);\n box-shadow: 0 0 0 0.5px #c2a68c; }\n body.admin-color-blue .components-form-token-field__input-container.is-active {\n border-color: rgb(217, 171, 89);\n box-shadow: 0 0 0 0.5px #d9ab59; }\n body.admin-color-light .components-form-token-field__input-container.is-active {\n border-color: rgb(0, 133, 186);\n box-shadow: 0 0 0 0.5px #0085ba; }\n .components-form-token-field__input-container input[type=\"text\"].components-form-token-field__input {\n display: inline-block;\n width: 100%;\n max-width: 100%;\n margin: 2px 0 2px 8px;\n padding: 0;\n min-height: 24px;\n background: inherit;\n border: 0;\n color: #23282d;\n box-shadow: none; }\n .components-form-token-field__input-container input[type=\"text\"].components-form-token-field__input:focus,\n .components-form-token-field.is-active .components-form-token-field__input-container input[type=\"text\"].components-form-token-field__input {\n outline: none;\n box-shadow: none; }\n .components-form-token-field__input-container .components-form-token-field__token + input[type=\"text\"].components-form-token-field__input {\n width: auto; }\n\n.components-form-token-field__label {\n display: inline-block;\n margin-bottom: 4px; }\n\n.components-form-token-field__help {\n font-style: italic; }\n\n.components-form-token-field__token {\n font-size: 13px;\n display: flex;\n margin: 2px 4px 2px 0;\n color: #32373c;\n overflow: hidden; }\n .components-form-token-field__token.is-success .components-form-token-field__token-text,\n .components-form-token-field__token.is-success .components-form-token-field__remove-token {\n background: #4ab866; }\n .components-form-token-field__token.is-error .components-form-token-field__token-text,\n .components-form-token-field__token.is-error .components-form-token-field__remove-token {\n background: #d94f4f; }\n .components-form-token-field__token.is-validating .components-form-token-field__token-text,\n .components-form-token-field__token.is-validating .components-form-token-field__remove-token {\n color: #555d66; }\n .components-form-token-field__token.is-borderless {\n position: relative;\n padding: 0 16px 0 0; }\n .components-form-token-field__token.is-borderless .components-form-token-field__token-text {\n background: transparent;\n color: #11a0d2; }\n body.admin-color-sunrise .components-form-token-field__token.is-borderless .components-form-token-field__token-text {\n color: #c8b03c; }\n body.admin-color-ocean .components-form-token-field__token.is-borderless .components-form-token-field__token-text {\n color: #a89d8a; }\n body.admin-color-midnight .components-form-token-field__token.is-borderless .components-form-token-field__token-text {\n color: #77a6b9; }\n body.admin-color-ectoplasm .components-form-token-field__token.is-borderless .components-form-token-field__token-text {\n color: #c77430; }\n body.admin-color-coffee .components-form-token-field__token.is-borderless .components-form-token-field__token-text {\n color: #9fa47b; }\n body.admin-color-blue .components-form-token-field__token.is-borderless .components-form-token-field__token-text {\n color: #d9ab59; }\n body.admin-color-light .components-form-token-field__token.is-borderless .components-form-token-field__token-text {\n color: #c75726; }\n .components-form-token-field__token.is-borderless .components-form-token-field__remove-token {\n background: transparent;\n color: #555d66;\n position: absolute;\n top: 1px;\n right: 0; }\n .components-form-token-field__token.is-borderless.is-success .components-form-token-field__token-text {\n color: #4ab866; }\n .components-form-token-field__token.is-borderless.is-error .components-form-token-field__token-text {\n color: #d94f4f;\n border-radius: 4px 0 0 4px;\n padding: 0 4px 0 6px; }\n .components-form-token-field__token.is-borderless.is-validating .components-form-token-field__token-text {\n color: #23282d; }\n .components-form-token-field__token.is-disabled .components-form-token-field__remove-token {\n cursor: default; }\n\n.components-form-token-field__token-text,\n.components-form-token-field__remove-token.components-button {\n display: inline-block;\n line-height: 24px;\n height: auto;\n background: #e2e4e7;\n transition: all 0.2s cubic-bezier(0.4, 1, 0.4, 1); }\n @media (prefers-reduced-motion: reduce) {\n .components-form-token-field__token-text,\n .components-form-token-field__remove-token.components-button {\n transition-duration: 0s;\n animation-duration: 1ms; } }\n\n.components-form-token-field__token-text {\n border-radius: 12px 0 0 12px;\n padding: 0 4px 0 8px;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis; }\n\n.components-form-token-field__remove-token.components-button {\n cursor: pointer;\n border-radius: 0 12px 12px 0;\n padding: 0 2px;\n color: #555d66;\n line-height: 10px;\n overflow: initial; }\n .components-form-token-field__remove-token.components-button:hover {\n color: #32373c; }\n\n.components-form-token-field__suggestions-list {\n flex: 1 0 100%;\n min-width: 100%;\n max-height: 9em;\n overflow-y: scroll;\n transition: all 0.15s ease-in-out;\n list-style: none;\n border-top: 1px solid #6c7781;\n margin: 4px -4px -4px;\n padding-top: 3px; }\n @media (prefers-reduced-motion: reduce) {\n .components-form-token-field__suggestions-list {\n transition-duration: 0s; } }\n\n.components-form-token-field__suggestion {\n color: #555d66;\n display: block;\n font-size: 13px;\n padding: 4px 8px;\n cursor: pointer; }\n .components-form-token-field__suggestion.is-selected {\n background: #0071a1;\n color: #fff; }\n\n.components-form-token-field__suggestion-match {\n text-decoration: underline; }\n\n.components-guide .components-modal__header {\n background: none;\n border-bottom: none; }\n .components-guide .components-modal__header .components-button {\n align-self: flex-start;\n margin-top: 24px;\n position: static; }\n\n.components-guide__container {\n display: flex;\n flex-direction: column;\n margin-top: -60px;\n min-height: 100%; }\n\n.components-guide__footer {\n align-content: center;\n display: flex;\n height: 30px;\n justify-content: center;\n margin: auto 0 24px 0;\n position: relative;\n width: 100%; }\n @media (min-width: 600px) {\n .components-guide__footer {\n margin: 24px 0 0; } }\n\n.components-guide__page-control {\n margin: 0; }\n .components-guide__page-control li {\n display: inline-block;\n margin: 0 2px; }\n .components-guide__page-control .components-button {\n height: 30px; }\n\n@media (max-width: 600px) {\n .components-modal__frame.components-guide {\n bottom: 15%;\n left: 24px;\n right: 24px;\n top: 15%; } }\n\n.components-button.components-guide__back-button, .components-button.components-guide__forward-button, .components-button.components-guide__finish-button {\n height: 30px;\n position: absolute; }\n\n.components-button.components-guide__back-button, .components-button.components-guide__forward-button {\n font-size: 0;\n padding: 4px 2px; }\n .components-button.components-guide__back-button.has-text svg, .components-button.components-guide__forward-button.has-text svg {\n margin: 0; }\n @media (min-width: 600px) {\n .components-button.components-guide__back-button, .components-button.components-guide__forward-button {\n font-size: 13px; } }\n\n.components-button.components-guide__back-button {\n left: 0; }\n @media (min-width: 600px) {\n .components-button.components-guide__back-button {\n padding: 4px 8px 4px 2px; }\n .components-button.components-guide__back-button.has-text svg {\n margin-right: 4px; } }\n\n.components-button.components-guide__forward-button {\n right: 0; }\n @media (min-width: 600px) {\n .components-button.components-guide__forward-button {\n padding: 4px 2px 4px 8px; }\n .components-button.components-guide__forward-button.has-text svg {\n margin-left: 4px;\n order: 1; } }\n\n.components-button.components-guide__finish-button {\n display: none;\n right: 0; }\n @media (min-width: 600px) {\n .components-button.components-guide__finish-button {\n display: block; } }\n\n@media (min-width: 600px) {\n .components-button.components-guide__inline-finish-button {\n display: none; } }\n\n.components-navigate-regions.is-focusing-regions [role=\"region\"] {\n position: relative; }\n .components-navigate-regions.is-focusing-regions [role=\"region\"]:focus::after {\n content: \"\";\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n pointer-events: none;\n outline: 4px solid transparent;\n box-shadow: inset 0 0 0 4px #33b3db; }\n @supports (outline-offset: 1px) {\n .components-navigate-regions.is-focusing-regions [role=\"region\"]:focus::after {\n content: none; }\n .components-navigate-regions.is-focusing-regions [role=\"region\"]:focus {\n outline-style: solid;\n outline-color: #33b3db;\n outline-width: 4px;\n outline-offset: -4px; } }\n\n.components-menu-group + .components-menu-group {\n margin-top: 8px;\n padding-top: 8px;\n border-top: 1px solid #1e1e1e; }\n\n.components-menu-group__label {\n margin-bottom: 8px;\n color: #757575;\n padding: 0; }\n\n.components-menu-item__button,\n.components-menu-item__button.components-button {\n width: 100%; }\n .components-menu-item__button .dashicon,\n .components-menu-item__button .components-menu-items__item-icon,\n .components-menu-item__button svg.components-menu-items__item-icon,\n .components-menu-item__button > span > svg,\n .components-menu-item__button.components-button .dashicon,\n .components-menu-item__button.components-button .components-menu-items__item-icon,\n .components-menu-item__button.components-button svg.components-menu-items__item-icon,\n .components-menu-item__button.components-button > span > svg {\n margin-right: 8px; }\n .components-menu-item__button .components-menu-items__item-icon,\n .components-menu-item__button.components-button .components-menu-items__item-icon {\n display: inline-block;\n flex: 0 0 auto; }\n\n.components-menu-item__info-wrapper {\n display: flex;\n flex-direction: column; }\n\n.components-menu-item__info {\n margin-top: 4px;\n font-size: 12px;\n color: #757575; }\n\n.components-menu-item__shortcut {\n -ms-grid-row-align: center;\n align-self: center;\n margin-right: 0;\n margin-left: auto;\n padding-left: 12px;\n color: currentColor;\n display: none; }\n @media (min-width: 480px) {\n .components-menu-item__shortcut {\n display: inline; } }\n\n.components-menu-items-choice,\n.components-menu-items-choice.components-button {\n padding-left: 40px; }\n .components-menu-items-choice svg,\n .components-menu-items-choice.components-button svg {\n margin-right: 8px; }\n .components-menu-items-choice.has-icon,\n .components-menu-items-choice.components-button.has-icon {\n padding-left: 8px; }\n\n.components-modal__screen-overlay {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n background-color: rgba(0, 0, 0, 0.7);\n z-index: 100000;\n animation: edit-post__fade-in-animation 0.2s ease-out 0s;\n animation-fill-mode: forwards; }\n @media (prefers-reduced-motion: reduce) {\n .components-modal__screen-overlay {\n animation-duration: 1ms; } }\n\n.components-modal__frame {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n box-sizing: border-box;\n margin: 0;\n border: 1px solid #e2e4e7;\n background: #fff;\n box-shadow: 0 3px 30px rgba(25, 30, 35, 0.2);\n overflow: auto; }\n @media (min-width: 600px) {\n .components-modal__frame {\n top: 50%;\n right: auto;\n bottom: auto;\n left: 50%;\n min-width: 360px;\n max-width: calc(100% - 16px - 16px);\n max-height: calc(100% - 60px - 60px);\n transform: translate(-50%, -50%);\n animation: components-modal__appear-animation 0.1s ease-out;\n animation-fill-mode: forwards; } }\n @media (min-width: 600px) and (prefers-reduced-motion: reduce) {\n .components-modal__frame {\n animation-duration: 1ms; } }\n\n@keyframes components-modal__appear-animation {\n from {\n margin-top: 32px; }\n to {\n margin-top: 0; } }\n\n.components-modal__header {\n box-sizing: border-box;\n border-bottom: 1px solid #e2e4e7;\n padding: 0 24px;\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n background: #fff;\n align-items: center;\n height: 60px;\n z-index: 10;\n position: relative;\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n margin: 0 -24px 24px; }\n @supports (-ms-ime-align: auto) {\n .components-modal__header {\n position: fixed;\n width: 100%; } }\n .components-modal__header .components-modal__header-heading {\n font-size: 1rem;\n font-weight: 600; }\n .components-modal__header h1 {\n line-height: 1;\n margin: 0; }\n .components-modal__header .components-button {\n position: relative;\n left: 8px; }\n\n.components-modal__header-heading-container {\n align-items: center;\n flex-grow: 1;\n display: flex;\n flex-direction: row;\n justify-content: left; }\n\n.components-modal__header-icon-container {\n display: inline-block; }\n .components-modal__header-icon-container svg {\n max-width: 36px;\n max-height: 36px;\n padding: 8px; }\n\n.components-modal__content {\n box-sizing: border-box;\n height: 100%;\n padding: 0 24px 24px; }\n @supports (-ms-ime-align: auto) {\n .components-modal__content {\n padding-top: 60px; } }\n\n.components-notice {\n display: flex;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px;\n background-color: #e5f5fa;\n border-left: 4px solid #00a0d2;\n margin: 5px 15px 2px;\n padding: 8px 12px;\n align-items: center; }\n .components-notice.is-dismissible {\n padding-right: 36px;\n position: relative; }\n .components-notice.is-success {\n border-left-color: #4ab866;\n background-color: #eff9f1; }\n .components-notice.is-warning {\n border-left-color: #f0b849;\n background-color: #fef8ee; }\n .components-notice.is-error {\n border-left-color: #d94f4f;\n background-color: #f9e2e2; }\n\n.components-notice__content {\n flex-grow: 1;\n margin: 4px 25px 4px 0; }\n\n.components-notice__action.components-button, .components-notice__action.components-button.is-link {\n margin-left: 12px; }\n\n.components-notice__action.components-button.is-secondary {\n vertical-align: initial; }\n\n.components-notice__dismiss {\n color: #6c7781;\n align-self: flex-start;\n flex-shrink: 0; }\n .components-notice__dismiss:not(:disabled):not([aria-disabled=\"true\"]):not(.is-secondary):hover, .components-notice__dismiss:not(:disabled):not([aria-disabled=\"true\"]):not(.is-secondary):active, .components-notice__dismiss:not(:disabled):not([aria-disabled=\"true\"]):focus {\n color: #191e23;\n background-color: transparent; }\n .components-notice__dismiss:not(:disabled):not([aria-disabled=\"true\"]):not(.is-secondary):hover {\n box-shadow: none; }\n\n.components-notice-list {\n max-width: 100vw;\n box-sizing: border-box;\n z-index: 29; }\n .components-notice-list .components-notice__content {\n margin-top: 12px;\n margin-bottom: 12px;\n line-height: 2; }\n .components-notice-list .components-notice__action.components-button {\n display: block;\n margin-left: 0;\n margin-top: 8px; }\n\n.components-panel {\n background: #fff;\n border: 1px solid #e2e4e7; }\n .components-panel > .components-panel__header:first-child,\n .components-panel > .components-panel__body:first-child {\n margin-top: -1px; }\n .components-panel > .components-panel__header:last-child,\n .components-panel > .components-panel__body:last-child {\n border-bottom-width: 0; }\n\n.components-panel + .components-panel {\n margin-top: -1px; }\n\n.components-panel__body {\n border-top: 1px solid #e2e4e7;\n border-bottom: 1px solid #e2e4e7; }\n .components-panel__body h3 {\n margin: 0 0 0.5em; }\n .components-panel__body.is-opened {\n padding: 16px; }\n\n.components-panel__header {\n display: flex;\n justify-content: space-between;\n align-items: center;\n padding: 0 16px;\n height: 50px;\n border-top: 1px solid #e2e4e7;\n border-bottom: 1px solid #e2e4e7; }\n .components-panel__header h2 {\n margin: 0;\n font-size: inherit;\n color: inherit; }\n\n.components-panel__body + .components-panel__body,\n.components-panel__body + .components-panel__header,\n.components-panel__header + .components-panel__body,\n.components-panel__header + .components-panel__header {\n margin-top: -1px; }\n\n.components-panel__body > .components-panel__body-title {\n display: block;\n padding: 0;\n font-size: inherit;\n margin-top: 0;\n margin-bottom: 0;\n transition: 0.1s background ease-in-out; }\n @media (prefers-reduced-motion: reduce) {\n .components-panel__body > .components-panel__body-title {\n transition-duration: 0s; } }\n\n.components-panel__body.is-opened > .components-panel__body-title {\n margin: -16px;\n margin-bottom: 5px; }\n\n.components-panel__body > .components-panel__body-title:hover {\n background: #f3f4f5;\n border: none; }\n\n.components-panel__body-toggle.components-button {\n position: relative;\n padding: 15px;\n outline: none;\n width: 100%;\n font-weight: 600;\n text-align: left;\n color: #191e23;\n border: none;\n box-shadow: none;\n transition: 0.1s background ease-in-out;\n height: auto;\n /* rtl:begin:ignore */\n /* rtl:end:ignore */ }\n @media (prefers-reduced-motion: reduce) {\n .components-panel__body-toggle.components-button {\n transition-duration: 0s; } }\n .components-panel__body-toggle.components-button:focus {\n box-shadow: inset 0 0 0 1.5px #007cba;\n border-radius: 0; }\n body.admin-color-sunrise .components-panel__body-toggle.components-button:focus {\n box-shadow: inset 0 0 0 1.5px #d1864a; }\n body.admin-color-ocean .components-panel__body-toggle.components-button:focus {\n box-shadow: inset 0 0 0 1.5px #a3b9a2; }\n body.admin-color-midnight .components-panel__body-toggle.components-button:focus {\n box-shadow: inset 0 0 0 1.5px #e14d43; }\n body.admin-color-ectoplasm .components-panel__body-toggle.components-button:focus {\n box-shadow: inset 0 0 0 1.5px #a7b656; }\n body.admin-color-coffee .components-panel__body-toggle.components-button:focus {\n box-shadow: inset 0 0 0 1.5px #c2a68c; }\n body.admin-color-blue .components-panel__body-toggle.components-button:focus {\n box-shadow: inset 0 0 0 1.5px #d9ab59; }\n body.admin-color-light .components-panel__body-toggle.components-button:focus {\n box-shadow: inset 0 0 0 1.5px #0085ba; }\n .components-panel__body-toggle.components-button .components-panel__arrow {\n position: absolute;\n right: 16px;\n top: 50%;\n transform: translateY(-50%);\n color: #191e23;\n fill: currentColor;\n transition: 0.1s color ease-in-out; }\n @media (prefers-reduced-motion: reduce) {\n .components-panel__body-toggle.components-button .components-panel__arrow {\n transition-duration: 0s; } }\n body.rtl .components-panel__body-toggle.components-button .dashicons-arrow-right {\n transform: scaleX(-1);\n -ms-filter: fliph;\n filter: FlipH;\n margin-top: -10px; }\n\n.components-panel__icon {\n color: #555d66;\n margin: -2px 0 -2px 6px; }\n\n.components-panel__body-toggle-icon {\n margin-right: -5px; }\n\n.components-panel__color-title {\n float: left;\n height: 19px; }\n\n.components-panel__row {\n display: flex;\n justify-content: space-between;\n align-items: center;\n margin-top: 20px; }\n .components-panel__row select {\n min-width: 0; }\n .components-panel__row label {\n margin-right: 10px;\n flex-shrink: 0;\n max-width: 75%; }\n .components-panel__row:empty, .components-panel__row:first-of-type {\n margin-top: 0; }\n\n.components-panel .circle-picker {\n padding-bottom: 20px; }\n\n.components-placeholder.components-placeholder {\n position: relative;\n padding: 1em;\n min-height: 200px;\n width: 100%;\n text-align: left;\n margin: 0;\n color: #1e1e1e;\n -moz-font-smoothing: subpixel-antialiased;\n -webkit-font-smoothing: subpixel-antialiased;\n border-radius: 2px;\n background-color: #fff;\n box-shadow: inset 0 0 0 1px #1e1e1e;\n outline: 1px solid transparent; }\n @supports ((position: -webkit-sticky) or (position: sticky)) {\n .components-placeholder.components-placeholder {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: flex-start; } }\n .components-placeholder.components-placeholder .components-base-control__label {\n font-size: 13px; }\n\n.components-placeholder__error,\n.components-placeholder__instructions,\n.components-placeholder__label,\n.components-placeholder__fieldset {\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px; }\n\n.components-placeholder__label {\n display: flex;\n font-weight: 600;\n margin-bottom: 16px;\n align-items: center; }\n .components-placeholder__label > svg,\n .components-placeholder__label .dashicon,\n .components-placeholder__label .block-editor-block-icon {\n fill: currentColor;\n margin-right: 1ch; }\n\n.components-placeholder__fieldset,\n.components-placeholder__fieldset form {\n display: flex;\n flex-direction: row;\n width: 100%;\n flex-wrap: wrap;\n z-index: 1; }\n .components-placeholder__fieldset p,\n .components-placeholder__fieldset form p {\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px; }\n\n.components-placeholder__fieldset.is-column-layout,\n.components-placeholder__fieldset.is-column-layout form {\n flex-direction: column; }\n\n.components-placeholder__input {\n margin: 0 8px 0 0;\n flex: 1 1 auto; }\n\n.components-placeholder__instructions {\n margin-bottom: 1em; }\n\n.components-placeholder__error {\n margin-top: 1em;\n width: 100%; }\n\n.components-placeholder__preview img {\n margin: 3%;\n width: 50%; }\n\n.components-placeholder__fieldset .components-button {\n margin-right: 12px;\n margin-bottom: 12px; }\n .components-placeholder__fieldset .components-button:last-child {\n margin-bottom: 0;\n margin-right: 0; }\n\n.components-placeholder__fieldset .components-button:not(.is-link) ~ .components-button.is-link {\n margin-left: 10px;\n margin-right: 10px; }\n .components-placeholder__fieldset .components-button:not(.is-link) ~ .components-button.is-link:last-child {\n margin-right: 0; }\n\n.components-placeholder.is-large .components-placeholder__label {\n font-size: 18pt;\n font-weight: normal; }\n\n.components-placeholder.is-medium .components-placeholder__instructions, .components-placeholder.is-small .components-placeholder__instructions {\n display: none; }\n\n.components-placeholder.is-medium .components-placeholder__fieldset,\n.components-placeholder.is-medium .components-placeholder__fieldset form, .components-placeholder.is-small .components-placeholder__fieldset,\n.components-placeholder.is-small .components-placeholder__fieldset form {\n flex-direction: column; }\n\n.components-placeholder.is-medium .components-placeholder__fieldset .components-button, .components-placeholder.is-small .components-placeholder__fieldset .components-button {\n margin-right: auto; }\n\n.components-placeholder.is-small .components-button {\n padding: 0 8px 2px; }\n\n/*!rtl:begin:ignore*/\n.components-popover {\n position: fixed;\n z-index: 1000000;\n top: 0;\n left: 0;\n opacity: 0; }\n .components-popover.is-expanded, .components-popover[data-x-axis][data-y-axis] {\n opacity: 1; }\n .components-popover.is-expanded {\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n z-index: 1000000 !important; }\n .components-popover:not(.is-without-arrow) {\n margin-left: 2px; }\n .components-popover:not(.is-without-arrow)::before {\n border: 8px solid #1e1e1e; }\n .components-popover:not(.is-without-arrow)::after {\n border: 8px solid #fff; }\n .components-popover:not(.is-without-arrow)::before, .components-popover:not(.is-without-arrow)::after {\n content: \"\";\n position: absolute;\n height: 0;\n width: 0;\n line-height: 0; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"top\"] {\n margin-top: -8px; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"top\"]::before {\n bottom: -8px; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"top\"]::after {\n bottom: -6px; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"top\"]::before, .components-popover:not(.is-without-arrow)[data-y-axis=\"top\"]::after {\n border-bottom: none;\n border-left-color: transparent;\n border-right-color: transparent;\n border-top-style: solid;\n margin-left: -10px; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"bottom\"] {\n margin-top: 8px; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"bottom\"]::before {\n top: -8px; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"bottom\"]::after {\n top: -6px; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"bottom\"]::before, .components-popover:not(.is-without-arrow)[data-y-axis=\"bottom\"]::after {\n border-bottom-style: solid;\n border-left-color: transparent;\n border-right-color: transparent;\n border-top: none;\n margin-left: -10px; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"middle\"][data-x-axis=\"left\"] {\n margin-left: -8px; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"middle\"][data-x-axis=\"left\"]::before {\n right: -8px; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"middle\"][data-x-axis=\"left\"]::after {\n right: -6px; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"middle\"][data-x-axis=\"left\"]::before, .components-popover:not(.is-without-arrow)[data-y-axis=\"middle\"][data-x-axis=\"left\"]::after {\n border-bottom-color: transparent;\n border-left-style: solid;\n border-right: none;\n border-top-color: transparent; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"middle\"][data-x-axis=\"right\"] {\n margin-left: 8px; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"middle\"][data-x-axis=\"right\"]::before {\n left: -8px; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"middle\"][data-x-axis=\"right\"]::after {\n left: -6px; }\n .components-popover:not(.is-without-arrow)[data-y-axis=\"middle\"][data-x-axis=\"right\"]::before, .components-popover:not(.is-without-arrow)[data-y-axis=\"middle\"][data-x-axis=\"right\"]::after {\n border-bottom-color: transparent;\n border-left: none;\n border-right-style: solid;\n border-top-color: transparent; }\n .components-popover[data-y-axis=\"top\"] {\n bottom: 100%; }\n .components-popover[data-y-axis=\"bottom\"] {\n top: 100%; }\n .components-popover[data-y-axis=\"middle\"] {\n align-items: center;\n display: flex; }\n .components-popover.is-from-top {\n margin-top: 12px; }\n .components-popover.is-from-bottom {\n margin-top: -12px; }\n .components-popover.is-from-left:not(.is-from-top):not(.is-from-bottom) {\n margin-left: 12px; }\n .components-popover.is-from-right:not(.is-from-top):not(.is-from-bottom) {\n margin-right: 12px; }\n\n.components-popover__content {\n height: 100%;\n background: #fff;\n border: 1px solid #ccc;\n box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);\n border-radius: 2px; }\n .is-alternate .components-popover__content {\n border: 1px solid #1e1e1e;\n box-shadow: none; }\n .components-popover .components-popover__content {\n position: absolute;\n height: auto;\n overflow-y: auto;\n min-width: 260px; }\n .components-popover.is-expanded .components-popover__content {\n position: static;\n height: calc(100% - 50px);\n overflow-y: visible;\n min-width: auto;\n border: none;\n border-top: 1px solid #1e1e1e; }\n .components-popover[data-y-axis=\"top\"] .components-popover__content {\n bottom: 100%; }\n .components-popover[data-x-axis=\"center\"] .components-popover__content {\n left: 50%;\n transform: translateX(-50%); }\n .components-popover[data-x-axis=\"right\"] .components-popover__content {\n position: absolute;\n left: 100%; }\n .components-popover:not([data-y-axis=\"middle\"])[data-x-axis=\"right\"] .components-popover__content {\n margin-left: -24px; }\n .components-popover[data-x-axis=\"left\"] .components-popover__content {\n position: absolute;\n right: 100%; }\n .components-popover:not([data-y-axis=\"middle\"])[data-x-axis=\"left\"] .components-popover__content {\n margin-right: -24px; }\n\n.components-popover__content > div {\n height: 100%; }\n\n.components-popover__header {\n align-items: center;\n background: #fff;\n display: flex;\n height: 50px;\n justify-content: space-between;\n padding: 0 8px 0 16px; }\n\n.components-popover__header-title {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n width: 100%; }\n\n.components-popover__close.components-button {\n z-index: 5; }\n\n/*!rtl:end:ignore*/\n.components-radio-control {\n display: flex;\n flex-direction: column; }\n .components-radio-control .components-base-control__help {\n margin-top: 0; }\n .components-radio-control .components-base-control__field {\n margin-bottom: 0; }\n\n.components-radio-control__option:not(:last-child) {\n margin-bottom: 4px; }\n\n.components-radio-control__input[type=\"radio\"] {\n margin-top: 0;\n margin-right: 6px; }\n\n.components-resizable-box__handle {\n display: none;\n width: 23px;\n height: 23px; }\n .components-resizable-box__container.has-show-handle .components-resizable-box__handle {\n display: block; }\n\n.components-resizable-box__handle::after {\n display: block;\n content: \"\";\n width: 15px;\n height: 15px;\n border: 2px solid #fff;\n border-radius: 50%;\n background: #0085ba;\n cursor: inherit;\n position: absolute;\n top: calc(50% - 8px);\n right: calc(50% - 8px); }\n\nbody.admin-color-sunrise .components-resizable-box__handle::after {\n background: #d1864a; }\n\nbody.admin-color-ocean .components-resizable-box__handle::after {\n background: #a3b9a2; }\n\nbody.admin-color-midnight .components-resizable-box__handle::after {\n background: #e14d43; }\n\nbody.admin-color-ectoplasm .components-resizable-box__handle::after {\n background: #a7b656; }\n\nbody.admin-color-coffee .components-resizable-box__handle::after {\n background: #c2a68c; }\n\nbody.admin-color-blue .components-resizable-box__handle::after {\n background: #82b4cb; }\n\nbody.admin-color-light .components-resizable-box__handle::after {\n background: #0085ba; }\n\n.components-resizable-box__side-handle::before {\n display: block;\n content: \"\";\n width: 7px;\n height: 7px;\n border: 2px solid #fff;\n background: #0085ba;\n cursor: inherit;\n position: absolute;\n top: calc(50% - 4px);\n right: calc(50% - 4px);\n transition: transform 0.1s ease-in;\n opacity: 0; }\n\nbody.admin-color-sunrise .components-resizable-box__side-handle::before {\n background: #d1864a; }\n\nbody.admin-color-ocean .components-resizable-box__side-handle::before {\n background: #a3b9a2; }\n\nbody.admin-color-midnight .components-resizable-box__side-handle::before {\n background: #e14d43; }\n\nbody.admin-color-ectoplasm .components-resizable-box__side-handle::before {\n background: #a7b656; }\n\nbody.admin-color-coffee .components-resizable-box__side-handle::before {\n background: #c2a68c; }\n\nbody.admin-color-blue .components-resizable-box__side-handle::before {\n background: #82b4cb; }\n\nbody.admin-color-light .components-resizable-box__side-handle::before {\n background: #0085ba; }\n @media (prefers-reduced-motion: reduce) {\n .components-resizable-box__side-handle::before {\n transition-duration: 0s; } }\n\n.is-dark-theme .components-resizable-box__side-handle::before,\n.is-dark-theme .components-resizable-box__handle::after {\n border-color: #d7dade; }\n\n.components-resizable-box__handle {\n z-index: 2; }\n\n.components-resizable-box__side-handle {\n z-index: 2; }\n\n.components-resizable-box__corner-handle {\n z-index: 2; }\n\n.components-resizable-box__side-handle.components-resizable-box__handle-top,\n.components-resizable-box__side-handle.components-resizable-box__handle-bottom,\n.components-resizable-box__side-handle.components-resizable-box__handle-top::before,\n.components-resizable-box__side-handle.components-resizable-box__handle-bottom::before {\n width: 100%;\n left: 0;\n border-left: 0;\n border-right: 0; }\n\n.components-resizable-box__side-handle.components-resizable-box__handle-left,\n.components-resizable-box__side-handle.components-resizable-box__handle-right,\n.components-resizable-box__side-handle.components-resizable-box__handle-left::before,\n.components-resizable-box__side-handle.components-resizable-box__handle-right::before {\n height: 100%;\n top: 0;\n border-top: 0;\n border-bottom: 0; }\n\n.components-resizable-box__side-handle.components-resizable-box__handle-top:hover::before,\n.components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover::before,\n.components-resizable-box__side-handle.components-resizable-box__handle-top:active::before,\n.components-resizable-box__side-handle.components-resizable-box__handle-bottom:active::before {\n animation: components-resizable-box__top-bottom-animation 0.1s ease-out 0s;\n animation-fill-mode: forwards; }\n @media (prefers-reduced-motion: reduce) {\n .components-resizable-box__side-handle.components-resizable-box__handle-top:hover::before,\n .components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover::before,\n .components-resizable-box__side-handle.components-resizable-box__handle-top:active::before,\n .components-resizable-box__side-handle.components-resizable-box__handle-bottom:active::before {\n animation-duration: 1ms; } }\n\n.components-resizable-box__side-handle.components-resizable-box__handle-left:hover::before,\n.components-resizable-box__side-handle.components-resizable-box__handle-right:hover::before,\n.components-resizable-box__side-handle.components-resizable-box__handle-left:active::before,\n.components-resizable-box__side-handle.components-resizable-box__handle-right:active::before {\n animation: components-resizable-box__left-right-animation 0.1s ease-out 0s;\n animation-fill-mode: forwards; }\n @media (prefers-reduced-motion: reduce) {\n .components-resizable-box__side-handle.components-resizable-box__handle-left:hover::before,\n .components-resizable-box__side-handle.components-resizable-box__handle-right:hover::before,\n .components-resizable-box__side-handle.components-resizable-box__handle-left:active::before,\n .components-resizable-box__side-handle.components-resizable-box__handle-right:active::before {\n animation-duration: 1ms; } }\n\n@keyframes components-resizable-box__top-bottom-animation {\n from {\n transform: scaleX(0);\n opacity: 0; }\n to {\n transform: scaleX(1);\n opacity: 1; } }\n\n@keyframes components-resizable-box__left-right-animation {\n from {\n transform: scaleY(0);\n opacity: 0; }\n to {\n transform: scaleY(1);\n opacity: 1; } }\n\n/*!rtl:begin:ignore*/\n.components-resizable-box__handle-right {\n right: calc(11.5px * -1); }\n\n.components-resizable-box__handle-left {\n left: calc(11.5px * -1); }\n\n.components-resizable-box__handle-top {\n top: calc(11.5px * -1); }\n\n.components-resizable-box__handle-bottom {\n bottom: calc(11.5px * -1); }\n\n/*!rtl:end:ignore*/\n.components-responsive-wrapper {\n position: relative;\n max-width: 100%; }\n .components-responsive-wrapper,\n .components-responsive-wrapper > span {\n display: block; }\n\n.components-responsive-wrapper__content {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n width: 100%;\n height: 100%;\n margin: auto; }\n\n.components-sandbox {\n overflow: hidden; }\n\niframe.components-sandbox {\n width: 100%; }\n\nhtml.lockscroll,\nbody.lockscroll {\n overflow: hidden; }\n\n.components-select-control__input {\n background: #fff;\n height: 36px;\n line-height: 36px;\n margin: 1px;\n outline: 0;\n width: 100%;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important; }\n @media (min-width: 782px) {\n .components-select-control__input {\n height: 28px;\n line-height: 28px; } }\n\n@media (max-width: 782px) {\n .components-base-control .components-base-control__field .components-select-control__input {\n font-size: 16px; } }\n\n.components-snackbar {\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px;\n background-color: #32373c;\n border-radius: 4px;\n box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);\n color: #fff;\n padding: 16px 24px;\n width: 100%;\n max-width: 600px;\n box-sizing: border-box;\n cursor: pointer; }\n @media (min-width: 600px) {\n .components-snackbar {\n width: fit-content; } }\n .components-snackbar:hover {\n background-color: #191e23; }\n .components-snackbar:focus {\n background-color: #191e23;\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba; }\n\n.components-snackbar__action.components-button {\n margin-left: 32px;\n color: #fff;\n height: auto;\n flex-shrink: 0;\n line-height: 1.4;\n padding: 0; }\n .components-snackbar__action.components-button:not(:disabled):not([aria-disabled=\"true\"]):not(.is-secondary) {\n text-decoration: underline;\n background-color: transparent; }\n .components-snackbar__action.components-button:not(:disabled):not([aria-disabled=\"true\"]):not(.is-secondary):focus {\n color: #fff;\n box-shadow: none;\n outline: 1px dotted #fff; }\n .components-snackbar__action.components-button:not(:disabled):not([aria-disabled=\"true\"]):not(.is-secondary):hover {\n color: #33b3db; }\n\n.components-snackbar__content {\n display: flex;\n align-items: baseline;\n justify-content: space-between;\n line-height: 1.4; }\n\n.components-snackbar-list {\n position: absolute;\n z-index: 100000;\n width: 100%;\n box-sizing: border-box; }\n\n.components-snackbar-list__notice-container {\n position: relative;\n padding-top: 8px; }\n\n.components-spinner {\n display: inline-block;\n background-color: #7e8993;\n width: 18px;\n height: 18px;\n opacity: 0.7;\n margin: 5px 11px 0;\n border-radius: 100%;\n position: relative; }\n .components-spinner::before {\n /* rtl:begin:ignore */\n content: \"\";\n position: absolute;\n background-color: #fff;\n top: 3px;\n left: 3px;\n width: 4px;\n height: 4px;\n border-radius: 100%;\n transform-origin: 6px 6px;\n animation: components-spinner__animation 1s infinite linear;\n /* rtl:end:ignore */ }\n\n@keyframes components-spinner__animation {\n from {\n transform: rotate(0deg); }\n to {\n transform: rotate(360deg); } }\n\n.components-tab-panel__tabs {\n display: flex;\n align-items: stretch; }\n\n.components-tab-panel__tabs-item {\n background: transparent;\n border: none;\n box-shadow: none;\n border-radius: 0;\n cursor: pointer;\n height: 48px;\n padding: 3px 16px;\n margin-left: 0;\n font-weight: 500;\n transition: box-shadow 0.1s linear;\n box-sizing: border-box; }\n .components-tab-panel__tabs-item::after {\n content: attr(data-label);\n display: block;\n height: 0;\n overflow: hidden;\n speak: none;\n visibility: hidden; }\n .components-tab-panel__tabs-item:focus:not(:disabled) {\n box-shadow: inset 0 1.5px #007cba; }\n body.admin-color-sunrise .components-tab-panel__tabs-item:focus:not(:disabled) {\n box-shadow: inset 0 1.5px #d1864a; }\n body.admin-color-ocean .components-tab-panel__tabs-item:focus:not(:disabled) {\n box-shadow: inset 0 1.5px #a3b9a2; }\n body.admin-color-midnight .components-tab-panel__tabs-item:focus:not(:disabled) {\n box-shadow: inset 0 1.5px #e14d43; }\n body.admin-color-ectoplasm .components-tab-panel__tabs-item:focus:not(:disabled) {\n box-shadow: inset 0 1.5px #a7b656; }\n body.admin-color-coffee .components-tab-panel__tabs-item:focus:not(:disabled) {\n box-shadow: inset 0 1.5px #c2a68c; }\n body.admin-color-blue .components-tab-panel__tabs-item:focus:not(:disabled) {\n box-shadow: inset 0 1.5px #d9ab59; }\n body.admin-color-light .components-tab-panel__tabs-item:focus:not(:disabled) {\n box-shadow: inset 0 1.5px #0085ba; }\n .components-tab-panel__tabs-item.is-active {\n box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #007cba;\n position: relative; }\n body.admin-color-sunrise .components-tab-panel__tabs-item.is-active {\n box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #d1864a; }\n body.admin-color-ocean .components-tab-panel__tabs-item.is-active {\n box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #a3b9a2; }\n body.admin-color-midnight .components-tab-panel__tabs-item.is-active {\n box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #e14d43; }\n body.admin-color-ectoplasm .components-tab-panel__tabs-item.is-active {\n box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #a7b656; }\n body.admin-color-coffee .components-tab-panel__tabs-item.is-active {\n box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #c2a68c; }\n body.admin-color-blue .components-tab-panel__tabs-item.is-active {\n box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #d9ab59; }\n body.admin-color-light .components-tab-panel__tabs-item.is-active {\n box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #0085ba; }\n .components-tab-panel__tabs-item.is-active::before {\n content: \"\";\n position: absolute;\n top: 0;\n bottom: 1px;\n right: 0;\n left: 0;\n border-bottom: 4px solid transparent; }\n .components-tab-panel__tabs-item:focus {\n box-shadow: inset 0 0 0 1.5px #007cba; }\n body.admin-color-sunrise .components-tab-panel__tabs-item:focus {\n box-shadow: inset 0 0 0 1.5px #d1864a; }\n body.admin-color-ocean .components-tab-panel__tabs-item:focus {\n box-shadow: inset 0 0 0 1.5px #a3b9a2; }\n body.admin-color-midnight .components-tab-panel__tabs-item:focus {\n box-shadow: inset 0 0 0 1.5px #e14d43; }\n body.admin-color-ectoplasm .components-tab-panel__tabs-item:focus {\n box-shadow: inset 0 0 0 1.5px #a7b656; }\n body.admin-color-coffee .components-tab-panel__tabs-item:focus {\n box-shadow: inset 0 0 0 1.5px #c2a68c; }\n body.admin-color-blue .components-tab-panel__tabs-item:focus {\n box-shadow: inset 0 0 0 1.5px #d9ab59; }\n body.admin-color-light .components-tab-panel__tabs-item:focus {\n box-shadow: inset 0 0 0 1.5px #0085ba; }\n .components-tab-panel__tabs-item.is-active:focus {\n box-shadow: inset 0 0 0 1.5px #007cba, inset 0 -4px 0 0 #007cba; }\n body.admin-color-sunrise .components-tab-panel__tabs-item.is-active:focus {\n box-shadow: inset 0 0 0 1.5px #d1864a, inset 0 -4px 0 0 #d1864a; }\n body.admin-color-ocean .components-tab-panel__tabs-item.is-active:focus {\n box-shadow: inset 0 0 0 1.5px #a3b9a2, inset 0 -4px 0 0 #a3b9a2; }\n body.admin-color-midnight .components-tab-panel__tabs-item.is-active:focus {\n box-shadow: inset 0 0 0 1.5px #e14d43, inset 0 -4px 0 0 #e14d43; }\n body.admin-color-ectoplasm .components-tab-panel__tabs-item.is-active:focus {\n box-shadow: inset 0 0 0 1.5px #a7b656, inset 0 -4px 0 0 #a7b656; }\n body.admin-color-coffee .components-tab-panel__tabs-item.is-active:focus {\n box-shadow: inset 0 0 0 1.5px #c2a68c, inset 0 -4px 0 0 #c2a68c; }\n body.admin-color-blue .components-tab-panel__tabs-item.is-active:focus {\n box-shadow: inset 0 0 0 1.5px #d9ab59, inset 0 -4px 0 0 #d9ab59; }\n body.admin-color-light .components-tab-panel__tabs-item.is-active:focus {\n box-shadow: inset 0 0 0 1.5px #0085ba, inset 0 -4px 0 0 #0085ba; }\n\n.components-text-control__input {\n width: 100%;\n padding: 6px 8px; }\n\n.components-textarea-control__input {\n width: 100%;\n padding: 6px 8px; }\n\n.components-tip {\n display: flex;\n color: #555d66; }\n .components-tip svg {\n -ms-grid-row-align: center;\n align-self: center;\n fill: #f0b849;\n flex-shrink: 0;\n margin-right: 16px; }\n .components-tip p {\n margin: 0; }\n\n.components-toggle-control .components-base-control__field {\n display: flex;\n margin-bottom: 12px;\n line-height: initial;\n align-items: center; }\n .components-toggle-control .components-base-control__field .components-form-toggle {\n margin-right: 16px; }\n .components-toggle-control .components-base-control__field .components-toggle-control__label {\n display: block; }\n\n.components-accessible-toolbar {\n display: inline-flex;\n border: 1px solid #1e1e1e;\n border-radius: 2px;\n flex-shrink: 0; }\n .components-accessible-toolbar > .components-toolbar-group:last-child {\n border-right: none; }\n\n.components-accessible-toolbar .components-button,\n.components-toolbar .components-button {\n position: relative;\n height: 48px;\n z-index: 1;\n padding-left: 16px;\n padding-right: 16px; }\n .components-accessible-toolbar .components-button:focus:enabled,\n .components-toolbar .components-button:focus:enabled {\n box-shadow: none;\n outline: none; }\n .components-accessible-toolbar .components-button::before,\n .components-toolbar .components-button::before {\n content: \"\";\n position: absolute;\n display: block;\n border-radius: 2px;\n height: 32px;\n min-width: 32px;\n left: 8px;\n right: 8px;\n z-index: -1;\n animation: components-button__appear-animation 0.1s ease;\n animation-fill-mode: forwards; }\n @media (prefers-reduced-motion: reduce) {\n .components-accessible-toolbar .components-button::before,\n .components-toolbar .components-button::before {\n animation-duration: 1ms; } }\n .components-accessible-toolbar .components-button svg,\n .components-toolbar .components-button svg {\n position: relative;\n margin-left: auto;\n margin-right: auto; }\n .components-accessible-toolbar .components-button.is-pressed,\n .components-toolbar .components-button.is-pressed {\n background: transparent; }\n .components-accessible-toolbar .components-button.is-pressed:hover,\n .components-toolbar .components-button.is-pressed:hover {\n background: transparent; }\n .components-accessible-toolbar .components-button.is-pressed::before,\n .components-toolbar .components-button.is-pressed::before {\n background: #1e1e1e; }\n .components-accessible-toolbar .components-button:focus::before,\n .components-toolbar .components-button:focus::before {\n box-shadow: inset 0 0 0 1.5px #007cba, inset 0 0 0 4px #fff;\n outline: 2px solid transparent; }\n body.admin-color-sunrise .components-accessible-toolbar .components-button:focus::before, body.admin-color-sunrise .components-toolbar .components-button:focus::before {\n box-shadow: inset 0 0 0 1.5px #d1864a, inset 0 0 0 4px #fff; }\n body.admin-color-ocean .components-accessible-toolbar .components-button:focus::before, body.admin-color-ocean .components-toolbar .components-button:focus::before {\n box-shadow: inset 0 0 0 1.5px #a3b9a2, inset 0 0 0 4px #fff; }\n body.admin-color-midnight .components-accessible-toolbar .components-button:focus::before, body.admin-color-midnight .components-toolbar .components-button:focus::before {\n box-shadow: inset 0 0 0 1.5px #e14d43, inset 0 0 0 4px #fff; }\n body.admin-color-ectoplasm .components-accessible-toolbar .components-button:focus::before, body.admin-color-ectoplasm .components-toolbar .components-button:focus::before {\n box-shadow: inset 0 0 0 1.5px #a7b656, inset 0 0 0 4px #fff; }\n body.admin-color-coffee .components-accessible-toolbar .components-button:focus::before, body.admin-color-coffee .components-toolbar .components-button:focus::before {\n box-shadow: inset 0 0 0 1.5px #c2a68c, inset 0 0 0 4px #fff; }\n body.admin-color-blue .components-accessible-toolbar .components-button:focus::before, body.admin-color-blue .components-toolbar .components-button:focus::before {\n box-shadow: inset 0 0 0 1.5px #d9ab59, inset 0 0 0 4px #fff; }\n body.admin-color-light .components-accessible-toolbar .components-button:focus::before, body.admin-color-light .components-toolbar .components-button:focus::before {\n box-shadow: inset 0 0 0 1.5px #0085ba, inset 0 0 0 4px #fff; }\n .components-accessible-toolbar .components-button.has-icon,\n .components-toolbar .components-button.has-icon {\n padding-left: 8px;\n padding-right: 8px;\n min-width: 48px;\n justify-content: center; }\n .components-accessible-toolbar .components-button.components-tab-button,\n .components-toolbar .components-button.components-tab-button {\n font-weight: 500; }\n .components-accessible-toolbar .components-button.components-tab-button span,\n .components-toolbar .components-button.components-tab-button span {\n display: inline-block;\n padding-left: 0;\n padding-right: 0;\n position: relative; }\n\n@keyframes components-button__appear-animation {\n from {\n transform: scaleY(0); }\n to {\n transform: scaleY(1); } }\n\n.components-toolbar__control.components-button {\n position: relative; }\n .components-toolbar__control.components-button[data-subscript] svg {\n padding: 5px 10px 5px 0; }\n .components-toolbar__control.components-button[data-subscript]::after {\n content: attr(data-subscript);\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px;\n font-weight: 600;\n line-height: 12px;\n position: absolute;\n right: 8px;\n bottom: 10px; }\n .components-toolbar__control.components-button:active::before {\n display: none; }\n .components-toolbar__control.components-button:not(:disabled).is-pressed[data-subscript]::after {\n color: #fff; }\n\n.components-toolbar-group {\n min-height: 48px;\n border-right: 1px solid #1e1e1e;\n background-color: #fff;\n display: inline-flex;\n flex-shrink: 0;\n flex-wrap: wrap;\n line-height: 0; }\n .components-toolbar-group .components-toolbar-group {\n border-width: 0;\n margin: 0; }\n\n.components-toolbar {\n min-height: 48px;\n margin: 0;\n border: 1px solid #1e1e1e;\n border-radius: 2px;\n background-color: #fff;\n display: inline-flex;\n flex-shrink: 0;\n flex-wrap: wrap; }\n\ndiv.components-toolbar > div {\n display: block;\n margin: 0; }\n @supports ((position: -webkit-sticky) or (position: sticky)) {\n div.components-toolbar > div {\n display: flex; } }\n\ndiv.components-toolbar > div + div.has-left-divider {\n margin-left: 6px;\n position: relative;\n overflow: visible; }\n\ndiv.components-toolbar > div + div.has-left-divider::before {\n display: inline-block;\n content: \"\";\n box-sizing: content-box;\n background-color: #e2e4e7;\n position: absolute;\n top: 8px;\n left: -3px;\n width: 1px;\n height: 20px; }\n\n.components-accessible-toolbar .components-toolbar-group > .components-button.components-button.has-icon,\n.components-toolbar div > .components-button.components-button.has-icon {\n min-width: 36px;\n padding-left: 6px;\n padding-right: 6px; }\n .components-accessible-toolbar .components-toolbar-group > .components-button.components-button.has-icon svg,\n .components-toolbar div > .components-button.components-button.has-icon svg {\n min-width: 24px; }\n .components-accessible-toolbar .components-toolbar-group > .components-button.components-button.has-icon::before,\n .components-toolbar div > .components-button.components-button.has-icon::before {\n left: 2px;\n right: 2px; }\n\n.components-accessible-toolbar .components-toolbar-group > .components-button:first-child.has-icon,\n.components-accessible-toolbar .components-toolbar-group > div:first-child > .components-button.has-icon,\n.components-toolbar div:first-child .components-button.has-icon {\n min-width: 42px;\n padding-left: 11px;\n padding-right: 6px; }\n .components-accessible-toolbar .components-toolbar-group > .components-button:first-child.has-icon::before,\n .components-accessible-toolbar .components-toolbar-group > div:first-child > .components-button.has-icon::before,\n .components-toolbar div:first-child .components-button.has-icon::before {\n left: 8px;\n right: 2px; }\n\n.components-accessible-toolbar .components-toolbar-group > .components-button:last-child.has-icon,\n.components-accessible-toolbar .components-toolbar-group > div:last-child > .components-button.has-icon,\n.components-toolbar div:last-child .components-button.has-icon {\n min-width: 42px;\n padding-left: 6px;\n padding-right: 11px; }\n .components-accessible-toolbar .components-toolbar-group > .components-button:last-child.has-icon::before,\n .components-accessible-toolbar .components-toolbar-group > div:last-child > .components-button.has-icon::before,\n .components-toolbar div:last-child .components-button.has-icon::before {\n left: 2px;\n right: 8px; }\n\n.components-accessible-toolbar .components-toolbar-group > .components-button:first-of-type:last-of-type.has-icon,\n.components-accessible-toolbar .components-toolbar-group > div:first-child:last-child > .components-button.has-icon,\n.components-toolbar div:first-child:last-child > .components-button.has-icon {\n min-width: 48px;\n padding-left: 12px;\n padding-right: 12px; }\n .components-accessible-toolbar .components-toolbar-group > .components-button:first-of-type:last-of-type.has-icon::before,\n .components-accessible-toolbar .components-toolbar-group > div:first-child:last-child > .components-button.has-icon::before,\n .components-toolbar div:first-child:last-child > .components-button.has-icon::before {\n left: 8px;\n right: 8px; }\n\n.components-tooltip.components-popover {\n z-index: 1000002; }\n .components-tooltip.components-popover .components-popover__content {\n min-width: 0; }\n\n.components-tooltip .components-popover__content {\n padding: 4px 8px;\n background: #1e1e1e;\n border-radius: 2px;\n border-width: 0;\n color: #fff;\n white-space: nowrap;\n text-align: center;\n pointer-events: none; }\n\n.components-tooltip__shortcut {\n display: inline-block;\n margin-left: 8px; }\n\n.components-visually-hidden {\n border: 0;\n clip: rect(1px, 1px, 1px, 1px);\n -webkit-clip-path: inset(50%);\n clip-path: inset(50%);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px;\n word-wrap: normal !important; }\n\n.components-visually-hidden:focus {\n background-color: #e2e4e7;\n clip: auto !important;\n -webkit-clip-path: none;\n clip-path: none;\n color: #444;\n display: block;\n font-size: 1em;\n height: auto;\n left: 5px;\n line-height: normal;\n padding: 15px 23px 14px;\n text-decoration: none;\n top: 5px;\n width: auto;\n z-index: 100000; }\n","/**\n * Colors\n */\n/**\n * Breakpoints & Media Queries\n */\n/**\n * Colors\n */\n/**\n * Fonts & basic variables.\n */\n/**\n * Grid System.\n * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/\n */\n/**\n * Dimensions.\n */\n/**\n * Shadows.\n */\n/**\n * Editor widths.\n */\n/**\n * Block UI.\n */\n/**\n * Border radii.\n */\n/**\n * Breakpoint mixins\n */\n/**\n * Long content fade mixin\n *\n * Creates a fading overlay to signify that the content is longer\n * than the space allows.\n */\n/**\n * Focus styles.\n */\n/**\n * Applies editor left position to the selector passed as argument\n */\n/**\n * Styles that are reused verbatim in a few places\n */\n/**\n * Allows users to opt-out of animations via OS-level preferences.\n */\n/**\n * Reset default styles for JavaScript UI based pages.\n * This is a WP-admin agnostic reset\n */\n/**\n * Reset the WP Admin page styles for Gutenberg-like pages.\n */\n#start-resizable-editor-section {\n display: none; }\n\n.block-editor-autocompleters__block .block-editor-block-icon {\n margin-right: 8px; }\n\n.block-editor-block-icon {\n display: flex;\n align-items: center;\n justify-content: center;\n width: 24px;\n height: 24px; }\n .block-editor-block-icon.has-colors svg {\n fill: currentColor; }\n .block-editor-block-icon svg {\n min-width: 20px;\n min-height: 20px;\n max-width: 24px;\n max-height: 24px; }\n\n.block-editor-block-inspector .components-base-control {\n margin-bottom: 24px; }\n .block-editor-block-inspector .components-base-control:last-child {\n margin-bottom: 8px; }\n\n.block-editor-block-inspector .components-panel__body {\n border: none;\n border-top: 1px solid #e2e4e7; }\n\n.block-editor-block-inspector .block-editor-block-card {\n padding: 16px; }\n\n.block-editor-block-inspector__no-blocks {\n display: block;\n font-size: 13px;\n background: #fff;\n padding: 32px 16px;\n text-align: center; }\n\n.block-editor-block-list__layout .block-editor-block-list__block.is-dragging > * {\n background: #f8f9f9; }\n\n.block-editor-block-list__layout .block-editor-block-list__block.is-dragging > * > * {\n visibility: hidden; }\n\n.block-editor-block-list__layout .block-editor-block-list__block .reusable-block-edit-panel * {\n z-index: 1; }\n\n.block-editor-block-styles .block-editor-block-list__block {\n margin: 0; }\n\n/**\n * Notices & Block Selected/Hover Styles.\n */\n.block-editor-block-list__layout .block-editor-block-list__block {\n position: relative;\n overflow-wrap: break-word;\n /**\n\t * Notices\n\t */\n /**\n\t * Block Layout\n\t */ }\n .block-editor-block-list__layout .block-editor-block-list__block .components-placeholder .components-with-notices-ui {\n margin: -10px 0 12px 0; }\n .block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui {\n margin: 0 0 12px 0;\n width: 100%; }\n .block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui .components-notice {\n margin-left: 0;\n margin-right: 0; }\n .block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui .components-notice .components-notice__content {\n font-size: 13px; }\n .block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus {\n outline: none; }\n .block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus::after {\n position: absolute;\n z-index: 1;\n pointer-events: none;\n content: \"\";\n top: 1px;\n bottom: 1px;\n left: 1px;\n right: 1px;\n box-shadow: 0 0 0 1.5px #007cba;\n border-radius: 1px; }\n .is-dark-theme .block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus::after {\n box-shadow: 0 0 0 1.5px #fff; }\n .block-editor-block-list__layout .block-editor-block-list__block.is-focus-mode:not(.is-multi-selected) {\n opacity: 0.5;\n transition: opacity 0.1s linear; }\n @media (prefers-reduced-motion: reduce) {\n .block-editor-block-list__layout .block-editor-block-list__block.is-focus-mode:not(.is-multi-selected) {\n transition-duration: 0s; } }\n .block-editor-block-list__layout .block-editor-block-list__block.is-focus-mode:not(.is-multi-selected):not(.is-focused) .block-editor-block-list__block, .block-editor-block-list__layout .block-editor-block-list__block.is-focus-mode:not(.is-multi-selected).is-focused {\n opacity: 1; }\n .block-editor-block-list__layout .block-editor-block-list__block.is-drop-target::before {\n content: \"\";\n position: absolute;\n z-index: 0;\n pointer-events: none;\n transition: border-color 0.1s linear, border-style 0.1s linear, box-shadow 0.1s linear;\n right: 0;\n left: 0;\n top: -14px;\n border-radius: 2px;\n border-top: 4px solid #007cba; }\n\n/**\n * Cross-Block Selection\n */\n.block-editor-block-list__layout {\n position: relative; }\n .is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block.is-selected::after,\n .block-editor-block-list__layout .block-editor-block-list__block.is-highlighted::after,\n .block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected::after {\n position: absolute;\n z-index: 1;\n pointer-events: none;\n content: \"\";\n top: 1px;\n bottom: 1px;\n left: 1px;\n right: 1px; }\n .is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block.is-selected::after,\n .block-editor-block-list__layout .block-editor-block-list__block.is-highlighted::after,\n .block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected::after {\n box-shadow: 0 0 0 1.5px #007cba;\n border-radius: 1px;\n transition: box-shadow 0.2s ease-out;\n outline: 2px solid transparent; }\n @media (prefers-reduced-motion: reduce) {\n .is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block.is-selected::after,\n .block-editor-block-list__layout .block-editor-block-list__block.is-highlighted::after,\n .block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected::after {\n transition-duration: 0s; } }\n .is-dark-theme .is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block.is-selected::after, .is-dark-theme\n .block-editor-block-list__layout .block-editor-block-list__block.is-highlighted::after, .is-dark-theme\n .block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected::after {\n box-shadow: 0 0 0 1.5px #fff; }\n .is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block.is-selected .components-placeholder ::selection,\n .block-editor-block-list__layout .block-editor-block-list__block.is-highlighted .components-placeholder ::selection,\n .block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected .components-placeholder ::selection {\n background: transparent; }\n\n/**\n * Block styles and alignments\n */\n.block-editor-block-list__layout .block-editor-block-list__block.has-warning {\n min-height: 36px; }\n\n.block-editor-block-list__layout .block-editor-block-list__block::after {\n content: \"\";\n pointer-events: none;\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n border-radius: 2px;\n box-shadow: 0 0 0 1.5px transparent;\n transition: box-shadow 0.1s ease-in; }\n @media (prefers-reduced-motion: reduce) {\n .block-editor-block-list__layout .block-editor-block-list__block::after {\n transition-duration: 0s; } }\n\n.block-editor-block-list__layout .block-editor-block-list__block.has-warning > * {\n pointer-events: none;\n -webkit-user-select: none;\n -ms-user-select: none;\n user-select: none; }\n\n.block-editor-block-list__layout .block-editor-block-list__block.has-warning .block-editor-warning {\n pointer-events: all; }\n\n.block-editor-block-list__layout .block-editor-block-list__block.has-warning::after {\n content: \"\";\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n border-radius: 2px;\n background-color: rgba(255, 255, 255, 0.4); }\n\n.block-editor-block-list__layout .block-editor-block-list__block.has-warning.is-multi-selected::after {\n background-color: transparent; }\n\n.block-editor-block-list__layout .block-editor-block-list__block.is-reusable > .block-editor-inner-blocks > .block-editor-block-list__layout.has-overlay::after {\n display: none; }\n\n.block-editor-block-list__layout .block-editor-block-list__block.is-reusable > .block-editor-inner-blocks > .block-editor-block-list__layout.has-overlay .block-editor-block-list__layout.has-overlay::after {\n display: block; }\n\n.is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block {\n cursor: default; }\n\n.block-editor-block-list__layout .block-editor-block-list__block[data-clear=\"true\"] {\n float: none; }\n\n.block-editor-block-list__layout .block-editor-block-list__block .block-editor-block-list__layout .block-editor-default-block-appender .block-editor-inserter {\n left: auto;\n right: 8px; }\n\n.block-editor-block-list__layout .wp-block {\n margin-left: auto;\n margin-right: auto; }\n\n.wp-block[data-align=\"left\"], .wp-block[data-align=\"right\"] {\n width: 100%;\n height: 0; }\n .wp-block[data-align=\"left\"]::before, .wp-block[data-align=\"right\"]::before {\n content: none; }\n\n.wp-block[data-align=\"left\"] > *,\n.wp-block[data-align=\"right\"] > * {\n z-index: 21; }\n\n.wp-block[data-align=\"left\"] > * {\n /*!rtl:begin:ignore*/\n float: left;\n margin-right: 2em;\n /*!rtl:end:ignore*/ }\n\n.wp-block[data-align=\"right\"] > * {\n /*!rtl:begin:ignore*/\n float: right;\n margin-left: 2em;\n /*!rtl:end:ignore*/ }\n\n.wp-block[data-align=\"full\"], .wp-block[data-align=\"wide\"] {\n clear: both; }\n\n/**\n * In-Canvas Inserter\n */\n.block-editor-block-list .block-editor-inserter {\n margin: 8px;\n cursor: move;\n cursor: grab; }\n\n.block-editor-block-list__insertion-point {\n position: relative;\n z-index: 6;\n margin-top: -14px; }\n\n.block-editor-block-list__insertion-point-indicator {\n position: absolute;\n top: calc(50% - 1px);\n height: 1.5px;\n left: 0;\n right: 0;\n background: #0085ba; }\n\nbody.admin-color-sunrise .block-editor-block-list__insertion-point-indicator {\n background: #d1864a; }\n\nbody.admin-color-ocean .block-editor-block-list__insertion-point-indicator {\n background: #a3b9a2; }\n\nbody.admin-color-midnight .block-editor-block-list__insertion-point-indicator {\n background: #e14d43; }\n\nbody.admin-color-ectoplasm .block-editor-block-list__insertion-point-indicator {\n background: #a7b656; }\n\nbody.admin-color-coffee .block-editor-block-list__insertion-point-indicator {\n background: #c2a68c; }\n\nbody.admin-color-blue .block-editor-block-list__insertion-point-indicator {\n background: #82b4cb; }\n\nbody.admin-color-light .block-editor-block-list__insertion-point-indicator {\n background: #0085ba; }\n\n.block-editor-block-list__insertion-point-inserter {\n display: none;\n justify-content: center;\n cursor: text; }\n @media (min-width: 480px) {\n .block-editor-block-list__insertion-point-inserter {\n display: flex; } }\n .block-editor-block-list__insertion-point-inserter.is-inserter-hidden .block-editor-inserter__toggle {\n opacity: 0;\n pointer-events: none; }\n\n.block-editor-block-list__block-popover-inserter {\n position: absolute;\n top: -9999em;\n margin-bottom: 14px; }\n .block-editor-block-list__block-popover-inserter.is-visible {\n position: static; }\n\n.block-editor-block-list__empty-block-inserter .block-editor-inserter__toggle.components-button,\n.block-editor-default-block-appender .block-editor-inserter__toggle.components-button,\n.block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button,\n.block-editor-block-list__block-popover-inserter .block-editor-inserter__toggle.components-button {\n background: #1e1e1e;\n border-radius: 2px;\n color: #fff;\n min-width: 24px;\n height: 24px; }\n .block-editor-block-list__empty-block-inserter .block-editor-inserter__toggle.components-button:hover,\n .block-editor-default-block-appender .block-editor-inserter__toggle.components-button:hover,\n .block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button:hover,\n .block-editor-block-list__block-popover-inserter .block-editor-inserter__toggle.components-button:hover {\n color: #fff; }\n\n.block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button,\n.block-editor-block-list__block-popover-inserter .block-editor-inserter__toggle.components-button {\n animation: block-editor-inserter__toggle__fade-in-animation-delayed 1.2s ease;\n animation-fill-mode: forwards; }\n @media (prefers-reduced-motion: reduce) {\n .block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button,\n .block-editor-block-list__block-popover-inserter .block-editor-inserter__toggle.components-button {\n animation-duration: 1ms; } }\n\n@keyframes block-editor-inserter__toggle__fade-in-animation-delayed {\n 0% {\n opacity: 0; }\n 80% {\n opacity: 0; }\n 100% {\n opacity: 1; } }\n\n@keyframes block-editor-inserter__toggle__fade-in-animation {\n from {\n opacity: 0;\n transform: scale(0); }\n to {\n opacity: 1;\n transform: scale(1); } }\n\n.wp-block .block-list-appender .block-editor-inserter__toggle {\n animation: block-editor-inserter__toggle__fade-in-animation 0.1s ease;\n animation-fill-mode: forwards; }\n @media (prefers-reduced-motion: reduce) {\n .wp-block .block-list-appender .block-editor-inserter__toggle {\n animation-duration: 1ms; } }\n\n.wp-block:not(.is-selected):not(.has-child-selected) .block-editor-default-block-appender {\n display: none; }\n .wp-block:not(.is-selected):not(.has-child-selected) .block-editor-default-block-appender .block-editor-inserter__toggle {\n opacity: 0;\n transform: scale(0); }\n\n.block-editor-block-list__block > .block-editor-block-list__insertion-point {\n position: absolute;\n top: -16px;\n height: 28px;\n bottom: auto;\n left: 14px;\n right: 14px; }\n\n.block-editor-block-list__block .block-editor-block-list__block-html-textarea {\n display: block;\n margin: 0;\n width: 100%;\n border: none;\n outline: none;\n box-shadow: none;\n resize: none;\n overflow: hidden;\n font-family: Menlo, Consolas, monaco, monospace;\n font-size: 14px;\n line-height: 150%;\n transition: padding 0.2s linear; }\n @media (prefers-reduced-motion: reduce) {\n .block-editor-block-list__block .block-editor-block-list__block-html-textarea {\n transition-duration: 0s; } }\n .block-editor-block-list__block .block-editor-block-list__block-html-textarea:focus {\n box-shadow: none; }\n\n/**\n * Block Toolbar, top and contextual.\n */\n.block-editor-block-contextual-toolbar-wrapper {\n padding-left: 48px; }\n\n/**\n * Block Toolbar when contextual.\n */\n.block-editor-block-contextual-toolbar {\n border: 1px solid #1e1e1e;\n border-radius: 2px;\n background-color: #fff; }\n .block-editor-block-contextual-toolbar .block-editor-block-toolbar .components-toolbar-group,\n .block-editor-block-contextual-toolbar .block-editor-block-toolbar .components-toolbar {\n border-right-color: #1e1e1e; }\n\n/**\n * Block Label for Navigation/Selection Mode\n */\n.block-editor-block-list__breadcrumb {\n display: block;\n z-index: 22; }\n .block-editor-block-list__breadcrumb .components-button {\n font-size: 13px;\n height: 46px;\n padding: 12px 16px;\n position: relative;\n top: -1px;\n box-shadow: 0 0 0 1px #1e1e1e;\n border-radius: 1px;\n background-color: #fff;\n margin-left: 49px; }\n .block-editor-block-list__breadcrumb .components-button:focus {\n box-shadow: 0 0 0 1.5px #007cba; }\n body.admin-color-sunrise .block-editor-block-list__breadcrumb .components-button:focus {\n box-shadow: 0 0 0 1.5px #d1864a; }\n body.admin-color-ocean .block-editor-block-list__breadcrumb .components-button:focus {\n box-shadow: 0 0 0 1.5px #a3b9a2; }\n body.admin-color-midnight .block-editor-block-list__breadcrumb .components-button:focus {\n box-shadow: 0 0 0 1.5px #e14d43; }\n body.admin-color-ectoplasm .block-editor-block-list__breadcrumb .components-button:focus {\n box-shadow: 0 0 0 1.5px #a7b656; }\n body.admin-color-coffee .block-editor-block-list__breadcrumb .components-button:focus {\n box-shadow: 0 0 0 1.5px #c2a68c; }\n body.admin-color-blue .block-editor-block-list__breadcrumb .components-button:focus {\n box-shadow: 0 0 0 1.5px #d9ab59; }\n body.admin-color-light .block-editor-block-list__breadcrumb .components-button:focus {\n box-shadow: 0 0 0 1.5px #0085ba; }\n\n/**\n * Warnings.\n */\n.block-editor-block-list__block .block-editor-warning {\n z-index: 5;\n position: relative; }\n .block-editor-block-list__block .block-editor-warning.block-editor-block-list__block-crash-warning {\n margin-bottom: auto; }\n\n/**\n * Popovers.\n */\n.block-editor-block-list__insertion-point-popover.is-without-arrow {\n z-index: 28; }\n .block-editor-block-list__insertion-point-popover.is-without-arrow .components-popover__content.components-popover__content {\n background: none;\n border: none;\n box-shadow: none;\n overflow-y: visible;\n margin-left: 0; }\n\n.components-popover.block-editor-block-list__block-popover {\n z-index: 29; }\n .components-popover.block-editor-block-list__block-popover .components-popover__content {\n margin: 0 !important;\n min-width: auto;\n width: max-content;\n background: none;\n border: none;\n box-shadow: none;\n overflow-y: visible;\n pointer-events: none; }\n .components-popover.block-editor-block-list__block-popover .components-popover__content > * {\n pointer-events: all; }\n .components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-list__breadcrumb,\n .components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-contextual-toolbar {\n margin-bottom: 12px;\n margin-left: -48px; }\n .components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-contextual-toolbar[data-align=\"full\"],\n .components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-list__breadcrumb[data-align=\"full\"] {\n margin-left: 0; }\n .is-dragging-components-draggable .components-popover.block-editor-block-list__block-popover {\n opacity: 0; }\n\n.is-dragging-components-draggable .components-tooltip {\n display: none; }\n\n.block-editor-block-list__layout.is-root-container {\n padding-left: 14px;\n padding-right: 14px; }\n @media (min-width: 600px) {\n .block-editor-block-list__layout.is-root-container {\n padding-left: 36px;\n padding-right: 36px; } }\n .block-editor-block-list__layout.is-root-container > .wp-block[data-align=\"full\"] {\n margin-left: -14px;\n margin-right: -14px; }\n @media (min-width: 600px) {\n .block-editor-block-list__layout.is-root-container > .wp-block[data-align=\"full\"] {\n margin-left: -36px;\n margin-right: -36px; } }\n\n.block-editor-block-list__block .block-list-appender {\n margin: 8px 0; }\n .has-background .block-editor-block-list__block .block-list-appender {\n margin: 20px 8px; }\n .block-editor-block-list__block .block-list-appender .block-list-appender__toggle {\n opacity: 1;\n transform: scale(1);\n transition: all 0.1s ease; }\n @media (prefers-reduced-motion: reduce) {\n .block-editor-block-list__block .block-list-appender .block-list-appender__toggle {\n transition-duration: 0s; } }\n\n.block-list-appender.is-drop-target > div::before {\n content: \"\";\n position: absolute;\n right: -8px;\n left: -8px;\n top: -8px;\n bottom: -8px;\n border-radius: 2px;\n border: 3px solid #0085ba; }\n\nbody.admin-color-sunrise .block-list-appender.is-drop-target > div::before {\n border: 3px solid #d1864a; }\n\nbody.admin-color-ocean .block-list-appender.is-drop-target > div::before {\n border: 3px solid #a3b9a2; }\n\nbody.admin-color-midnight .block-list-appender.is-drop-target > div::before {\n border: 3px solid #e14d43; }\n\nbody.admin-color-ectoplasm .block-list-appender.is-drop-target > div::before {\n border: 3px solid #a7b656; }\n\nbody.admin-color-coffee .block-list-appender.is-drop-target > div::before {\n border: 3px solid #c2a68c; }\n\nbody.admin-color-blue .block-list-appender.is-drop-target > div::before {\n border: 3px solid #82b4cb; }\n\nbody.admin-color-light .block-list-appender.is-drop-target > div::before {\n border: 3px solid #0085ba; }\n\n.block-list-appender > .block-editor-inserter {\n display: block; }\n\n.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.block-editor-block-list__layout) .block-editor-block-list__layout > .block-list-appender .block-list-appender__toggle {\n opacity: 0;\n transform: scale(0); }\n\n.block-editor-block-breadcrumb {\n list-style: none;\n padding: 0;\n margin: 0; }\n .block-editor-block-breadcrumb li {\n display: inline-block;\n margin: 0; }\n .block-editor-block-breadcrumb li:not(:last-child)::after {\n content: \"\\2192\"; }\n\n.block-editor-block-breadcrumb__button.components-button {\n height: 24px;\n line-height: 24px;\n padding: 0;\n position: relative; }\n .block-editor-block-breadcrumb__button.components-button:hover:not(:disabled) {\n text-decoration: underline;\n box-shadow: none; }\n .block-editor-block-breadcrumb__button.components-button:focus {\n box-shadow: none; }\n .block-editor-block-breadcrumb__button.components-button:focus::before {\n content: \"\";\n display: block;\n position: absolute;\n border-radius: 2px;\n top: 1px;\n right: 1px;\n bottom: 1px;\n left: 1px;\n box-shadow: inset 0 0 0 1.5px #007cba; }\n body.admin-color-sunrise .block-editor-block-breadcrumb__button.components-button:focus::before {\n box-shadow: inset 0 0 0 1.5px #d1864a; }\n body.admin-color-ocean .block-editor-block-breadcrumb__button.components-button:focus::before {\n box-shadow: inset 0 0 0 1.5px #a3b9a2; }\n body.admin-color-midnight .block-editor-block-breadcrumb__button.components-button:focus::before {\n box-shadow: inset 0 0 0 1.5px #e14d43; }\n body.admin-color-ectoplasm .block-editor-block-breadcrumb__button.components-button:focus::before {\n box-shadow: inset 0 0 0 1.5px #a7b656; }\n body.admin-color-coffee .block-editor-block-breadcrumb__button.components-button:focus::before {\n box-shadow: inset 0 0 0 1.5px #c2a68c; }\n body.admin-color-blue .block-editor-block-breadcrumb__button.components-button:focus::before {\n box-shadow: inset 0 0 0 1.5px #d9ab59; }\n body.admin-color-light .block-editor-block-breadcrumb__button.components-button:focus::before {\n box-shadow: inset 0 0 0 1.5px #0085ba; }\n\n.block-editor-block-breadcrumb__current {\n cursor: default; }\n\n.block-editor-block-breadcrumb__button.components-button,\n.block-editor-block-breadcrumb__current {\n color: #1e1e1e;\n padding: 0 8px;\n font-size: inherit; }\n\n.block-editor-block-card {\n display: flex;\n align-items: flex-start; }\n\n.block-editor-block-card__icon {\n border: 1px solid #ccd0d4;\n padding: 7px;\n margin-right: 10px;\n height: 36px;\n width: 36px; }\n\n.block-editor-block-card__content {\n flex-grow: 1; }\n\n.block-editor-block-card__title {\n font-weight: 500; }\n .block-editor-block-card__title.block-editor-block-card__title {\n margin: 0 0 5px; }\n\n.block-editor-block-card__description {\n font-size: 13px; }\n\n.block-editor-block-card .block-editor-block-icon {\n margin-left: -2px;\n margin-right: 10px;\n padding: 0 3px;\n width: 36px;\n height: 24px; }\n\n/**\n * Invalid block comparison\n */\n.block-editor-block-compare {\n overflow: auto;\n height: auto; }\n @media (min-width: 600px) {\n .block-editor-block-compare {\n max-height: 70%; } }\n\n.block-editor-block-compare__wrapper {\n display: flex;\n padding-bottom: 16px; }\n .block-editor-block-compare__wrapper > div {\n display: flex;\n justify-content: space-between;\n flex-direction: column;\n width: 50%;\n padding: 0 16px 0 0;\n min-width: 200px; }\n .block-editor-block-compare__wrapper > div button {\n float: right; }\n .block-editor-block-compare__wrapper .block-editor-block-compare__converted {\n border-left: 1px solid #ddd;\n padding-left: 15px;\n padding-right: 0; }\n .block-editor-block-compare__wrapper .block-editor-block-compare__html {\n font-family: Menlo, Consolas, monaco, monospace;\n font-size: 12px;\n color: #23282d;\n border-bottom: 1px solid #ddd;\n padding-bottom: 15px;\n line-height: 1.7; }\n .block-editor-block-compare__wrapper .block-editor-block-compare__html span {\n background-color: #e6ffed;\n padding-top: 3px;\n padding-bottom: 3px; }\n .block-editor-block-compare__wrapper .block-editor-block-compare__html span.block-editor-block-compare__added {\n background-color: #acf2bd; }\n .block-editor-block-compare__wrapper .block-editor-block-compare__html span.block-editor-block-compare__removed {\n background-color: #d94f4f; }\n .block-editor-block-compare__wrapper .block-editor-block-compare__preview {\n padding: 0;\n padding-top: 14px; }\n .block-editor-block-compare__wrapper .block-editor-block-compare__preview p {\n font-size: 12px;\n margin-top: 0; }\n .block-editor-block-compare__wrapper .block-editor-block-compare__action {\n margin-top: 14px; }\n .block-editor-block-compare__wrapper .block-editor-block-compare__heading {\n font-size: 1em;\n font-weight: 400;\n margin: 0.67em 0; }\n\n.block-editor-block-mobile-toolbar {\n display: flex;\n flex-direction: row;\n border-right: 1px solid #e2e4e7; }\n .block-editor-block-mobile-toolbar .block-editor-block-mover__control {\n width: 36px;\n height: 36px;\n border-radius: 4px;\n padding: 3px;\n margin: 0;\n justify-content: center;\n align-items: center; }\n .block-editor-block-mobile-toolbar .block-editor-block-mover__control .dashicon {\n margin: auto; }\n .block-editor-block-mobile-toolbar .block-editor-block-mover {\n display: flex;\n margin-right: auto; }\n .block-editor-block-mobile-toolbar .block-editor-block-mover .block-editor-block-mover__control {\n float: left; }\n\n.block-editor-block-mover {\n display: inline-flex;\n flex-direction: row; }\n\n.block-editor-block-mover-button__description {\n display: none; }\n\n.block-editor-block-mover-button.has-icon {\n padding: 0; }\n\n.block-editor-block-mover .components-toolbar-group,\n.block-editor-block-mover .components-toolbar {\n flex-direction: column;\n flex: 1; }\n\n.block-editor-block-mover.is-horizontal .components-toolbar-group,\n.block-editor-block-mover.is-horizontal .components-toolbar {\n flex-direction: row; }\n\n.block-editor-block-mover .block-editor-block-mover-button {\n height: 24px;\n width: 48px;\n padding: 0 !important; }\n .block-editor-block-mover .block-editor-block-mover-button::before {\n left: 8px !important;\n right: 8px !important; }\n\n.block-editor-block-mover .components-toolbar-group .block-editor-block-mover-button.is-up-button svg,\n.block-editor-block-mover .components-toolbar .block-editor-block-mover-button.is-up-button svg {\n margin-bottom: -8px; }\n\n.block-editor-block-mover .components-toolbar-group .block-editor-block-mover-button.is-up-button::before,\n.block-editor-block-mover .components-toolbar .block-editor-block-mover-button.is-up-button::before {\n bottom: 0;\n height: calc(100% - 8px); }\n\n.block-editor-block-mover .components-toolbar-group .block-editor-block-mover-button.is-down-button svg,\n.block-editor-block-mover .components-toolbar .block-editor-block-mover-button.is-down-button svg {\n margin-top: -8px; }\n\n.block-editor-block-mover .components-toolbar-group .block-editor-block-mover-button.is-down-button::before,\n.block-editor-block-mover .components-toolbar .block-editor-block-mover-button.is-down-button::before {\n top: 0;\n height: calc(100% - 8px); }\n\n.block-editor-block-mover.is-horizontal .block-editor-block-mover-button.has-icon {\n height: 48px;\n width: 24px !important;\n min-width: 24px !important;\n padding-left: 0;\n padding-right: 0; }\n .block-editor-block-mover.is-horizontal .block-editor-block-mover-button.has-icon::before {\n top: 8px;\n bottom: 8px;\n min-width: 0;\n width: auto;\n height: auto; }\n\n.block-editor-block-mover.is-horizontal .block-editor-block-mover-button.is-up-button.has-icon svg {\n margin-left: 0;\n margin-right: -8px;\n margin-bottom: 0; }\n\n.block-editor-block-mover.is-horizontal .block-editor-block-mover-button.is-up-button.has-icon::before {\n left: 8px !important;\n right: 0 !important; }\n\n.block-editor-block-mover.is-horizontal .block-editor-block-mover-button.is-down-button.has-icon svg {\n margin-left: -8px;\n margin-right: 0;\n margin-top: 0; }\n\n.block-editor-block-mover.is-horizontal .block-editor-block-mover-button.is-down-button.has-icon::before {\n left: 0 !important;\n right: 8px !important; }\n\n.block-editor-block-mover:not([draggable=\"false\"]) {\n cursor: grab; }\n .block-editor-block-mover:not([draggable=\"false\"]) .block-editor-block-mover__control {\n cursor: grab !important; }\n .block-editor-block-mover:not([draggable=\"false\"]) .block-editor-block-mover__control:not(:disabled):not([aria-disabled=\"true\"]):active {\n cursor: grabbing; }\n\n.block-editor-block-navigation__container {\n padding: 7px; }\n\n.block-editor-block-navigation__label {\n margin: 0 0 8px;\n color: #6c7781; }\n\n.block-editor-block-navigation__list,\n.block-editor-block-navigation__paragraph {\n padding: 0;\n margin: 0; }\n\n.block-editor-block-navigation__list .block-editor-button-block-appender {\n outline: none;\n background: none;\n padding: 8px;\n padding: 6px;\n margin-left: 0.8em;\n width: calc(100% - 0.8em); }\n\n.block-editor-block-navigation__list .block-editor-block-navigation__list {\n margin-top: 2px;\n border-left: 2px solid #a2aab2;\n margin-left: 1em; }\n .block-editor-block-navigation__list .block-editor-block-navigation__list .block-editor-block-navigation__list {\n margin-left: 1.5em; }\n .block-editor-block-navigation__list .block-editor-block-navigation__list .block-editor-block-navigation__list-item {\n position: relative; }\n .block-editor-block-navigation__list .block-editor-block-navigation__list .block-editor-block-navigation__list-item::before {\n position: absolute;\n left: 0;\n background: #a2aab2;\n width: 0.5em;\n height: 2px;\n content: \"\";\n top: calc(50% - 1px); }\n .block-editor-block-navigation__list .block-editor-block-navigation__list .block-editor-block-navigation__list-item-button {\n margin-left: 0.8em;\n width: calc(100% - 0.8em);\n height: auto; }\n .block-editor-block-navigation__list .block-editor-block-navigation__list > li:last-child {\n position: relative; }\n .block-editor-block-navigation__list .block-editor-block-navigation__list > li:last-child::after {\n position: absolute;\n content: \"\";\n background: #fff;\n top: 19px;\n bottom: 0;\n left: -2px;\n width: 2px; }\n\n.block-editor-block-navigation__list-item-button {\n display: flex;\n align-items: center;\n width: 100%;\n padding: 6px;\n text-align: left;\n color: #40464d;\n border-radius: 2px; }\n .block-editor-block-navigation__list-item-button .block-editor-block-icon {\n margin-right: 6px; }\n .block-editor-block-navigation__list-item-button.is-selected svg,\n .block-editor-block-navigation__list-item-button.is-selected:focus svg {\n color: #fff;\n background: #1e1e1e;\n box-shadow: 0 0 0 1px #1e1e1e;\n border-radius: 1px; }\n\n.components-popover.block-editor-block-navigation__popover {\n z-index: 99998; }\n\n.block-editor-block-preview__container {\n position: relative;\n width: 100%;\n overflow: hidden; }\n\n.block-editor-block-preview__content {\n position: absolute;\n top: 0;\n left: 0;\n transform-origin: top left;\n text-align: initial;\n margin: 0;\n overflow: visible;\n min-height: auto; }\n .block-editor-block-preview__content .block-editor-block-list__insertion-point,\n .block-editor-block-preview__content .block-editor-block-drop-zone,\n .block-editor-block-preview__content .reusable-block-indicator,\n .block-editor-block-preview__content .block-list-appender {\n display: none; }\n .block-editor-block-preview__content .block-editor-block-list__layout.is-root-container {\n padding-left: 0;\n padding-right: 0; }\n .block-editor-block-preview__content .block-editor-block-list__layout.is-root-container > .wp-block[data-align=\"full\"] {\n margin-left: 0;\n margin-right: 0; }\n\n.block-editor-block-settings-menu__popover .components-dropdown-menu__menu {\n padding: 0; }\n\n.block-editor-block-styles {\n display: flex;\n flex-wrap: wrap;\n justify-content: space-between; }\n\n.block-editor-block-styles__item {\n width: calc(50% - 4px);\n margin: 4px 0;\n flex-shrink: 0;\n cursor: pointer;\n overflow: hidden;\n border-radius: 2px;\n padding: 6px;\n display: flex;\n flex-direction: column; }\n .block-editor-block-styles__item:focus {\n box-shadow: 0 0 0 1.5px #007cba;\n outline: 2px solid transparent; }\n body.admin-color-sunrise .block-editor-block-styles__item:focus {\n box-shadow: 0 0 0 1.5px #d1864a; }\n body.admin-color-ocean .block-editor-block-styles__item:focus {\n box-shadow: 0 0 0 1.5px #a3b9a2; }\n body.admin-color-midnight .block-editor-block-styles__item:focus {\n box-shadow: 0 0 0 1.5px #e14d43; }\n body.admin-color-ectoplasm .block-editor-block-styles__item:focus {\n box-shadow: 0 0 0 1.5px #a7b656; }\n body.admin-color-coffee .block-editor-block-styles__item:focus {\n box-shadow: 0 0 0 1.5px #c2a68c; }\n body.admin-color-blue .block-editor-block-styles__item:focus {\n box-shadow: 0 0 0 1.5px #d9ab59; }\n body.admin-color-light .block-editor-block-styles__item:focus {\n box-shadow: 0 0 0 1.5px #0085ba; }\n .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {\n border-color: #007cba; }\n body.admin-color-sunrise .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {\n border-color: #d1864a; }\n body.admin-color-ocean .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {\n border-color: #a3b9a2; }\n body.admin-color-midnight .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {\n border-color: #e14d43; }\n body.admin-color-ectoplasm .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {\n border-color: #a7b656; }\n body.admin-color-coffee .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {\n border-color: #c2a68c; }\n body.admin-color-blue .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {\n border-color: #d9ab59; }\n body.admin-color-light .block-editor-block-styles__item:hover .block-editor-block-styles__item-preview {\n border-color: #0085ba; }\n .block-editor-block-styles__item.is-active .block-editor-block-styles__item-label {\n font-weight: bold; }\n .block-editor-block-styles__item.is-active .block-editor-block-styles__item-preview {\n border: 2px solid #1e1e1e; }\n\n.block-editor-block-styles__item-preview {\n outline: 1px solid transparent;\n padding: 0;\n border: 1px solid rgba(30, 30, 30, 0.2);\n border-radius: 2px;\n display: flex;\n overflow: hidden;\n background: #fff;\n align-items: center;\n flex-grow: 1;\n min-height: 80px; }\n\n.block-editor-block-styles__item-label {\n text-align: center;\n padding: 4px 2px; }\n\n.block-editor-block-switcher {\n position: relative; }\n\n.block-editor-block-switcher__no-switcher-icon,\n.block-editor-block-switcher__toggle {\n position: relative; }\n\n.components-button.block-editor-block-switcher__toggle,\n.components-button.block-editor-block-switcher__no-switcher-icon {\n margin: 0;\n display: block;\n height: 48px; }\n .components-button.block-editor-block-switcher__toggle .block-editor-block-icon,\n .components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-icon {\n margin: auto; }\n\n.components-button.block-editor-block-switcher__no-switcher-icon {\n width: 48px; }\n .components-button.block-editor-block-switcher__no-switcher-icon .block-editor-blocks-icon {\n margin-right: auto;\n margin-left: auto; }\n\n.components-button.block-editor-block-switcher__no-switcher-icon:disabled {\n opacity: 1; }\n .components-button.block-editor-block-switcher__no-switcher-icon:disabled,\n .components-button.block-editor-block-switcher__no-switcher-icon:disabled .block-editor-block-icon.has-colors {\n color: #1e1e1e !important; }\n\n.block-editor-block-toolbar .components-toolbar-group .components-button.block-editor-block-switcher__toggle.has-icon.has-icon,\n.block-editor-block-toolbar .components-toolbar .components-button.block-editor-block-switcher__toggle.has-icon.has-icon {\n padding: 0; }\n .block-editor-block-toolbar .components-toolbar-group .components-button.block-editor-block-switcher__toggle.has-icon.has-icon .block-editor-block-icon,\n .block-editor-block-toolbar .components-toolbar .components-button.block-editor-block-switcher__toggle.has-icon.has-icon .block-editor-block-icon {\n height: 100%;\n position: relative;\n margin: 0 auto;\n display: flex;\n align-items: center; }\n .block-editor-block-toolbar .components-toolbar-group .components-button.block-editor-block-switcher__toggle.has-icon.has-icon::before,\n .block-editor-block-toolbar .components-toolbar .components-button.block-editor-block-switcher__toggle.has-icon.has-icon::before {\n top: 8px;\n right: 8px;\n bottom: 8px;\n left: 8px; }\n\n.components-popover.block-editor-block-switcher__popover .components-popover__content {\n min-width: 300px;\n max-width: calc(340px * 2);\n display: flex;\n background: #fff;\n padding: 0; }\n .components-popover.block-editor-block-switcher__popover .components-popover__content .components-menu-group {\n padding: 16px 24px; }\n .components-popover.block-editor-block-switcher__popover .components-popover__content .components-menu-group + .components-menu-group {\n border-color: #ccc; }\n\n.block-editor-block-switcher__popover .components-popover__content .block-editor-block-switcher__container {\n min-width: 300px;\n max-width: 340px;\n width: 50%; }\n\n.block-editor-block-switcher__popover .components-popover__content .block-editor-block-switcher__label {\n margin-bottom: 8px;\n color: #757575; }\n\n@media (min-width: 782px) {\n .block-editor-block-switcher__popover .components-popover__content {\n position: relative; }\n .block-editor-block-switcher__popover .components-popover__content .block-editor-block-switcher__preview {\n border-left: 1px solid #e2e4e7;\n box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);\n background: #fff;\n width: 300px;\n height: auto;\n position: -webkit-sticky;\n position: sticky;\n -ms-grid-row-align: stretch;\n align-self: stretch;\n top: 0;\n padding: 10px; } }\n\n.block-editor-block-switcher__popover .components-popover__content .components-panel__body {\n border: 0;\n position: relative;\n z-index: 1; }\n\n.block-editor-block-switcher__popover .components-popover__content .components-panel__body + .components-panel__body {\n border-top: 1px solid #e2e4e7; }\n\n.block-editor-block-switcher__popover .block-editor-block-styles {\n margin: 0 -3px; }\n\n.block-editor-block-switcher__popover .block-editor-block-types-list {\n margin: 12px 0 0 0; }\n\n.block-editor-block-switcher__preview-title {\n margin-bottom: 10px;\n color: #6c7781; }\n\n.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__toggle,\n.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon {\n height: 48px; }\n\n.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon {\n width: 48px; }\n\n.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__toggle .block-editor-block-icon,\n.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__toggle .block-editor-block-switcher__transform {\n width: 48px;\n height: 48px; }\n\n.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__toggle .block-editor-block-switcher__transform {\n padding: 12px; }\n\n.block-editor-block-types-list {\n list-style: none;\n padding: 4px;\n margin-left: -4px;\n margin-right: -4px;\n overflow: hidden;\n display: flex;\n flex-wrap: wrap; }\n\n.block-editor-block-variation-picker .components-placeholder__instructions {\n margin-bottom: 0; }\n\n.block-editor-block-variation-picker .components-placeholder__fieldset {\n flex-direction: column; }\n\n.block-editor-block-variation-picker.has-many-variations .components-placeholder__fieldset {\n max-width: 90%; }\n\n.block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations {\n display: flex;\n justify-content: flex-start;\n flex-direction: row;\n flex-wrap: wrap;\n width: 100%;\n margin: 16px 0;\n padding: 0;\n list-style: none; }\n .block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations > li {\n list-style: none;\n margin: 8px 8px 0 0;\n flex-shrink: 1;\n max-width: 100px; }\n .block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations > li button {\n display: flex; }\n .block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations .block-editor-block-variation-picker__variation {\n padding: 8px; }\n .block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations .block-editor-block-variation-picker__variation-label {\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 12px;\n display: block;\n margin-right: 12px;\n text-align: center; }\n\n.block-editor-block-variation-picker__variation {\n width: 100%; }\n .block-editor-block-variation-picker__variation.components-button.has-icon {\n justify-content: center;\n width: auto; }\n .block-editor-block-variation-picker__variation.components-button.has-icon.is-secondary {\n background-color: #fff; }\n .block-editor-block-variation-picker__variation.components-button {\n height: auto;\n padding: 0; }\n .block-editor-block-variation-picker__variation::before {\n content: \"\";\n padding-bottom: 100%; }\n .block-editor-block-variation-picker__variation:first-child {\n margin-left: 0; }\n .block-editor-block-variation-picker__variation:last-child {\n margin-right: 0; }\n\n.block-editor-button-block-appender {\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n padding: 8px;\n width: 100%;\n height: auto;\n color: #1e1e1e;\n box-shadow: inset 0 0 0 1px #1e1e1e; }\n .block-editor-button-block-appender:hover {\n box-shadow: inset 0 0 0 1px #007cba; }\n body.admin-color-sunrise .block-editor-button-block-appender:hover {\n box-shadow: inset 0 0 0 1px #d1864a; }\n body.admin-color-ocean .block-editor-button-block-appender:hover {\n box-shadow: inset 0 0 0 1px #a3b9a2; }\n body.admin-color-midnight .block-editor-button-block-appender:hover {\n box-shadow: inset 0 0 0 1px #e14d43; }\n body.admin-color-ectoplasm .block-editor-button-block-appender:hover {\n box-shadow: inset 0 0 0 1px #a7b656; }\n body.admin-color-coffee .block-editor-button-block-appender:hover {\n box-shadow: inset 0 0 0 1px #c2a68c; }\n body.admin-color-blue .block-editor-button-block-appender:hover {\n box-shadow: inset 0 0 0 1px #d9ab59; }\n body.admin-color-light .block-editor-button-block-appender:hover {\n box-shadow: inset 0 0 0 1px #0085ba; }\n .block-editor-button-block-appender:focus {\n box-shadow: inset 0 0 0 2px #007cba; }\n body.admin-color-sunrise .block-editor-button-block-appender:focus {\n box-shadow: inset 0 0 0 2px #d1864a; }\n body.admin-color-ocean .block-editor-button-block-appender:focus {\n box-shadow: inset 0 0 0 2px #a3b9a2; }\n body.admin-color-midnight .block-editor-button-block-appender:focus {\n box-shadow: inset 0 0 0 2px #e14d43; }\n body.admin-color-ectoplasm .block-editor-button-block-appender:focus {\n box-shadow: inset 0 0 0 2px #a7b656; }\n body.admin-color-coffee .block-editor-button-block-appender:focus {\n box-shadow: inset 0 0 0 2px #c2a68c; }\n body.admin-color-blue .block-editor-button-block-appender:focus {\n box-shadow: inset 0 0 0 2px #d9ab59; }\n body.admin-color-light .block-editor-button-block-appender:focus {\n box-shadow: inset 0 0 0 2px #0085ba; }\n .block-editor-button-block-appender:active {\n color: #000; }\n .block-editor-button-block-appender.block-list-appender__toggle {\n background: #1e1e1e;\n color: #fff;\n box-shadow: none;\n width: 24px;\n height: 24px;\n padding: 0;\n margin-left: 8px; }\n .block-editor-button-block-appender.block-list-appender__toggle:active {\n color: #fff; }\n\n.block-editor-color-gradient-control__color-indicator {\n margin-bottom: 8px; }\n\n.block-editor-color-gradient-control__button-tabs {\n display: block;\n margin-bottom: 8px; }\n\n.block-editor-panel-color-gradient-settings .component-color-indicator {\n vertical-align: text-bottom; }\n\n.block-editor-panel-color-gradient-settings__panel-title .component-color-indicator {\n display: inline-block; }\n\n.block-editor-panel-color-gradient-settings.is-opened .block-editor-panel-color-gradient-settings__panel-title .component-color-indicator {\n display: none; }\n\n.block-editor-contrast-checker > .components-notice {\n margin: 0; }\n\n.block-editor-default-block-appender {\n clear: both;\n margin-left: auto;\n margin-right: auto;\n position: relative; }\n .block-editor-default-block-appender[data-root-client-id=\"\"] .block-editor-default-block-appender__content:hover {\n outline: 1px solid transparent; }\n .block-editor-default-block-appender textarea.block-editor-default-block-appender__content {\n font-family: inherit;\n font-size: inherit;\n border: none;\n background: none;\n box-shadow: none;\n display: block;\n cursor: text;\n width: 100%;\n outline: 1px solid transparent;\n transition: 0.2s outline;\n resize: none;\n margin-top: 28px;\n margin-bottom: 28px;\n padding: 0 50px 0 0;\n color: rgba(14, 28, 46, 0.62); }\n @media (prefers-reduced-motion: reduce) {\n .block-editor-default-block-appender textarea.block-editor-default-block-appender__content {\n transition-duration: 0s; } }\n .is-dark-theme .block-editor-default-block-appender textarea.block-editor-default-block-appender__content {\n color: rgba(255, 255, 255, 0.65); }\n .block-editor-default-block-appender .components-drop-zone__content-icon {\n display: none; }\n\n.block-editor-default-block-appender__content {\n line-height: 1.8; }\n\n.block-editor-block-list__empty-block-inserter.block-editor-block-list__empty-block-inserter,\n.block-editor-default-block-appender .block-editor-inserter {\n position: absolute;\n top: 0;\n height: 32px; }\n .block-editor-block-list__empty-block-inserter.block-editor-block-list__empty-block-inserter .block-editor-inserter__toggle,\n .block-editor-default-block-appender .block-editor-inserter .block-editor-inserter__toggle {\n margin-right: 0; }\n\n.block-editor-block-list__empty-block-inserter,\n.block-editor-default-block-appender .block-editor-inserter {\n right: 8px; }\n @media (min-width: 600px) {\n .block-editor-block-list__empty-block-inserter,\n .block-editor-default-block-appender .block-editor-inserter {\n display: flex;\n height: 100%; } }\n .block-editor-block-list__empty-block-inserter:disabled,\n .block-editor-default-block-appender .block-editor-inserter:disabled {\n display: none; }\n\n@media (min-width: 600px) {\n .block-editor-default-block-appender .block-editor-inserter {\n align-items: center; } }\n\n.block-editor-link-control {\n position: relative;\n min-width: 360px; }\n .components-popover__content .block-editor-link-control {\n min-width: auto;\n width: 90vw;\n max-width: 360px; }\n\n.block-editor-link-control__search-input-wrapper {\n position: relative; }\n\n.block-editor-link-control .block-editor-link-control__search-input.block-editor-link-control__search-input input[type=\"text\"] {\n width: calc(100% - 32px);\n display: block;\n padding: 11px 16px;\n padding-right: 36px;\n margin: 16px;\n position: relative;\n border: 1px solid #e2e4e7;\n border-radius: 4px;\n /* Fonts smaller than 16px causes mobile safari to zoom. */\n font-size: 16px; }\n @media (min-width: 600px) {\n .block-editor-link-control .block-editor-link-control__search-input.block-editor-link-control__search-input input[type=\"text\"] {\n font-size: 13px; } }\n .block-editor-link-control .block-editor-link-control__search-input.block-editor-link-control__search-input input[type=\"text\"]:focus {\n border-color: rgb(0, 124, 186);\n box-shadow: 0 0 0 0.5px #007cba;\n outline: 2px solid transparent; }\n body.admin-color-sunrise .block-editor-link-control .block-editor-link-control__search-input.block-editor-link-control__search-input input[type=\"text\"]:focus {\n border-color: rgb(209, 134, 74);\n box-shadow: 0 0 0 0.5px #d1864a; }\n body.admin-color-ocean .block-editor-link-control .block-editor-link-control__search-input.block-editor-link-control__search-input input[type=\"text\"]:focus {\n border-color: rgb(163, 185, 162);\n box-shadow: 0 0 0 0.5px #a3b9a2; }\n body.admin-color-midnight .block-editor-link-control .block-editor-link-control__search-input.block-editor-link-control__search-input input[type=\"text\"]:focus {\n border-color: rgb(225, 77, 67);\n box-shadow: 0 0 0 0.5px #e14d43; }\n body.admin-color-ectoplasm .block-editor-link-control .block-editor-link-control__search-input.block-editor-link-control__search-input input[type=\"text\"]:focus {\n border-color: rgb(167, 182, 86);\n box-shadow: 0 0 0 0.5px #a7b656; }\n body.admin-color-coffee .block-editor-link-control .block-editor-link-control__search-input.block-editor-link-control__search-input input[type=\"text\"]:focus {\n border-color: rgb(194, 166, 140);\n box-shadow: 0 0 0 0.5px #c2a68c; }\n body.admin-color-blue .block-editor-link-control .block-editor-link-control__search-input.block-editor-link-control__search-input input[type=\"text\"]:focus {\n border-color: rgb(217, 171, 89);\n box-shadow: 0 0 0 0.5px #d9ab59; }\n body.admin-color-light .block-editor-link-control .block-editor-link-control__search-input.block-editor-link-control__search-input input[type=\"text\"]:focus {\n border-color: rgb(0, 133, 186);\n box-shadow: 0 0 0 0.5px #0085ba; }\n\n.block-editor-link-control .block-editor-link-control__search-input .components-base-control__field {\n margin-bottom: 0; }\n\n.block-editor-link-control__search-error {\n margin: -8px 16px 16px; }\n\n.block-editor-link-control__search-actions {\n position: absolute;\n /*\n\t * Actions must be positioned on top of URLInput, since the input will grow\n\t * when suggestions are rendered.\n\t *\n\t * Compensate for:\n\t * - Input margin ($grid-unit-20)\n\t * - Border (1px)\n\t * - Vertically, for the difference in height between the input (40px) and\n\t * the icon buttons.\n\t * - Horizontally, pad to the minimum of: default input padding, or the\n\t * equivalent of the vertical padding.\n\t */\n top: 19px;\n right: 19px; }\n\n.block-editor-link-control__search-results-wrapper {\n position: relative;\n margin-top: -15px; }\n .block-editor-link-control__search-results-wrapper::before, .block-editor-link-control__search-results-wrapper::after {\n content: \"\";\n position: absolute;\n left: -1px;\n right: 16px;\n display: block;\n pointer-events: none;\n z-index: 100; }\n .block-editor-link-control__search-results-wrapper::before {\n height: 8px;\n top: 0;\n bottom: auto;\n background: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0) 100%); }\n .block-editor-link-control__search-results-wrapper::after {\n height: 16px;\n bottom: 0;\n top: auto;\n background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%); }\n\n.block-editor-link-control__search-results-label {\n padding: 15px 30px 0 30px;\n display: block;\n font-size: 1.1em; }\n\n.block-editor-link-control__search-results {\n margin: 0;\n padding: 8px 16px 8px;\n max-height: 200px;\n overflow-y: auto; }\n .block-editor-link-control__search-results.is-loading {\n opacity: 0.2; }\n\n.block-editor-link-control__search-item {\n position: relative;\n display: flex;\n align-items: center;\n font-size: 13px;\n cursor: pointer;\n background: #fff;\n width: 100%;\n border: none;\n text-align: left;\n padding: 10px 15px;\n border-radius: 5px;\n height: auto; }\n .block-editor-link-control__search-item:hover, .block-editor-link-control__search-item:focus {\n background-color: #edeff0; }\n .block-editor-link-control__search-item.is-selected {\n background: #f3f4f5; }\n .block-editor-link-control__search-item.is-selected .block-editor-link-control__search-item-type {\n background: #fff; }\n .block-editor-link-control__search-item.is-current {\n background: transparent;\n border: 0;\n width: 100%;\n cursor: default;\n padding: 16px;\n padding-left: 24px; }\n .block-editor-link-control__search-item .block-editor-link-control__search-item-header {\n display: block;\n margin-right: 24px;\n overflow: hidden;\n white-space: nowrap; }\n .block-editor-link-control__search-item .block-editor-link-control__search-item-icon {\n margin-right: 1em;\n min-width: 24px; }\n .block-editor-link-control__search-item .block-editor-link-control__search-item-info,\n .block-editor-link-control__search-item .block-editor-link-control__search-item-title {\n max-width: 230px;\n overflow: hidden;\n text-overflow: ellipsis; }\n .block-editor-link-control__search-item .block-editor-link-control__search-item-title mark {\n color: #191e23; }\n .block-editor-link-control__search-item .block-editor-link-control__search-item-title {\n display: block;\n margin-bottom: 0.2em;\n font-weight: 500; }\n .block-editor-link-control__search-item .block-editor-link-control__search-item-title mark {\n font-weight: 700;\n color: #000;\n background-color: transparent; }\n .block-editor-link-control__search-item .block-editor-link-control__search-item-title span {\n font-weight: normal; }\n .block-editor-link-control__search-item .block-editor-link-control__search-item-info {\n display: block;\n color: #6c7781;\n font-size: 0.9em;\n line-height: 1.3; }\n .block-editor-link-control__search-item .block-editor-link-control__search-item-type {\n display: block;\n padding: 3px 8px;\n margin-left: auto;\n font-size: 0.9em;\n background-color: #f3f4f5;\n border-radius: 2px; }\n\n.block-editor-link-control__loading {\n margin: 16px;\n display: flex;\n align-items: center; }\n .block-editor-link-control__loading .components-spinner {\n margin-top: 0; }\n\n.components-button + .block-editor-link-control__search-create {\n margin-top: 20px;\n overflow: visible;\n padding: 12px 15px; }\n .components-button + .block-editor-link-control__search-create::before {\n content: \"\";\n position: absolute;\n top: -10px;\n left: 0;\n display: block;\n width: 100%;\n border-top: 1px solid #e2e4e7; }\n\n.block-editor-link-control__search-results div[role=\"menu\"] > .block-editor-link-control__search-item.block-editor-link-control__search-item {\n padding: 10px; }\n\n.block-editor-link-control__settings {\n border-top: 1px solid #e2e4e7;\n margin: 0;\n padding: 16px 24px; }\n .block-editor-link-control__settings :last-child {\n margin-bottom: 0; }\n\n.block-editor-link-control__setting {\n margin-bottom: 16px; }\n .block-editor-link-control__setting :last-child {\n margin-bottom: 0; }\n\n.block-editor-link-control .block-editor-link-control__search-input .components-spinner {\n display: block; }\n .block-editor-link-control .block-editor-link-control__search-input .components-spinner.components-spinner {\n position: absolute;\n left: auto;\n bottom: auto;\n /*\n\t\t * Position spinner to the left of the actions.\n\t\t *\n\t\t * Compensate for:\n\t\t * - Input margin ($grid-unit-20)\n\t\t * - Border (1px)\n\t\t * - Vertically, for the difference in height between the input (40px)\n\t\t * and the spinner.\n\t\t * - Horizontally, adjust for the width occupied by the icon buttons,\n\t\t * then artificially create spacing that mimics as if the spinner\n\t\t * were center-padded to the same width as an icon button.\n\t\t */\n top: 28px;\n right: 62px; }\n\n.block-editor-link-control__search-item-action {\n margin-left: auto;\n flex-shrink: 0; }\n\n.block-editor-line-height-control {\n margin-bottom: 24px; }\n .block-editor-line-height-control input {\n display: block;\n max-width: 60px; }\n\n.block-editor-image-size-control {\n margin-bottom: 1em; }\n .block-editor-image-size-control .block-editor-image-size-control__row {\n display: flex;\n justify-content: space-between; }\n .block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__width,\n .block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__height {\n margin-bottom: 0.5em; }\n .block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__width input,\n .block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__height input {\n line-height: 1.25; }\n .block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__width {\n margin-right: 5px; }\n .block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__height {\n margin-left: 5px; }\n\n.block-editor-block-list__layout.has-overlay::after {\n content: \"\";\n position: absolute;\n top: -14px;\n right: -14px;\n bottom: -14px;\n left: -14px;\n z-index: 60; }\n\n[data-align=\"full\"] .has-overlay::after {\n right: 0;\n left: 0; }\n\n.block-editor-block-types-list__list-item {\n display: block;\n width: 33.33%;\n padding: 0;\n margin: 0; }\n\n.components-button.block-editor-block-types-list__item {\n display: flex;\n flex-direction: column;\n width: 100%;\n font-size: 13px;\n color: #32373c;\n padding: 8px;\n align-items: stretch;\n justify-content: center;\n cursor: pointer;\n background: transparent;\n word-break: break-word;\n border-radius: 2px;\n border: 1px solid transparent;\n transition: all 0.05s ease-in-out;\n position: relative;\n height: auto; }\n @media (prefers-reduced-motion: reduce) {\n .components-button.block-editor-block-types-list__item {\n transition-duration: 0s; } }\n .components-button.block-editor-block-types-list__item:disabled {\n opacity: 0.6;\n cursor: default; }\n .components-button.block-editor-block-types-list__item:not(:disabled):hover {\n border-color: #007cba;\n color: #007cba !important; }\n body.admin-color-sunrise .components-button.block-editor-block-types-list__item:not(:disabled):hover {\n border-color: #d1864a;\n color: #d1864a !important; }\n body.admin-color-ocean .components-button.block-editor-block-types-list__item:not(:disabled):hover {\n border-color: #a3b9a2;\n color: #a3b9a2 !important; }\n body.admin-color-midnight .components-button.block-editor-block-types-list__item:not(:disabled):hover {\n border-color: #e14d43;\n color: #e14d43 !important; }\n body.admin-color-ectoplasm .components-button.block-editor-block-types-list__item:not(:disabled):hover {\n border-color: #a7b656;\n color: #a7b656 !important; }\n body.admin-color-coffee .components-button.block-editor-block-types-list__item:not(:disabled):hover {\n border-color: #c2a68c;\n color: #c2a68c !important; }\n body.admin-color-blue .components-button.block-editor-block-types-list__item:not(:disabled):hover {\n border-color: #d9ab59;\n color: #d9ab59 !important; }\n body.admin-color-light .components-button.block-editor-block-types-list__item:not(:disabled):hover {\n border-color: #0085ba;\n color: #0085ba !important; }\n .components-button.block-editor-block-types-list__item:not(:disabled).is-active {\n color: #fff;\n background: #1e1e1e;\n outline: 2px solid transparent;\n outline-offset: -2px; }\n\n.block-editor-block-types-list__item-icon {\n padding: 12px 20px;\n border-radius: 2px;\n color: #1e1e1e;\n transition: all 0.05s ease-in-out; }\n @media (prefers-reduced-motion: reduce) {\n .block-editor-block-types-list__item-icon {\n transition-duration: 0s; } }\n .block-editor-block-types-list__item-icon .block-editor-block-icon {\n margin-left: auto;\n margin-right: auto; }\n .block-editor-block-types-list__item-icon svg {\n transition: all 0.15s ease-out; }\n @media (prefers-reduced-motion: reduce) {\n .block-editor-block-types-list__item-icon svg {\n transition-duration: 0s; } }\n\n.block-editor-block-types-list__item-title {\n padding: 4px 2px 8px;\n font-size: 12px; }\n\n.modal-open .block-editor-media-replace-flow__options {\n display: none; }\n\n.block-editor-media-replace-flow__options .components-popover__content {\n padding-top: 16px; }\n\n.block-editor-media-replace-flow__indicator {\n margin-left: 4px; }\n\n.block-editor-media-flow__url-input {\n margin-top: 16px; }\n .block-editor-media-flow__url-input .block-editor-media-replace-flow__image-url-label {\n top: 16px; }\n .block-editor-media-flow__url-input .block-editor-link-control {\n margin-top: -16px;\n width: auto; }\n .block-editor-media-flow__url-input .block-editor-link-control .components-base-control .components-base-control__field {\n margin-bottom: 0; }\n .block-editor-media-flow__url-input .block-editor-link-control .block-editor-link-control__search-item-title {\n max-width: 180px;\n margin-top: 16px; }\n .block-editor-media-flow__url-input .block-editor-link-control .block-editor-link-control__search-item.is-current {\n width: auto;\n padding: 0; }\n .block-editor-media-flow__url-input .block-editor-link-control .block-editor-link-control__search-input.block-editor-link-control__search-input input[type=\"text\"] {\n margin: 16px 0 0 0;\n width: 100%; }\n .block-editor-media-flow__url-input .block-editor-link-control .block-editor-link-control__search-actions {\n right: 4px; }\n\n.block-editor-media-flow__error {\n padding: 0 20px 20px 20px;\n max-width: 255px; }\n .block-editor-media-flow__error .components-with-notices-ui {\n max-width: 255px; }\n .block-editor-media-flow__error .components-with-notices-ui .components-notice__content {\n overflow: hidden;\n word-wrap: break-word; }\n .block-editor-media-flow__error .components-with-notices-ui .components-notice__dismiss {\n position: absolute;\n right: 10px; }\n\n.block-editor-media-placeholder__url-input-container .block-editor-media-placeholder__button {\n margin-bottom: 0; }\n\n.block-editor-media-placeholder__url-input-form {\n display: flex; }\n .block-editor-media-placeholder__url-input-form input[type=\"url\"].block-editor-media-placeholder__url-input-field {\n width: 100%;\n flex-grow: 1;\n border: none;\n border-radius: 0;\n margin: 2px; }\n @media (min-width: 600px) {\n .block-editor-media-placeholder__url-input-form input[type=\"url\"].block-editor-media-placeholder__url-input-field {\n width: 300px; } }\n\n.block-editor-media-placeholder__url-input-submit-button {\n flex-shrink: 1; }\n\n.block-editor-media-placeholder__button {\n margin-bottom: 0.5rem; }\n\n.block-editor-media-placeholder__cancel-button.is-link {\n margin: 1em;\n display: block; }\n\n.block-editor-media-placeholder.is-appender {\n min-height: 0; }\n .block-editor-media-placeholder.is-appender:hover {\n cursor: pointer;\n box-shadow: 0 0 0 1px #007cba; }\n body.admin-color-sunrise .block-editor-media-placeholder.is-appender:hover {\n box-shadow: 0 0 0 1px #d1864a; }\n body.admin-color-ocean .block-editor-media-placeholder.is-appender:hover {\n box-shadow: 0 0 0 1px #a3b9a2; }\n body.admin-color-midnight .block-editor-media-placeholder.is-appender:hover {\n box-shadow: 0 0 0 1px #e14d43; }\n body.admin-color-ectoplasm .block-editor-media-placeholder.is-appender:hover {\n box-shadow: 0 0 0 1px #a7b656; }\n body.admin-color-coffee .block-editor-media-placeholder.is-appender:hover {\n box-shadow: 0 0 0 1px #c2a68c; }\n body.admin-color-blue .block-editor-media-placeholder.is-appender:hover {\n box-shadow: 0 0 0 1px #d9ab59; }\n body.admin-color-light .block-editor-media-placeholder.is-appender:hover {\n box-shadow: 0 0 0 1px #0085ba; }\n\n.block-editor-multi-selection-inspector__card {\n display: flex;\n align-items: flex-start;\n padding: 16px; }\n\n.block-editor-multi-selection-inspector__card-content {\n flex-grow: 1; }\n\n.block-editor-multi-selection-inspector__card-title {\n font-weight: 500;\n margin-bottom: 5px; }\n\n.block-editor-multi-selection-inspector__card-description {\n font-size: 13px; }\n\n.block-editor-multi-selection-inspector__card .block-editor-block-icon {\n margin-left: -2px;\n margin-right: 10px;\n padding: 0 3px;\n width: 36px;\n height: 24px; }\n\n.block-editor .block-editor-plain-text {\n box-shadow: none;\n font-family: inherit;\n font-size: inherit;\n color: inherit;\n line-height: inherit;\n border: none;\n padding: 0;\n margin: 0;\n width: 100%; }\n\n.block-editor-responsive-block-control {\n margin-bottom: 28px;\n border-bottom: 1px solid #d7dade;\n padding-bottom: 14px; }\n .block-editor-responsive-block-control:last-child {\n padding-bottom: 0;\n border-bottom: 0; }\n\n.block-editor-responsive-block-control__title {\n margin: 0;\n margin-bottom: 0.6em;\n margin-left: -3px; }\n\n.block-editor-responsive-block-control__label {\n font-weight: 600;\n margin-bottom: 0.6em;\n margin-left: -3px; }\n\n.block-editor-responsive-block-control__inner {\n margin-left: -1px; }\n\n.block-editor-responsive-block-control__toggle {\n margin-left: 1px; }\n\n.block-editor-responsive-block-control .components-base-control__help {\n border: 0;\n clip: rect(1px, 1px, 1px, 1px);\n -webkit-clip-path: inset(50%);\n clip-path: inset(50%);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px;\n word-wrap: normal !important; }\n\n.block-editor-format-toolbar .components-dropdown-menu__toggle {\n justify-content: center; }\n\n.block-editor-rich-text__editable > p:first-child {\n margin-top: 0; }\n\n.block-editor-rich-text__editable [data-rich-text-placeholder] {\n pointer-events: none; }\n\n.block-editor-rich-text__editable [data-rich-text-placeholder]::after {\n content: attr(data-rich-text-placeholder);\n opacity: 0.62; }\n\n.block-editor-rich-text__editable:focus {\n outline: none; }\n .block-editor-rich-text__editable:focus [data-rich-text-format-boundary] {\n border-radius: 2px; }\n .block-editor-rich-text__editable:focus:not(.keep-placeholder-on-focus) [data-rich-text-placeholder]::after {\n display: none; }\n\nfigcaption.block-editor-rich-text__editable [data-rich-text-placeholder]::before {\n opacity: 0.8; }\n\n.components-popover.block-editor-rich-text__inline-format-toolbar {\n z-index: 99998; }\n .components-popover.block-editor-rich-text__inline-format-toolbar .components-popover__content {\n width: auto;\n min-width: auto;\n margin-bottom: 8px;\n box-shadow: none;\n border: 1px solid #1e1e1e;\n border-radius: 2px;\n background-color: #fff; }\n .components-popover.block-editor-rich-text__inline-format-toolbar .components-toolbar-group,\n .components-popover.block-editor-rich-text__inline-format-toolbar .components-toolbar {\n border: none; }\n .components-popover.block-editor-rich-text__inline-format-toolbar .components-toolbar__control,\n .components-popover.block-editor-rich-text__inline-format-toolbar .components-dropdown-menu__toggle {\n min-width: 48px;\n min-height: 48px;\n padding-left: 12px;\n padding-right: 12px; }\n\n.block-editor-skip-to-selected-block {\n position: absolute;\n top: -9999em; }\n .block-editor-skip-to-selected-block:focus {\n height: auto;\n width: auto;\n display: block;\n font-size: 14px;\n font-weight: 600;\n padding: 15px 23px 14px;\n background: #f1f1f1;\n color: #11a0d2;\n line-height: normal;\n box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);\n text-decoration: none;\n outline: none;\n z-index: 100000; }\n body.admin-color-sunrise .block-editor-skip-to-selected-block:focus {\n color: #c8b03c; }\n body.admin-color-ocean .block-editor-skip-to-selected-block:focus {\n color: #a89d8a; }\n body.admin-color-midnight .block-editor-skip-to-selected-block:focus {\n color: #77a6b9; }\n body.admin-color-ectoplasm .block-editor-skip-to-selected-block:focus {\n color: #c77430; }\n body.admin-color-coffee .block-editor-skip-to-selected-block:focus {\n color: #9fa47b; }\n body.admin-color-blue .block-editor-skip-to-selected-block:focus {\n color: #d9ab59; }\n body.admin-color-light .block-editor-skip-to-selected-block:focus {\n color: #c75726; }\n\n.block-editor-tool-selector__help {\n margin-top: 8px;\n margin-left: -12px;\n margin-right: -12px;\n margin-bottom: -12px;\n padding: 12px 20px;\n border-top: 1px solid #e2e4e7;\n color: #6c7781; }\n\n.block-editor-block-list__block .block-editor-url-input,\n.components-popover .block-editor-url-input,\n.block-editor-url-input {\n flex-grow: 1;\n position: relative;\n padding: 1px; }\n .block-editor-block-list__block .block-editor-url-input input[type=\"text\"],\n .components-popover .block-editor-url-input input[type=\"text\"],\n .block-editor-url-input input[type=\"text\"] {\n width: 100%;\n padding: 8px;\n border: none;\n border-radius: 0;\n margin-left: 0;\n margin-right: 0;\n /* Fonts smaller than 16px causes mobile safari to zoom. */\n font-size: 16px; }\n @media (min-width: 600px) {\n .block-editor-block-list__block .block-editor-url-input input[type=\"text\"],\n .components-popover .block-editor-url-input input[type=\"text\"],\n .block-editor-url-input input[type=\"text\"] {\n width: 300px; } }\n @media (min-width: 600px) {\n .block-editor-block-list__block .block-editor-url-input input[type=\"text\"],\n .components-popover .block-editor-url-input input[type=\"text\"],\n .block-editor-url-input input[type=\"text\"] {\n font-size: 13px; } }\n .block-editor-block-list__block .block-editor-url-input input[type=\"text\"]::-ms-clear,\n .components-popover .block-editor-url-input input[type=\"text\"]::-ms-clear,\n .block-editor-url-input input[type=\"text\"]::-ms-clear {\n display: none; }\n .block-editor-block-list__block .block-editor-url-input.has-border input[type=\"text\"],\n .components-popover .block-editor-url-input.has-border input[type=\"text\"],\n .block-editor-url-input.has-border input[type=\"text\"] {\n border: 1px solid #555d66;\n border-radius: 4px; }\n .block-editor-block-list__block .block-editor-url-input.is-full-width,\n .components-popover .block-editor-url-input.is-full-width,\n .block-editor-url-input.is-full-width {\n width: 100%; }\n .block-editor-block-list__block .block-editor-url-input.is-full-width input[type=\"text\"],\n .components-popover .block-editor-url-input.is-full-width input[type=\"text\"],\n .block-editor-url-input.is-full-width input[type=\"text\"] {\n width: 100%; }\n .block-editor-block-list__block .block-editor-url-input.is-full-width__suggestions,\n .components-popover .block-editor-url-input.is-full-width__suggestions,\n .block-editor-url-input.is-full-width__suggestions {\n width: 100%; }\n .block-editor-block-list__block .block-editor-url-input .components-spinner,\n .components-popover .block-editor-url-input .components-spinner,\n .block-editor-url-input .components-spinner {\n position: absolute;\n right: 8px;\n bottom: 17px;\n margin: 0; }\n\n.block-editor-url-input__suggestions {\n max-height: 200px;\n transition: all 0.15s ease-in-out;\n padding: 4px 0;\n width: 302px;\n overflow-y: auto; }\n @media (prefers-reduced-motion: reduce) {\n .block-editor-url-input__suggestions {\n transition-duration: 0s; } }\n\n.block-editor-url-input__suggestions,\n.block-editor-url-input .components-spinner {\n display: none; }\n @media (min-width: 600px) {\n .block-editor-url-input__suggestions,\n .block-editor-url-input .components-spinner {\n display: inherit; } }\n\n.block-editor-url-input__suggestion {\n padding: 4px 8px;\n color: #6c7781;\n display: block;\n font-size: 13px;\n cursor: pointer;\n background: #fff;\n width: 100%;\n border: none;\n text-align: left;\n box-shadow: none; }\n .block-editor-url-input__suggestion:hover {\n background: #e2e4e7; }\n .block-editor-url-input__suggestion:focus, .block-editor-url-input__suggestion.is-selected {\n background: rgb(0, 113, 158);\n color: #fff;\n outline: none; }\n body.admin-color-sunrise .block-editor-url-input__suggestion:focus, body.admin-color-sunrise .block-editor-url-input__suggestion.is-selected {\n background: rgb(178, 114, 63); }\n body.admin-color-ocean .block-editor-url-input__suggestion:focus, body.admin-color-ocean .block-editor-url-input__suggestion.is-selected {\n background: rgb(139, 157, 138); }\n body.admin-color-midnight .block-editor-url-input__suggestion:focus, body.admin-color-midnight .block-editor-url-input__suggestion.is-selected {\n background: rgb(191, 65, 57); }\n body.admin-color-ectoplasm .block-editor-url-input__suggestion:focus, body.admin-color-ectoplasm .block-editor-url-input__suggestion.is-selected {\n background: rgb(142, 155, 73); }\n body.admin-color-coffee .block-editor-url-input__suggestion:focus, body.admin-color-coffee .block-editor-url-input__suggestion.is-selected {\n background: rgb(165, 141, 119); }\n body.admin-color-blue .block-editor-url-input__suggestion:focus, body.admin-color-blue .block-editor-url-input__suggestion.is-selected {\n background: rgb(111, 153, 173); }\n body.admin-color-light .block-editor-url-input__suggestion:focus, body.admin-color-light .block-editor-url-input__suggestion.is-selected {\n background: rgb(0, 113, 158); }\n\n.components-toolbar-group > .block-editor-url-input__button,\n.components-toolbar > .block-editor-url-input__button {\n position: inherit; }\n\n.block-editor-url-input__button .block-editor-url-input__back {\n margin-right: 4px;\n overflow: visible; }\n .block-editor-url-input__button .block-editor-url-input__back::after {\n content: \"\";\n position: absolute;\n display: block;\n width: 1px;\n height: 24px;\n right: -1px;\n background: #e2e4e7; }\n\n.block-editor-url-input__button-modal {\n box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);\n border: 1px solid #e2e4e7;\n background: #fff; }\n\n.block-editor-url-input__button-modal-line {\n display: flex;\n flex-direction: row;\n flex-grow: 1;\n flex-shrink: 1;\n min-width: 0;\n align-items: flex-start; }\n .block-editor-url-input__button-modal-line .components-button {\n flex-shrink: 0;\n width: 36px;\n height: 36px; }\n\n.block-editor-url-popover__additional-controls {\n border-top: 1px solid #e2e4e7; }\n\n.block-editor-url-popover__additional-controls > div[role=\"menu\"] .components-button:not(:disabled):not([aria-disabled=\"true\"]):not(.is-secondary) > svg {\n box-shadow: none; }\n\n.block-editor-url-popover__additional-controls div[role=\"menu\"] > .components-button {\n padding-left: 2px; }\n\n.block-editor-url-popover__row {\n display: flex; }\n\n.block-editor-url-popover__row > :not(.block-editor-url-popover__settings-toggle) {\n flex-grow: 1; }\n\n.block-editor-url-popover .components-button.has-icon {\n padding: 3px; }\n .block-editor-url-popover .components-button.has-icon > svg {\n padding: 5px;\n border-radius: 4px;\n height: 30px;\n width: 30px; }\n .block-editor-url-popover .components-button.has-icon:not(:disabled):focus {\n box-shadow: none; }\n .block-editor-url-popover .components-button.has-icon:not(:disabled):focus > svg {\n box-shadow: inset 0 0 0 1.5px #007cba, inset 0 0 0 4px #fff;\n outline: 2px solid transparent; }\n body.admin-color-sunrise .block-editor-url-popover .components-button.has-icon:not(:disabled):focus > svg {\n box-shadow: inset 0 0 0 1.5px #d1864a, inset 0 0 0 4px #fff; }\n body.admin-color-ocean .block-editor-url-popover .components-button.has-icon:not(:disabled):focus > svg {\n box-shadow: inset 0 0 0 1.5px #a3b9a2, inset 0 0 0 4px #fff; }\n body.admin-color-midnight .block-editor-url-popover .components-button.has-icon:not(:disabled):focus > svg {\n box-shadow: inset 0 0 0 1.5px #e14d43, inset 0 0 0 4px #fff; }\n body.admin-color-ectoplasm .block-editor-url-popover .components-button.has-icon:not(:disabled):focus > svg {\n box-shadow: inset 0 0 0 1.5px #a7b656, inset 0 0 0 4px #fff; }\n body.admin-color-coffee .block-editor-url-popover .components-button.has-icon:not(:disabled):focus > svg {\n box-shadow: inset 0 0 0 1.5px #c2a68c, inset 0 0 0 4px #fff; }\n body.admin-color-blue .block-editor-url-popover .components-button.has-icon:not(:disabled):focus > svg {\n box-shadow: inset 0 0 0 1.5px #d9ab59, inset 0 0 0 4px #fff; }\n body.admin-color-light .block-editor-url-popover .components-button.has-icon:not(:disabled):focus > svg {\n box-shadow: inset 0 0 0 1.5px #0085ba, inset 0 0 0 4px #fff; }\n\n.block-editor-url-popover__settings-toggle {\n flex-shrink: 0;\n border-radius: 0;\n border-left: 1px solid #e2e4e7;\n margin-left: 1px; }\n .block-editor-url-popover__settings-toggle[aria-expanded=\"true\"] .dashicon {\n transform: rotate(180deg); }\n\n.block-editor-url-popover__input-container .components-base-control:last-child,\n.block-editor-url-popover__input-container .components-base-control:last-child .components-base-control__field {\n margin-bottom: 0; }\n\n.block-editor-url-popover__settings {\n display: block;\n padding: 16px;\n border-top: 1px solid #e2e4e7; }\n\n.block-editor-url-popover__link-editor,\n.block-editor-url-popover__link-viewer {\n display: flex; }\n .block-editor-url-popover__link-editor .block-editor-url-input .components-base-control__field,\n .block-editor-url-popover__link-viewer .block-editor-url-input .components-base-control__field {\n margin-bottom: 0; }\n .block-editor-url-popover__link-editor .block-editor-url-input .components-spinner,\n .block-editor-url-popover__link-viewer .block-editor-url-input .components-spinner {\n bottom: 9px; }\n\n.block-editor-url-popover__link-viewer-url {\n margin: 7px;\n flex-grow: 1;\n flex-shrink: 1;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n min-width: 150px;\n max-width: 500px; }\n .block-editor-url-popover__link-viewer-url.has-invalid-link {\n color: #d94f4f; }\n\n.block-editor-warning {\n align-items: center;\n display: flex;\n flex-wrap: wrap;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px;\n padding: 6px 12px;\n border: 1px solid #1e1e1e;\n border-radius: 2px;\n background-color: #fff; }\n .block-editor-warning .block-editor-warning__message {\n line-height: 1.4;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px;\n margin: 1em 0; }\n .block-editor-warning p.block-editor-warning__message.block-editor-warning__message {\n min-height: auto; }\n .block-editor-warning .block-editor-warning__contents {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n flex-wrap: wrap;\n align-items: baseline;\n width: 100%; }\n .block-editor-warning .block-editor-warning__actions {\n display: flex; }\n .block-editor-warning .block-editor-warning__action {\n margin: 0 0 0 8px; }\n\n.block-editor-warning__secondary {\n margin: auto 0 auto 8px; }\n\n.block-editor-writing-flow {\n display: flex;\n flex-direction: column; }\n\n.block-editor-writing-flow__click-redirect {\n cursor: text; }\n\n.html-anchor-control .components-external-link {\n display: block;\n margin-top: 8px; }\n\n#end-resizable-editor-section {\n display: none; }\n\n/**\n * Block Toolbar\n */\n.block-editor-block-toolbar {\n display: flex;\n flex-grow: 1;\n width: 100%;\n overflow: auto;\n position: relative;\n transition: border-color 0.1s linear, box-shadow 0.1s linear; }\n @media (prefers-reduced-motion: reduce) {\n .block-editor-block-toolbar {\n transition-duration: 0s; } }\n @media (min-width: 600px) {\n .block-editor-block-toolbar {\n overflow: inherit; } }\n .block-editor-block-toolbar .components-toolbar-group,\n .block-editor-block-toolbar .components-toolbar {\n background: none;\n line-height: 0;\n margin-top: -1px;\n margin-bottom: -1px;\n border: 0;\n border-right: 1px solid #e2e4e7; }\n .block-editor-block-toolbar > :last-child,\n .block-editor-block-toolbar > :last-child .components-toolbar-group,\n .block-editor-block-toolbar > :last-child .components-toolbar {\n border-right: none; }\n\n.block-editor-block-toolbar .components-toolbar-group,\n.block-editor-block-toolbar .components-toolbar,\n.block-editor-format-toolbar .components-toolbar-group,\n.block-editor-format-toolbar .components-toolbar {\n display: flex;\n flex-wrap: nowrap; }\n\n.block-editor-block-toolbar__slot {\n display: inline-block;\n line-height: 0; }\n @supports ((position: -webkit-sticky) or (position: sticky)) {\n .block-editor-block-toolbar__slot {\n display: inline-flex; } }\n\n.block-editor-block-toolbar__mover-switcher-container {\n display: flex; }\n\n.block-editor-block-toolbar__block-switcher-wrapper .block-editor-block-switcher {\n display: block; }\n\n@media (min-width: 782px) {\n .block-editor-block-toolbar.has-responsive-movers .block-editor-block-toolbar__mover-trigger-container {\n bottom: -1px;\n left: -1px;\n position: absolute;\n top: -1px;\n transform: translateX(-48px);\n -webkit-user-select: none;\n -ms-user-select: none;\n user-select: none; } }\n\n.block-editor-block-toolbar.has-responsive-movers .block-editor-block-toolbar__block-switcher-wrapper {\n background: #fff;\n border-left: 1px solid;\n border-radius: 0 0 2px 2px;\n position: relative;\n z-index: 1;\n margin-left: -1px; }\n\n@media (min-width: 782px) {\n .block-editor-block-toolbar.has-responsive-movers .block-editor-block-toolbar__mover-trigger-wrapper:not(:empty) {\n background-color: #fff;\n border: 1px solid #000;\n border-bottom-left-radius: 2px;\n border-top-left-radius: 2px;\n border-right: none;\n height: 100%;\n transition: all 60ms linear; } }\n\n@media (prefers-reduced-motion: reduce) {\n .block-editor-block-toolbar.has-responsive-movers .block-editor-block-toolbar__mover-trigger-wrapper:not(:empty) {\n transition-duration: 0s; } }\n\n.block-editor-inserter {\n display: inline-block;\n background: none;\n border: none;\n padding: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px;\n line-height: 1.4; }\n @media (min-width: 782px) {\n .block-editor-inserter {\n position: relative; } }\n\n@media (min-width: 782px) {\n .block-editor-inserter__popover > .components-popover__content {\n overflow-y: visible;\n height: 100vh;\n padding: 0; } }\n\n.block-editor-inserter__toggle.components-button {\n display: inline-flex;\n align-items: center;\n cursor: pointer;\n border: none;\n outline: none;\n padding: 0;\n transition: color 0.2s ease; }\n @media (prefers-reduced-motion: reduce) {\n .block-editor-inserter__toggle.components-button {\n transition-duration: 0s; } }\n\n.block-editor-inserter__menu {\n height: 100%;\n position: relative;\n overflow: visible; }\n\n.block-editor-inserter__main-area {\n width: auto;\n display: flex;\n flex-direction: column;\n height: 100%; }\n @media (min-width: 782px) {\n .block-editor-inserter__main-area {\n width: 350px; } }\n\n.block-editor-inserter__inline-elements {\n margin-top: -1px; }\n\n.block-editor-inserter__menu.is-bottom::after {\n border-bottom-color: #fff; }\n\n.components-popover.block-editor-inserter__popover {\n z-index: 99998; }\n\n.block-editor-inserter__search {\n padding: 16px;\n z-index: 1;\n flex-shrink: 0;\n position: relative; }\n .block-editor-inserter__search input[type=\"search\"].block-editor-inserter__search-input {\n display: block;\n padding: 16px 48px 16px 16px;\n border-radius: 2px;\n background: #f3f4f5;\n border: none;\n width: 100%;\n height: 48px;\n /* Fonts smaller than 16px causes mobile safari to zoom. */\n font-size: 16px; }\n @media (min-width: 600px) {\n .block-editor-inserter__search input[type=\"search\"].block-editor-inserter__search-input {\n font-size: 13px; } }\n .block-editor-inserter__search input[type=\"search\"].block-editor-inserter__search-input:focus {\n background: #fff;\n box-shadow: 0 0 0 1.5px #007cba; }\n body.admin-color-sunrise .block-editor-inserter__search input[type=\"search\"].block-editor-inserter__search-input:focus {\n box-shadow: 0 0 0 1.5px #d1864a; }\n body.admin-color-ocean .block-editor-inserter__search input[type=\"search\"].block-editor-inserter__search-input:focus {\n box-shadow: 0 0 0 1.5px #a3b9a2; }\n body.admin-color-midnight .block-editor-inserter__search input[type=\"search\"].block-editor-inserter__search-input:focus {\n box-shadow: 0 0 0 1.5px #e14d43; }\n body.admin-color-ectoplasm .block-editor-inserter__search input[type=\"search\"].block-editor-inserter__search-input:focus {\n box-shadow: 0 0 0 1.5px #a7b656; }\n body.admin-color-coffee .block-editor-inserter__search input[type=\"search\"].block-editor-inserter__search-input:focus {\n box-shadow: 0 0 0 1.5px #c2a68c; }\n body.admin-color-blue .block-editor-inserter__search input[type=\"search\"].block-editor-inserter__search-input:focus {\n box-shadow: 0 0 0 1.5px #d9ab59; }\n body.admin-color-light .block-editor-inserter__search input[type=\"search\"].block-editor-inserter__search-input:focus {\n box-shadow: 0 0 0 1.5px #0085ba; }\n\n.block-editor-inserter__search-icon {\n position: absolute;\n top: 28px;\n right: 28px; }\n\n.block-editor-inserter__tabs {\n display: flex;\n flex-grow: 1;\n flex-direction: column;\n margin-top: -8px; }\n .block-editor-inserter__tabs .components-tab-panel__tabs {\n border-bottom: 1px solid #e2e4e7; }\n .block-editor-inserter__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item {\n flex-grow: 1;\n margin-bottom: -1px; }\n .block-editor-inserter__tabs .components-tab-panel__tab-content {\n display: flex;\n flex-grow: 1;\n flex-direction: column;\n position: relative; }\n\n.block-editor-inserter__panel-header {\n display: inline-flex;\n align-items: center;\n padding: 16px 16px 0; }\n\n.block-editor-inserter__panel-content {\n padding: 0 16px; }\n\n.block-editor-inserter__panel-title {\n color: #007cba;\n text-transform: uppercase;\n font-size: 11px;\n font-weight: 500;\n margin-right: 8px; }\n\nbody.admin-color-sunrise .block-editor-inserter__panel-title {\n color: #d1864a; }\n\nbody.admin-color-ocean .block-editor-inserter__panel-title {\n color: #a3b9a2; }\n\nbody.admin-color-midnight .block-editor-inserter__panel-title {\n color: #e14d43; }\n\nbody.admin-color-ectoplasm .block-editor-inserter__panel-title {\n color: #a7b656; }\n\nbody.admin-color-coffee .block-editor-inserter__panel-title {\n color: #c2a68c; }\n\nbody.admin-color-blue .block-editor-inserter__panel-title {\n color: #d9ab59; }\n\nbody.admin-color-light .block-editor-inserter__panel-title {\n color: #0085ba; }\n\n.block-editor-inserter__block-list {\n flex-grow: 1;\n position: relative; }\n\n.block-editor-inserter__scrollable {\n overflow: auto;\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n right: 0;\n overflow-y: scroll; }\n\n.block-editor-inserter__popover .block-editor-block-types-list {\n margin: 0 -8px; }\n\n.block-editor-inserter__reusable-blocks-panel {\n position: relative;\n text-align: right; }\n\n.block-editor-inserter__manage-reusable-blocks {\n display: inline-block;\n margin: 16px; }\n\n.block-editor-inserter__no-results {\n padding: 32px;\n margin-top: 64px;\n text-align: center; }\n\n.block-editor-inserter__no-results-icon {\n fill: #b5bcc2; }\n\n.block-editor-inserter__child-blocks {\n padding: 0 16px; }\n\n.block-editor-inserter__parent-block-header {\n display: flex;\n align-items: center; }\n .block-editor-inserter__parent-block-header h2 {\n font-size: 13px; }\n .block-editor-inserter__parent-block-header .block-editor-block-icon {\n margin-right: 8px; }\n\n.block-editor-inserter__preview-container {\n display: none;\n width: 300px;\n background: #fff;\n border-radius: 2px;\n border: 1px solid #e2e4e7;\n position: absolute;\n top: 16px;\n left: calc(100% + 16px); }\n @media (min-width: 782px) {\n .block-editor-inserter__preview-container {\n display: block; } }\n .block-editor-inserter__preview-container .block-editor-block-card {\n padding: 16px; }\n .block-editor-inserter__preview-container .block-editor-block-card__title {\n font-size: 13px; }\n\n.block-editor-inserter__preview-content {\n min-height: 144px;\n background: #f3f4f5;\n display: -ms-grid;\n display: grid;\n flex-grow: 1;\n align-items: center; }\n\n.block-editor-inserter__preview-content-missing {\n flex: 1;\n display: flex;\n justify-content: center;\n align-items: center;\n min-height: 144px;\n color: #606a73;\n background: #f3f4f5; }\n\n.block-editor-inserter__tips {\n border-top: 1px solid #e2e4e7;\n padding: 16px;\n flex-shrink: 0; }\n\n.block-editor-inserter__patterns-item {\n border-radius: 2px;\n cursor: pointer;\n margin-top: 16px;\n transition: all 0.05s ease-in-out;\n position: relative;\n border: 1px solid transparent; }\n .block-editor-inserter__patterns-item:hover {\n border: 1px solid #007cba; }\n body.admin-color-sunrise .block-editor-inserter__patterns-item:hover {\n border: 1px solid #d1864a; }\n body.admin-color-ocean .block-editor-inserter__patterns-item:hover {\n border: 1px solid #a3b9a2; }\n body.admin-color-midnight .block-editor-inserter__patterns-item:hover {\n border: 1px solid #e14d43; }\n body.admin-color-ectoplasm .block-editor-inserter__patterns-item:hover {\n border: 1px solid #a7b656; }\n body.admin-color-coffee .block-editor-inserter__patterns-item:hover {\n border: 1px solid #c2a68c; }\n body.admin-color-blue .block-editor-inserter__patterns-item:hover {\n border: 1px solid #d9ab59; }\n body.admin-color-light .block-editor-inserter__patterns-item:hover {\n border: 1px solid #0085ba; }\n .block-editor-inserter__patterns-item:focus {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #007cba;\n outline: 2px solid transparent; }\n body.admin-color-sunrise .block-editor-inserter__patterns-item:focus {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #d1864a; }\n body.admin-color-ocean .block-editor-inserter__patterns-item:focus {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #a3b9a2; }\n body.admin-color-midnight .block-editor-inserter__patterns-item:focus {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #e14d43; }\n body.admin-color-ectoplasm .block-editor-inserter__patterns-item:focus {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #a7b656; }\n body.admin-color-coffee .block-editor-inserter__patterns-item:focus {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #c2a68c; }\n body.admin-color-blue .block-editor-inserter__patterns-item:focus {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #d9ab59; }\n body.admin-color-light .block-editor-inserter__patterns-item:focus {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #0085ba; }\n .block-editor-inserter__patterns-item.is-placeholder {\n min-height: 100px; }\n\n.block-editor-inserter__patterns-item-title {\n padding: 4px;\n font-size: 12px;\n text-align: center; }\n\n.block-editor-post-preview__dropdown {\n display: none;\n margin-right: 12px;\n padding: 0; }\n\n.block-editor-post-preview__button-toggle {\n display: flex;\n justify-content: space-between;\n padding: 0 8px 0 12px; }\n .block-editor-post-preview__button-toggle:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #007cba; }\n body.admin-color-sunrise .block-editor-post-preview__button-toggle:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #d1864a; }\n body.admin-color-ocean .block-editor-post-preview__button-toggle:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #a3b9a2; }\n body.admin-color-midnight .block-editor-post-preview__button-toggle:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #e14d43; }\n body.admin-color-ectoplasm .block-editor-post-preview__button-toggle:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #a7b656; }\n body.admin-color-coffee .block-editor-post-preview__button-toggle:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #c2a68c; }\n body.admin-color-blue .block-editor-post-preview__button-toggle:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #d9ab59; }\n body.admin-color-light .block-editor-post-preview__button-toggle:focus:not(:disabled) {\n box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #0085ba; }\n .block-editor-post-preview__button-toggle svg {\n margin-left: 4px; }\n\n.block-editor-post-preview__button-resize.block-editor-post-preview__button-resize {\n padding-left: 40px; }\n .block-editor-post-preview__button-resize.block-editor-post-preview__button-resize.has-icon {\n padding-left: 8px; }\n\n.block-editor-post-preview__dropdown-content .components-popover__content {\n overflow-y: visible; }\n\n.block-editor-post-preview__dropdown-content .components-menu-group + .components-menu-group {\n border-top: 1px solid #ccc;\n padding: 8px 12px;\n margin-left: -12px;\n margin-right: -12px; }\n\n@media (min-width: 600px) {\n .editor-post-preview {\n display: none; }\n .block-editor-post-preview__dropdown {\n display: flex; } }\n","/**\n * Colors\n */\n/**\n * Breakpoints & Media Queries\n */\n/**\n * Colors\n */\n/**\n * Fonts & basic variables.\n */\n/**\n * Grid System.\n * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/\n */\n/**\n * Dimensions.\n */\n/**\n * Shadows.\n */\n/**\n * Editor widths.\n */\n/**\n * Block UI.\n */\n/**\n * Border radii.\n */\n/**\n * Breakpoint mixins\n */\n/**\n * Long content fade mixin\n *\n * Creates a fading overlay to signify that the content is longer\n * than the space allows.\n */\n/**\n * Focus styles.\n */\n/**\n * Applies editor left position to the selector passed as argument\n */\n/**\n * Styles that are reused verbatim in a few places\n */\n/**\n * Allows users to opt-out of animations via OS-level preferences.\n */\n/**\n * Reset default styles for JavaScript UI based pages.\n * This is a WP-admin agnostic reset\n */\n/**\n * Reset the WP Admin page styles for Gutenberg-like pages.\n */\n.nux-dot-tip::before, .nux-dot-tip::after {\n border-radius: 100%;\n content: \" \";\n pointer-events: none;\n position: absolute; }\n\n.nux-dot-tip::before {\n animation: nux-pulse 1.6s infinite cubic-bezier(0.17, 0.67, 0.92, 0.62);\n background: rgba(0, 115, 156, 0.9);\n height: 24px;\n left: -12px;\n top: -12px;\n transform: scale(0.33333);\n width: 24px; }\n\n.nux-dot-tip::after {\n background: #00739c;\n height: 8px;\n left: -4px;\n top: -4px;\n width: 8px; }\n\n@keyframes nux-pulse {\n 100% {\n background: rgba(0, 115, 156, 0);\n transform: scale(1); } }\n\n.nux-dot-tip .components-popover__content {\n padding: 5px 41px 5px 20px;\n width: 350px; }\n @media (min-width: 600px) {\n .nux-dot-tip .components-popover__content {\n width: 450px; } }\n .nux-dot-tip .components-popover__content .nux-dot-tip__disable {\n position: absolute;\n right: 0;\n top: 0; }\n\n.nux-dot-tip[data-y-axis=\"top\"] {\n margin-top: -4px; }\n\n.nux-dot-tip[data-y-axis=\"bottom\"] {\n margin-top: 4px; }\n\n.nux-dot-tip[data-y-axis=\"middle\"][data-y-axis=\"left\"] {\n margin-left: -4px; }\n\n.nux-dot-tip[data-y-axis=\"middle\"][data-y-axis=\"right\"] {\n margin-left: 4px; }\n\n.nux-dot-tip[data-y-axis=\"top\"] .components-popover__content {\n margin-bottom: 20px; }\n\n.nux-dot-tip[data-y-axis=\"bottom\"] .components-popover__content {\n margin-top: 20px; }\n\n.nux-dot-tip[data-y-axis=\"middle\"][data-y-axis=\"left\"] .components-popover__content {\n margin-right: 20px; }\n\n.nux-dot-tip[data-y-axis=\"middle\"][data-y-axis=\"right\"] .components-popover__content {\n margin-left: 20px; }\n\n.nux-dot-tip[data-y-axis=\"left\"], .nux-dot-tip[data-y-axis=\"center\"], .nux-dot-tip[data-y-axis=\"right\"] {\n z-index: 1000001; }\n @media (max-width: 600px) {\n .nux-dot-tip[data-y-axis=\"left\"] .components-popover__content, .nux-dot-tip[data-y-axis=\"center\"] .components-popover__content, .nux-dot-tip[data-y-axis=\"right\"] .components-popover__content {\n -ms-grid-row-align: end;\n align-self: end;\n left: 5px;\n margin: 20px 0 0 0;\n max-width: none !important;\n position: fixed;\n right: 5px;\n width: auto; } }\n\n.nux-dot-tip.components-popover:not([data-y-axis=\"middle\"])[data-y-axis=\"right\"] .components-popover__content {\n /*!rtl:ignore*/\n margin-left: 0; }\n\n.nux-dot-tip.components-popover:not([data-y-axis=\"middle\"])[data-y-axis=\"left\"] .components-popover__content {\n /*!rtl:ignore*/\n margin-right: 0; }\n\n.nux-dot-tip.components-popover.edit-post-more-menu__content:not([data-y-axis=\"middle\"])[data-y-axis=\"right\"] .components-popover__content {\n /*!rtl:ignore*/\n margin-left: -12px; }\n\n.nux-dot-tip.components-popover.edit-post-more-menu__content:not([data-y-axis=\"middle\"])[data-y-axis=\"left\"] .components-popover__content {\n /*!rtl:ignore*/\n margin-right: -12px; }\n","@charset \"UTF-8\";\n/**\n * Colors\n */\n/**\n * Breakpoints & Media Queries\n */\n/**\n * Colors\n */\n/**\n * Fonts & basic variables.\n */\n/**\n * Grid System.\n * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/\n */\n/**\n * Dimensions.\n */\n/**\n * Shadows.\n */\n/**\n * Editor widths.\n */\n/**\n * Block UI.\n */\n/**\n * Border radii.\n */\n/**\n * Breakpoint mixins\n */\n/**\n * Long content fade mixin\n *\n * Creates a fading overlay to signify that the content is longer\n * than the space allows.\n */\n/**\n * Focus styles.\n */\n/**\n * Applies editor left position to the selector passed as argument\n */\n/**\n * Styles that are reused verbatim in a few places\n */\n/**\n * Allows users to opt-out of animations via OS-level preferences.\n */\n/**\n * Reset default styles for JavaScript UI based pages.\n * This is a WP-admin agnostic reset\n */\n/**\n * Reset the WP Admin page styles for Gutenberg-like pages.\n */\n.editor-autocompleters__user .editor-autocompleters__no-avatar::before {\n /* stylelint-disable */\n font: normal 20px/1 dashicons;\n /* stylelint-enable */\n content: \"\\f110\";\n margin-right: 5px;\n vertical-align: middle; }\n\n.editor-autocompleters__user .editor-autocompleters__user-avatar {\n margin-right: 8px;\n flex-grow: 0;\n flex-shrink: 0;\n max-width: none;\n width: 24px;\n height: 24px; }\n\n.editor-autocompleters__user .editor-autocompleters__user-name {\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n max-width: 200px;\n flex-shrink: 0;\n flex-grow: 1; }\n\n.editor-autocompleters__user .editor-autocompleters__user-slug {\n margin-left: 8px;\n color: #8f98a1;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: none;\n max-width: 100px;\n flex-grow: 0;\n flex-shrink: 0; }\n\n.editor-autocompleters__user:hover .editor-autocompleters__user-slug {\n color: #66c6e4; }\n\n.document-outline {\n margin: 20px 0; }\n .document-outline ul {\n margin: 0;\n padding: 0; }\n\n.document-outline__item {\n display: flex;\n margin: 4px 0; }\n .document-outline__item a {\n text-decoration: none; }\n .document-outline__item .document-outline__emdash::before {\n color: #e2e4e7;\n margin-right: 4px; }\n .document-outline__item.is-h2 .document-outline__emdash::before {\n content: \"—\"; }\n .document-outline__item.is-h3 .document-outline__emdash::before {\n content: \"——\"; }\n .document-outline__item.is-h4 .document-outline__emdash::before {\n content: \"———\"; }\n .document-outline__item.is-h5 .document-outline__emdash::before {\n content: \"————\"; }\n .document-outline__item.is-h6 .document-outline__emdash::before {\n content: \"—————\"; }\n\n.document-outline__button {\n cursor: pointer;\n background: none;\n border: none;\n display: flex;\n align-items: flex-start;\n margin: 0 0 0 -1px;\n padding: 2px 5px 2px 1px;\n color: #23282d;\n text-align: left;\n border-radius: 2px; }\n .document-outline__button:disabled {\n cursor: default; }\n .document-outline__button:focus {\n box-shadow: 0 0 0 1.5px #007cba;\n outline: 2px solid transparent; }\n body.admin-color-sunrise .document-outline__button:focus{\n box-shadow: 0 0 0 1.5px #d1864a; }\n body.admin-color-ocean .document-outline__button:focus{\n box-shadow: 0 0 0 1.5px #a3b9a2; }\n body.admin-color-midnight .document-outline__button:focus{\n box-shadow: 0 0 0 1.5px #e14d43; }\n body.admin-color-ectoplasm .document-outline__button:focus{\n box-shadow: 0 0 0 1.5px #a7b656; }\n body.admin-color-coffee .document-outline__button:focus{\n box-shadow: 0 0 0 1.5px #c2a68c; }\n body.admin-color-blue .document-outline__button:focus{\n box-shadow: 0 0 0 1.5px #d9ab59; }\n body.admin-color-light .document-outline__button:focus{\n box-shadow: 0 0 0 1.5px #0085ba; }\n\n.document-outline__level {\n background: #e2e4e7;\n color: #23282d;\n border-radius: 3px;\n font-size: 13px;\n padding: 1px 6px;\n margin-right: 4px; }\n .is-invalid .document-outline__level {\n background: #f0b849; }\n\n.document-outline__item-content {\n padding: 1px 0; }\n\n.components-editor-notices__dismissible {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n right: 0;\n color: #191e23; }\n\n.components-editor-notices__pinned {\n position: relative;\n left: 0;\n top: 0;\n right: 0;\n color: #191e23; }\n\n.components-editor-notices__dismissible .components-notice,\n.components-editor-notices__pinned .components-notice {\n box-sizing: border-box;\n margin: 0;\n border-bottom: 1px solid rgba(0, 0, 0, 0.2);\n padding: 0 12px;\n min-height: 60px; }\n .components-editor-notices__dismissible .components-notice .components-notice__dismiss,\n .components-editor-notices__pinned .components-notice .components-notice__dismiss {\n margin-top: 12px; }\n\n.components-editor-notices__snackbar {\n width: 100%; }\n @media (min-width: 782px) {\n .components-editor-notices__snackbar {\n width: fit-content;\n width: -moz-fit-content; } }\n\n.entities-saved-states__panel {\n box-sizing: border-box;\n background: #fff;\n position: fixed;\n z-index: 100001;\n top: 46px;\n bottom: 0;\n right: 0;\n left: 0;\n overflow: auto;\n box-sizing: border-box; }\n .entities-saved-states__panel *,\n .entities-saved-states__panel *::before,\n .entities-saved-states__panel *::after {\n box-sizing: inherit; }\n .entities-saved-states__panel .input-control,\n .entities-saved-states__panel input[type=\"text\"],\n .entities-saved-states__panel input[type=\"search\"],\n .entities-saved-states__panel input[type=\"radio\"],\n .entities-saved-states__panel input[type=\"tel\"],\n .entities-saved-states__panel input[type=\"time\"],\n .entities-saved-states__panel input[type=\"url\"],\n .entities-saved-states__panel input[type=\"week\"],\n .entities-saved-states__panel input[type=\"password\"],\n .entities-saved-states__panel input[type=\"checkbox\"],\n .entities-saved-states__panel input[type=\"color\"],\n .entities-saved-states__panel input[type=\"date\"],\n .entities-saved-states__panel input[type=\"datetime\"],\n .entities-saved-states__panel input[type=\"datetime-local\"],\n .entities-saved-states__panel input[type=\"email\"],\n .entities-saved-states__panel input[type=\"month\"],\n .entities-saved-states__panel input[type=\"number\"],\n .entities-saved-states__panel select,\n .entities-saved-states__panel textarea {\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n padding: 6px 8px;\n box-shadow: 0 0 0 transparent;\n transition: box-shadow 0.1s linear;\n border-radius: 2px;\n border: 1px solid #757575;\n /* Fonts smaller than 16px causes mobile safari to zoom. */\n font-size: 16px;\n /* Override core line-height. To be reviewed. */\n line-height: normal; }\n @media (prefers-reduced-motion: reduce) {\n .entities-saved-states__panel .input-control,\n .entities-saved-states__panel input[type=\"text\"],\n .entities-saved-states__panel input[type=\"search\"],\n .entities-saved-states__panel input[type=\"radio\"],\n .entities-saved-states__panel input[type=\"tel\"],\n .entities-saved-states__panel input[type=\"time\"],\n .entities-saved-states__panel input[type=\"url\"],\n .entities-saved-states__panel input[type=\"week\"],\n .entities-saved-states__panel input[type=\"password\"],\n .entities-saved-states__panel input[type=\"checkbox\"],\n .entities-saved-states__panel input[type=\"color\"],\n .entities-saved-states__panel input[type=\"date\"],\n .entities-saved-states__panel input[type=\"datetime\"],\n .entities-saved-states__panel input[type=\"datetime-local\"],\n .entities-saved-states__panel input[type=\"email\"],\n .entities-saved-states__panel input[type=\"month\"],\n .entities-saved-states__panel input[type=\"number\"],\n .entities-saved-states__panel select,\n .entities-saved-states__panel textarea {\n transition-duration: 0s; } }\n @media (min-width: 600px) {\n .entities-saved-states__panel .input-control,\n .entities-saved-states__panel input[type=\"text\"],\n .entities-saved-states__panel input[type=\"search\"],\n .entities-saved-states__panel input[type=\"radio\"],\n .entities-saved-states__panel input[type=\"tel\"],\n .entities-saved-states__panel input[type=\"time\"],\n .entities-saved-states__panel input[type=\"url\"],\n .entities-saved-states__panel input[type=\"week\"],\n .entities-saved-states__panel input[type=\"password\"],\n .entities-saved-states__panel input[type=\"checkbox\"],\n .entities-saved-states__panel input[type=\"color\"],\n .entities-saved-states__panel input[type=\"date\"],\n .entities-saved-states__panel input[type=\"datetime\"],\n .entities-saved-states__panel input[type=\"datetime-local\"],\n .entities-saved-states__panel input[type=\"email\"],\n .entities-saved-states__panel input[type=\"month\"],\n .entities-saved-states__panel input[type=\"number\"],\n .entities-saved-states__panel select,\n .entities-saved-states__panel textarea {\n font-size: 13px;\n /* Override core line-height. To be reviewed. */\n line-height: normal; } }\n .entities-saved-states__panel .input-control:focus,\n .entities-saved-states__panel input[type=\"text\"]:focus,\n .entities-saved-states__panel input[type=\"search\"]:focus,\n .entities-saved-states__panel input[type=\"radio\"]:focus,\n .entities-saved-states__panel input[type=\"tel\"]:focus,\n .entities-saved-states__panel input[type=\"time\"]:focus,\n .entities-saved-states__panel input[type=\"url\"]:focus,\n .entities-saved-states__panel input[type=\"week\"]:focus,\n .entities-saved-states__panel input[type=\"password\"]:focus,\n .entities-saved-states__panel input[type=\"checkbox\"]:focus,\n .entities-saved-states__panel input[type=\"color\"]:focus,\n .entities-saved-states__panel input[type=\"date\"]:focus,\n .entities-saved-states__panel input[type=\"datetime\"]:focus,\n .entities-saved-states__panel input[type=\"datetime-local\"]:focus,\n .entities-saved-states__panel input[type=\"email\"]:focus,\n .entities-saved-states__panel input[type=\"month\"]:focus,\n .entities-saved-states__panel input[type=\"number\"]:focus,\n .entities-saved-states__panel select:focus,\n .entities-saved-states__panel textarea:focus {\n border-color: rgb(0, 124, 186);\n box-shadow: 0 0 0 0.5px #007cba;\n outline: 2px solid transparent; }\n body.admin-color-sunrise .entities-saved-states__panel .input-control:focus, body.admin-color-sunrise .entities-saved-states__panel input[type=\"text\"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type=\"search\"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type=\"radio\"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type=\"tel\"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type=\"time\"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type=\"url\"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type=\"week\"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type=\"password\"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type=\"checkbox\"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type=\"color\"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type=\"date\"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type=\"datetime\"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type=\"datetime-local\"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type=\"email\"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type=\"month\"]:focus, body.admin-color-sunrise .entities-saved-states__panel input[type=\"number\"]:focus, body.admin-color-sunrise .entities-saved-states__panel select:focus, body.admin-color-sunrise .entities-saved-states__panel textarea:focus{\n border-color: rgb(209, 134, 74);\n box-shadow: 0 0 0 0.5px #d1864a; }\n body.admin-color-ocean .entities-saved-states__panel .input-control:focus, body.admin-color-ocean .entities-saved-states__panel input[type=\"text\"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type=\"search\"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type=\"radio\"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type=\"tel\"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type=\"time\"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type=\"url\"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type=\"week\"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type=\"password\"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type=\"checkbox\"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type=\"color\"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type=\"date\"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type=\"datetime\"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type=\"datetime-local\"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type=\"email\"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type=\"month\"]:focus, body.admin-color-ocean .entities-saved-states__panel input[type=\"number\"]:focus, body.admin-color-ocean .entities-saved-states__panel select:focus, body.admin-color-ocean .entities-saved-states__panel textarea:focus{\n border-color: rgb(163, 185, 162);\n box-shadow: 0 0 0 0.5px #a3b9a2; }\n body.admin-color-midnight .entities-saved-states__panel .input-control:focus, body.admin-color-midnight .entities-saved-states__panel input[type=\"text\"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type=\"search\"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type=\"radio\"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type=\"tel\"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type=\"time\"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type=\"url\"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type=\"week\"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type=\"password\"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type=\"checkbox\"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type=\"color\"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type=\"date\"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type=\"datetime\"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type=\"datetime-local\"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type=\"email\"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type=\"month\"]:focus, body.admin-color-midnight .entities-saved-states__panel input[type=\"number\"]:focus, body.admin-color-midnight .entities-saved-states__panel select:focus, body.admin-color-midnight .entities-saved-states__panel textarea:focus{\n border-color: rgb(225, 77, 67);\n box-shadow: 0 0 0 0.5px #e14d43; }\n body.admin-color-ectoplasm .entities-saved-states__panel .input-control:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type=\"text\"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type=\"search\"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type=\"radio\"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type=\"tel\"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type=\"time\"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type=\"url\"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type=\"week\"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type=\"password\"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type=\"checkbox\"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type=\"color\"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type=\"date\"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type=\"datetime\"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type=\"datetime-local\"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type=\"email\"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type=\"month\"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel input[type=\"number\"]:focus, body.admin-color-ectoplasm .entities-saved-states__panel select:focus, body.admin-color-ectoplasm .entities-saved-states__panel textarea:focus{\n border-color: rgb(167, 182, 86);\n box-shadow: 0 0 0 0.5px #a7b656; }\n body.admin-color-coffee .entities-saved-states__panel .input-control:focus, body.admin-color-coffee .entities-saved-states__panel input[type=\"text\"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type=\"search\"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type=\"radio\"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type=\"tel\"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type=\"time\"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type=\"url\"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type=\"week\"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type=\"password\"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type=\"checkbox\"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type=\"color\"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type=\"date\"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type=\"datetime\"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type=\"datetime-local\"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type=\"email\"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type=\"month\"]:focus, body.admin-color-coffee .entities-saved-states__panel input[type=\"number\"]:focus, body.admin-color-coffee .entities-saved-states__panel select:focus, body.admin-color-coffee .entities-saved-states__panel textarea:focus{\n border-color: rgb(194, 166, 140);\n box-shadow: 0 0 0 0.5px #c2a68c; }\n body.admin-color-blue .entities-saved-states__panel .input-control:focus, body.admin-color-blue .entities-saved-states__panel input[type=\"text\"]:focus, body.admin-color-blue .entities-saved-states__panel input[type=\"search\"]:focus, body.admin-color-blue .entities-saved-states__panel input[type=\"radio\"]:focus, body.admin-color-blue .entities-saved-states__panel input[type=\"tel\"]:focus, body.admin-color-blue .entities-saved-states__panel input[type=\"time\"]:focus, body.admin-color-blue .entities-saved-states__panel input[type=\"url\"]:focus, body.admin-color-blue .entities-saved-states__panel input[type=\"week\"]:focus, body.admin-color-blue .entities-saved-states__panel input[type=\"password\"]:focus, body.admin-color-blue .entities-saved-states__panel input[type=\"checkbox\"]:focus, body.admin-color-blue .entities-saved-states__panel input[type=\"color\"]:focus, body.admin-color-blue .entities-saved-states__panel input[type=\"date\"]:focus, body.admin-color-blue .entities-saved-states__panel input[type=\"datetime\"]:focus, body.admin-color-blue .entities-saved-states__panel input[type=\"datetime-local\"]:focus, body.admin-color-blue .entities-saved-states__panel input[type=\"email\"]:focus, body.admin-color-blue .entities-saved-states__panel input[type=\"month\"]:focus, body.admin-color-blue .entities-saved-states__panel input[type=\"number\"]:focus, body.admin-color-blue .entities-saved-states__panel select:focus, body.admin-color-blue .entities-saved-states__panel textarea:focus{\n border-color: rgb(217, 171, 89);\n box-shadow: 0 0 0 0.5px #d9ab59; }\n body.admin-color-light .entities-saved-states__panel .input-control:focus, body.admin-color-light .entities-saved-states__panel input[type=\"text\"]:focus, body.admin-color-light .entities-saved-states__panel input[type=\"search\"]:focus, body.admin-color-light .entities-saved-states__panel input[type=\"radio\"]:focus, body.admin-color-light .entities-saved-states__panel input[type=\"tel\"]:focus, body.admin-color-light .entities-saved-states__panel input[type=\"time\"]:focus, body.admin-color-light .entities-saved-states__panel input[type=\"url\"]:focus, body.admin-color-light .entities-saved-states__panel input[type=\"week\"]:focus, body.admin-color-light .entities-saved-states__panel input[type=\"password\"]:focus, body.admin-color-light .entities-saved-states__panel input[type=\"checkbox\"]:focus, body.admin-color-light .entities-saved-states__panel input[type=\"color\"]:focus, body.admin-color-light .entities-saved-states__panel input[type=\"date\"]:focus, body.admin-color-light .entities-saved-states__panel input[type=\"datetime\"]:focus, body.admin-color-light .entities-saved-states__panel input[type=\"datetime-local\"]:focus, body.admin-color-light .entities-saved-states__panel input[type=\"email\"]:focus, body.admin-color-light .entities-saved-states__panel input[type=\"month\"]:focus, body.admin-color-light .entities-saved-states__panel input[type=\"number\"]:focus, body.admin-color-light .entities-saved-states__panel select:focus, body.admin-color-light .entities-saved-states__panel textarea:focus{\n border-color: rgb(0, 133, 186);\n box-shadow: 0 0 0 0.5px #0085ba; }\n .entities-saved-states__panel input[type=\"number\"] {\n padding-left: 4px;\n padding-right: 4px; }\n .entities-saved-states__panel select {\n padding: 3px 24px 3px 8px;\n font-size: 13px;\n color: #555d66; }\n .entities-saved-states__panel select:focus {\n border-color: #008dbe;\n outline: 2px solid transparent;\n outline-offset: 0; }\n .entities-saved-states__panel input[type=\"checkbox\"],\n .entities-saved-states__panel input[type=\"radio\"] {\n border: 2px solid #757575;\n margin-right: 12px;\n transition: none; }\n .entities-saved-states__panel input[type=\"checkbox\"]:focus,\n .entities-saved-states__panel input[type=\"radio\"]:focus {\n border-color: #757575;\n box-shadow: 0 0 0 1px #757575; }\n .entities-saved-states__panel input[type=\"checkbox\"]:checked,\n .entities-saved-states__panel input[type=\"radio\"]:checked {\n background: #11a0d2;\n border-color: #11a0d2; }\n body.admin-color-sunrise .entities-saved-states__panel input[type=\"checkbox\"]:checked, body.admin-color-sunrise .entities-saved-states__panel input[type=\"radio\"]:checked{\n background: #c8b03c;\n border-color: #c8b03c; }\n body.admin-color-ocean .entities-saved-states__panel input[type=\"checkbox\"]:checked, body.admin-color-ocean .entities-saved-states__panel input[type=\"radio\"]:checked{\n background: #a3b9a2;\n border-color: #a3b9a2; }\n body.admin-color-midnight .entities-saved-states__panel input[type=\"checkbox\"]:checked, body.admin-color-midnight .entities-saved-states__panel input[type=\"radio\"]:checked{\n background: #77a6b9;\n border-color: #77a6b9; }\n body.admin-color-ectoplasm .entities-saved-states__panel input[type=\"checkbox\"]:checked, body.admin-color-ectoplasm .entities-saved-states__panel input[type=\"radio\"]:checked{\n background: #a7b656;\n border-color: #a7b656; }\n body.admin-color-coffee .entities-saved-states__panel input[type=\"checkbox\"]:checked, body.admin-color-coffee .entities-saved-states__panel input[type=\"radio\"]:checked{\n background: #c2a68c;\n border-color: #c2a68c; }\n body.admin-color-blue .entities-saved-states__panel input[type=\"checkbox\"]:checked, body.admin-color-blue .entities-saved-states__panel input[type=\"radio\"]:checked{\n background: #82b4cb;\n border-color: #82b4cb; }\n body.admin-color-light .entities-saved-states__panel input[type=\"checkbox\"]:checked, body.admin-color-light .entities-saved-states__panel input[type=\"radio\"]:checked{\n background: #11a0d2;\n border-color: #11a0d2; }\n .entities-saved-states__panel input[type=\"checkbox\"]:checked:focus,\n .entities-saved-states__panel input[type=\"radio\"]:checked:focus {\n box-shadow: 0 0 0 1.5px #757575; }\n .entities-saved-states__panel input[type=\"checkbox\"] {\n border-radius: 2px; }\n .entities-saved-states__panel input[type=\"checkbox\"]:checked::before, .entities-saved-states__panel input[type=\"checkbox\"][aria-checked=\"mixed\"]::before {\n margin: -3px -5px;\n color: #fff; }\n @media (min-width: 782px) {\n .entities-saved-states__panel input[type=\"checkbox\"]:checked::before, .entities-saved-states__panel input[type=\"checkbox\"][aria-checked=\"mixed\"]::before {\n margin: -4px 0 0 -5px; } }\n .entities-saved-states__panel input[type=\"checkbox\"][aria-checked=\"mixed\"] {\n background: #11a0d2;\n border-color: #11a0d2; }\n body.admin-color-sunrise .entities-saved-states__panel input[type=\"checkbox\"][aria-checked=\"mixed\"]{\n background: #c8b03c;\n border-color: #c8b03c; }\n body.admin-color-ocean .entities-saved-states__panel input[type=\"checkbox\"][aria-checked=\"mixed\"]{\n background: #a3b9a2;\n border-color: #a3b9a2; }\n body.admin-color-midnight .entities-saved-states__panel input[type=\"checkbox\"][aria-checked=\"mixed\"]{\n background: #77a6b9;\n border-color: #77a6b9; }\n body.admin-color-ectoplasm .entities-saved-states__panel input[type=\"checkbox\"][aria-checked=\"mixed\"]{\n background: #a7b656;\n border-color: #a7b656; }\n body.admin-color-coffee .entities-saved-states__panel input[type=\"checkbox\"][aria-checked=\"mixed\"]{\n background: #c2a68c;\n border-color: #c2a68c; }\n body.admin-color-blue .entities-saved-states__panel input[type=\"checkbox\"][aria-checked=\"mixed\"]{\n background: #82b4cb;\n border-color: #82b4cb; }\n body.admin-color-light .entities-saved-states__panel input[type=\"checkbox\"][aria-checked=\"mixed\"]{\n background: #11a0d2;\n border-color: #11a0d2; }\n .entities-saved-states__panel input[type=\"checkbox\"][aria-checked=\"mixed\"]::before {\n content: \"\\f460\";\n float: left;\n display: inline-block;\n vertical-align: middle;\n width: 16px;\n /* stylelint-disable */\n font: normal 30px/1 dashicons;\n /* stylelint-enable */\n speak: none;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale; }\n @media (min-width: 782px) {\n .entities-saved-states__panel input[type=\"checkbox\"][aria-checked=\"mixed\"]::before {\n float: none;\n font-size: 21px; } }\n .entities-saved-states__panel input[type=\"checkbox\"][aria-checked=\"mixed\"]:focus {\n box-shadow: 0 0 0 1.5px #555d66; }\n .entities-saved-states__panel input[type=\"radio\"] {\n border-radius: 50%; }\n .entities-saved-states__panel input[type=\"radio\"]:checked::before {\n width: 6px;\n height: 6px;\n margin: 6px 0 0 6px;\n background-color: #fff; }\n @media (min-width: 782px) {\n .entities-saved-states__panel input[type=\"radio\"]:checked::before {\n margin: 3px 0 0 3px; } }\n .entities-saved-states__panel input::-webkit-input-placeholder,\n .entities-saved-states__panel textarea::-webkit-input-placeholder {\n color: rgba(14, 28, 46, 0.62); }\n .entities-saved-states__panel input::-moz-placeholder,\n .entities-saved-states__panel textarea::-moz-placeholder {\n opacity: 1;\n color: rgba(14, 28, 46, 0.62); }\n .entities-saved-states__panel input:-ms-input-placeholder,\n .entities-saved-states__panel textarea:-ms-input-placeholder {\n color: rgba(14, 28, 46, 0.62); }\n .is-dark-theme .entities-saved-states__panel input::-webkit-input-placeholder, .is-dark-theme\n .entities-saved-states__panel textarea::-webkit-input-placeholder {\n color: rgba(255, 255, 255, 0.65); }\n .is-dark-theme .entities-saved-states__panel input::-moz-placeholder, .is-dark-theme\n .entities-saved-states__panel textarea::-moz-placeholder {\n opacity: 1;\n color: rgba(255, 255, 255, 0.65); }\n .is-dark-theme .entities-saved-states__panel input:-ms-input-placeholder, .is-dark-theme\n .entities-saved-states__panel textarea:-ms-input-placeholder {\n color: rgba(255, 255, 255, 0.65); }\n .entities-saved-states__panel .entities-saved-states__find-entity {\n display: none; }\n .entities-saved-states__panel .entities-saved-states__find-entity-small {\n display: block; }\n @media (min-width: 782px) {\n .entities-saved-states__panel {\n z-index: 99998;\n top: 32px;\n left: auto;\n width: 280px;\n border-left: 1px solid #e2e4e7; }\n body.is-fullscreen-mode .entities-saved-states__panel {\n top: 0; }\n .entities-saved-states__panel .entities-saved-states__find-entity {\n display: block; }\n .entities-saved-states__panel .entities-saved-states__find-entity-small {\n display: none; } }\n .entities-saved-states__panel .entities-saved-states__panel-header {\n background: #fff;\n padding-left: 8px;\n padding-right: 8px;\n height: 61px;\n border-bottom: 1px solid #e2e4e7;\n display: flex;\n align-items: center;\n align-content: space-between; }\n .entities-saved-states__panel .entities-saved-states__panel-header .components-button.has-icon {\n position: absolute;\n right: 8px; }\n .entities-saved-states__panel .entities-saved-states__text-prompt {\n border-bottom: 1px solid #e2e4e7; }\n .entities-saved-states__panel .entities-saved-states__text-prompt h2 {\n padding: 16px;\n padding-bottom: 12px;\n margin: 0;\n font-size: 18px; }\n .entities-saved-states__panel .editor-entities-saved-states__save-button {\n display: block;\n margin: 12px auto; }\n\n.editor-error-boundary {\n margin: auto;\n max-width: 780px;\n padding: 20px;\n margin-top: 60px;\n box-shadow: 0 3px 30px rgba(25, 30, 35, 0.2); }\n\n.editor-page-attributes__template {\n margin-bottom: 10px; }\n .editor-page-attributes__template label,\n .editor-page-attributes__template select {\n width: 100%; }\n\n.editor-page-attributes__order {\n width: 100%; }\n .editor-page-attributes__order .components-base-control__field {\n display: flex;\n justify-content: space-between;\n align-items: center; }\n .editor-page-attributes__order input {\n width: 66px; }\n\n.editor-post-excerpt__textarea {\n width: 100%;\n margin-bottom: 10px; }\n\n.editor-post-featured-image {\n padding: 0; }\n .editor-post-featured-image__container {\n margin-bottom: 1em;\n position: relative; }\n .editor-post-featured-image .components-spinner {\n position: absolute;\n top: 50%;\n left: 50%;\n margin-top: -9px;\n margin-left: -9px; }\n .editor-post-featured-image .components-button + .components-button {\n display: block;\n margin-top: 1em; }\n .editor-post-featured-image .components-responsive-wrapper__content {\n max-width: 100%;\n width: auto; }\n\n.editor-post-featured-image__toggle,\n.editor-post-featured-image__preview {\n display: block;\n width: 100%;\n padding: 0;\n transition: all 0.1s ease-out;\n box-shadow: 0 0 0 0 #00a0d2; }\n @media (prefers-reduced-motion: reduce) {\n .editor-post-featured-image__toggle,\n .editor-post-featured-image__preview {\n transition-duration: 0s; } }\n\n.editor-post-featured-image__preview {\n height: auto; }\n\n.editor-post-featured-image__preview:not(:disabled):not([aria-disabled=\"true\"]):focus {\n box-shadow: 0 0 0 4px #00a0d2; }\n\n.editor-post-featured-image__toggle {\n border: 1px dashed #a2aab2;\n background-color: #edeff0;\n min-height: 90px;\n line-height: 20px;\n padding: 8px 0;\n text-align: center; }\n .editor-post-featured-image__toggle:hover {\n background-color: #f8f9f9; }\n\n.editor-post-format {\n flex-direction: column;\n align-items: stretch;\n width: 100%; }\n\n.editor-post-format__content {\n display: inline-flex;\n justify-content: space-between;\n align-items: center;\n width: 100%; }\n\n.editor-post-format__suggestion {\n text-align: right;\n font-size: 13px; }\n\n.editor-post-last-revision__title {\n width: 100%;\n font-weight: 600; }\n .editor-post-last-revision__title .dashicon {\n margin-right: 5px; }\n\n.components-button.editor-post-last-revision__title {\n height: auto; }\n .components-button.editor-post-last-revision__title:hover, .components-button.editor-post-last-revision__title:active {\n background: #f3f4f5; }\n .components-button.editor-post-last-revision__title:focus {\n box-shadow: inset 0 0 0 1.5px #007cba;\n border-radius: 0; }\n body.admin-color-sunrise .components-button.editor-post-last-revision__title:focus{\n box-shadow: inset 0 0 0 1.5px #d1864a; }\n body.admin-color-ocean .components-button.editor-post-last-revision__title:focus{\n box-shadow: inset 0 0 0 1.5px #a3b9a2; }\n body.admin-color-midnight .components-button.editor-post-last-revision__title:focus{\n box-shadow: inset 0 0 0 1.5px #e14d43; }\n body.admin-color-ectoplasm .components-button.editor-post-last-revision__title:focus{\n box-shadow: inset 0 0 0 1.5px #a7b656; }\n body.admin-color-coffee .components-button.editor-post-last-revision__title:focus{\n box-shadow: inset 0 0 0 1.5px #c2a68c; }\n body.admin-color-blue .components-button.editor-post-last-revision__title:focus{\n box-shadow: inset 0 0 0 1.5px #d9ab59; }\n body.admin-color-light .components-button.editor-post-last-revision__title:focus{\n box-shadow: inset 0 0 0 1.5px #0085ba; }\n\n.editor-post-locked-modal {\n height: auto;\n padding-right: 10px;\n padding-left: 10px;\n padding-top: 10px;\n max-width: 480px; }\n .editor-post-locked-modal .components-modal__header {\n height: 36px; }\n .editor-post-locked-modal .components-modal__content {\n height: auto; }\n\n.editor-post-locked-modal__buttons {\n margin-top: 10px; }\n .editor-post-locked-modal__buttons .components-button {\n margin-right: 5px; }\n\n.editor-post-locked-modal__avatar {\n float: left;\n margin: 5px;\n margin-right: 15px; }\n\n.editor-post-publish-button__button.has-changes-dot::before {\n background: currentcolor;\n border-radius: 4px;\n content: \"\";\n height: 8px;\n margin: auto 5px auto -3px;\n width: 8px; }\n\n.editor-post-publish-panel {\n background: #fff; }\n\n.editor-post-publish-panel__content {\n min-height: calc(100% - 144px); }\n .editor-post-publish-panel__content .components-spinner {\n display: block;\n margin: 100px auto 0; }\n\n.editor-post-publish-panel__header {\n background: #fff;\n padding-left: 8px;\n padding-right: 8px;\n height: 61px;\n border-bottom: 1px solid #e2e4e7;\n display: flex;\n align-items: center;\n align-content: space-between; }\n .editor-post-publish-panel__header .components-button.has-icon {\n position: absolute;\n right: 8px; }\n\n.editor-post-publish-panel__header-publish-button {\n display: flex;\n justify-content: flex-end;\n flex-grow: 1;\n text-align: right;\n flex-wrap: nowrap; }\n\n.editor-post-publish-panel__header-published {\n flex-grow: 1; }\n\n.editor-post-publish-panel__footer {\n padding: 16px; }\n\n.components-button.editor-post-publish-panel__toggle.is-primary {\n display: inline-flex;\n align-items: center; }\n .components-button.editor-post-publish-panel__toggle.is-primary.is-busy .dashicon {\n display: none; }\n .components-button.editor-post-publish-panel__toggle.is-primary .dashicon {\n margin-right: -4px; }\n\n.editor-post-publish-panel__link {\n font-weight: 400;\n padding-left: 4px; }\n\n.editor-post-publish-panel__prepublish {\n padding: 16px; }\n .editor-post-publish-panel__prepublish strong {\n color: #191e23; }\n .editor-post-publish-panel__prepublish .components-panel__body {\n background: #fff;\n margin-left: -16px;\n margin-right: -16px; }\n .editor-post-publish-panel__prepublish .editor-post-visibility__dialog-legend {\n display: none; }\n\n.post-publish-panel__postpublish .components-panel__body {\n border-bottom: 1px solid #e2e4e7;\n border-top: none; }\n\n.post-publish-panel__postpublish-buttons {\n display: flex;\n align-content: space-between;\n flex-wrap: wrap;\n margin: -5px; }\n .post-publish-panel__postpublish-buttons > * {\n flex-grow: 1;\n margin: 5px; }\n .post-publish-panel__postpublish-buttons .components-button {\n height: auto;\n justify-content: center;\n padding: 3px 10px 4px;\n line-height: 1.6;\n text-align: center;\n white-space: normal; }\n .post-publish-panel__postpublish-buttons .components-clipboard-button {\n width: 100%; }\n\n.post-publish-panel__postpublish-post-address {\n margin-bottom: 16px; }\n .post-publish-panel__postpublish-post-address input[readonly] {\n padding: 10px;\n background: #e8eaeb;\n overflow: hidden;\n text-overflow: ellipsis; }\n\n.post-publish-panel__postpublish-header {\n font-weight: 500; }\n\n.post-publish-panel__postpublish-subheader {\n margin: 0 0 8px; }\n\n.post-publish-panel__tip {\n color: #f0b849; }\n\n.editor-post-saved-state {\n display: flex;\n align-items: center;\n width: 28px;\n padding: 12px 4px;\n color: #757575;\n overflow: hidden;\n white-space: nowrap; }\n .editor-post-saved-state svg {\n display: inline-block;\n flex: 0 0 auto;\n fill: currentColor;\n margin-right: 8px; }\n @media (min-width: 600px) {\n .editor-post-saved-state {\n width: auto;\n padding: 8px 12px;\n text-indent: inherit; }\n .editor-post-saved-state svg {\n margin-right: 4px; } }\n\n.editor-post-taxonomies__hierarchical-terms-list {\n max-height: 14em;\n overflow: auto;\n padding-left: 2px; }\n\n.editor-post-taxonomies__hierarchical-terms-choice {\n margin-bottom: 8px; }\n\n.editor-post-taxonomies__hierarchical-terms-subchoices {\n margin-top: 8px;\n margin-left: 16px; }\n\n.components-button.editor-post-taxonomies__hierarchical-terms-submit,\n.components-button.editor-post-taxonomies__hierarchical-terms-add {\n margin-top: 12px; }\n\n.editor-post-taxonomies__hierarchical-terms-label {\n display: inline-block;\n margin-top: 12px; }\n\n.editor-post-taxonomies__hierarchical-terms-input {\n margin-top: 8px;\n width: 100%; }\n\n.editor-post-taxonomies__hierarchical-terms-filter {\n margin-bottom: 8px;\n width: 100%; }\n\n.edit-post-text-editor__body textarea.editor-post-text-editor {\n border: 1px solid #ccc;\n display: block;\n margin: 0;\n width: 100%;\n box-shadow: none;\n resize: none;\n overflow: hidden;\n font-family: Menlo, Consolas, monaco, monospace;\n line-height: 150%;\n border-radius: 0;\n padding: 16px;\n min-height: 200px;\n /* Fonts smaller than 16px causes mobile safari to zoom. */\n font-size: 16px !important; }\n @media (min-width: 600px) {\n .edit-post-text-editor__body textarea.editor-post-text-editor {\n font-size: 14px !important; } }\n .edit-post-text-editor__body textarea.editor-post-text-editor:focus {\n border: 1px solid #1e1e1e;\n box-shadow: none;\n position: relative; }\n\n.edit-post-post-visibility__dialog,\n.editor-post-visibility__dialog-fieldset {\n padding: 4px;\n padding-top: 0; }\n .edit-post-post-visibility__dialog .editor-post-visibility__dialog-legend,\n .editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-legend {\n font-weight: 600;\n margin-bottom: 1em;\n margin-top: 0.5em;\n padding: 0; }\n .edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio,\n .editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio {\n margin-top: 2px; }\n .edit-post-post-visibility__dialog .editor-post-visibility__dialog-label,\n .editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-label {\n font-weight: 600; }\n .edit-post-post-visibility__dialog .editor-post-visibility__dialog-info,\n .editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-info {\n margin-top: 0;\n margin-left: 28px; }\n .edit-post-post-visibility__dialog .editor-post-visibility__choice:last-child .editor-post-visibility__dialog-info,\n .editor-post-visibility__dialog-fieldset .editor-post-visibility__choice:last-child .editor-post-visibility__dialog-info {\n margin-bottom: 0; }\n .edit-post-post-visibility__dialog .editor-post-visibility__dialog-password-input,\n .editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-password-input {\n margin-left: 28px; }\n\n.editor-post-title {\n position: relative; }\n .editor-post-title .editor-post-title__input {\n display: block;\n width: 100%;\n margin: 0;\n box-shadow: none;\n background: transparent;\n transition: border 0.1s ease-out, box-shadow 0.1s linear;\n padding: 19px 0;\n word-break: keep-all;\n font-family: inherit;\n line-height: inherit;\n color: inherit;\n border: 1px solid transparent;\n border-left-width: 0;\n border-right-width: 0;\n border-radius: 0;\n outline: 1px solid transparent;\n font-size: 2.44em;\n font-weight: bold; }\n @media (prefers-reduced-motion: reduce) {\n .editor-post-title .editor-post-title__input {\n transition-duration: 0s; } }\n @media (min-width: 600px) {\n .editor-post-title .editor-post-title__input {\n border-width: 1px; } }\n .editor-post-title .editor-post-title__input::-webkit-input-placeholder {\n color: rgba(22, 36, 53, 0.55); }\n .editor-post-title .editor-post-title__input::-moz-placeholder {\n color: rgba(22, 36, 53, 0.55); }\n .editor-post-title .editor-post-title__input:-ms-input-placeholder {\n color: rgba(22, 36, 53, 0.55); }\n .editor-post-title .editor-post-title__input:focus {\n border: 1px solid transparent;\n outline: 1px solid transparent;\n box-shadow: none; }\n .editor-post-title.is-focus-mode .editor-post-title__input {\n opacity: 0.5;\n transition: opacity 0.1s linear; }\n @media (prefers-reduced-motion: reduce) {\n .editor-post-title.is-focus-mode .editor-post-title__input {\n transition-duration: 0s; } }\n .editor-post-title.is-focus-mode .editor-post-title__input:focus {\n opacity: 1; }\n\n.editor-post-trash.components-button {\n color: #b52727;\n border-color: #b52727;\n justify-content: center; }\n .editor-post-trash.components-button:not(:disabled):not([aria-disabled=\"true\"]):hover, .editor-post-trash.components-button:not([aria-disabled=\"true\"]):focus {\n color: #a02222;\n border-color: #a02222; }\n\n.table-of-contents__popover.components-popover .components-popover__content {\n min-width: 380px; }\n\n.components-popover.table-of-contents__popover {\n z-index: 99998; }\n\n.table-of-contents__popover .components-popover__content {\n padding: 16px; }\n @media (min-width: 600px) {\n .table-of-contents__popover .components-popover__content {\n max-height: calc(100vh - 120px);\n overflow-y: auto; } }\n\n.table-of-contents__popover hr {\n margin: 10px -16px 0; }\n\n.table-of-contents__wrapper:focus::before {\n content: \"\";\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n box-shadow: inset 0 0 0 1.5px #007cba; }\n\nbody.admin-color-sunrise .table-of-contents__wrapper:focus::before{\n box-shadow: inset 0 0 0 1.5px #d1864a; }\n\nbody.admin-color-ocean .table-of-contents__wrapper:focus::before{\n box-shadow: inset 0 0 0 1.5px #a3b9a2; }\n\nbody.admin-color-midnight .table-of-contents__wrapper:focus::before{\n box-shadow: inset 0 0 0 1.5px #e14d43; }\n\nbody.admin-color-ectoplasm .table-of-contents__wrapper:focus::before{\n box-shadow: inset 0 0 0 1.5px #a7b656; }\n\nbody.admin-color-coffee .table-of-contents__wrapper:focus::before{\n box-shadow: inset 0 0 0 1.5px #c2a68c; }\n\nbody.admin-color-blue .table-of-contents__wrapper:focus::before{\n box-shadow: inset 0 0 0 1.5px #d9ab59; }\n\nbody.admin-color-light .table-of-contents__wrapper:focus::before{\n box-shadow: inset 0 0 0 1.5px #0085ba; }\n\n.table-of-contents__counts {\n display: flex;\n flex-wrap: wrap;\n margin: 0; }\n\n.table-of-contents__count {\n flex-basis: 25%;\n display: flex;\n flex-direction: column;\n font-size: 13px;\n color: #6c7781;\n padding-right: 8px;\n margin-bottom: 0; }\n .table-of-contents__count:last-child {\n padding-right: 0; }\n\n.table-of-contents__number,\n.table-of-contents__popover .word-count {\n font-size: 21px;\n font-weight: 400;\n line-height: 30px;\n color: #555d66; }\n\n.table-of-contents__title {\n display: block;\n margin-top: 20px;\n font-size: 15px;\n font-weight: 600; }\n\n.editor-template-validation-notice {\n display: flex;\n justify-content: space-between;\n align-items: center; }\n .editor-template-validation-notice .components-button {\n margin-left: 5px; }\n","/**\n * Colors\n */\n/**\n * Breakpoints & Media Queries\n */\n/**\n * Colors\n */\n/**\n * Fonts & basic variables.\n */\n/**\n * Grid System.\n * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/\n */\n/**\n * Dimensions.\n */\n/**\n * Shadows.\n */\n/**\n * Editor widths.\n */\n/**\n * Block UI.\n */\n/**\n * Border radii.\n */\n/**\n * Breakpoint mixins\n */\n/**\n * Long content fade mixin\n *\n * Creates a fading overlay to signify that the content is longer\n * than the space allows.\n */\n/**\n * Focus styles.\n */\n/**\n * Applies editor left position to the selector passed as argument\n */\n/**\n * Styles that are reused verbatim in a few places\n */\n/**\n * Allows users to opt-out of animations via OS-level preferences.\n */\n/**\n * Reset default styles for JavaScript UI based pages.\n * This is a WP-admin agnostic reset\n */\n/**\n * Reset the WP Admin page styles for Gutenberg-like pages.\n */\n#start-resizable-editor-section {\n display: none; }\n\n.wp-block-audio figcaption {\n margin-top: 0.5em;\n margin-bottom: 1em; }\n\n.wp-block-audio audio {\n width: 100%;\n min-width: 300px; }\n\n.wp-block-button__link {\n color: #fff;\n background-color: #32373c;\n border: none;\n border-radius: 28px;\n box-shadow: none;\n cursor: pointer;\n display: inline-block;\n font-size: 18px;\n padding: 12px 24px;\n text-align: center;\n text-decoration: none;\n overflow-wrap: break-word; }\n .wp-block-button__link:hover, .wp-block-button__link:focus, .wp-block-button__link:active, .wp-block-button__link:visited {\n color: #fff; }\n .wp-block-button__link.aligncenter {\n text-align: center; }\n .wp-block-button__link.alignright {\n /*rtl:ignore*/\n text-align: right; }\n\n.wp-block-button.is-style-squared,\n.wp-block-button__link.wp-block-button.is-style-squared {\n border-radius: 0; }\n\n.wp-block-button.no-border-radius,\n.wp-block-button__link.wp-block-button.no-border-radius {\n border-radius: 0 !important; }\n\n.wp-block-button.is-style-outline .wp-block-button__link,\n.wp-block-button__link.is-style-outline {\n color: #32373c;\n background-color: transparent;\n border: 2px solid; }\n\n.wp-block-buttons .wp-block-button.wp-block-button {\n display: inline-block;\n margin-right: 8px;\n margin-bottom: 8px; }\n\n.wp-block-buttons.alignright .wp-block-button {\n margin-right: none;\n margin-left: 8px; }\n\n.wp-block-buttons.aligncenter {\n text-align: center; }\n\n.wp-block-calendar {\n text-align: center; }\n .wp-block-calendar th,\n .wp-block-calendar tbody td {\n padding: 4px;\n border: 1px solid #e2e4e7; }\n .wp-block-calendar tfoot td {\n border: none; }\n .wp-block-calendar table {\n width: 100%;\n border-collapse: collapse;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif; }\n .wp-block-calendar table th {\n font-weight: 400;\n background: #edeff0; }\n .wp-block-calendar a {\n text-decoration: underline; }\n .wp-block-calendar tfoot a {\n color: #00739c; }\n .wp-block-calendar table tbody,\n .wp-block-calendar table caption {\n color: #40464d; }\n\n.wp-block-categories.alignleft {\n /*rtl:ignore*/\n margin-right: 2em; }\n\n.wp-block-categories.alignright {\n /*rtl:ignore*/\n margin-left: 2em; }\n\n.wp-block-columns {\n display: flex;\n margin-bottom: 28px;\n flex-wrap: wrap; }\n @media (min-width: 782px) {\n .wp-block-columns {\n flex-wrap: nowrap; } }\n .wp-block-columns.has-background {\n padding: 20px 38px; }\n\n.wp-block-column {\n flex-grow: 1;\n min-width: 0;\n word-break: break-word;\n overflow-wrap: break-word; }\n @media (max-width: 599px) {\n .wp-block-column {\n flex-basis: 100% !important; } }\n @media (min-width: 600px) and (max-width: 781px) {\n .wp-block-column {\n flex-basis: calc(50% - 16px) !important;\n flex-grow: 0; }\n .wp-block-column:nth-child(even) {\n margin-left: 32px; } }\n @media (min-width: 782px) {\n .wp-block-column {\n flex-basis: 0;\n flex-grow: 1; }\n .wp-block-column[style*=\"flex-basis\"] {\n flex-grow: 0; }\n .wp-block-column:not(:first-child) {\n margin-left: 32px; } }\n\n/**\n * All Columns Alignment\n */\n.wp-block-columns.are-vertically-aligned-top {\n align-items: flex-start; }\n\n.wp-block-columns.are-vertically-aligned-center {\n align-items: center; }\n\n.wp-block-columns.are-vertically-aligned-bottom {\n align-items: flex-end; }\n\n/**\n * Individual Column Alignment\n */\n.wp-block-column.is-vertically-aligned-top {\n align-self: flex-start; }\n\n.wp-block-column.is-vertically-aligned-center {\n -ms-grid-row-align: center;\n align-self: center; }\n\n.wp-block-column.is-vertically-aligned-bottom {\n align-self: flex-end; }\n\n.wp-block-column.is-vertically-aligned-top, .wp-block-column.is-vertically-aligned-center, .wp-block-column.is-vertically-aligned-bottom {\n width: 100%; }\n\n.wp-block-cover-image,\n.wp-block-cover {\n position: relative;\n background-size: cover;\n background-position: center center;\n min-height: 430px;\n height: 100%;\n width: 100%;\n display: flex;\n justify-content: center;\n align-items: center;\n overflow: hidden; }\n .wp-block-cover-image.has-parallax,\n .wp-block-cover.has-parallax {\n background-attachment: fixed; }\n @supports (-webkit-overflow-scrolling: touch) {\n .wp-block-cover-image.has-parallax,\n .wp-block-cover.has-parallax {\n background-attachment: scroll; } }\n @media (prefers-reduced-motion: reduce) {\n .wp-block-cover-image.has-parallax,\n .wp-block-cover.has-parallax {\n background-attachment: scroll; } }\n .wp-block-cover-image.has-background-dim,\n .wp-block-cover.has-background-dim {\n background-color: #000; }\n .wp-block-cover-image.has-background-dim::before,\n .wp-block-cover.has-background-dim::before {\n content: \"\";\n background-color: inherit; }\n .wp-block-cover-image.has-background-dim:not(.has-background-gradient)::before,\n .wp-block-cover-image .wp-block-cover__gradient-background,\n .wp-block-cover.has-background-dim:not(.has-background-gradient)::before,\n .wp-block-cover .wp-block-cover__gradient-background {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n right: 0;\n z-index: 1; }\n .wp-block-cover-image.has-background-dim:not(.has-background-gradient)::before,\n .wp-block-cover-image .wp-block-cover__gradient-background,\n .wp-block-cover.has-background-dim:not(.has-background-gradient)::before,\n .wp-block-cover .wp-block-cover__gradient-background {\n opacity: 0.5; }\n .wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient)::before,\n .wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient)::before {\n opacity: 0.1; }\n .wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,\n .wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background {\n opacity: 0.1; }\n .wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient)::before,\n .wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient)::before {\n opacity: 0.2; }\n .wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,\n .wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background {\n opacity: 0.2; }\n .wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient)::before,\n .wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient)::before {\n opacity: 0.3; }\n .wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,\n .wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background {\n opacity: 0.3; }\n .wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient)::before,\n .wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient)::before {\n opacity: 0.4; }\n .wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,\n .wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background {\n opacity: 0.4; }\n .wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient)::before,\n .wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient)::before {\n opacity: 0.5; }\n .wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,\n .wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background {\n opacity: 0.5; }\n .wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient)::before,\n .wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient)::before {\n opacity: 0.6; }\n .wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,\n .wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background {\n opacity: 0.6; }\n .wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient)::before,\n .wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient)::before {\n opacity: 0.7; }\n .wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,\n .wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background {\n opacity: 0.7; }\n .wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient)::before,\n .wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient)::before {\n opacity: 0.8; }\n .wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,\n .wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background {\n opacity: 0.8; }\n .wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient)::before,\n .wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient)::before {\n opacity: 0.9; }\n .wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,\n .wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background {\n opacity: 0.9; }\n .wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient)::before,\n .wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient)::before {\n opacity: 1; }\n .wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,\n .wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background {\n opacity: 1; }\n .wp-block-cover-image.alignleft, .wp-block-cover-image.alignright,\n .wp-block-cover.alignleft,\n .wp-block-cover.alignright {\n max-width: 290px;\n width: 100%; }\n .wp-block-cover-image::after,\n .wp-block-cover::after {\n display: block;\n content: \"\";\n font-size: 0;\n min-height: inherit; }\n @supports ((position: -webkit-sticky) or (position: sticky)) {\n .wp-block-cover-image::after,\n .wp-block-cover::after {\n content: none; } }\n .wp-block-cover-image.aligncenter, .wp-block-cover-image.alignleft, .wp-block-cover-image.alignright,\n .wp-block-cover.aligncenter,\n .wp-block-cover.alignleft,\n .wp-block-cover.alignright {\n display: flex; }\n .wp-block-cover-image .wp-block-cover__inner-container,\n .wp-block-cover .wp-block-cover__inner-container {\n width: calc(100% - 70px);\n z-index: 1;\n color: #f8f9f9; }\n .wp-block-cover-image p:not(.has-text-color),\n .wp-block-cover-image h1:not(.has-text-color),\n .wp-block-cover-image h2:not(.has-text-color),\n .wp-block-cover-image h3:not(.has-text-color),\n .wp-block-cover-image h4:not(.has-text-color),\n .wp-block-cover-image h5:not(.has-text-color),\n .wp-block-cover-image h6:not(.has-text-color),\n .wp-block-cover-image .wp-block-subhead:not(.has-text-color),\n .wp-block-cover p:not(.has-text-color),\n .wp-block-cover h1:not(.has-text-color),\n .wp-block-cover h2:not(.has-text-color),\n .wp-block-cover h3:not(.has-text-color),\n .wp-block-cover h4:not(.has-text-color),\n .wp-block-cover h5:not(.has-text-color),\n .wp-block-cover h6:not(.has-text-color),\n .wp-block-cover .wp-block-subhead:not(.has-text-color) {\n color: inherit; }\n\n.wp-block-cover__video-background {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translateX(-50%) translateY(-50%);\n width: 100%;\n height: 100%;\n z-index: 0;\n object-fit: cover; }\n\nsection.wp-block-cover-image h2,\n.wp-block-cover-image-text,\n.wp-block-cover-text {\n color: #fff; }\n section.wp-block-cover-image h2 a,\n section.wp-block-cover-image h2 a:hover,\n section.wp-block-cover-image h2 a:focus,\n section.wp-block-cover-image h2 a:active,\n .wp-block-cover-image-text a,\n .wp-block-cover-image-text a:hover,\n .wp-block-cover-image-text a:focus,\n .wp-block-cover-image-text a:active,\n .wp-block-cover-text a,\n .wp-block-cover-text a:hover,\n .wp-block-cover-text a:focus,\n .wp-block-cover-text a:active {\n color: #fff; }\n\n.wp-block-cover-image\n.wp-block-cover.has-left-content {\n justify-content: flex-start; }\n\n.wp-block-cover-image\n.wp-block-cover.has-right-content {\n justify-content: flex-end; }\n\nsection.wp-block-cover-image.has-left-content > h2,\n.wp-block-cover-image.has-left-content .wp-block-cover-image-text,\n.wp-block-cover.has-left-content .wp-block-cover-text {\n margin-left: 0;\n text-align: left; }\n\nsection.wp-block-cover-image.has-right-content > h2,\n.wp-block-cover-image.has-right-content .wp-block-cover-image-text,\n.wp-block-cover.has-right-content .wp-block-cover-text {\n margin-right: 0;\n text-align: right; }\n\nsection.wp-block-cover-image > h2,\n.wp-block-cover-image .wp-block-cover-image-text,\n.wp-block-cover .wp-block-cover-text {\n font-size: 2em;\n line-height: 1.25;\n z-index: 1;\n margin-bottom: 0;\n max-width: 580px;\n padding: 14px;\n text-align: center; }\n\n.wp-block[data-align=\"left\"] > .wp-block-embed,\n.wp-block[data-align=\"right\"] > .wp-block-embed,\n.wp-block-embed.alignleft,\n.wp-block-embed.alignright {\n max-width: 360px;\n width: 100%; }\n\n.wp-block-embed {\n margin-bottom: 1em; }\n .wp-block-embed figcaption {\n margin-top: 0.5em;\n margin-bottom: 1em; }\n\n.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper,\n.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper,\n.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper,\n.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper,\n.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper,\n.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper,\n.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper {\n position: relative; }\n .wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper::before,\n .wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper::before,\n .wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper::before,\n .wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper::before,\n .wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper::before,\n .wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper::before,\n .wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper::before {\n content: \"\";\n display: block;\n padding-top: 50%; }\n .wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper iframe,\n .wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper iframe,\n .wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe,\n .wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper iframe,\n .wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper iframe,\n .wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper iframe,\n .wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper iframe {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n width: 100%;\n height: 100%; }\n\n.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper::before {\n padding-top: 42.85%; }\n\n.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper::before {\n padding-top: 50%; }\n\n.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper::before {\n padding-top: 56.25%; }\n\n.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper::before {\n padding-top: 75%; }\n\n.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper::before {\n padding-top: 100%; }\n\n.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper::before {\n padding-top: 177.78%; }\n\n.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper::before {\n padding-top: 200%; }\n\n.wp-block-file {\n margin-bottom: 1.5em; }\n .wp-block-file.aligncenter {\n text-align: center; }\n .wp-block-file.alignright {\n /*rtl:ignore*/\n text-align: right; }\n .wp-block-file .wp-block-file__button {\n background: #32373c;\n border-radius: 2em;\n color: #fff;\n font-size: 13px;\n padding: 0.5em 1em; }\n .wp-block-file a.wp-block-file__button {\n text-decoration: none; }\n .wp-block-file a.wp-block-file__button:hover, .wp-block-file a.wp-block-file__button:visited, .wp-block-file a.wp-block-file__button:focus, .wp-block-file a.wp-block-file__button:active {\n box-shadow: none;\n color: #fff;\n opacity: 0.85;\n text-decoration: none; }\n .wp-block-file * + .wp-block-file__button {\n margin-left: 0.75em; }\n\n.wp-block-gallery,\n.blocks-gallery-grid {\n display: flex;\n flex-wrap: wrap;\n list-style-type: none;\n padding: 0;\n margin: 0; }\n .wp-block-gallery .blocks-gallery-image,\n .wp-block-gallery .blocks-gallery-item,\n .blocks-gallery-grid .blocks-gallery-image,\n .blocks-gallery-grid .blocks-gallery-item {\n margin: 0 16px 16px 0;\n display: flex;\n flex-grow: 1;\n flex-direction: column;\n justify-content: center;\n position: relative; }\n .wp-block-gallery .blocks-gallery-image figure,\n .wp-block-gallery .blocks-gallery-item figure,\n .blocks-gallery-grid .blocks-gallery-image figure,\n .blocks-gallery-grid .blocks-gallery-item figure {\n margin: 0;\n height: 100%; }\n @supports ((position: -webkit-sticky) or (position: sticky)) {\n .wp-block-gallery .blocks-gallery-image figure,\n .wp-block-gallery .blocks-gallery-item figure,\n .blocks-gallery-grid .blocks-gallery-image figure,\n .blocks-gallery-grid .blocks-gallery-item figure {\n display: flex;\n align-items: flex-end;\n justify-content: flex-start; } }\n .wp-block-gallery .blocks-gallery-image img,\n .wp-block-gallery .blocks-gallery-item img,\n .blocks-gallery-grid .blocks-gallery-image img,\n .blocks-gallery-grid .blocks-gallery-item img {\n display: block;\n max-width: 100%;\n height: auto; }\n .wp-block-gallery .blocks-gallery-image img,\n .wp-block-gallery .blocks-gallery-item img,\n .blocks-gallery-grid .blocks-gallery-image img,\n .blocks-gallery-grid .blocks-gallery-item img {\n width: 100%; }\n @supports ((position: -webkit-sticky) or (position: sticky)) {\n .wp-block-gallery .blocks-gallery-image img,\n .wp-block-gallery .blocks-gallery-item img,\n .blocks-gallery-grid .blocks-gallery-image img,\n .blocks-gallery-grid .blocks-gallery-item img {\n width: auto; } }\n .wp-block-gallery .blocks-gallery-image figcaption,\n .wp-block-gallery .blocks-gallery-item figcaption,\n .blocks-gallery-grid .blocks-gallery-image figcaption,\n .blocks-gallery-grid .blocks-gallery-item figcaption {\n position: absolute;\n bottom: 0;\n width: 100%;\n max-height: 100%;\n overflow: auto;\n padding: 40px 10px 9px;\n color: #fff;\n text-align: center;\n font-size: 13px;\n background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.3) 70%, transparent); }\n .wp-block-gallery .blocks-gallery-image figcaption img,\n .wp-block-gallery .blocks-gallery-item figcaption img,\n .blocks-gallery-grid .blocks-gallery-image figcaption img,\n .blocks-gallery-grid .blocks-gallery-item figcaption img {\n display: inline; }\n .wp-block-gallery.is-cropped .blocks-gallery-image a,\n .wp-block-gallery.is-cropped .blocks-gallery-image img,\n .wp-block-gallery.is-cropped .blocks-gallery-item a,\n .wp-block-gallery.is-cropped .blocks-gallery-item img,\n .blocks-gallery-grid.is-cropped .blocks-gallery-image a,\n .blocks-gallery-grid.is-cropped .blocks-gallery-image img,\n .blocks-gallery-grid.is-cropped .blocks-gallery-item a,\n .blocks-gallery-grid.is-cropped .blocks-gallery-item img {\n width: 100%; }\n @supports ((position: -webkit-sticky) or (position: sticky)) {\n .wp-block-gallery.is-cropped .blocks-gallery-image a,\n .wp-block-gallery.is-cropped .blocks-gallery-image img,\n .wp-block-gallery.is-cropped .blocks-gallery-item a,\n .wp-block-gallery.is-cropped .blocks-gallery-item img,\n .blocks-gallery-grid.is-cropped .blocks-gallery-image a,\n .blocks-gallery-grid.is-cropped .blocks-gallery-image img,\n .blocks-gallery-grid.is-cropped .blocks-gallery-item a,\n .blocks-gallery-grid.is-cropped .blocks-gallery-item img {\n height: 100%;\n flex: 1;\n object-fit: cover; } }\n .wp-block-gallery .blocks-gallery-image,\n .wp-block-gallery .blocks-gallery-item,\n .blocks-gallery-grid .blocks-gallery-image,\n .blocks-gallery-grid .blocks-gallery-item {\n width: calc(50% - 16px); }\n .wp-block-gallery .blocks-gallery-image:nth-of-type(even),\n .wp-block-gallery .blocks-gallery-item:nth-of-type(even),\n .blocks-gallery-grid .blocks-gallery-image:nth-of-type(even),\n .blocks-gallery-grid .blocks-gallery-item:nth-of-type(even) {\n margin-right: 0; }\n .wp-block-gallery.columns-1 .blocks-gallery-image,\n .wp-block-gallery.columns-1 .blocks-gallery-item,\n .blocks-gallery-grid.columns-1 .blocks-gallery-image,\n .blocks-gallery-grid.columns-1 .blocks-gallery-item {\n width: 100%;\n margin-right: 0; }\n @media (min-width: 600px) {\n .wp-block-gallery.columns-3 .blocks-gallery-image,\n .wp-block-gallery.columns-3 .blocks-gallery-item,\n .blocks-gallery-grid.columns-3 .blocks-gallery-image,\n .blocks-gallery-grid.columns-3 .blocks-gallery-item {\n width: calc(33.33333% - 10.66667px);\n margin-right: 16px; }\n .wp-block-gallery.columns-4 .blocks-gallery-image,\n .wp-block-gallery.columns-4 .blocks-gallery-item,\n .blocks-gallery-grid.columns-4 .blocks-gallery-image,\n .blocks-gallery-grid.columns-4 .blocks-gallery-item {\n width: calc(25% - 12px);\n margin-right: 16px; }\n .wp-block-gallery.columns-5 .blocks-gallery-image,\n .wp-block-gallery.columns-5 .blocks-gallery-item,\n .blocks-gallery-grid.columns-5 .blocks-gallery-image,\n .blocks-gallery-grid.columns-5 .blocks-gallery-item {\n width: calc(20% - 12.8px);\n margin-right: 16px; }\n .wp-block-gallery.columns-6 .blocks-gallery-image,\n .wp-block-gallery.columns-6 .blocks-gallery-item,\n .blocks-gallery-grid.columns-6 .blocks-gallery-image,\n .blocks-gallery-grid.columns-6 .blocks-gallery-item {\n width: calc(16.66667% - 13.33333px);\n margin-right: 16px; }\n .wp-block-gallery.columns-7 .blocks-gallery-image,\n .wp-block-gallery.columns-7 .blocks-gallery-item,\n .blocks-gallery-grid.columns-7 .blocks-gallery-image,\n .blocks-gallery-grid.columns-7 .blocks-gallery-item {\n width: calc(14.28571% - 13.71429px);\n margin-right: 16px; }\n .wp-block-gallery.columns-8 .blocks-gallery-image,\n .wp-block-gallery.columns-8 .blocks-gallery-item,\n .blocks-gallery-grid.columns-8 .blocks-gallery-image,\n .blocks-gallery-grid.columns-8 .blocks-gallery-item {\n width: calc(12.5% - 14px);\n margin-right: 16px; }\n .wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n),\n .wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n),\n .blocks-gallery-grid.columns-1 .blocks-gallery-image:nth-of-type(1n),\n .blocks-gallery-grid.columns-1 .blocks-gallery-item:nth-of-type(1n) {\n margin-right: 0; }\n .wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n),\n .wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n),\n .blocks-gallery-grid.columns-2 .blocks-gallery-image:nth-of-type(2n),\n .blocks-gallery-grid.columns-2 .blocks-gallery-item:nth-of-type(2n) {\n margin-right: 0; }\n .wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n),\n .wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n),\n .blocks-gallery-grid.columns-3 .blocks-gallery-image:nth-of-type(3n),\n .blocks-gallery-grid.columns-3 .blocks-gallery-item:nth-of-type(3n) {\n margin-right: 0; }\n .wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n),\n .wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n),\n .blocks-gallery-grid.columns-4 .blocks-gallery-image:nth-of-type(4n),\n .blocks-gallery-grid.columns-4 .blocks-gallery-item:nth-of-type(4n) {\n margin-right: 0; }\n .wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n),\n .wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n),\n .blocks-gallery-grid.columns-5 .blocks-gallery-image:nth-of-type(5n),\n .blocks-gallery-grid.columns-5 .blocks-gallery-item:nth-of-type(5n) {\n margin-right: 0; }\n .wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n),\n .wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n),\n .blocks-gallery-grid.columns-6 .blocks-gallery-image:nth-of-type(6n),\n .blocks-gallery-grid.columns-6 .blocks-gallery-item:nth-of-type(6n) {\n margin-right: 0; }\n .wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n),\n .wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n),\n .blocks-gallery-grid.columns-7 .blocks-gallery-image:nth-of-type(7n),\n .blocks-gallery-grid.columns-7 .blocks-gallery-item:nth-of-type(7n) {\n margin-right: 0; }\n .wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n),\n .wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n),\n .blocks-gallery-grid.columns-8 .blocks-gallery-image:nth-of-type(8n),\n .blocks-gallery-grid.columns-8 .blocks-gallery-item:nth-of-type(8n) {\n margin-right: 0; } }\n .wp-block-gallery .blocks-gallery-image:last-child,\n .wp-block-gallery .blocks-gallery-item:last-child,\n .blocks-gallery-grid .blocks-gallery-image:last-child,\n .blocks-gallery-grid .blocks-gallery-item:last-child {\n margin-right: 0; }\n .wp-block-gallery.alignleft, .wp-block-gallery.alignright,\n .blocks-gallery-grid.alignleft,\n .blocks-gallery-grid.alignright {\n max-width: 290px;\n width: 100%; }\n .wp-block-gallery.aligncenter .blocks-gallery-item figure,\n .blocks-gallery-grid.aligncenter .blocks-gallery-item figure {\n justify-content: center; }\n\nh1.has-background,\nh2.has-background,\nh3.has-background,\nh4.has-background,\nh5.has-background,\nh6.has-background {\n padding: 20px 38px; }\n\n.wp-block-image {\n margin-bottom: 1em; }\n .wp-block-image img {\n max-width: 100%; }\n .wp-block-image.aligncenter {\n text-align: center; }\n .wp-block-image.alignfull img,\n .wp-block-image.alignwide img {\n width: 100%; }\n .wp-block-image .alignleft,\n .wp-block-image .alignright,\n .wp-block-image .aligncenter, .wp-block-image.is-resized {\n display: table; }\n .wp-block-image .alignleft > figcaption,\n .wp-block-image .alignright > figcaption,\n .wp-block-image .aligncenter > figcaption, .wp-block-image.is-resized > figcaption {\n display: table-caption;\n caption-side: bottom; }\n .wp-block-image .alignleft {\n /*rtl:ignore*/\n float: left;\n /*rtl:ignore*/\n margin-left: 0;\n margin-right: 1em;\n margin-top: 0.5em;\n margin-bottom: 0.5em; }\n .wp-block-image .alignright {\n /*rtl:ignore*/\n float: right;\n /*rtl:ignore*/\n margin-right: 0;\n margin-left: 1em;\n margin-top: 0.5em;\n margin-bottom: 0.5em; }\n .wp-block-image .aligncenter {\n margin-left: auto;\n margin-right: auto; }\n .wp-block-image figcaption {\n margin-top: 0.5em;\n margin-bottom: 1em; }\n\n.is-style-rounded img {\n border-radius: 9999px; }\n\n.is-style-circle-mask img {\n border-radius: 9999px; }\n @supports ((-webkit-mask-image: none) or (mask-image: none)) or (-webkit-mask-image: none) {\n .is-style-circle-mask img {\n /* stylelint-disable */\n -webkit-mask-image: url('data:image/svg+xml;utf8,');\n mask-image: url('data:image/svg+xml;utf8,');\n /* stylelint-enable */\n mask-mode: alpha;\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-size: contain;\n mask-size: contain;\n -webkit-mask-position: center;\n mask-position: center;\n border-radius: 0; } }\n\n.wp-block-latest-comments__comment {\n font-size: 15px;\n line-height: 1.1;\n list-style: none;\n margin-bottom: 1em; }\n .has-avatars .wp-block-latest-comments__comment {\n min-height: 36px;\n list-style: none; }\n .has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta,\n .has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt {\n margin-left: 52px; }\n .has-dates .wp-block-latest-comments__comment,\n .has-excerpts .wp-block-latest-comments__comment {\n line-height: 1.5; }\n\n.wp-block-latest-comments__comment-excerpt p {\n font-size: 14px;\n line-height: 1.8;\n margin: 5px 0 20px; }\n\n.wp-block-latest-comments__comment-date {\n color: #8f98a1;\n display: block;\n font-size: 12px; }\n\n.wp-block-latest-comments .avatar,\n.wp-block-latest-comments__comment-avatar {\n border-radius: 24px;\n display: block;\n float: left;\n height: 40px;\n margin-right: 12px;\n width: 40px; }\n\n.wp-block-latest-posts.alignleft {\n /*rtl:ignore*/\n margin-right: 2em; }\n\n.wp-block-latest-posts.alignright {\n /*rtl:ignore*/\n margin-left: 2em; }\n\n.wp-block-latest-posts.wp-block-latest-posts__list {\n list-style: none; }\n .wp-block-latest-posts.wp-block-latest-posts__list li {\n clear: both; }\n\n.wp-block-latest-posts.is-grid {\n display: flex;\n flex-wrap: wrap;\n padding: 0; }\n .wp-block-latest-posts.is-grid li {\n margin: 0 20px 20px 0;\n width: 100%; }\n\n@media (min-width: 600px) {\n .wp-block-latest-posts.columns-2 li {\n width: calc((100% / 2) - 20px); }\n .wp-block-latest-posts.columns-3 li {\n width: calc((100% / 3) - 20px); }\n .wp-block-latest-posts.columns-4 li {\n width: calc((100% / 4) - 20px); }\n .wp-block-latest-posts.columns-5 li {\n width: calc((100% / 5) - 20px); }\n .wp-block-latest-posts.columns-6 li {\n width: calc((100% / 6) - 20px); } }\n\n.wp-block-latest-posts__post-date {\n display: block;\n color: #6c7781;\n font-size: 13px; }\n\n.wp-block-latest-posts__post-excerpt {\n margin-top: 8px;\n margin-bottom: 16px; }\n\n.wp-block-latest-posts__featured-image img {\n height: auto;\n width: auto; }\n\n.wp-block-latest-posts__featured-image.alignleft {\n /*rtl:ignore*/\n margin-right: 1em; }\n\n.wp-block-latest-posts__featured-image.alignright {\n /*rtl:ignore*/\n margin-left: 1em; }\n\n.wp-block-latest-posts__featured-image.aligncenter {\n margin-bottom: 1em;\n text-align: center; }\n\n.edit-post-visual-editor .wp-block-latest-posts.is-grid li {\n margin-bottom: 20px; }\n\n.wp-block-media-text {\n /*!rtl:begin:ignore*/\n direction: ltr;\n /*!rtl:end:ignore*/\n display: -ms-grid;\n display: grid;\n -ms-grid-columns: 50% 1fr;\n grid-template-columns: 50% 1fr;\n -ms-grid-rows: auto;\n grid-template-rows: auto; }\n .wp-block-media-text.has-media-on-the-right {\n -ms-grid-columns: 1fr 50%;\n grid-template-columns: 1fr 50%; }\n\n.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content,\n.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media {\n -ms-grid-row-align: start;\n align-self: start; }\n\n.wp-block-media-text .wp-block-media-text__content,\n.wp-block-media-text .wp-block-media-text__media,\n.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content,\n.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media {\n -ms-grid-row-align: center;\n align-self: center; }\n\n.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content,\n.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media {\n -ms-grid-row-align: end;\n align-self: end; }\n\n.wp-block-media-text .wp-block-media-text__media {\n /*!rtl:begin:ignore*/\n -ms-grid-column: 1;\n grid-column: 1;\n -ms-grid-row: 1;\n grid-row: 1;\n /*!rtl:end:ignore*/\n margin: 0; }\n\n.wp-block-media-text .wp-block-media-text__content {\n direction: ltr;\n /*!rtl:begin:ignore*/\n -ms-grid-column: 2;\n grid-column: 2;\n -ms-grid-row: 1;\n grid-row: 1;\n /*!rtl:end:ignore*/\n padding: 0 8% 0 8%;\n word-break: break-word; }\n\n.wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {\n /*!rtl:begin:ignore*/\n -ms-grid-column: 2;\n grid-column: 2;\n -ms-grid-row: 1;\n grid-row: 1;\n /*!rtl:end:ignore*/ }\n\n.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {\n /*!rtl:begin:ignore*/\n -ms-grid-column: 1;\n grid-column: 1;\n -ms-grid-row: 1;\n grid-row: 1;\n /*!rtl:end:ignore*/ }\n\n.wp-block-media-text__media img,\n.wp-block-media-text__media video {\n max-width: unset;\n width: 100%;\n vertical-align: middle; }\n\n.wp-block-media-text.is-image-fill figure.wp-block-media-text__media {\n height: 100%;\n min-height: 250px;\n background-size: cover; }\n\n.wp-block-media-text.is-image-fill figure.wp-block-media-text__media > img {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0; }\n\n/*\n* Here we here not able to use a mobile first CSS approach.\n* Custom widths are set using inline styles, and on mobile,\n* we need 100% width, so we use important to overwrite the inline style.\n* If the style were set on mobile first, on desktop styles,\n* we would have no way of setting the style again to the inline style.\n*/\n@media (max-width: 600px) {\n .wp-block-media-text.is-stacked-on-mobile {\n -ms-grid-columns: 100% !important;\n grid-template-columns: 100% !important; }\n .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media {\n -ms-grid-column: 1;\n grid-column: 1;\n -ms-grid-row: 1;\n grid-row: 1; }\n .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {\n -ms-grid-column: 1;\n grid-column: 1;\n -ms-grid-row: 2;\n grid-row: 2; }\n .wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right .wp-block-media-text__media {\n -ms-grid-column: 1;\n grid-column: 1;\n -ms-grid-row: 2;\n grid-row: 2; }\n .wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right .wp-block-media-text__content {\n -ms-grid-column: 1;\n grid-column: 1;\n -ms-grid-row: 1;\n grid-row: 1; } }\n\n.wp-block-navigation__container {\n list-style: none;\n margin: 0;\n padding-left: 0;\n display: flex;\n flex-wrap: wrap; }\n .is-vertical .wp-block-navigation__container {\n display: block; }\n\n.wp-block-navigation-link {\n display: flex;\n align-items: center;\n position: relative;\n margin: 0;\n padding: 8px; }\n .wp-block-navigation-link .wp-block-navigation__container:empty {\n display: none; }\n\n.has-child .wp-block-navigation__container {\n border: 1px solid rgba(0, 0, 0, 0.15);\n padding: 6px 0;\n background-color: inherit;\n color: inherit;\n position: absolute;\n left: 0;\n top: 100%;\n width: fit-content;\n z-index: 1;\n opacity: 0;\n transition: opacity 0.1s linear;\n visibility: hidden; }\n .has-child .wp-block-navigation__container > .wp-block-navigation-link {\n font-size: 15px; }\n .has-child .wp-block-navigation__container > .wp-block-navigation-link > .wp-block-navigation-link__content {\n flex-grow: 1; }\n .has-child .wp-block-navigation__container > .wp-block-navigation-link > .wp-block-navigation-link__submenu-icon {\n padding-right: 8px; }\n @media (min-width: 782px) {\n .has-child .wp-block-navigation__container {\n left: 24px; }\n .has-child .wp-block-navigation__container .wp-block-navigation__container {\n left: calc(100% + 8px);\n top: -7px; }\n .has-child .wp-block-navigation__container .wp-block-navigation__container::before {\n content: \"\";\n position: absolute;\n right: 100%;\n height: 100%;\n display: block;\n width: 8px;\n background: transparent; }\n .has-child .wp-block-navigation__container .wp-block-navigation-link__submenu-icon svg {\n transform: rotate(0); } }\n\n.has-child:hover {\n cursor: pointer; }\n .has-child:hover > .wp-block-navigation__container {\n visibility: visible;\n opacity: 1;\n display: flex;\n flex-direction: column; }\n\n.has-child:focus-within {\n cursor: pointer; }\n .has-child:focus-within > .wp-block-navigation__container {\n visibility: visible;\n opacity: 1;\n display: flex;\n flex-direction: column; }\n\n.wp-block-navigation-link__content {\n text-decoration: none;\n padding: 6px 16px; }\n .has-text-color .wp-block-navigation-link__content {\n color: inherit; }\n\n.wp-block-navigation-link__label {\n font-size: 17px;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n word-break: normal;\n overflow-wrap: break-word; }\n\n.wp-block-navigation-link__submenu-icon {\n height: inherit;\n padding: 6px 16px; }\n .wp-block-navigation-link__submenu-icon svg {\n fill: currentColor; }\n @media (min-width: 782px) {\n .wp-block-navigation-link__submenu-icon svg {\n transform: rotate(90deg); } }\n\n.wp-block-navigation .wp-block-navigation-link:not(.has-text-color),\n.wp-block-navigation.is-style-light .wp-block-navigation-link:not(.has-text-color) {\n color: #111; }\n\n.wp-block-navigation:not(.has-background) .wp-block-navigation__container,\n.wp-block-navigation.is-style-light:not(.has-background) .wp-block-navigation__container {\n background-color: #fff; }\n\n.wp-block-navigation.is-style-dark .wp-block-navigation-link:not(.has-text-color) {\n color: #fff; }\n\n.wp-block-navigation.is-style-dark:not(.has-background) .wp-block-navigation__container {\n background-color: #333; }\n\n.items-justified-left > ul {\n justify-content: flex-start; }\n\n.items-justified-center > ul {\n justify-content: center; }\n\n.items-justified-right > ul {\n justify-content: flex-end; }\n\n.is-small-text {\n font-size: 14px; }\n\n.is-regular-text {\n font-size: 16px; }\n\n.is-large-text {\n font-size: 36px; }\n\n.is-larger-text {\n font-size: 48px; }\n\n.has-drop-cap:not(:focus)::first-letter {\n float: left;\n font-size: 8.4em;\n line-height: 0.68;\n font-weight: 100;\n margin: 0.05em 0.1em 0 0;\n text-transform: uppercase;\n font-style: normal; }\n\np.has-background {\n padding: 20px 38px; }\n\np.has-text-color a {\n color: inherit; }\n\n.wp-block-post-author {\n display: flex;\n flex-wrap: wrap;\n line-height: 1.5; }\n .wp-block-post-author__byline {\n width: 100%;\n margin-top: 0;\n margin-bottom: 0;\n font-size: 0.8em; }\n .wp-block-post-author__avatar {\n margin-right: 16px; }\n .wp-block-post-author__bio {\n margin-top: 8px; }\n .wp-block-post-author__content {\n flex-grow: 1;\n flex-basis: 0; }\n .wp-block-post-author__name {\n font-weight: bold;\n margin: 0; }\n\n.wp-block-pullquote {\n padding: 3em 0;\n margin-left: 0;\n margin-right: 0;\n text-align: center; }\n .wp-block-pullquote.alignleft, .wp-block-pullquote.alignright {\n max-width: 290px; }\n .wp-block-pullquote.alignleft p, .wp-block-pullquote.alignright p {\n font-size: 20px; }\n .wp-block-pullquote p {\n font-size: 28px;\n line-height: 1.6; }\n .wp-block-pullquote cite,\n .wp-block-pullquote footer {\n position: relative; }\n .wp-block-pullquote .has-text-color a {\n color: inherit; }\n\n.wp-block-pullquote:not(.is-style-solid-color) {\n background: none; }\n\n.wp-block-pullquote.is-style-solid-color {\n border: none; }\n .wp-block-pullquote.is-style-solid-color blockquote {\n margin-left: auto;\n margin-right: auto;\n text-align: left;\n max-width: 60%; }\n .wp-block-pullquote.is-style-solid-color blockquote p {\n margin-top: 0;\n margin-bottom: 0;\n font-size: 32px; }\n .wp-block-pullquote.is-style-solid-color blockquote cite {\n text-transform: none;\n font-style: normal; }\n\n.wp-block-pullquote cite {\n color: inherit; }\n\n.wp-block-quote.is-style-large, .wp-block-quote.is-large {\n margin: 0 0 16px;\n padding: 0 1em; }\n .wp-block-quote.is-style-large p, .wp-block-quote.is-large p {\n font-size: 24px;\n font-style: italic;\n line-height: 1.6; }\n .wp-block-quote.is-style-large cite,\n .wp-block-quote.is-style-large footer, .wp-block-quote.is-large cite,\n .wp-block-quote.is-large footer {\n font-size: 18px;\n text-align: right; }\n\n.wp-block-rss.alignleft {\n /*rtl:ignore*/\n margin-right: 2em; }\n\n.wp-block-rss.alignright {\n /*rtl:ignore*/\n margin-left: 2em; }\n\n.wp-block-rss.is-grid {\n display: flex;\n flex-wrap: wrap;\n padding: 0;\n list-style: none; }\n .wp-block-rss.is-grid li {\n margin: 0 16px 16px 0;\n width: 100%; }\n\n@media (min-width: 600px) {\n .wp-block-rss.columns-2 li {\n width: calc(( 100% / 2 ) - 16px); }\n .wp-block-rss.columns-3 li {\n width: calc(( 100% / 3 ) - 16px); }\n .wp-block-rss.columns-4 li {\n width: calc(( 100% / 4 ) - 16px); }\n .wp-block-rss.columns-5 li {\n width: calc(( 100% / 5 ) - 16px); }\n .wp-block-rss.columns-6 li {\n width: calc(( 100% / 6 ) - 16px); } }\n\n.wp-block-rss__item-publish-date,\n.wp-block-rss__item-author {\n display: block;\n color: #6c7781;\n font-size: 13px; }\n\n.wp-block-search {\n display: flex;\n flex-wrap: wrap; }\n .wp-block-search .wp-block-search__label {\n width: 100%; }\n .wp-block-search .wp-block-search__input {\n flex-grow: 1;\n max-width: 360px; }\n .wp-block-search .wp-block-search__button {\n margin-left: 10px; }\n\n.wp-block-separator.is-style-wide {\n border-bottom-width: 1px; }\n\n.wp-block-separator.is-style-dots {\n background: none !important;\n border: none;\n text-align: center;\n max-width: none;\n line-height: 1;\n height: auto; }\n .wp-block-separator.is-style-dots::before {\n content: \"\\00b7 \\00b7 \\00b7\";\n color: currentColor;\n font-size: 20px;\n letter-spacing: 2em;\n /*rtl:ignore*/\n padding-left: 2em;\n font-family: serif; }\n\n.wp-block-social-links {\n display: flex;\n justify-content: flex-start;\n padding-left: 0;\n padding-right: 0;\n margin-left: 0; }\n .wp-block-social-links .wp-social-link a,\n .wp-block-social-links .wp-social-link a:hover {\n text-decoration: none;\n border-bottom: 0;\n box-shadow: none; }\n\n.wp-social-link {\n display: block;\n width: 36px;\n height: 36px;\n border-radius: 36px;\n margin-right: 8px;\n transition: transform 0.1s ease; }\n @media (prefers-reduced-motion: reduce) {\n .wp-social-link {\n transition-duration: 0s; } }\n .wp-social-link a {\n padding: 6px;\n display: block;\n line-height: 0;\n transition: transform 0.1s ease; }\n .wp-social-link a,\n .wp-social-link a:hover,\n .wp-social-link a:active,\n .wp-social-link a:visited,\n .wp-social-link svg {\n color: currentColor;\n fill: currentColor; }\n .wp-social-link:hover {\n transform: scale(1.1); }\n\n.wp-block-social-links.aligncenter {\n justify-content: center;\n display: flex; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link {\n background-color: #f0f0f0;\n color: #444; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon {\n background-color: #f90;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp {\n background-color: #1ea0c3;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance {\n background-color: #0757fe;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen {\n background-color: #1e1f26;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart {\n background-color: #02e49b;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble {\n background-color: #e94c89;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox {\n background-color: #4280ff;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy {\n background-color: #f45800;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook {\n background-color: #1778f2;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx {\n background-color: #000;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr {\n background-color: #0461dd;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare {\n background-color: #e65678;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github {\n background-color: #24292d;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads {\n background-color: #eceadd;\n color: #382110; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google {\n background-color: #ea4434;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram {\n background-color: #f00075;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm {\n background-color: #e21b24;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin {\n background-color: #0d66c2;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon {\n background-color: #3288d4;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium {\n background-color: #02ab6c;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup {\n background-color: #f6405f;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest {\n background-color: #e60122;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket {\n background-color: #ef4155;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit {\n background-color: #fe4500;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype {\n background-color: #0478d7;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat {\n background-color: #fefc00;\n color: #fff;\n stroke: #000; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud {\n background-color: #ff5600;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify {\n background-color: #1bd760;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr {\n background-color: #011835;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch {\n background-color: #6440a4;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter {\n background-color: #1da1f2;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo {\n background-color: #1eb7ea;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk {\n background-color: #4680c2;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress {\n background-color: #3499cd;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp {\n background-color: #d32422;\n color: #fff; }\n\n.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube {\n background-color: #f00;\n color: #fff; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link {\n background: none;\n padding: 4px; }\n .wp-block-social-links.is-style-logos-only .wp-social-link svg {\n width: 28px;\n height: 28px; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-amazon {\n color: #f90; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp {\n color: #1ea0c3; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-behance {\n color: #0757fe; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-codepen {\n color: #1e1f26; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-deviantart {\n color: #02e49b; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-dribbble {\n color: #e94c89; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-dropbox {\n color: #4280ff; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-etsy {\n color: #f45800; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-facebook {\n color: #1778f2; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx {\n color: #000; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-flickr {\n color: #0461dd; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-foursquare {\n color: #e65678; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-github {\n color: #24292d; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-goodreads {\n color: #382110; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-google {\n color: #ea4434; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-instagram {\n color: #f00075; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-lastfm {\n color: #e21b24; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-linkedin {\n color: #0d66c2; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-mastodon {\n color: #3288d4; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-medium {\n color: #02ab6c; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-meetup {\n color: #f6405f; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-pinterest {\n color: #e60122; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-pocket {\n color: #ef4155; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-reddit {\n color: #fe4500; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-skype {\n color: #0478d7; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-snapchat {\n color: #fff;\n stroke: #000; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud {\n color: #ff5600; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-spotify {\n color: #1bd760; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-tumblr {\n color: #011835; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-twitch {\n color: #6440a4; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-twitter {\n color: #1da1f2; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-vimeo {\n color: #1eb7ea; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-vk {\n color: #4680c2; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-wordpress {\n color: #3499cd; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-yelp {\n background-color: #d32422;\n color: #fff; }\n\n.wp-block-social-links.is-style-logos-only .wp-social-link-youtube {\n color: #f00; }\n\n.wp-block-social-links.is-style-pill-shape .wp-social-link {\n width: auto; }\n\n.wp-block-social-links.is-style-pill-shape .wp-social-link a {\n padding-left: 16px;\n padding-right: 16px; }\n\n.wp-block-spacer {\n clear: both; }\n\np.wp-block-subhead {\n font-size: 1.1em;\n font-style: italic;\n opacity: 0.75; }\n\n.wp-block-table {\n overflow-x: auto; }\n .wp-block-table table {\n width: 100%; }\n .wp-block-table .has-fixed-layout {\n table-layout: fixed;\n width: 100%; }\n .wp-block-table .has-fixed-layout td,\n .wp-block-table .has-fixed-layout th {\n word-break: break-word; }\n .wp-block-table.alignleft, .wp-block-table.aligncenter, .wp-block-table.alignright {\n display: table;\n width: auto; }\n .wp-block-table.alignleft td,\n .wp-block-table.alignleft th, .wp-block-table.aligncenter td,\n .wp-block-table.aligncenter th, .wp-block-table.alignright td,\n .wp-block-table.alignright th {\n word-break: break-word; }\n .wp-block-table .has-subtle-light-gray-background-color {\n background-color: #f3f4f5; }\n .wp-block-table .has-subtle-pale-green-background-color {\n background-color: #e9fbe5; }\n .wp-block-table .has-subtle-pale-blue-background-color {\n background-color: #e7f5fe; }\n .wp-block-table .has-subtle-pale-pink-background-color {\n background-color: #fcf0ef; }\n .wp-block-table.is-style-stripes {\n border-spacing: 0;\n border-collapse: inherit;\n background-color: transparent;\n border-bottom: 1px solid #f3f4f5; }\n .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {\n background-color: #f3f4f5; }\n .wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd) {\n background-color: #f3f4f5; }\n .wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd) {\n background-color: #e9fbe5; }\n .wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd) {\n background-color: #e7f5fe; }\n .wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd) {\n background-color: #fcf0ef; }\n .wp-block-table.is-style-stripes th,\n .wp-block-table.is-style-stripes td {\n border-color: transparent; }\n\n.wp-block-text-columns {\n display: flex; }\n .wp-block-text-columns.aligncenter {\n display: flex; }\n .wp-block-text-columns .wp-block-column {\n margin: 0 16px;\n padding: 0; }\n .wp-block-text-columns .wp-block-column:first-child {\n margin-left: 0; }\n .wp-block-text-columns .wp-block-column:last-child {\n margin-right: 0; }\n .wp-block-text-columns.columns-2 .wp-block-column {\n width: calc(100% / 2); }\n .wp-block-text-columns.columns-3 .wp-block-column {\n width: calc(100% / 3); }\n .wp-block-text-columns.columns-4 .wp-block-column {\n width: calc(100% / 4); }\n\n.wp-block-video {\n margin-left: 0;\n margin-right: 0; }\n .wp-block-video video {\n max-width: 100%; }\n @supports ((position: -webkit-sticky) or (position: sticky)) {\n .wp-block-video [poster] {\n object-fit: cover; } }\n .wp-block-video.aligncenter {\n text-align: center; }\n .wp-block-video figcaption {\n margin-top: 0.5em;\n margin-bottom: 1em; }\n\n:root {\n /* stylelint-disable function-comma-space-after */\n /* stylelint-enable function-comma-space-after */ }\n :root .has-pale-pink-background-color {\n background-color: #f78da7; }\n :root .has-vivid-red-background-color {\n background-color: #cf2e2e; }\n :root .has-luminous-vivid-orange-background-color {\n background-color: #ff6900; }\n :root .has-luminous-vivid-amber-background-color {\n background-color: #fcb900; }\n :root .has-light-green-cyan-background-color {\n background-color: #7bdcb5; }\n :root .has-vivid-green-cyan-background-color {\n background-color: #00d084; }\n :root .has-pale-cyan-blue-background-color {\n background-color: #8ed1fc; }\n :root .has-vivid-cyan-blue-background-color {\n background-color: #0693e3; }\n :root .has-vivid-purple-background-color {\n background-color: #9b51e0; }\n :root .has-white-background-color {\n background-color: #fff; }\n :root .has-very-light-gray-background-color {\n background-color: #eee; }\n :root .has-cyan-bluish-gray-background-color {\n background-color: #abb8c3; }\n :root .has-very-dark-gray-background-color {\n background-color: #313131; }\n :root .has-black-background-color {\n background-color: #000; }\n :root .has-pale-pink-color {\n color: #f78da7; }\n :root .has-vivid-red-color {\n color: #cf2e2e; }\n :root .has-luminous-vivid-orange-color {\n color: #ff6900; }\n :root .has-luminous-vivid-amber-color {\n color: #fcb900; }\n :root .has-light-green-cyan-color {\n color: #7bdcb5; }\n :root .has-vivid-green-cyan-color {\n color: #00d084; }\n :root .has-pale-cyan-blue-color {\n color: #8ed1fc; }\n :root .has-vivid-cyan-blue-color {\n color: #0693e3; }\n :root .has-vivid-purple-color {\n color: #9b51e0; }\n :root .has-white-color {\n color: #fff; }\n :root .has-very-light-gray-color {\n color: #eee; }\n :root .has-cyan-bluish-gray-color {\n color: #abb8c3; }\n :root .has-very-dark-gray-color {\n color: #313131; }\n :root .has-black-color {\n color: #000; }\n :root .has-vivid-cyan-blue-to-vivid-purple-gradient-background {\n background: linear-gradient(135deg, #0693e3 0%, #9b51e0 100%); }\n :root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background {\n background: linear-gradient(135deg, #00d084 0%, #0693e3 100%); }\n :root .has-light-green-cyan-to-vivid-green-cyan-gradient-background {\n background: linear-gradient(135deg, #7adcb4 0%, #00d082 100%); }\n :root .has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {\n background: linear-gradient(135deg, #fcb900 0%, #ff6900 100%); }\n :root .has-luminous-vivid-orange-to-vivid-red-gradient-background {\n background: linear-gradient(135deg, #ff6900 0%, #cf2e2e 100%); }\n :root .has-very-light-gray-to-cyan-bluish-gray-gradient-background {\n background: linear-gradient(135deg, #eeeeee 0%, #a9b8c3 100%); }\n :root .has-cool-to-warm-spectrum-gradient-background {\n background: linear-gradient(135deg, #4aeadc 0%, #9778d1 20%, #cf2aba 40%, #ee2c82 60%, #fb6962 80%, #fef84c 100%); }\n :root .has-blush-light-purple-gradient-background {\n background: linear-gradient(135deg, #ffceec 0%, #9896f0 100%); }\n :root .has-blush-bordeaux-gradient-background {\n background: linear-gradient(135deg, #fecda5 0%, #fe2d2d 50%, #6b003e 100%); }\n :root .has-purple-crush-gradient-background {\n background: linear-gradient(135deg, #34e2e4 0%, #4721fb 50%, #ab1dfe 100%); }\n :root .has-luminous-dusk-gradient-background {\n background: linear-gradient(135deg, #ffcb70 0%, #c751c0 50%, #4158d0 100%); }\n :root .has-hazy-dawn-gradient-background {\n background: linear-gradient(135deg, #faaca8 0%, #dad0ec 100%); }\n :root .has-pale-ocean-gradient-background {\n background: linear-gradient(135deg, #fff5cb 0%, #b6e3d4 50%, #33a7b5 100%); }\n :root .has-electric-grass-gradient-background {\n background: linear-gradient(135deg, #caf880 0%, #71ce7e 100%); }\n :root .has-subdued-olive-gradient-background {\n background: linear-gradient(135deg, #fafae1 0%, #67a671 100%); }\n :root .has-atomic-cream-gradient-background {\n background: linear-gradient(135deg, #fdd79a 0%, #004a59 100%); }\n :root .has-nightshade-gradient-background {\n background: linear-gradient(135deg, #330968 0%, #31cdcf 100%); }\n :root .has-midnight-gradient-background {\n background: linear-gradient(135deg, #020381 0%, #2874fc 100%); }\n\n.editor-styles-wrapper .has-small-font-size,\n.has-small-font-size {\n font-size: 13px; }\n\n.editor-styles-wrapper .has-regular-font-size,\n.editor-styles-wrapper .has-normal-font-size,\n.has-regular-font-size,\n.has-normal-font-size {\n font-size: 16px; }\n\n.editor-styles-wrapper .has-medium-font-size,\n.has-medium-font-size {\n font-size: 20px; }\n\n.editor-styles-wrapper .has-large-font-size,\n.has-large-font-size {\n font-size: 36px; }\n\n.editor-styles-wrapper .has-larger-font-size,\n.editor-styles-wrapper .has-huge-font-size,\n.has-larger-font-size,\n.has-huge-font-size {\n font-size: 42px; }\n\n.has-text-align-center {\n text-align: center; }\n\n.has-text-align-left {\n /*rtl:ignore*/\n text-align: left; }\n\n.has-text-align-right {\n /*rtl:ignore*/\n text-align: right; }\n\n#end-resizable-editor-section {\n display: none; }\n\n.aligncenter {\n clear: both; }\n","/**\n * Colors\n */\n/**\n * Breakpoints & Media Queries\n */\n/**\n * Colors\n */\n/**\n * Fonts & basic variables.\n */\n/**\n * Grid System.\n * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/\n */\n/**\n * Dimensions.\n */\n/**\n * Shadows.\n */\n/**\n * Editor widths.\n */\n/**\n * Block UI.\n */\n/**\n * Border radii.\n */\n/**\n * Breakpoint mixins\n */\n/**\n * Long content fade mixin\n *\n * Creates a fading overlay to signify that the content is longer\n * than the space allows.\n */\n/**\n * Focus styles.\n */\n/**\n * Applies editor left position to the selector passed as argument\n */\n/**\n * Styles that are reused verbatim in a few places\n */\n/**\n * Allows users to opt-out of animations via OS-level preferences.\n */\n/**\n * Reset default styles for JavaScript UI based pages.\n * This is a WP-admin agnostic reset\n */\n/**\n * Reset the WP Admin page styles for Gutenberg-like pages.\n */\n#start-resizable-editor-section {\n display: none; }\n\n.block-editor ul.wp-block-archives {\n padding-left: 2.5em; }\n\n.wp-block-audio {\n margin-left: 0;\n margin-right: 0; }\n\n.edit-post-visual-editor .block-library-block__reusable-block-container .block-editor-writing-flow__click-redirect {\n min-height: auto; }\n\n.edit-post-visual-editor .block-library-block__reusable-block-container .is-root-container {\n padding-left: 0;\n padding-right: 0; }\n\n.edit-post-visual-editor .block-library-block__reusable-block-container .block-editor-writing-flow {\n display: block; }\n\n.wp-block[data-align=\"center\"] > .wp-block-button {\n text-align: center;\n margin-left: auto;\n margin-right: auto; }\n\n.wp-block[data-align=\"right\"] > .wp-block-button {\n /*!rtl:ignore*/\n text-align: right; }\n\n.wp-block-button {\n position: relative;\n cursor: text; }\n .wp-block-button:not(.has-text-color):not(.is-style-outline) [data-rich-text-placeholder]::after {\n color: #fff; }\n .wp-block-button:focus {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px #00a0d2;\n outline: 2px solid transparent;\n outline-offset: -2px; }\n .wp-block-button[data-rich-text-placeholder]::after {\n opacity: 0.8; }\n\n.wp-block-button__inline-link {\n color: #555d66;\n height: 0;\n overflow: hidden;\n max-width: 290px; }\n .wp-block-button__inline-link-input__suggestions {\n max-width: 290px; }\n @media (min-width: 782px) {\n .wp-block-button__inline-link {\n max-width: 260px; }\n .wp-block-button__inline-link-input__suggestions {\n max-width: 260px; } }\n @media (min-width: 960px) {\n .wp-block-button__inline-link {\n max-width: 290px; }\n .wp-block-button__inline-link-input__suggestions {\n max-width: 290px; } }\n .is-selected .wp-block-button__inline-link {\n height: auto;\n overflow: visible;\n margin-top: 16px; }\n\ndiv[data-type=\"core/button\"] {\n display: table; }\n\n.wp-block-buttons .wp-block.block-editor-block-list__block[data-type=\"core/button\"] {\n display: inline-block;\n width: auto; }\n\n.wp-block[data-align=\"center\"] > .wp-block-buttons {\n display: flex;\n align-items: center;\n flex-wrap: wrap;\n justify-content: center; }\n\n.wp-block[data-align=\"right\"] > .wp-block-buttons {\n display: flex;\n justify-content: flex-end; }\n\n.wp-block-buttons .block-list-appender {\n display: inline-block; }\n\n.block-editor .wp-block-categories ul {\n padding-left: 2.5em; }\n .block-editor .wp-block-categories ul ul {\n margin-top: 6px; }\n\n.wp-block-code > code {\n display: block; }\n\n.wp-block-columns .wp-block {\n max-width: none; }\n\n@media (min-width: 600px) {\n .editor-styles-wrapper\n.block-editor-block-list__block.wp-block-column:nth-child(even) {\n margin-left: 32px; } }\n\n@media (min-width: 782px) {\n .editor-styles-wrapper\n.block-editor-block-list__block.wp-block-column:not(:first-child) {\n margin-left: 32px; } }\n\n.block-editor-block-list__block.wp-block-column.wp-block-column {\n margin-top: 0;\n margin-bottom: 0; }\n\n.wp-block-cover-image.components-placeholder h2,\n.wp-block-cover.components-placeholder h2 {\n color: inherit; }\n\n.wp-block-cover-image .block-editor-block-list__layout,\n.wp-block-cover .block-editor-block-list__layout {\n width: 100%; }\n\n.wp-block-cover-image .wp-block-cover__inner-container,\n.wp-block-cover .wp-block-cover__inner-container {\n text-align: left; }\n\n.wp-block-cover-image .wp-block-cover__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout,\n.wp-block-cover .wp-block-cover__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout {\n margin-left: 0;\n margin-right: 0; }\n\n.wp-block-cover-image .wp-block-cover__placeholder-background-options,\n.wp-block-cover .wp-block-cover__placeholder-background-options {\n width: 100%; }\n\n[data-align=\"left\"] > .wp-block-cover,\n[data-align=\"right\"] > .wp-block-cover,\n[data-align=\"left\"] > .wp-block-cover-image,\n[data-align=\"right\"] > .wp-block-cover-image {\n max-width: 290px;\n width: 100%; }\n\n.block-library-cover__reset-button {\n margin-left: auto; }\n\n.block-library-cover__resize-container:not(.is-resizing) {\n height: auto !important; }\n\n.wp-block-embed {\n margin-left: 0;\n margin-right: 0;\n clear: both; }\n .wp-block-embed.is-loading {\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n padding: 1em;\n min-height: 200px;\n text-align: center;\n background: #f8f9f9; }\n .wp-block-embed.is-loading p {\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px; }\n .wp-block-embed .components-placeholder__error {\n word-break: break-word; }\n .wp-block-embed .components-placeholder__learn-more {\n margin-top: 1em; }\n\n.block-library-embed__interactive-overlay {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n opacity: 0; }\n\n.wp-block-file {\n display: flex;\n justify-content: space-between;\n align-items: center;\n margin-bottom: 0; }\n .wp-block-file .wp-block-file__content-wrapper {\n flex-grow: 1; }\n .wp-block-file .wp-block-file__textlink {\n display: inline-block;\n min-width: 1em; }\n .wp-block-file .wp-block-file__textlink:focus {\n box-shadow: none; }\n .wp-block-file .wp-block-file__button-richtext-wrapper {\n display: inline-block;\n margin-left: 0.75em; }\n .wp-block-file .wp-block-file__copy-url-button {\n margin-left: 1em; }\n\n.wp-block-freeform.block-library-rich-text__tinymce {\n /* Remove blue highlighting of selected images in WebKit */\n /* Image captions */\n /* WP Views */ }\n .wp-block-freeform.block-library-rich-text__tinymce p,\n .wp-block-freeform.block-library-rich-text__tinymce li {\n line-height: 1.8; }\n .wp-block-freeform.block-library-rich-text__tinymce ul,\n .wp-block-freeform.block-library-rich-text__tinymce ol {\n padding-left: 2.5em;\n margin-left: 0; }\n .wp-block-freeform.block-library-rich-text__tinymce blockquote {\n margin: 0;\n box-shadow: inset 0 0 0 0 #e2e4e7;\n border-left: 4px solid #000;\n padding-left: 1em; }\n .wp-block-freeform.block-library-rich-text__tinymce pre {\n white-space: pre-wrap;\n font-family: Menlo, Consolas, monaco, monospace;\n font-size: 14px;\n color: #23282d; }\n .wp-block-freeform.block-library-rich-text__tinymce > *:first-child {\n margin-top: 0; }\n .wp-block-freeform.block-library-rich-text__tinymce > *:last-child {\n margin-bottom: 0; }\n .wp-block-freeform.block-library-rich-text__tinymce.mce-edit-focus {\n outline: none; }\n .wp-block-freeform.block-library-rich-text__tinymce a {\n color: #007fac; }\n .wp-block-freeform.block-library-rich-text__tinymce:focus a[data-mce-selected] {\n padding: 0 2px;\n margin: 0 -2px;\n border-radius: 2px;\n box-shadow: 0 0 0 1px #e5f5fa;\n background: #e5f5fa; }\n .wp-block-freeform.block-library-rich-text__tinymce code {\n padding: 2px;\n border-radius: 2px;\n color: #23282d;\n background: #f3f4f5;\n font-family: Menlo, Consolas, monaco, monospace;\n font-size: 14px; }\n .wp-block-freeform.block-library-rich-text__tinymce:focus code[data-mce-selected] {\n background: #e8eaeb; }\n .wp-block-freeform.block-library-rich-text__tinymce .alignright {\n /*rtl:ignore*/\n float: right;\n /*rtl:ignore*/\n margin: 0.5em 0 0.5em 1em; }\n .wp-block-freeform.block-library-rich-text__tinymce .alignleft {\n /*rtl:ignore*/\n float: left;\n /*rtl:ignore*/\n margin: 0.5em 1em 0.5em 0; }\n .wp-block-freeform.block-library-rich-text__tinymce .aligncenter {\n display: block;\n margin-left: auto;\n margin-right: auto; }\n .wp-block-freeform.block-library-rich-text__tinymce .wp-more-tag {\n width: 96%;\n height: 20px;\n display: block;\n margin: 15px auto;\n outline: 0;\n cursor: default;\n background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAADtgAAAAoBAMAAAA86gLBAAAAJFBMVEVMaXG7u7vBwcHDw8POzs68vLzGxsbMzMy+vr7AwMDQ0NDGxsYKLGzpAAAADHRSTlMA///zWf+/f///TMxNVGuqAAABwklEQVR4Ae3dMXLaQBTH4bfj8UCpx8hq0vgKvgFNemhT6Qo6gg6R+0ZahM2QLmyBJ99XWP9V5+o3jIUcLQEAAAAAAAAAAAAAAAAAAAAAAABQ8j0WL9lfTtlt18uNXAUA8O/KVtfa1tdcrOdSh9gCQAMlh1hMNbZZ1bsrsQWABsrhLRbz7z5in/32UbfUMUbkMQCAh5RfGYv82UdMdZ6HS2wjT2ILAI8r3XmM2B3WvM59vfO2xXYW2yYAENuPU8S+X/N67mKxzy225yaxBQCxLV392UdcvwV0jPVUj98ntkBWT7C7+9u2/V/vGtvXIWJ6/4rtbottWa6Ri0NUT/u72LYttrb97LHdvUXMxxrb8TO2W2TF1rYbbLG1bbGNjMi4+2Sbi1FsbbvNFlvbFtt5fDnE3d9sP1/XeIyV2Nr2U2/guZUuptNrH/dPI9eLB6SaAEBs6wPJf3/PNk9tYgsAYrv/8TFuzx/fvkFqGtrEFgDEdpcZUb7ejXy6ntrEFgDENvL6gsas4vbdyKt4DACI7TxElJv/Z7udpqFNbAFAbKduy2uU2trttM/x28UWAAAAAAAAAAAAAAAAAAAAAAAAAADgDyPwGmGTCZp7AAAAAElFTkSuQmCC);\n background-size: 1900px 20px;\n background-repeat: no-repeat;\n background-position: center; }\n .wp-block-freeform.block-library-rich-text__tinymce img::selection {\n background-color: transparent; }\n .wp-block-freeform.block-library-rich-text__tinymce div.mceTemp {\n -ms-user-select: element; }\n .wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption {\n margin: 0;\n /* dl browser reset */\n max-width: 100%; }\n .wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption a,\n .wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption img {\n display: block; }\n .wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption,\n .wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption * {\n -webkit-user-drag: none; }\n .wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption .wp-caption-dd {\n padding-top: 0.5em;\n margin: 0;\n /* browser dd reset */ }\n .wp-block-freeform.block-library-rich-text__tinymce .wpview {\n width: 99.99%;\n /* All IE need hasLayout, incl. 11 (ugh, not again!!) */\n position: relative;\n clear: both;\n margin-bottom: 16px;\n border: 1px solid transparent; }\n .wp-block-freeform.block-library-rich-text__tinymce .wpview iframe {\n display: block;\n max-width: 100%;\n background: transparent; }\n .wp-block-freeform.block-library-rich-text__tinymce .wpview .mce-shim {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0; }\n .wp-block-freeform.block-library-rich-text__tinymce .wpview[data-mce-selected=\"2\"] .mce-shim {\n display: none; }\n .wp-block-freeform.block-library-rich-text__tinymce .wpview .loading-placeholder {\n border: 1px dashed #e8eaeb;\n padding: 10px; }\n .wp-block-freeform.block-library-rich-text__tinymce .wpview .wpview-error {\n border: 1px solid #e8eaeb;\n padding: 1em 0;\n margin: 0;\n word-wrap: break-word; }\n .wp-block-freeform.block-library-rich-text__tinymce .wpview .wpview-error p {\n margin: 0;\n text-align: center; }\n .wp-block-freeform.block-library-rich-text__tinymce .wpview[data-mce-selected] .loading-placeholder,\n .wp-block-freeform.block-library-rich-text__tinymce .wpview[data-mce-selected] .wpview-error {\n border-color: transparent; }\n .wp-block-freeform.block-library-rich-text__tinymce .wpview .dashicons {\n display: block;\n margin: 0 auto;\n width: 32px;\n height: 32px;\n font-size: 32px; }\n .wp-block-freeform.block-library-rich-text__tinymce .wpview.wpview-type-gallery::after {\n content: \"\";\n display: table;\n clear: both; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery img[data-mce-selected]:focus {\n outline: none; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery a {\n cursor: default; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery {\n margin: auto -6px;\n padding: 6px 0;\n line-height: 1;\n overflow-x: hidden; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-item {\n float: left;\n margin: 0;\n text-align: center;\n padding: 6px;\n box-sizing: border-box; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-caption,\n .wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-icon {\n margin: 0; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-caption {\n font-size: 13px;\n margin: 4px 0; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-1 .gallery-item {\n width: 100%; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-2 .gallery-item {\n width: 50%; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-3 .gallery-item {\n width: 33.33333%; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-4 .gallery-item {\n width: 25%; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-5 .gallery-item {\n width: 20%; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-6 .gallery-item {\n width: 16.66667%; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-7 .gallery-item {\n width: 14.28571%; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-8 .gallery-item {\n width: 12.5%; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-9 .gallery-item {\n width: 11.11111%; }\n .wp-block-freeform.block-library-rich-text__tinymce .gallery img {\n max-width: 100%;\n height: auto;\n border: none;\n padding: 0; }\n\ndiv[data-type=\"core/freeform\"]::before {\n transition: border-color 0.1s linear, box-shadow 0.1s linear;\n border: 1px solid #e2e4e7;\n outline: 1px solid transparent; }\n @media (prefers-reduced-motion: reduce) {\n div[data-type=\"core/freeform\"]::before {\n transition-duration: 0s; } }\n\ndiv[data-type=\"core/freeform\"].is-selected::before {\n border-color: #1e1e1e; }\n\ndiv[data-type=\"core/freeform\"] .block-editor-block-contextual-toolbar + div {\n margin-top: 0;\n padding-top: 0; }\n\ndiv[data-type=\"core/freeform\"].is-selected .block-library-rich-text__tinymce::after {\n content: \"\";\n display: table;\n clear: both; }\n\n.mce-toolbar-grp .mce-btn.mce-active button,\n.mce-toolbar-grp .mce-btn.mce-active:hover button,\n.mce-toolbar-grp .mce-btn.mce-active i,\n.mce-toolbar-grp .mce-btn.mce-active:hover i {\n color: #23282d; }\n\n.mce-toolbar-grp .mce-rtl .mce-flow-layout-item.mce-last {\n margin-right: 0;\n margin-left: 8px; }\n\n.mce-toolbar-grp .mce-btn i {\n font-style: normal; }\n\n.block-library-classic__toolbar {\n display: none;\n width: auto;\n margin: 0;\n position: -webkit-sticky;\n position: sticky;\n z-index: 10;\n top: 8px;\n border: 1px solid #e2e4e7;\n border-bottom: none;\n border-radius: 2px;\n margin-bottom: 8px;\n padding: 0; }\n div[data-type=\"core/freeform\"].is-selected .block-library-classic__toolbar,\n div[data-type=\"core/freeform\"].is-typing .block-library-classic__toolbar {\n display: block;\n border-color: #1e1e1e; }\n .block-library-classic__toolbar .mce-tinymce {\n box-shadow: none; }\n @media (min-width: 600px) {\n .block-library-classic__toolbar {\n padding: 0; } }\n .block-library-classic__toolbar:empty {\n display: block;\n background: #f5f5f5;\n border-bottom: 1px solid #e2e4e7; }\n .block-library-classic__toolbar:empty::before {\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px;\n content: attr(data-placeholder);\n color: #555d66;\n line-height: 37px;\n padding: 14px; }\n .block-library-classic__toolbar div.mce-toolbar-grp {\n border-bottom: 1px solid #1e1e1e; }\n .block-library-classic__toolbar .mce-tinymce-inline,\n .block-library-classic__toolbar .mce-tinymce-inline > div,\n .block-library-classic__toolbar div.mce-toolbar-grp,\n .block-library-classic__toolbar div.mce-toolbar-grp > div,\n .block-library-classic__toolbar .mce-menubar,\n .block-library-classic__toolbar .mce-menubar > div {\n height: auto !important;\n width: 100% !important; }\n .block-library-classic__toolbar .mce-container-body.mce-abs-layout {\n overflow: visible; }\n .block-library-classic__toolbar .mce-menubar,\n .block-library-classic__toolbar div.mce-toolbar-grp {\n position: static; }\n .block-library-classic__toolbar .mce-toolbar-grp > div {\n padding: 1px 3px; }\n .block-library-classic__toolbar .mce-toolbar-grp .mce-toolbar:not(:first-child) {\n display: none; }\n .block-library-classic__toolbar.has-advanced-toolbar .mce-toolbar-grp .mce-toolbar {\n display: block; }\n\n.wp-block-gallery li {\n list-style-type: none; }\n\n.wp-block-gallery .block-editor-media-placeholder {\n margin-bottom: 12px;\n padding: 12px; }\n .wp-block-gallery .block-editor-media-placeholder .components-placeholder__label {\n display: none; }\n .wp-block-gallery .block-editor-media-placeholder .components-button {\n margin-bottom: 0; }\n\nfigure.wp-block-gallery {\n display: block;\n margin: 0; }\n\n.blocks-gallery-grid.blocks-gallery-grid {\n padding-left: 0;\n margin-left: 0;\n margin-bottom: 0; }\n\n.blocks-gallery-item figure:not(.is-selected):focus,\n.blocks-gallery-item img:focus {\n outline: none; }\n\n.blocks-gallery-item figure.is-selected {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba;\n border-radius: 2px;\n outline: 2px solid transparent; }\n\nbody.admin-color-sunrise .blocks-gallery-item figure.is-selected {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px #d1864a; }\n\nbody.admin-color-ocean .blocks-gallery-item figure.is-selected {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px #a3b9a2; }\n\nbody.admin-color-midnight .blocks-gallery-item figure.is-selected {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px #e14d43; }\n\nbody.admin-color-ectoplasm .blocks-gallery-item figure.is-selected {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px #a7b656; }\n\nbody.admin-color-coffee .blocks-gallery-item figure.is-selected {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px #c2a68c; }\n\nbody.admin-color-blue .blocks-gallery-item figure.is-selected {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px #d9ab59; }\n\nbody.admin-color-light .blocks-gallery-item figure.is-selected {\n box-shadow: 0 0 0 1px #fff, 0 0 0 3px #0085ba; }\n .blocks-gallery-item figure.is-selected img {\n border-radius: 2px; }\n\n.blocks-gallery-item figure.is-transient img {\n opacity: 0.3; }\n\n.blocks-gallery-item .is-selected .block-library-gallery-item__move-menu,\n.blocks-gallery-item .is-selected .block-library-gallery-item__inline-menu {\n background: #fff;\n border: 1px solid #1e1e1e;\n border-radius: 2px;\n transition: box-shadow 0.2s ease-out; }\n @media (prefers-reduced-motion: reduce) {\n .blocks-gallery-item .is-selected .block-library-gallery-item__move-menu,\n .blocks-gallery-item .is-selected .block-library-gallery-item__inline-menu {\n transition-duration: 0s; } }\n .blocks-gallery-item .is-selected .block-library-gallery-item__move-menu:hover,\n .blocks-gallery-item .is-selected .block-library-gallery-item__inline-menu:hover {\n box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); }\n .blocks-gallery-item .is-selected .block-library-gallery-item__move-menu .components-button,\n .blocks-gallery-item .is-selected .block-library-gallery-item__inline-menu .components-button {\n color: #1e1e1e;\n min-width: 24px;\n height: 24px; }\n @media (min-width: 600px) {\n .columns-7 .blocks-gallery-item .is-selected .block-library-gallery-item__move-menu .components-button,\n .columns-8 .blocks-gallery-item .is-selected .block-library-gallery-item__move-menu .components-button, .columns-7\n .blocks-gallery-item .is-selected .block-library-gallery-item__inline-menu .components-button,\n .columns-8\n .blocks-gallery-item .is-selected .block-library-gallery-item__inline-menu .components-button {\n padding: 0;\n width: inherit;\n height: inherit; } }\n .blocks-gallery-item .is-selected .block-library-gallery-item__move-menu .components-button:focus,\n .blocks-gallery-item .is-selected .block-library-gallery-item__inline-menu .components-button:focus {\n color: inherit; }\n\n.block-library-gallery-item__move-menu,\n.block-library-gallery-item__inline-menu {\n margin: 8px;\n display: inline-flex;\n z-index: 20; }\n .block-library-gallery-item__move-menu .components-button,\n .block-library-gallery-item__inline-menu .components-button {\n color: transparent; }\n @media (min-width: 600px) {\n .columns-7 .block-library-gallery-item__move-menu,\n .columns-8 .block-library-gallery-item__move-menu, .columns-7\n .block-library-gallery-item__inline-menu,\n .columns-8\n .block-library-gallery-item__inline-menu {\n padding: 2px; } }\n\n.block-library-gallery-item__inline-menu {\n position: absolute;\n top: -2px;\n right: -2px; }\n\n.block-library-gallery-item__move-menu {\n position: absolute;\n top: -2px;\n left: -2px; }\n\n.blocks-gallery-item__move-backward.components-button,\n.blocks-gallery-item__move-forward.components-button,\n.blocks-gallery-item__remove.components-button {\n padding: 0; }\n\n.blocks-gallery-item .components-spinner {\n position: absolute;\n top: 50%;\n left: 50%;\n margin-top: -9px;\n margin-left: -9px; }\n\n/**\n * Group: All Alignment Settings\n */\n.wp-block-group {\n margin-top: 0;\n margin-bottom: 0; }\n .wp-block-group .block-editor-block-list__insertion-point {\n left: 0;\n right: 0; }\n .wp-block-group > div > .wp-block-group.has-background > .wp-block-group__inner-container > .block-editor-inner-blocks {\n margin-top: -32px;\n margin-bottom: -32px; }\n .wp-block-group > div > .wp-block-group > .wp-block-group__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block[data-align=\"full\"] {\n margin-left: auto;\n margin-right: auto;\n padding-left: 28px;\n padding-right: 28px; }\n @media (min-width: 600px) {\n .wp-block-group > div > .wp-block-group > .wp-block-group__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block[data-align=\"full\"] {\n padding-left: 58px;\n padding-right: 58px; } }\n .wp-block-group > div > .wp-block-group.has-background > .wp-block-group__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block[data-align=\"full\"] {\n margin-left: -30px;\n width: calc(100% + 60px); }\n\n/**\n * Group: Full Width Alignment\n */\n.wp-block[data-align=\"full\"] .wp-block-group > div > .wp-block-group > .wp-block-group__inner-container > .block-editor-inner-blocks {\n margin-left: auto;\n margin-right: auto;\n padding-left: 0;\n padding-right: 0; }\n .wp-block[data-align=\"full\"] .wp-block-group > div > .wp-block-group > .wp-block-group__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout {\n margin-left: 0;\n margin-right: 0; }\n\n.wp-block[data-align=\"full\"] .wp-block-group > div > .wp-block-group > .wp-block-group__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block[data-align=\"full\"] {\n padding-right: 0;\n padding-left: 0;\n left: 0;\n width: 100%;\n max-width: none; }\n\n.wp-block[data-align=\"full\"] .wp-block-group > div > .wp-block-group.has-background > .wp-block-group__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block[data-align=\"full\"] {\n width: calc(100% + 60px); }\n\n[data-type=\"core/group\"].is-selected .block-list-appender {\n margin-left: 0;\n margin-right: 0; }\n\n[data-type=\"core/group\"].is-selected .has-background .block-list-appender {\n margin-top: 18px;\n margin-bottom: 18px; }\n\n.wp-block-html {\n margin-bottom: 28px; }\n .wp-block-html .block-library-html__preview-overlay {\n position: absolute;\n width: 100%;\n height: 100%;\n top: 0;\n left: 0; }\n .wp-block-html .block-editor-plain-text {\n font-family: Menlo, Consolas, monaco, monospace;\n color: #23282d;\n padding: 0.8em 1em;\n border: 1px solid #e2e4e7;\n border-radius: 4px;\n max-height: 250px;\n /* Fonts smaller than 16px causes mobile safari to zoom. */\n font-size: 16px; }\n @media (min-width: 600px) {\n .wp-block-html .block-editor-plain-text {\n font-size: 13px; } }\n .wp-block-html .block-editor-plain-text:focus {\n box-shadow: none; }\n\nfigure.wp-block-image:not(.wp-block) {\n margin: 0; }\n\n.wp-block-image {\n position: relative; }\n .wp-block-image.is-transient img {\n opacity: 0.3; }\n .wp-block-image figcaption img {\n display: inline; }\n .wp-block-image .components-spinner {\n position: absolute;\n top: 50%;\n left: 50%;\n margin-top: -9px;\n margin-left: -9px; }\n\n.wp-block-image .components-resizable-box__container {\n display: inline-block; }\n .wp-block-image .components-resizable-box__container img {\n display: block;\n width: inherit;\n height: inherit; }\n\n.wp-block-image.is-focused .components-resizable-box__handle {\n display: block; }\n\n.block-editor-block-list__block[data-type=\"core/image\"] .block-editor-block-toolbar .block-editor-url-input__button-modal {\n position: absolute;\n left: 0;\n right: 0;\n margin: -1px 0; }\n @media (min-width: 600px) {\n .block-editor-block-list__block[data-type=\"core/image\"] .block-editor-block-toolbar .block-editor-url-input__button-modal {\n margin: -1px; } }\n\n[data-align=\"wide\"] > .wp-block-image img,\n[data-align=\"full\"] > .wp-block-image img {\n width: 100%; }\n\n.wp-block[data-align=\"left\"] > .wp-block-image {\n margin-right: 1em;\n margin-left: 0;\n margin-top: 0.5em;\n margin-bottom: 0.5em; }\n\n.wp-block[data-align=\"right\"] > .wp-block-image {\n margin-left: 1em;\n margin-right: 0;\n margin-top: 0.5em;\n margin-bottom: 0.5em; }\n\n.wp-block[data-align=\"center\"] > .wp-block-image {\n margin-left: auto;\n margin-right: auto;\n text-align: center; }\n\n.wp-block-latest-comments.has-avatars .avatar {\n margin-right: 10px; }\n\n.wp-block-latest-comments__comment-excerpt p {\n font-size: 14px;\n line-height: 1.8;\n margin: 5px 0 20px;\n padding-top: 0; }\n\n.wp-block-latest-comments.has-avatars .wp-block-latest-comments__comment {\n min-height: 36px; }\n\n.block-editor .wp-block-latest-posts {\n padding-left: 2.5em; }\n .block-editor .wp-block-latest-posts.is-grid {\n padding-left: 0; }\n\n.wp-block-latest-posts li a > div {\n display: inline; }\n\n.wp-block-legacy-widget__edit-container .widget-inside {\n border: none;\n display: block;\n box-shadow: none; }\n\n.wp-block-legacy-widget__edit-container .widget.open {\n z-index: 0; }\n\n.wp-block-legacy-widget__update-button {\n margin-left: auto;\n display: block; }\n\n.wp-block-legacy-widget__preview {\n overflow: auto; }\n\n.wp-block-legacy-widget__preview,\n.wp-block-legacy-widget__edit-container,\n.wp-block-legacy-widget__edit-widget-title {\n padding: 8px 14px; }\n\n.wp-block-legacy-widget__edit-widget-title {\n background: #f8f9f9;\n color: #555d66;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px;\n padding: 8px 14px;\n font-weight: 600; }\n\n.wp-block-media-text .__resizable_base__ {\n -ms-grid-column: 1;\n -ms-grid-column-span: 2;\n grid-column: 1 / span 2;\n -ms-grid-row: 2;\n grid-row: 2; }\n\n.wp-block-media-text.is-vertically-aligned-top .block-editor-inner-blocks,\n.wp-block-media-text.is-vertically-aligned-top .editor-media-container__resizer {\n -ms-grid-row-align: start;\n align-self: start; }\n\n.wp-block-media-text .block-editor-inner-blocks,\n.wp-block-media-text .editor-media-container__resizer,\n.wp-block-media-text.is-vertically-aligned-center .block-editor-inner-blocks,\n.wp-block-media-text.is-vertically-aligned-center .editor-media-container__resizer {\n -ms-grid-row-align: center;\n align-self: center; }\n\n.wp-block-media-text.is-vertically-aligned-bottom .block-editor-inner-blocks,\n.wp-block-media-text.is-vertically-aligned-bottom .editor-media-container__resizer {\n -ms-grid-row-align: end;\n align-self: end; }\n\n.wp-block-media-text .editor-media-container__resizer {\n -ms-grid-column: 1;\n grid-column: 1;\n -ms-grid-row: 1;\n grid-row: 1;\n width: 100% !important; }\n\n.wp-block-media-text.is-image-fill .editor-media-container__resizer {\n height: 100% !important; }\n\n.wp-block-media-text.has-media-on-the-right .editor-media-container__resizer {\n -ms-grid-column: 2;\n grid-column: 2;\n -ms-grid-row: 1;\n grid-row: 1; }\n\n.wp-block-media-text > .block-editor-inner-blocks {\n word-break: break-word;\n -ms-grid-column: 2;\n grid-column: 2;\n -ms-grid-row: 1;\n grid-row: 1;\n text-align: initial;\n padding: 0 8% 0 8%; }\n\n.wp-block-media-text.has-media-on-the-right .block-editor-inner-blocks {\n -ms-grid-column: 1;\n grid-column: 1;\n -ms-grid-row: 1;\n grid-row: 1; }\n\n.wp-block-media-text > .block-editor-inner-blocks > .block-editor-block-list__layout > .block-editor-block-list__block {\n max-width: unset; }\n\n.editor-media-container__resizer .components-resizable-box__handle {\n display: none; }\n\n.wp-block-media-text.is-selected:not(.is-stacked-on-mobile) .editor-media-container__resizer .components-resizable-box__handle {\n display: block; }\n\n@media (min-width: 600px) {\n .wp-block-media-text.is-selected.is-stacked-on-mobile .editor-media-container__resizer .components-resizable-box__handle {\n display: block; } }\n\n@media (max-width: 600px) {\n .wp-block-media-text.is-stacked-on-mobile .block-editor-inner-blocks {\n -ms-grid-column: 1;\n grid-column: 1;\n -ms-grid-row: 2;\n grid-row: 2; }\n .wp-block-media-text.is-stacked-on-mobile .editor-media-container__resizer {\n -ms-grid-column: 1;\n grid-column: 1;\n -ms-grid-row: 1;\n grid-row: 1; }\n .wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right .block-editor-inner-blocks {\n -ms-grid-column: 1;\n grid-column: 1;\n -ms-grid-row: 1;\n grid-row: 1; }\n .wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right .editor-media-container__resizer {\n -ms-grid-column: 1;\n grid-column: 1;\n -ms-grid-row: 2;\n grid-row: 2; } }\n\n.block-editor-block-list__block[data-type=\"core/more\"] {\n max-width: 100%;\n text-align: center;\n margin-top: 28px;\n margin-bottom: 28px; }\n\n.block-editor .wp-block-more {\n display: block;\n text-align: center;\n white-space: nowrap; }\n .block-editor .wp-block-more input[type=\"text\"] {\n position: relative;\n font-size: 13px;\n text-transform: uppercase;\n font-weight: 600;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n color: #6c7781;\n border: none;\n box-shadow: none;\n white-space: nowrap;\n text-align: center;\n margin: 0;\n border-radius: 4px;\n background: #fff;\n padding: 6px 8px;\n height: 24px;\n max-width: 100%; }\n .block-editor .wp-block-more input[type=\"text\"]:focus {\n box-shadow: none; }\n .block-editor .wp-block-more::before {\n content: \"\";\n position: absolute;\n top: calc(50%);\n left: 0;\n right: 0;\n border-top: 3px dashed #ccd0d4; }\n\n.editor-styles-wrapper .wp-block-navigation ul,\n.editor-styles-wrapper .wp-block-navigation ol {\n margin-bottom: 0;\n margin-left: 0;\n padding-left: 0; }\n\n.editor-styles-wrapper .wp-block-navigation .block-editor-block-list__block {\n margin: 0; }\n\n.wp-block-navigation .block-list-appender {\n margin: 0;\n display: flex;\n align-items: center; }\n\n.wp-block-navigation.is-vertical .block-list-appender {\n margin: 8px; }\n\n.wp-block-navigation__inserter-content {\n padding: 16px; }\n\n.wp-block-navigation__container.is-parent-of-selected-block {\n visibility: visible;\n opacity: 1; }\n\n.has-child > .wp-block-navigation__container, .has-child:hover > .wp-block-navigation__container {\n opacity: 0;\n visibility: hidden; }\n\n.has-child.is-selected > .wp-block-navigation__container, .has-child.has-child-selected > .wp-block-navigation__container {\n opacity: 1;\n visibility: visible; }\n\n.has-child .wp-block-navigation__container .block-list-appender .block-editor-button-block-appender {\n margin-left: 16px; }\n\n/**\n * Colors Selector component\n */\n.block-library-colors-selector {\n width: auto; }\n .block-library-colors-selector .block-library-colors-selector__toggle {\n display: block;\n margin: 0 auto;\n padding: 3px;\n width: auto; }\n .block-library-colors-selector .block-library-colors-selector__icon-container {\n height: 30px;\n position: relative;\n margin: 0 auto;\n padding: 3px;\n display: flex;\n align-items: center;\n border-radius: 4px; }\n .block-library-colors-selector .block-library-colors-selector__state-selection {\n margin-left: auto;\n margin-right: auto; }\n .block-library-colors-selector .block-library-colors-selector__state-selection {\n border-radius: 11px;\n box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);\n width: 22px;\n min-width: 22px;\n height: 22px;\n min-height: 22px;\n line-height: 20px;\n padding: 2px; }\n .block-library-colors-selector .block-library-colors-selector__state-selection.has-text-color > svg,\n .block-library-colors-selector .block-library-colors-selector__state-selection.has-text-color > svg path {\n color: inherit; }\n\n.block-library-colors-selector__popover .color-palette-controller-container {\n padding: 16px; }\n\n.block-library-colors-selector__popover .components-base-control__label {\n height: 20px;\n line-height: 20px; }\n\n.block-library-colors-selector__popover .component-color-indicator {\n float: right;\n margin-top: 2px; }\n\n.block-library-colors-selector__popover .components-panel__body-title {\n display: none; }\n\n.wp-block-navigation-link__field .components-text-control__input.components-text-control__input,\n.wp-block-navigation-link__container {\n border-radius: 0;\n line-height: 36px;\n min-height: 36px; }\n\n/**\n * Adjust Navigation Item.\n */\n.wp-block-navigation-link .block-editor-block-list__layout {\n display: block; }\n\n.wp-block-navigation-link.is-editing, .wp-block-navigation-link.is-selected {\n min-width: 20px; }\n\n.wp-block-navigation-link .block-editor-rich-text__editable.is-selected:not(.keep-placeholder-on-focus):not(:focus)[data-rich-text-placeholder]::after {\n display: inline-block; }\n\n.wp-block-navigation-link .block-list-appender {\n margin: 16px;\n margin-left: 10px;\n margin-top: 10px; }\n\n.wp-block-navigation-link__nofollow-external-link {\n display: block; }\n\n.wp-block-navigation-link__separator {\n margin: 8px 0 8px;\n border-top: 1px solid #e2e4e7; }\n\n.components-popover.wp-block-navigation-link__dropdown-content {\n margin-top: -1px;\n margin-left: -4px; }\n\n.wp-block-navigation-link__dropdown-content .components-popover__content {\n padding: 8px 0; }\n\n.wp-block-navigation .block-editor-block-list__block[data-type=\"core/navigation-link\"] > .block-editor-block-list__insertion-point {\n display: none; }\n\n.block-editor-block-list__block[data-type=\"core/nextpage\"] {\n max-width: 100%;\n margin-top: 28px;\n margin-bottom: 28px; }\n\n.wp-block-nextpage {\n display: block;\n text-align: center;\n white-space: nowrap; }\n .wp-block-nextpage > span {\n font-size: 13px;\n position: relative;\n display: inline-block;\n text-transform: uppercase;\n font-weight: 600;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n color: #6c7781;\n border-radius: 4px;\n background: #fff;\n padding: 6px 8px;\n height: 24px; }\n .wp-block-nextpage::before {\n content: \"\";\n position: absolute;\n top: calc(50%);\n left: 0;\n right: 0;\n border-top: 3px dashed #ccd0d4; }\n\n.block-editor-block-list__block[data-type=\"core/paragraph\"].has-drop-cap:focus {\n min-height: auto !important; }\n\n.wp-block-post-excerpt__excerpt.is-inline {\n display: inline-block; }\n\n.block-editor__container .wp-block-post-author {\n display: flex;\n flex-wrap: wrap;\n line-height: 1.5; }\n\n.wp-block-post-author__byline {\n color: #6c7781;\n font-size: 13px;\n margin-top: 0;\n position: relative;\n font-style: normal; }\n\n.wp-block-post-author__content {\n flex-grow: 1;\n flex-basis: 0; }\n\n.block-editor__container .wp-block-post-author__avatar img {\n margin: 0; }\n\n.block-editor__container .wp-block-post-author__name {\n margin: 0;\n margin-top: -8px;\n margin-bottom: -8px;\n font-weight: bold; }\n\n.block-editor__container .wp-block-post-author__bio {\n margin: 0;\n margin-top: 16px; }\n\n.wp-block[data-align=\"left\"] > .wp-block-pullquote p,\n.wp-block[data-align=\"right\"] > .wp-block-pullquote p {\n font-size: 20px; }\n\n.wp-block-pullquote blockquote p {\n font-size: 28px;\n line-height: 1.6; }\n\n.wp-block-pullquote.is-style-solid-color {\n margin-left: 0;\n margin-right: 0; }\n .wp-block-pullquote.is-style-solid-color blockquote p {\n font-size: 32px; }\n .wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation {\n text-transform: none;\n font-style: normal; }\n\n.wp-block-pullquote .wp-block-pullquote__citation {\n color: inherit; }\n\n.wp-block-quote__citation {\n font-size: 13px; }\n\n.block-editor .wp-block-rss {\n padding-left: 2.5em; }\n .block-editor .wp-block-rss.is-grid {\n padding-left: 0; }\n\n.wp-block-rss li a > div {\n display: inline; }\n\n.wp-block-rss__placeholder-form {\n display: flex;\n align-items: stretch; }\n .wp-block-rss__placeholder-form > * {\n margin-bottom: 8px; }\n @media (min-width: 782px) {\n .wp-block-rss__placeholder-form > * {\n margin-bottom: 0; } }\n\n.wp-block-rss__placeholder-input {\n display: flex;\n align-items: stretch;\n flex-grow: 1; }\n .wp-block-rss__placeholder-input .components-base-control__field {\n margin: 0;\n display: flex;\n align-items: stretch;\n flex-grow: 1;\n margin-right: 8px; }\n\n.wp-block-search__input {\n border-radius: 4px;\n border: 1px solid #7e8993;\n color: rgba(14, 28, 46, 0.62);\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px;\n padding: 8px; }\n .wp-block-search__input:focus {\n outline: none; }\n\n.wp-block-search__button {\n background: #f7f7f7;\n border-radius: 4px;\n border: 1px solid #ccc;\n box-shadow: inset 0 -1px 0 #ccc;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px;\n padding: 6px 10px; }\n\n.block-editor-block-list__block[data-type=\"core/separator\"] {\n padding-top: 0.1px;\n padding-bottom: 0.1px; }\n .block-editor-block-list__block[data-type=\"core/separator\"].block-editor-block-list__block {\n margin-top: 0;\n margin-bottom: 0; }\n\n.wp-block-shortcode {\n display: flex;\n flex-direction: column;\n padding: 14px;\n background-color: rgba(139, 139, 150, 0.1);\n font-size: 13px;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n margin-bottom: 28px; }\n .wp-block-shortcode label {\n display: flex;\n align-items: center;\n white-space: nowrap;\n font-weight: 600;\n flex-shrink: 0; }\n .wp-block-shortcode .block-editor-plain-text {\n max-height: 250px; }\n .wp-block-shortcode .dashicon {\n margin-right: 8px; }\n\n.wp-block-social-links .wp-social-link button {\n color: currentColor;\n padding: 6px; }\n\n.wp-block-social-links.is-style-pill-shape .wp-social-link button {\n padding-left: 16px;\n padding-right: 16px; }\n\n.wp-block-social-links div.block-editor-url-input {\n display: inline-block;\n margin-left: 8px; }\n\n.editor-styles-wrapper .wp-block-social-link {\n margin: 0;\n margin-right: 8px; }\n\n.editor-styles-wrapper .wp-block-social-links {\n padding: 0; }\n\n.wp-block-social-links .block-list-appender {\n margin: 0;\n display: flex;\n align-items: center; }\n\n.wp-block[data-align=\"center\"] > .wp-block-social-links {\n justify-content: center; }\n\n.block-editor-block-preview__content .wp-social-link:disabled {\n opacity: 1; }\n\n[data-type=\"core/social-links\"]:not(.is-selected):not(.has-child-selected) .wp-block-social-links {\n min-height: 36px; }\n\n[data-type=\"core/social-links\"] .wp-social-link__is-incomplete {\n transition: transform 0.1s ease;\n transform-origin: center center; }\n\n[data-type=\"core/social-links\"]:not(.is-selected):not(.has-child-selected) .wp-social-link__is-incomplete {\n opacity: 0;\n transform: scale(0);\n width: 0;\n padding: 0;\n margin-right: 0; }\n\n.wp-social-link.wp-social-link__is-incomplete {\n opacity: 0.5; }\n @media (prefers-reduced-motion: reduce) {\n .wp-social-link.wp-social-link__is-incomplete {\n transition-duration: 0s; } }\n\n.wp-block-social-links .is-selected .wp-social-link__is-incomplete,\n.wp-social-link.wp-social-link__is-incomplete:hover,\n.wp-social-link.wp-social-link__is-incomplete:focus {\n opacity: 1; }\n\n[data-type=\"core/social-links\"] .wp-social-link:focus {\n opacity: 1;\n box-shadow: 0 0 0 2px #fff, 0 0 0 4px #007cba;\n outline: 2px solid transparent; }\n\n.is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block[data-type=\"core/social-link\"].is-selected::after,\n.block-editor-block-list__layout .block-editor-block-list__block[data-type=\"core/social-link\"]:not([contenteditable]):focus::after {\n right: 8px; }\n\n.block-library-spacer__resize-container.has-show-handle {\n background: #f3f4f5; }\n .is-dark-theme .block-library-spacer__resize-container.has-show-handle {\n background: rgba(255, 255, 255, 0.15); }\n\n.block-library-spacer__resize-container {\n clear: both;\n margin-bottom: 28px; }\n .block-library-spacer__resize-container .components-resizable-box__handle::before {\n content: none; }\n\n.edit-post-visual-editor p.wp-block-subhead {\n color: #6c7781;\n font-size: 1.1em;\n font-style: italic; }\n\n.wp-block[data-align=\"left\"] > .wp-block-table,\n.wp-block[data-align=\"right\"] > .wp-block-table,\n.wp-block[data-align=\"center\"] > .wp-block-table {\n height: auto; }\n .wp-block[data-align=\"left\"] > .wp-block-table table,\n .wp-block[data-align=\"right\"] > .wp-block-table table,\n .wp-block[data-align=\"center\"] > .wp-block-table table {\n width: auto; }\n .wp-block[data-align=\"left\"] > .wp-block-table td,\n .wp-block[data-align=\"left\"] > .wp-block-table th,\n .wp-block[data-align=\"right\"] > .wp-block-table td,\n .wp-block[data-align=\"right\"] > .wp-block-table th,\n .wp-block[data-align=\"center\"] > .wp-block-table td,\n .wp-block[data-align=\"center\"] > .wp-block-table th {\n word-break: break-word; }\n\n.wp-block[data-align=\"center\"] > .wp-block-table {\n text-align: initial; }\n .wp-block[data-align=\"center\"] > .wp-block-table table {\n margin: 0 auto; }\n\n.wp-block-table {\n margin: 0; }\n .wp-block-table table {\n border-collapse: collapse; }\n .wp-block-table td,\n .wp-block-table th {\n border: 1px solid; }\n .wp-block-table td.is-selected,\n .wp-block-table th.is-selected {\n border-color: #00a0d2;\n box-shadow: inset 0 0 0 1px #00a0d2;\n border-style: double; }\n .wp-block-table figcaption {\n color: #555d66;\n font-size: 13px;\n text-align: center; }\n\n.blocks-table__placeholder-form.blocks-table__placeholder-form {\n display: flex;\n flex-direction: column;\n align-items: flex-start; }\n .blocks-table__placeholder-form.blocks-table__placeholder-form > * {\n margin-bottom: 8px; }\n @media (min-width: 782px) {\n .blocks-table__placeholder-form.blocks-table__placeholder-form {\n flex-direction: row;\n align-items: flex-end; }\n .blocks-table__placeholder-form.blocks-table__placeholder-form > * {\n margin-bottom: 0; } }\n\n.blocks-table__placeholder-input {\n width: 112px;\n margin-right: 8px;\n margin-bottom: 0; }\n .blocks-table__placeholder-input input {\n height: 36px; }\n .blocks-table__placeholder-input .components-base-control__field {\n margin-bottom: 0; }\n\n.block-editor .wp-block-tag-cloud a {\n display: inline-block;\n margin-right: 5px; }\n\n.block-editor .wp-block-tag-cloud span {\n display: inline-block;\n margin-left: 5px;\n color: #8f98a1;\n text-decoration: none; }\n\n.wp-block-template-part__placeholder-input-container {\n display: flex;\n flex-wrap: wrap;\n width: 100%; }\n\n.wp-block-template-part__placeholder-input {\n margin: 5px; }\n\n.wp-block-template-part__placeholder-preview {\n margin-bottom: 15px;\n width: 100%; }\n .wp-block-template-part__placeholder-preview .block-editor-block-preview__container {\n padding: 1px; }\n\n.wp-block-template-part__placeholder-preview-title {\n font-size: 15px;\n font-weight: 600;\n margin-bottom: 4px; }\n\n.wp-block-text-columns .block-editor-rich-text__editable:focus {\n outline: 1px solid #e2e4e7; }\n\npre.wp-block-verse {\n color: #191e23;\n white-space: nowrap;\n font-family: inherit;\n font-size: inherit;\n padding: 1em;\n overflow: auto; }\n\n.wp-block[data-align=\"center\"] > .wp-block-video {\n text-align: center; }\n\n.editor-video-poster-control .components-base-control__label {\n display: block; }\n\n.editor-video-poster-control .components-button {\n margin-right: 8px; }\n\n/**\n * Import styles from internal editor components used by the blocks.\n */\n.block-editor-block-list__layout .reusable-block-edit-panel {\n align-items: center;\n display: flex;\n flex-wrap: wrap;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px;\n padding: 6px 12px;\n border-radius: 2px;\n background-color: #fff;\n box-shadow: 0 0 0 1px #1e1e1e;\n outline: 1px solid transparent; }\n .block-editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__info {\n margin-right: auto; }\n .block-editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__label {\n margin-right: 8px;\n white-space: nowrap;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n font-size: 13px; }\n .block-editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__title {\n flex: 1 1 100%; }\n .block-editor-block-list__layout .reusable-block-edit-panel .components-button.reusable-block-edit-panel__button {\n flex-shrink: 0; }\n @media (min-width: 960px) {\n .block-editor-block-list__layout .reusable-block-edit-panel {\n flex-wrap: nowrap; }\n .block-editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__title {\n margin: 0; }\n .block-editor-block-list__layout .reusable-block-edit-panel .components-button.reusable-block-edit-panel__button {\n margin: 0 0 0 8px; } }\n\n.is-navigate-mode .is-selected .reusable-block-edit-panel {\n box-shadow: 0 0 0 1px #007cba; }\n .is-dark-theme .is-navigate-mode .is-selected .reusable-block-edit-panel {\n box-shadow: 0 0 0 1px #007cba; }\n\n/**\n * Editor Normalization Styles\n *\n * These are only output in the editor, but styles here are NOT prefixed .editor-styles-wrapper.\n * This allows us to create normalization styles that are easily overridden by editor styles.\n */\n.block-editor-block-list__block {\n margin-top: 28px;\n margin-bottom: 28px; }\n\n#end-resizable-editor-section {\n display: none; }\n","/**\n * Colors\n */\n/**\n * Breakpoints & Media Queries\n */\n/**\n * Colors\n */\n/**\n * Fonts & basic variables.\n */\n/**\n * Grid System.\n * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/\n */\n/**\n * Dimensions.\n */\n/**\n * Shadows.\n */\n/**\n * Editor widths.\n */\n/**\n * Block UI.\n */\n/**\n * Border radii.\n */\n/**\n * Breakpoint mixins\n */\n/**\n * Long content fade mixin\n *\n * Creates a fading overlay to signify that the content is longer\n * than the space allows.\n */\n/**\n * Focus styles.\n */\n/**\n * Applies editor left position to the selector passed as argument\n */\n/**\n * Styles that are reused verbatim in a few places\n */\n/**\n * Allows users to opt-out of animations via OS-level preferences.\n */\n/**\n * Reset default styles for JavaScript UI based pages.\n * This is a WP-admin agnostic reset\n */\n/**\n * Reset the WP Admin page styles for Gutenberg-like pages.\n */\n#start-resizable-editor-section {\n display: none; }\n\n.wp-block-audio figcaption {\n color: #555d66;\n font-size: 13px;\n text-align: center; }\n\n.wp-block-code {\n font-family: Menlo, Consolas, monaco, monospace;\n font-size: 14px;\n color: #23282d;\n padding: 0.8em 1em;\n border: 1px solid #e2e4e7;\n border-radius: 4px; }\n\n.wp-block-embed figcaption {\n color: #555d66;\n font-size: 13px;\n text-align: center; }\n\n.blocks-gallery-caption {\n color: #555d66;\n font-size: 13px;\n text-align: center; }\n\n.wp-block-image figcaption {\n color: #555d66;\n font-size: 13px;\n text-align: center; }\n\n.wp-block-pullquote {\n border-top: 4px solid #555d66;\n border-bottom: 4px solid #555d66;\n margin-bottom: 28px;\n color: #40464d; }\n .wp-block-pullquote cite,\n .wp-block-pullquote footer, .wp-block-pullquote__citation {\n color: #40464d;\n text-transform: uppercase;\n font-size: 13px;\n font-style: normal; }\n\n.wp-block-navigation ul,\n.wp-block-navigation ul li {\n list-style: none; }\n\n.wp-block-navigation-link.wp-block-navigation-link {\n margin: 0; }\n\n.wp-block-quote {\n border-left: 4px solid #000;\n margin: 0 0 28px 0;\n padding-left: 1em; }\n .wp-block-quote cite,\n .wp-block-quote footer, .wp-block-quote__citation {\n color: #6c7781;\n font-size: 13px;\n margin-top: 1em;\n position: relative;\n font-style: normal; }\n .wp-block-quote.has-text-align-right, .wp-block-quote.has-text-align-right {\n border-left: none;\n border-right: 4px solid #000;\n padding-left: 0;\n padding-right: 1em; }\n .wp-block-quote.has-text-align-center, .wp-block-quote.has-text-align-center {\n border: none;\n padding-left: 0; }\n .wp-block-quote.is-style-large, .wp-block-quote.is-large {\n border: none; }\n\n.wp-block-search .wp-block-search__label {\n font-weight: bold; }\n\n.wp-block-group.has-background {\n padding: 20px 30px;\n margin-top: 0;\n margin-bottom: 0; }\n\n.wp-block-separator {\n border: none;\n border-bottom: 2px solid #8f98a1;\n margin-left: auto;\n margin-right: auto; }\n .wp-block-separator:not(.is-style-wide):not(.is-style-dots) {\n max-width: 100px; }\n .wp-block-separator.has-background:not(.is-style-dots) {\n border-bottom: none;\n height: 1px; }\n .wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots) {\n height: 2px; }\n\n.wp-block-table {\n border-collapse: collapse; }\n .wp-block-table thead {\n border-bottom: 3px solid; }\n .wp-block-table tfoot {\n border-top: 3px solid; }\n .wp-block-table td,\n .wp-block-table th {\n padding: 0.5em;\n border: 1px solid;\n word-break: normal; }\n .wp-block-table figcaption {\n color: #555d66;\n font-size: 13px;\n text-align: center; }\n\n.wp-block-video figcaption {\n color: #555d66;\n font-size: 13px;\n text-align: center; }\n\n#end-resizable-editor-section {\n display: none; }\n","/**\n * Colors\n */\n/**\n * Breakpoints & Media Queries\n */\n/**\n * Colors\n */\n/**\n * Fonts & basic variables.\n */\n/**\n * Grid System.\n * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/\n */\n/**\n * Dimensions.\n */\n/**\n * Shadows.\n */\n/**\n * Editor widths.\n */\n/**\n * Block UI.\n */\n/**\n * Border radii.\n */\n/**\n * Breakpoint mixins\n */\n/**\n * Long content fade mixin\n *\n * Creates a fading overlay to signify that the content is longer\n * than the space allows.\n */\n/**\n * Focus styles.\n */\n/**\n * Applies editor left position to the selector passed as argument\n */\n/**\n * Styles that are reused verbatim in a few places\n */\n/**\n * Allows users to opt-out of animations via OS-level preferences.\n */\n/**\n * Reset default styles for JavaScript UI based pages.\n * This is a WP-admin agnostic reset\n */\n/**\n * Reset the WP Admin page styles for Gutenberg-like pages.\n */\n.components-panel__header.interface-complementary-area-header__small {\n background: #fff;\n padding-right: 4px; }\n .components-panel__header.interface-complementary-area-header__small .interface-complementary-area-header__small-title {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n width: 100%; }\n @media (min-width: 782px) {\n .components-panel__header.interface-complementary-area-header__small {\n display: none; } }\n\n.interface-complementary-area-header {\n padding-right: 4px;\n background: #f3f4f5; }\n .interface-complementary-area-header .components-button.has-icon {\n display: none;\n margin-left: auto; }\n .interface-complementary-area-header .components-button.has-icon ~ .components-button {\n margin-left: 0; }\n @media (min-width: 782px) {\n .interface-complementary-area-header .components-button.has-icon {\n display: flex; } }\n\n.interface-complementary-area {\n background: #fff;\n color: #555d66;\n overflow: visible; }\n @media (min-width: 600px) {\n .interface-complementary-area {\n z-index: auto;\n height: 100%;\n overflow: auto;\n -webkit-overflow-scrolling: touch; } }\n @media (min-width: 782px) {\n .interface-complementary-area {\n width: 280px; } }\n .interface-complementary-area > .components-panel {\n border-left: none;\n border-right: none;\n overflow: auto;\n -webkit-overflow-scrolling: touch;\n height: auto;\n max-height: calc(100vh - 146px);\n margin-top: -1px;\n margin-bottom: -1px;\n position: relative; }\n @media (min-width: 600px) {\n .interface-complementary-area > .components-panel {\n overflow: visible;\n height: auto;\n max-height: none; } }\n .interface-complementary-area > .components-panel .components-panel__header {\n position: fixed;\n z-index: 1;\n top: 0;\n left: 0;\n right: 0;\n height: 50px; }\n @media (min-width: 600px) {\n .interface-complementary-area > .components-panel .components-panel__header {\n position: inherit;\n top: auto;\n left: auto;\n right: auto; } }\n .interface-complementary-area p {\n margin-top: 0; }\n .interface-complementary-area h2,\n .interface-complementary-area h3 {\n font-size: 13px;\n color: #555d66;\n margin-bottom: 1.5em; }\n .interface-complementary-area hr {\n border-top: none;\n border-bottom: 1px solid #e2e4e7;\n margin: 1.5em 0; }\n .interface-complementary-area div.components-toolbar-group,\n .interface-complementary-area div.components-toolbar {\n box-shadow: none;\n margin-bottom: 1.5em; }\n .interface-complementary-area div.components-toolbar-group:last-child,\n .interface-complementary-area div.components-toolbar:last-child {\n margin-bottom: 0; }\n .interface-complementary-area .block-editor-skip-to-selected-block:focus {\n top: auto;\n right: 10px;\n bottom: 10px;\n left: auto; }\n\n@media (min-width: 782px) {\n body.js.is-fullscreen-mode {\n margin-top: -32px;\n height: calc(100% + 32px); }\n body.js.is-fullscreen-mode #adminmenumain,\n body.js.is-fullscreen-mode #wpadminbar {\n display: none; }\n body.js.is-fullscreen-mode #wpcontent,\n body.js.is-fullscreen-mode #wpfooter {\n margin-left: 0; } }\n\nhtml.interface-interface-skeleton__html-container {\n position: fixed;\n width: 100%; }\n @media (min-width: 782px) {\n html.interface-interface-skeleton__html-container {\n position: initial;\n width: initial; } }\n\n.interface-interface-skeleton {\n display: flex;\n flex-direction: column;\n height: auto;\n max-height: 100%;\n position: fixed;\n top: 46px;\n left: 0;\n right: 0;\n bottom: 0; }\n @media (min-width: 783px) {\n .interface-interface-skeleton {\n top: 32px; }\n .is-fullscreen-mode .interface-interface-skeleton {\n top: 0; } }\n\n.interface-interface-skeleton {\n /* Set left position when auto-fold is not on the body element. */\n left: 0; }\n @media (min-width: 783px) {\n .interface-interface-skeleton {\n left: 160px; } }\n\n.auto-fold .interface-interface-skeleton {\n /* Auto fold is when on smaller breakpoints, nav menu auto collapses. */ }\n @media (min-width: 783px) {\n .auto-fold .interface-interface-skeleton {\n left: 36px; } }\n @media (min-width: 961px) {\n .auto-fold .interface-interface-skeleton {\n left: 160px; } }\n\n/* Sidebar manually collapsed. */\n.folded .interface-interface-skeleton {\n left: 0; }\n @media (min-width: 783px) {\n .folded .interface-interface-skeleton {\n left: 36px; } }\n\n/* Mobile menu opened. */\n@media (max-width: 783px) {\n .auto-fold .wp-responsive-open .interface-interface-skeleton {\n left: 190px; } }\n\n/* In small screens with responsive menu expanded there is small white space. */\n@media (max-width: 600px) {\n .auto-fold .wp-responsive-open .interface-interface-skeleton {\n margin-left: -18px; } }\n\nbody.is-fullscreen-mode .interface-interface-skeleton {\n left: 0 !important; }\n\n.interface-interface-skeleton__body {\n flex-grow: 1;\n display: flex;\n overflow: auto;\n overscroll-behavior-y: none; }\n\n.interface-interface-skeleton__content {\n flex-grow: 1;\n display: flex;\n flex-direction: column;\n overflow: auto; }\n\n.interface-interface-skeleton__left-sidebar,\n.interface-interface-skeleton__sidebar {\n display: block;\n width: auto;\n flex-shrink: 0;\n position: absolute;\n z-index: 100000;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n background: #fff;\n color: #1e1e1e; }\n @media (min-width: 782px) {\n .interface-interface-skeleton__left-sidebar,\n .interface-interface-skeleton__sidebar {\n position: relative !important;\n z-index: 90; } }\n\n@media (min-width: 782px) {\n .interface-interface-skeleton__sidebar {\n overflow: auto;\n border-left: 1px solid #e2e4e7; } }\n\n@media (min-width: 782px) {\n .interface-interface-skeleton__left-sidebar {\n border-right: 1px solid #e2e4e7; } }\n\n.interface-interface-skeleton__header {\n flex-shrink: 0;\n height: auto;\n border-bottom: 1px solid #e2e4e7;\n z-index: 30;\n color: #1e1e1e;\n position: -webkit-sticky;\n position: sticky;\n top: 0; }\n @media (min-width: 600px) {\n .interface-interface-skeleton__header {\n position: initial;\n top: 0; } }\n\n.interface-interface-skeleton__footer {\n height: auto;\n flex-shrink: 0;\n border-top: 1px solid #e2e4e7;\n color: #1e1e1e;\n display: none; }\n @media (min-width: 782px) {\n .interface-interface-skeleton__footer {\n display: block; } }\n\n.interface-interface-skeleton__actions {\n z-index: 100000;\n position: fixed !important;\n top: -9999em;\n bottom: auto;\n left: auto;\n right: 0;\n width: 280px;\n color: #1e1e1e; }\n .interface-interface-skeleton__actions:focus {\n top: auto;\n bottom: 0; }\n\n.interface-pinned-items {\n display: none; }\n @media (min-width: 600px) {\n .interface-pinned-items {\n display: flex; } }\n .interface-pinned-items .components-button {\n margin-left: 4px; }\n .interface-pinned-items .components-button.is-pressed {\n margin-left: 5px; }\n .interface-pinned-items .components-button svg {\n max-width: 24px;\n max-height: 24px; }\n\n.edit-post-header {\n height: 60px;\n background: #fff;\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n max-width: 100vw; }\n @media (min-width: 280px) {\n .edit-post-header {\n flex-wrap: nowrap; } }\n .edit-post-header > .edit-post-header__settings {\n order: 1; }\n @supports ((position: -webkit-sticky) or (position: sticky)) {\n .edit-post-header > .edit-post-header__settings {\n order: initial; } }\n\n.edit-post-header__toolbar {\n display: flex;\n flex-grow: 1;\n padding-left: 8px; }\n @media (min-width: 600px) {\n .edit-post-header__toolbar {\n padding-left: 24px; } }\n .edit-post-header__toolbar .table-of-contents {\n display: none; }\n @media (min-width: 600px) {\n .edit-post-header__toolbar .table-of-contents {\n display: block; } }\n\n.edit-post-header__settings {\n display: inline-flex;\n align-items: center;\n flex-wrap: wrap;\n padding-right: 4px; }\n @media (min-width: 600px) {\n .edit-post-header__settings {\n padding-right: 16px; } }\n\n/**\n * Buttons in the Toolbar\n */\n.edit-post-header__settings .components-button.editor-post-save-draft,\n.edit-post-header__settings .editor-post-saved-state,\n.edit-post-header__settings .components-button.editor-post-switch-to-draft,\n.edit-post-header__settings .components-button.editor-post-preview,\n.edit-post-header__settings .components-button.block-editor-post-preview__dropdown,\n.edit-post-header__settings .components-button.editor-post-publish-button,\n.edit-post-header__settings .components-button.editor-post-publish-panel__toggle {\n padding: 0 6px;\n margin-right: 4px; }\n @media (min-width: 600px) {\n .edit-post-header__settings .components-button.editor-post-save-draft,\n .edit-post-header__settings .editor-post-saved-state,\n .edit-post-header__settings .components-button.editor-post-switch-to-draft,\n .edit-post-header__settings .components-button.editor-post-preview,\n .edit-post-header__settings .components-button.block-editor-post-preview__dropdown,\n .edit-post-header__settings .components-button.editor-post-publish-button,\n .edit-post-header__settings .components-button.editor-post-publish-panel__toggle {\n padding: 0 12px;\n margin-right: 12px; } }\n\n.edit-post-header-preview__grouping-external {\n display: flex;\n position: relative;\n padding-bottom: 0; }\n\n.edit-post-header-preview__button-external {\n padding-left: 8px;\n margin-right: auto;\n width: 100%;\n display: flex;\n justify-content: flex-start; }\n .edit-post-header-preview__button-external svg {\n margin-right: 8px; }\n\n.edit-post-post-preview-dropdown .components-popover__content {\n padding-bottom: 0; }\n\n.edit-post-fullscreen-mode-close.has-icon {\n display: none; }\n @media (min-width: 782px) {\n .edit-post-fullscreen-mode-close.has-icon {\n display: flex;\n align-items: center;\n align-self: stretch;\n border: none;\n background: #23282e;\n color: #fff;\n border-radius: 0;\n height: auto;\n width: 60px; }\n .edit-post-fullscreen-mode-close.has-icon:hover {\n background: #32373d; }\n .edit-post-fullscreen-mode-close.has-icon:active {\n color: #fff; }\n .edit-post-fullscreen-mode-close.has-icon:focus {\n box-shadow: inset 0 0 0 1.5px #007cba, inset 0 0 0 2.5px #fff; }\n body.admin-color-sunrise .edit-post-fullscreen-mode-close.has-icon:focus {\n box-shadow: inset 0 0 0 1.5px #d1864a, inset 0 0 0 2.5px #fff; }\n body.admin-color-ocean .edit-post-fullscreen-mode-close.has-icon:focus {\n box-shadow: inset 0 0 0 1.5px #a3b9a2, inset 0 0 0 2.5px #fff; }\n body.admin-color-midnight .edit-post-fullscreen-mode-close.has-icon:focus {\n box-shadow: inset 0 0 0 1.5px #e14d43, inset 0 0 0 2.5px #fff; }\n body.admin-color-ectoplasm .edit-post-fullscreen-mode-close.has-icon:focus {\n box-shadow: inset 0 0 0 1.5px #a7b656, inset 0 0 0 2.5px #fff; }\n body.admin-color-coffee .edit-post-fullscreen-mode-close.has-icon:focus {\n box-shadow: inset 0 0 0 1.5px #c2a68c, inset 0 0 0 2.5px #fff; }\n body.admin-color-blue .edit-post-fullscreen-mode-close.has-icon:focus {\n box-shadow: inset 0 0 0 1.5px #d9ab59, inset 0 0 0 2.5px #fff; }\n body.admin-color-light .edit-post-fullscreen-mode-close.has-icon:focus {\n box-shadow: inset 0 0 0 1.5px #0085ba, inset 0 0 0 2.5px #fff; } }\n\n.edit-post-header-toolbar {\n display: inline-flex;\n align-items: center; }\n .edit-post-header-toolbar > .components-button {\n display: none; }\n @media (min-width: 600px) {\n .edit-post-header-toolbar > .components-button {\n display: inline-flex; } }\n .edit-post-header-toolbar > .edit-post-header-toolbar__inserter-toggle {\n display: inline-flex; }\n .edit-post-header-toolbar .block-editor-block-navigation {\n display: none; }\n @media (min-width: 600px) {\n .edit-post-header-toolbar .block-editor-block-navigation {\n display: flex; } }\n\n.edit-post-header-toolbar__block-toolbar {\n position: absolute;\n top: 61px;\n left: 0;\n right: 0;\n background: #fff;\n border-bottom: 1px solid #e2e4e7; }\n .edit-post-header-toolbar__block-toolbar:empty {\n display: none; }\n .edit-post-header-toolbar__block-toolbar .block-editor-block-toolbar .components-toolbar-group,\n .edit-post-header-toolbar__block-toolbar .block-editor-block-toolbar .components-toolbar {\n border-top: none;\n border-bottom: none; }\n .is-sidebar-opened .edit-post-header-toolbar__block-toolbar {\n display: none; }\n @media (min-width: 782px) {\n .is-sidebar-opened .edit-post-header-toolbar__block-toolbar {\n display: block;\n right: 280px; } }\n @media (min-width: 1280px) {\n .edit-post-header-toolbar__block-toolbar {\n padding-left: 8px;\n position: static;\n left: auto;\n right: auto;\n background: none;\n border-bottom: none; }\n .is-sidebar-opened .edit-post-header-toolbar__block-toolbar {\n right: auto; }\n .edit-post-header-toolbar__block-toolbar .block-editor-block-toolbar {\n border-left: 1px solid #e2e4e7; }\n .edit-post-header-toolbar__block-toolbar .block-editor-block-toolbar .components-toolbar-group,\n .edit-post-header-toolbar__block-toolbar .block-editor-block-toolbar .components-toolbar {\n height: 60px;\n padding: 6px 0; } }\n\n.edit-post-header-toolbar .edit-post-header-toolbar__inserter-toggle {\n margin-right: 8px;\n min-width: 32px;\n width: 32px;\n height: 32px;\n padding: 0; }\n\n.edit-post-more-menu {\n margin-left: -4px; }\n .edit-post-more-menu .components-button {\n width: auto;\n padding: 0 2px; }\n @media (min-width: 600px) {\n .edit-post-more-menu {\n margin-left: 0; }\n .edit-post-more-menu .components-button {\n padding: 0 4px; } }\n\n.edit-post-more-menu__content .components-popover__content {\n min-width: 260px; }\n @media (min-width: 480px) {\n .edit-post-more-menu__content .components-popover__content {\n width: auto;\n max-width: 480px; } }\n .edit-post-more-menu__content .components-popover__content .components-dropdown-menu__menu {\n padding: 0; }\n\n.components-popover.edit-post-more-menu__content {\n z-index: 99998; }\n\n.edit-post-keyboard-shortcut-help-modal__section {\n margin: 0 0 2rem 0; }\n\n.edit-post-keyboard-shortcut-help-modal__main-shortcuts .edit-post-keyboard-shortcut-help-modal__shortcut-list {\n margin-top: -25px; }\n\n.edit-post-keyboard-shortcut-help-modal__section-title {\n font-size: 0.9rem;\n font-weight: 600; }\n\n.edit-post-keyboard-shortcut-help-modal__shortcut {\n display: flex;\n align-items: baseline;\n padding: 0.6rem 0;\n border-top: 1px solid #e2e4e7;\n margin-bottom: 0; }\n .edit-post-keyboard-shortcut-help-modal__shortcut:last-child {\n border-bottom: 1px solid #e2e4e7; }\n .edit-post-keyboard-shortcut-help-modal__shortcut:empty {\n display: none; }\n\n.edit-post-keyboard-shortcut-help-modal__shortcut-term {\n font-weight: 600;\n margin: 0 0 0 1rem;\n text-align: right; }\n\n.edit-post-keyboard-shortcut-help-modal__shortcut-description {\n flex: 1;\n margin: 0;\n flex-basis: auto; }\n\n.edit-post-keyboard-shortcut-help-modal__shortcut-key-combination {\n display: block;\n background: none;\n margin: 0;\n padding: 0; }\n .edit-post-keyboard-shortcut-help-modal__shortcut-key-combination + .edit-post-keyboard-shortcut-help-modal__shortcut-key-combination {\n margin-top: 10px; }\n\n.edit-post-keyboard-shortcut-help-modal__shortcut-key {\n padding: 0.25rem 0.5rem;\n border-radius: 8%;\n margin: 0 0.2rem 0 0.2rem; }\n .edit-post-keyboard-shortcut-help-modal__shortcut-key:last-child {\n margin: 0 0 0 0.2rem; }\n\n.edit-post-layout__metaboxes {\n flex-shrink: 0; }\n\n.edit-post-layout__metaboxes:not(:empty) {\n border-top: 1px solid #e2e4e7;\n padding: 10px 0 10px;\n clear: both; }\n .edit-post-layout__metaboxes:not(:empty) .edit-post-meta-boxes-area {\n margin: auto 20px; }\n\n.edit-post-layout .components-editor-notices__snackbar {\n position: fixed;\n right: 0;\n bottom: 40px;\n padding-left: 16px;\n padding-right: 16px; }\n\n.edit-post-layout .components-editor-notices__snackbar {\n /* Set left position when auto-fold is not on the body element. */\n left: 0; }\n @media (min-width: 783px) {\n .edit-post-layout .components-editor-notices__snackbar {\n left: 160px; } }\n\n.auto-fold .edit-post-layout .components-editor-notices__snackbar {\n /* Auto fold is when on smaller breakpoints, nav menu auto collapses. */ }\n @media (min-width: 783px) {\n .auto-fold .edit-post-layout .components-editor-notices__snackbar {\n left: 36px; } }\n @media (min-width: 961px) {\n .auto-fold .edit-post-layout .components-editor-notices__snackbar {\n left: 160px; } }\n\n/* Sidebar manually collapsed. */\n.folded .edit-post-layout .components-editor-notices__snackbar {\n left: 0; }\n @media (min-width: 783px) {\n .folded .edit-post-layout .components-editor-notices__snackbar {\n left: 36px; } }\n\n/* Mobile menu opened. */\n@media (max-width: 783px) {\n .auto-fold .wp-responsive-open .edit-post-layout .components-editor-notices__snackbar {\n left: 190px; } }\n\n/* In small screens with responsive menu expanded there is small white space. */\n@media (max-width: 600px) {\n .auto-fold .wp-responsive-open .edit-post-layout .components-editor-notices__snackbar {\n margin-left: -18px; } }\n\nbody.is-fullscreen-mode .edit-post-layout .components-editor-notices__snackbar {\n left: 0 !important; }\n\n.edit-post-layout .editor-post-publish-panel {\n position: fixed;\n z-index: 100001;\n top: 46px;\n bottom: 0;\n right: 0;\n left: 0;\n overflow: auto; }\n @media (min-width: 782px) {\n .edit-post-layout .editor-post-publish-panel {\n z-index: 99998;\n top: 32px;\n left: auto;\n width: 280px;\n border-left: 1px solid #e2e4e7;\n transform: translateX(100%);\n animation: edit-post-post-publish-panel__slide-in-animation 0.1s forwards; } }\n @media (min-width: 782px) and (prefers-reduced-motion: reduce) {\n .edit-post-layout .editor-post-publish-panel {\n animation-duration: 1ms; } }\n @media (min-width: 782px) {\n body.is-fullscreen-mode .edit-post-layout .editor-post-publish-panel {\n top: 0; }\n .is-focusing-regions .edit-post-layout .editor-post-publish-panel {\n transform: translateX(0%); } }\n\n@keyframes edit-post-post-publish-panel__slide-in-animation {\n 100% {\n transform: translateX(0%); } }\n\n.interface-interface-skeleton__sidebar > div {\n height: 100%; }\n\n.edit-post-layout .editor-post-publish-panel__header-publish-button {\n justify-content: center; }\n\n.edit-post-layout__toggle-publish-panel,\n.edit-post-layout__toogle-sidebar-panel,\n.edit-post-layout__toggle-entities-saved-states-panel {\n z-index: 100000;\n position: fixed !important;\n top: -9999em;\n bottom: auto;\n left: auto;\n right: 0;\n width: 280px;\n background-color: #fff;\n border: 1px dotted #e2e4e7;\n height: auto !important;\n padding: 24px;\n display: flex;\n justify-content: center; }\n .interface-interface-skeleton__actions:focus .edit-post-layout__toggle-publish-panel,\n .interface-interface-skeleton__actions:focus-within .edit-post-layout__toggle-publish-panel,\n .interface-interface-skeleton__actions:focus .edit-post-layout__toggle-publish-panel,\n .interface-interface-skeleton__actions:focus-within .edit-post-layout__toggle-publish-panel, .interface-interface-skeleton__actions:focus\n .edit-post-layout__toogle-sidebar-panel,\n .interface-interface-skeleton__actions:focus-within\n .edit-post-layout__toogle-sidebar-panel,\n .interface-interface-skeleton__actions:focus\n .edit-post-layout__toogle-sidebar-panel,\n .interface-interface-skeleton__actions:focus-within\n .edit-post-layout__toogle-sidebar-panel, .interface-interface-skeleton__actions:focus\n .edit-post-layout__toggle-entities-saved-states-panel,\n .interface-interface-skeleton__actions:focus-within\n .edit-post-layout__toggle-entities-saved-states-panel,\n .interface-interface-skeleton__actions:focus\n .edit-post-layout__toggle-entities-saved-states-panel,\n .interface-interface-skeleton__actions:focus-within\n .edit-post-layout__toggle-entities-saved-states-panel {\n top: auto;\n bottom: 0; }\n\n.edit-post-layout__footer {\n display: none;\n z-index: 30; }\n @media (min-width: 782px) {\n .edit-post-layout__footer {\n display: flex;\n background: #fff;\n height: 24px;\n align-items: center;\n font-size: 13px;\n padding: 0 18px; } }\n\n.edit-post-layout .interface-interface-skeleton__content {\n background-color: #ccd0d4; }\n\n.edit-post-layout__inserter-panel {\n height: 100%;\n display: flex;\n flex-direction: column; }\n\n.edit-post-layout__inserter-panel-header {\n padding-top: 8px;\n padding-right: 8px;\n display: flex;\n justify-content: flex-end; }\n @media (min-width: 782px) {\n .edit-post-layout__inserter-panel-header {\n display: none; } }\n\n.edit-post-layout__inserter-panel-content {\n height: calc(100% - 36px - 8px); }\n @media (min-width: 782px) {\n .edit-post-layout__inserter-panel-content {\n height: 100%; } }\n\n@media (min-width: 600px) {\n .edit-post-manage-blocks-modal {\n height: calc(100% - 60px - 60px); } }\n\n.edit-post-manage-blocks-modal .components-modal__content {\n padding-bottom: 0;\n display: flex;\n flex-direction: column; }\n\n.edit-post-manage-blocks-modal .components-modal__header {\n flex-shrink: 0;\n margin-bottom: 0; }\n\n.edit-post-manage-blocks-modal__content {\n display: flex;\n flex-direction: column;\n flex: 0 1 100%;\n min-height: 0; }\n\n.edit-post-manage-blocks-modal__no-results {\n font-style: italic;\n padding: 24px 0;\n text-align: center; }\n\n.edit-post-manage-blocks-modal__search {\n margin: 16px 0; }\n .edit-post-manage-blocks-modal__search .components-base-control__field {\n margin-bottom: 0; }\n .edit-post-manage-blocks-modal__search .components-base-control__label {\n margin-top: -4px; }\n .edit-post-manage-blocks-modal__search input[type=\"search\"].components-text-control__input {\n padding: 12px;\n border-radius: 4px; }\n\n.edit-post-manage-blocks-modal__disabled-blocks-count {\n border-top: 1px solid #e2e4e7;\n margin-left: -24px;\n margin-right: -24px;\n padding-top: 0.6rem;\n padding-bottom: 0.6rem;\n padding-left: 24px;\n padding-right: 24px;\n background-color: #f3f4f5; }\n\n.edit-post-manage-blocks-modal__category {\n margin: 0 0 2rem 0; }\n\n.edit-post-manage-blocks-modal__category-title {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n padding: 16px 0;\n background-color: #fff;\n z-index: 1; }\n .edit-post-manage-blocks-modal__category-title .components-base-control__field {\n margin-bottom: 0; }\n .edit-post-manage-blocks-modal__category-title .components-checkbox-control__label {\n font-size: 0.9rem;\n font-weight: 600; }\n\n.edit-post-manage-blocks-modal__show-all {\n margin-right: 8px; }\n\n.edit-post-manage-blocks-modal__checklist {\n margin-top: 0; }\n\n.edit-post-manage-blocks-modal__checklist-item {\n margin-bottom: 0;\n padding-left: 16px;\n border-top: 1px solid #e2e4e7; }\n .edit-post-manage-blocks-modal__checklist-item:last-child {\n border-bottom: 1px solid #e2e4e7; }\n .edit-post-manage-blocks-modal__checklist-item .components-base-control__field {\n align-items: center;\n display: flex;\n margin: 0; }\n .components-modal__content .edit-post-manage-blocks-modal__checklist-item.components-checkbox-control__input-container {\n margin: 0 8px; }\n .edit-post-manage-blocks-modal__checklist-item .components-checkbox-control__label {\n display: flex;\n align-items: center;\n justify-content: space-between;\n flex-grow: 1;\n padding: 0.6rem 0 0.6rem 10px; }\n .edit-post-manage-blocks-modal__checklist-item .block-editor-block-icon {\n margin-right: 10px;\n fill: #555d66; }\n\n.edit-post-manage-blocks-modal__results {\n height: 100%;\n overflow: auto;\n margin-left: -24px;\n margin-right: -24px;\n padding-left: 24px;\n padding-right: 24px;\n border-top: 1px solid #e2e4e7; }\n\n.edit-post-meta-boxes-area {\n position: relative;\n /**\n\t * The wordpress default for most meta-box elements is content-box. Some\n\t * elements such as textarea and input are set to border-box in forms.css.\n\t * These elements therefore specifically set back to border-box here, while\n\t * other elements (such as .button) are unaffected by Gutenberg's style\n\t * because of their higher specificity.\n\t */\n /* Match width and positioning of the meta boxes. Override default styles. */\n /* Override Default meta box stylings */ }\n .edit-post-meta-boxes-area__container,\n .edit-post-meta-boxes-area .inside {\n box-sizing: content-box; }\n .edit-post-meta-boxes-area textarea,\n .edit-post-meta-boxes-area input {\n box-sizing: border-box; }\n .edit-post-meta-boxes-area #poststuff {\n margin: 0 auto;\n padding-top: 0;\n min-width: auto; }\n .edit-post-meta-boxes-area #poststuff h3.hndle,\n .edit-post-meta-boxes-area #poststuff .stuffbox > h3,\n .edit-post-meta-boxes-area #poststuff h2.hndle {\n /* WordPress selectors yolo */\n border-bottom: 1px solid #e2e4e7;\n box-sizing: border-box;\n color: inherit;\n font-weight: 600;\n outline: none;\n padding: 15px;\n position: relative;\n width: 100%; }\n .edit-post-meta-boxes-area .postbox {\n border: 0;\n color: inherit;\n margin-bottom: 0; }\n .edit-post-meta-boxes-area .postbox > .inside {\n border-bottom: 1px solid #e2e4e7;\n color: inherit;\n padding: 0 14px 14px;\n margin: 0; }\n .edit-post-meta-boxes-area .postbox .handlediv {\n height: 44px;\n width: 44px; }\n .edit-post-meta-boxes-area.is-loading::before {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n content: \"\";\n background: transparent;\n z-index: 1; }\n .edit-post-meta-boxes-area .components-spinner {\n position: absolute;\n top: 10px;\n right: 20px;\n z-index: 5; }\n .edit-post-meta-boxes-area .is-hidden {\n display: none; }\n .edit-post-meta-boxes-area .metabox-location-side .postbox input[type=\"checkbox\"] {\n border: 1px solid #6c7781; }\n .edit-post-meta-boxes-area .metabox-location-side .postbox input[type=\"checkbox\"]:checked {\n background: #fff;\n border-color: #6c7781; }\n .edit-post-meta-boxes-area .metabox-location-side .postbox input[type=\"checkbox\"]::before {\n margin: -3px -4px; }\n\n.edit-post-meta-boxes-area__clear {\n clear: both; }\n\n.components-panel__header.edit-post-sidebar__panel-tabs {\n justify-content: flex-start;\n padding-left: 0;\n padding-right: 4px;\n border-top: 0;\n margin-top: 0; }\n .components-panel__header.edit-post-sidebar__panel-tabs .components-button.has-icon {\n display: none;\n margin-left: auto; }\n @media (min-width: 782px) {\n .components-panel__header.edit-post-sidebar__panel-tabs .components-button.has-icon {\n display: flex; } }\n\n.components-panel__body.is-opened.edit-post-last-revision__panel {\n padding: 0; }\n\n.editor-post-last-revision__title.components-button {\n padding: 13px 16px; }\n\n.editor-post-author__select {\n margin: -5px 0;\n width: 100%; }\n @supports ((position: -webkit-sticky) or (position: sticky)) {\n .editor-post-author__select {\n width: auto; } }\n\n.edit-post-post-link__link-post-name {\n font-weight: 600; }\n\n.edit-post-post-link__preview-label {\n font-weight: 400;\n margin: 0; }\n\n.edit-post-post-link__link {\n text-align: left;\n word-wrap: break-word;\n display: block; }\n\n/* rtl:begin:ignore */\n.edit-post-post-link__preview-link-container {\n direction: ltr; }\n\n/* rtl:end:ignore */\n.edit-post-post-schedule {\n width: 100%;\n position: relative; }\n\n.components-button.edit-post-post-schedule__toggle {\n text-align: right; }\n\n.editor-post-slug__input {\n margin: -5px 0;\n padding: 2px; }\n\n.edit-post-post-status .edit-post-post-publish-dropdown__switch-to-draft {\n margin-top: 15px;\n width: 100%;\n text-align: center; }\n\n.edit-post-post-visibility {\n width: 100%; }\n\n@media (min-width: 782px) {\n .edit-post-post-visibility__dialog .components-popover__content {\n width: 257px; } }\n\n.edit-post-post-visibility__dialog-legend {\n font-weight: 600; }\n\n.edit-post-post-visibility__choice {\n margin: 10px 0; }\n\n.edit-post-post-visibility__dialog-radio,\n.edit-post-post-visibility__dialog-label {\n vertical-align: top; }\n\n.edit-post-post-visibility__dialog-password-input {\n width: calc(100% - 20px);\n margin-left: 20px; }\n\n.edit-post-post-visibility__dialog-info {\n color: #7e8993;\n padding-left: 20px;\n font-style: italic;\n margin: 4px 0 0;\n line-height: 1.4; }\n\n.components-panel__header.edit-post-sidebar__panel-tabs {\n justify-content: flex-start;\n padding-left: 0;\n padding-right: 4px;\n border-top: 0; }\n .components-panel__header.edit-post-sidebar__panel-tabs ul {\n display: flex; }\n .components-panel__header.edit-post-sidebar__panel-tabs li {\n margin: 0; }\n\n.components-button.edit-post-sidebar__panel-tab {\n border-radius: 0;\n height: 49px;\n background: transparent;\n border: none;\n box-shadow: none;\n cursor: pointer;\n display: inline-block;\n padding: 3px 15px;\n margin-left: 0;\n font-weight: 400;\n color: #191e23; }\n .components-button.edit-post-sidebar__panel-tab::after {\n content: attr(data-label);\n display: block;\n font-weight: 600;\n height: 0;\n overflow: hidden;\n speak: none;\n visibility: hidden; }\n .components-button.edit-post-sidebar__panel-tab.is-active {\n box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #007cba;\n font-weight: 600;\n position: relative; }\n body.admin-color-sunrise .components-button.edit-post-sidebar__panel-tab.is-active {\n box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #d1864a; }\n body.admin-color-ocean .components-button.edit-post-sidebar__panel-tab.is-active {\n box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #a3b9a2; }\n body.admin-color-midnight .components-button.edit-post-sidebar__panel-tab.is-active {\n box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #e14d43; }\n body.admin-color-ectoplasm .components-button.edit-post-sidebar__panel-tab.is-active {\n box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #a7b656; }\n body.admin-color-coffee .components-button.edit-post-sidebar__panel-tab.is-active {\n box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #c2a68c; }\n body.admin-color-blue .components-button.edit-post-sidebar__panel-tab.is-active {\n box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #d9ab59; }\n body.admin-color-light .components-button.edit-post-sidebar__panel-tab.is-active {\n box-shadow: inset 0 0 0 1.5px transparent, inset 0 -4px 0 0 #0085ba; }\n .components-button.edit-post-sidebar__panel-tab.is-active::before {\n content: \"\";\n position: absolute;\n top: 0;\n bottom: 1px;\n right: 0;\n left: 0;\n border-bottom: 4px solid transparent; }\n .components-button.edit-post-sidebar__panel-tab:focus {\n box-shadow: inset 0 0 0 1.5px #007cba; }\n body.admin-color-sunrise .components-button.edit-post-sidebar__panel-tab:focus {\n box-shadow: inset 0 0 0 1.5px #d1864a; }\n body.admin-color-ocean .components-button.edit-post-sidebar__panel-tab:focus {\n box-shadow: inset 0 0 0 1.5px #a3b9a2; }\n body.admin-color-midnight .components-button.edit-post-sidebar__panel-tab:focus {\n box-shadow: inset 0 0 0 1.5px #e14d43; }\n body.admin-color-ectoplasm .components-button.edit-post-sidebar__panel-tab:focus {\n box-shadow: inset 0 0 0 1.5px #a7b656; }\n body.admin-color-coffee .components-button.edit-post-sidebar__panel-tab:focus {\n box-shadow: inset 0 0 0 1.5px #c2a68c; }\n body.admin-color-blue .components-button.edit-post-sidebar__panel-tab:focus {\n box-shadow: inset 0 0 0 1.5px #d9ab59; }\n body.admin-color-light .components-button.edit-post-sidebar__panel-tab:focus {\n box-shadow: inset 0 0 0 1.5px #0085ba; }\n .components-button.edit-post-sidebar__panel-tab.is-active:focus {\n box-shadow: inset 0 0 0 1.5px #007cba, inset 0 -4px 0 0 #007cba; }\n body.admin-color-sunrise .components-button.edit-post-sidebar__panel-tab.is-active:focus {\n box-shadow: inset 0 0 0 1.5px #d1864a, inset 0 -4px 0 0 #d1864a; }\n body.admin-color-ocean .components-button.edit-post-sidebar__panel-tab.is-active:focus {\n box-shadow: inset 0 0 0 1.5px #a3b9a2, inset 0 -4px 0 0 #a3b9a2; }\n body.admin-color-midnight .components-button.edit-post-sidebar__panel-tab.is-active:focus {\n box-shadow: inset 0 0 0 1.5px #e14d43, inset 0 -4px 0 0 #e14d43; }\n body.admin-color-ectoplasm .components-button.edit-post-sidebar__panel-tab.is-active:focus {\n box-shadow: inset 0 0 0 1.5px #a7b656, inset 0 -4px 0 0 #a7b656; }\n body.admin-color-coffee .components-button.edit-post-sidebar__panel-tab.is-active:focus {\n box-shadow: inset 0 0 0 1.5px #c2a68c, inset 0 -4px 0 0 #c2a68c; }\n body.admin-color-blue .components-button.edit-post-sidebar__panel-tab.is-active:focus {\n box-shadow: inset 0 0 0 1.5px #d9ab59, inset 0 -4px 0 0 #d9ab59; }\n body.admin-color-light .components-button.edit-post-sidebar__panel-tab.is-active:focus {\n box-shadow: inset 0 0 0 1.5px #0085ba, inset 0 -4px 0 0 #0085ba; }\n\n.edit-post-text-editor {\n position: relative;\n width: 100%;\n background-color: #fff;\n flex-grow: 1;\n padding-top: 56px; }\n .edit-post-text-editor .wp-block.editor-post-title {\n max-width: none; }\n .edit-post-text-editor .wp-block.editor-post-title textarea {\n border: 1px solid #ccc;\n margin-bottom: -1px;\n padding: 16px; }\n .edit-post-text-editor .wp-block.editor-post-title textarea:focus {\n border: 1px solid #1e1e1e; }\n @media (min-width: 600px) {\n .edit-post-text-editor .wp-block.editor-post-title {\n padding: 0; } }\n\n.edit-post-text-editor__toolbar {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n padding: 12px;\n display: flex; }\n @media (min-width: 960px) {\n .edit-post-text-editor__toolbar {\n padding: 12px 24px; } }\n .edit-post-text-editor__toolbar h2 {\n line-height: 36px;\n margin: 0 auto 0 0;\n font-size: 13px;\n color: #1e1e1e; }\n .edit-post-text-editor__toolbar .components-button svg {\n order: 1; }\n\n.edit-post-text-editor__body {\n width: 100%;\n padding: 16px 12px 48px 12px;\n max-width: 1280px;\n margin-left: auto;\n margin-right: auto; }\n @media (min-width: 960px) {\n .edit-post-text-editor__body {\n padding: 16px 24px 96px 24px; } }\n .edit-post-text-editor__body .editor-post-title__input.editor-post-title__input.editor-post-title__input {\n font-family: Menlo, Consolas, monaco, monospace;\n font-size: 2em; }\n\n.edit-post-visual-editor {\n position: relative;\n padding-top: 50px;\n background-color: #fff;\n flex: 1 1 auto; }\n .edit-post-visual-editor .components-button {\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif; }\n @supports ((position: -webkit-sticky) or (position: sticky)) {\n .edit-post-visual-editor {\n flex-basis: 100%; } }\n\n.edit-post-visual-editor > .block-editor__typewriter,\n.edit-post-visual-editor > .block-editor__typewriter > div,\n.edit-post-visual-editor > .block-editor__typewriter > div > .block-editor-writing-flow,\n.edit-post-visual-editor > .block-editor__typewriter > div > .block-editor-writing-flow > .block-editor-writing-flow__click-redirect {\n height: 100%; }\n\n.edit-post-visual-editor .block-editor-writing-flow__click-redirect {\n min-height: 40vh;\n width: 100%; }\n\n.has-metaboxes .edit-post-visual-editor .block-editor-writing-flow__click-redirect {\n height: 0; }\n\n.edit-post-visual-editor__post-title-wrapper {\n padding-left: 14px;\n padding-right: 14px; }\n @media (min-width: 600px) {\n .edit-post-visual-editor__post-title-wrapper {\n padding-left: 36px;\n padding-right: 36px; } }\n .edit-post-visual-editor__post-title-wrapper .editor-post-title {\n margin-left: auto;\n margin-right: auto;\n margin-bottom: 32px; }\n\n.edit-post-options-modal__section {\n margin: 0 0 2rem 0; }\n\n.edit-post-options-modal__section-title {\n font-size: 0.9rem;\n font-weight: 600; }\n\n.edit-post-options-modal__option {\n border-top: 1px solid #e2e4e7; }\n .edit-post-options-modal__option:last-child {\n border-bottom: 1px solid #e2e4e7; }\n .edit-post-options-modal__option .components-base-control__field {\n align-items: center;\n display: flex;\n margin: 0; }\n .edit-post-options-modal__option .components-checkbox-control__label {\n flex-grow: 1;\n padding: 0.6rem 0 0.6rem 10px; }\n\n.edit-post-options-modal__custom-fields-confirmation-message, .edit-post-options-modal__custom-fields-confirmation-button {\n margin: 0 0 0.6rem 48px; }\n @media (min-width: 782px) {\n .edit-post-options-modal__custom-fields-confirmation-message, .edit-post-options-modal__custom-fields-confirmation-button {\n margin-left: 38px; } }\n @media (min-width: 600px) {\n .edit-post-options-modal__custom-fields-confirmation-message, .edit-post-options-modal__custom-fields-confirmation-button {\n max-width: 300px; } }\n\n.edit-post-welcome-guide__page {\n display: flex;\n flex-direction: column;\n justify-content: center;\n position: relative; }\n @media (min-width: 600px) {\n .edit-post-welcome-guide__page {\n min-height: 300px;\n padding-left: 344px; } }\n\n.edit-post-welcome-guide__heading {\n font-family: \"Noto Serif\", serif;\n font-size: 21px;\n line-height: 1.4;\n margin: 8px 0; }\n\n.edit-post-welcome-guide__image {\n background: #66c6e4;\n border-radius: 4px;\n height: 200px;\n margin: 8px 0; }\n @media (min-width: 600px) {\n .edit-post-welcome-guide__image {\n position: absolute;\n left: 0;\n top: 50%;\n height: 300px;\n width: 320px;\n margin-top: -150px; } }\n\n.edit-post-welcome-guide__text {\n font-size: 16px;\n line-height: 1.4;\n margin: 8px 0; }\n\n.edit-post-welcome-guide__inserter-icon {\n margin: 0 4px;\n position: relative;\n top: 4px; }\n\n@media (min-width: 600px) {\n .edit-post-welcome-guide {\n width: 600px; } }\n\n/**\n * Animations\n */\n@keyframes edit-post__fade-in-animation {\n from {\n opacity: 0; }\n to {\n opacity: 1; } }\n\nhtml.wp-toolbar {\n background: #fff; }\n\nbody.block-editor-page {\n background: #fff;\n /* We hide legacy notices in Gutenberg Based Pages, because they were not designed in a way that scaled well.\n\t Plugins can use Gutenberg notices if they need to pass on information to the user when they are editing. */ }\n body.block-editor-page #wpcontent {\n padding-left: 0; }\n body.block-editor-page #wpbody-content {\n padding-bottom: 0; }\n body.block-editor-page #wpbody-content > div:not(.block-editor):not(#screen-meta) {\n display: none; }\n body.block-editor-page #wpfooter {\n display: none; }\n body.block-editor-page .a11y-speak-region {\n left: -1px;\n top: -1px; }\n body.block-editor-page ul#adminmenu a.wp-has-current-submenu::after,\n body.block-editor-page ul#adminmenu > li.current > a.current::after {\n border-right-color: #fff; }\n body.block-editor-page .media-frame select.attachment-filters:last-of-type {\n width: auto;\n max-width: 100%; }\n\n.edit-post-header,\n.edit-post-visual-editor,\n.edit-post-text-editor,\n.edit-post-sidebar,\n.editor-post-publish-panel,\n.components-popover,\n.components-modal__frame {\n box-sizing: border-box; }\n .edit-post-header *,\n .edit-post-header *::before,\n .edit-post-header *::after,\n .edit-post-visual-editor *,\n .edit-post-visual-editor *::before,\n .edit-post-visual-editor *::after,\n .edit-post-text-editor *,\n .edit-post-text-editor *::before,\n .edit-post-text-editor *::after,\n .edit-post-sidebar *,\n .edit-post-sidebar *::before,\n .edit-post-sidebar *::after,\n .editor-post-publish-panel *,\n .editor-post-publish-panel *::before,\n .editor-post-publish-panel *::after,\n .components-popover *,\n .components-popover *::before,\n .components-popover *::after,\n .components-modal__frame *,\n .components-modal__frame *::before,\n .components-modal__frame *::after {\n box-sizing: inherit; }\n .edit-post-header .input-control,\n .edit-post-header input[type=\"text\"],\n .edit-post-header input[type=\"search\"],\n .edit-post-header input[type=\"radio\"],\n .edit-post-header input[type=\"tel\"],\n .edit-post-header input[type=\"time\"],\n .edit-post-header input[type=\"url\"],\n .edit-post-header input[type=\"week\"],\n .edit-post-header input[type=\"password\"],\n .edit-post-header input[type=\"checkbox\"],\n .edit-post-header input[type=\"color\"],\n .edit-post-header input[type=\"date\"],\n .edit-post-header input[type=\"datetime\"],\n .edit-post-header input[type=\"datetime-local\"],\n .edit-post-header input[type=\"email\"],\n .edit-post-header input[type=\"month\"],\n .edit-post-header input[type=\"number\"],\n .edit-post-header select,\n .edit-post-header textarea,\n .edit-post-visual-editor .input-control,\n .edit-post-visual-editor input[type=\"text\"],\n .edit-post-visual-editor input[type=\"search\"],\n .edit-post-visual-editor input[type=\"radio\"],\n .edit-post-visual-editor input[type=\"tel\"],\n .edit-post-visual-editor input[type=\"time\"],\n .edit-post-visual-editor input[type=\"url\"],\n .edit-post-visual-editor input[type=\"week\"],\n .edit-post-visual-editor input[type=\"password\"],\n .edit-post-visual-editor input[type=\"checkbox\"],\n .edit-post-visual-editor input[type=\"color\"],\n .edit-post-visual-editor input[type=\"date\"],\n .edit-post-visual-editor input[type=\"datetime\"],\n .edit-post-visual-editor input[type=\"datetime-local\"],\n .edit-post-visual-editor input[type=\"email\"],\n .edit-post-visual-editor input[type=\"month\"],\n .edit-post-visual-editor input[type=\"number\"],\n .edit-post-visual-editor select,\n .edit-post-visual-editor textarea,\n .edit-post-text-editor .input-control,\n .edit-post-text-editor input[type=\"text\"],\n .edit-post-text-editor input[type=\"search\"],\n .edit-post-text-editor input[type=\"radio\"],\n .edit-post-text-editor input[type=\"tel\"],\n .edit-post-text-editor input[type=\"time\"],\n .edit-post-text-editor input[type=\"url\"],\n .edit-post-text-editor input[type=\"week\"],\n .edit-post-text-editor input[type=\"password\"],\n .edit-post-text-editor input[type=\"checkbox\"],\n .edit-post-text-editor input[type=\"color\"],\n .edit-post-text-editor input[type=\"date\"],\n .edit-post-text-editor input[type=\"datetime\"],\n .edit-post-text-editor input[type=\"datetime-local\"],\n .edit-post-text-editor input[type=\"email\"],\n .edit-post-text-editor input[type=\"month\"],\n .edit-post-text-editor input[type=\"number\"],\n .edit-post-text-editor select,\n .edit-post-text-editor textarea,\n .edit-post-sidebar .input-control,\n .edit-post-sidebar input[type=\"text\"],\n .edit-post-sidebar input[type=\"search\"],\n .edit-post-sidebar input[type=\"radio\"],\n .edit-post-sidebar input[type=\"tel\"],\n .edit-post-sidebar input[type=\"time\"],\n .edit-post-sidebar input[type=\"url\"],\n .edit-post-sidebar input[type=\"week\"],\n .edit-post-sidebar input[type=\"password\"],\n .edit-post-sidebar input[type=\"checkbox\"],\n .edit-post-sidebar input[type=\"color\"],\n .edit-post-sidebar input[type=\"date\"],\n .edit-post-sidebar input[type=\"datetime\"],\n .edit-post-sidebar input[type=\"datetime-local\"],\n .edit-post-sidebar input[type=\"email\"],\n .edit-post-sidebar input[type=\"month\"],\n .edit-post-sidebar input[type=\"number\"],\n .edit-post-sidebar select,\n .edit-post-sidebar textarea,\n .editor-post-publish-panel .input-control,\n .editor-post-publish-panel input[type=\"text\"],\n .editor-post-publish-panel input[type=\"search\"],\n .editor-post-publish-panel input[type=\"radio\"],\n .editor-post-publish-panel input[type=\"tel\"],\n .editor-post-publish-panel input[type=\"time\"],\n .editor-post-publish-panel input[type=\"url\"],\n .editor-post-publish-panel input[type=\"week\"],\n .editor-post-publish-panel input[type=\"password\"],\n .editor-post-publish-panel input[type=\"checkbox\"],\n .editor-post-publish-panel input[type=\"color\"],\n .editor-post-publish-panel input[type=\"date\"],\n .editor-post-publish-panel input[type=\"datetime\"],\n .editor-post-publish-panel input[type=\"datetime-local\"],\n .editor-post-publish-panel input[type=\"email\"],\n .editor-post-publish-panel input[type=\"month\"],\n .editor-post-publish-panel input[type=\"number\"],\n .editor-post-publish-panel select,\n .editor-post-publish-panel textarea,\n .components-popover .input-control,\n .components-popover input[type=\"text\"],\n .components-popover input[type=\"search\"],\n .components-popover input[type=\"radio\"],\n .components-popover input[type=\"tel\"],\n .components-popover input[type=\"time\"],\n .components-popover input[type=\"url\"],\n .components-popover input[type=\"week\"],\n .components-popover input[type=\"password\"],\n .components-popover input[type=\"checkbox\"],\n .components-popover input[type=\"color\"],\n .components-popover input[type=\"date\"],\n .components-popover input[type=\"datetime\"],\n .components-popover input[type=\"datetime-local\"],\n .components-popover input[type=\"email\"],\n .components-popover input[type=\"month\"],\n .components-popover input[type=\"number\"],\n .components-popover select,\n .components-popover textarea,\n .components-modal__frame .input-control,\n .components-modal__frame input[type=\"text\"],\n .components-modal__frame input[type=\"search\"],\n .components-modal__frame input[type=\"radio\"],\n .components-modal__frame input[type=\"tel\"],\n .components-modal__frame input[type=\"time\"],\n .components-modal__frame input[type=\"url\"],\n .components-modal__frame input[type=\"week\"],\n .components-modal__frame input[type=\"password\"],\n .components-modal__frame input[type=\"checkbox\"],\n .components-modal__frame input[type=\"color\"],\n .components-modal__frame input[type=\"date\"],\n .components-modal__frame input[type=\"datetime\"],\n .components-modal__frame input[type=\"datetime-local\"],\n .components-modal__frame input[type=\"email\"],\n .components-modal__frame input[type=\"month\"],\n .components-modal__frame input[type=\"number\"],\n .components-modal__frame select,\n .components-modal__frame textarea {\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n padding: 6px 8px;\n box-shadow: 0 0 0 transparent;\n transition: box-shadow 0.1s linear;\n border-radius: 2px;\n border: 1px solid #757575;\n /* Fonts smaller than 16px causes mobile safari to zoom. */\n font-size: 16px;\n /* Override core line-height. To be reviewed. */\n line-height: normal; }\n @media (prefers-reduced-motion: reduce) {\n .edit-post-header .input-control,\n .edit-post-header input[type=\"text\"],\n .edit-post-header input[type=\"search\"],\n .edit-post-header input[type=\"radio\"],\n .edit-post-header input[type=\"tel\"],\n .edit-post-header input[type=\"time\"],\n .edit-post-header input[type=\"url\"],\n .edit-post-header input[type=\"week\"],\n .edit-post-header input[type=\"password\"],\n .edit-post-header input[type=\"checkbox\"],\n .edit-post-header input[type=\"color\"],\n .edit-post-header input[type=\"date\"],\n .edit-post-header input[type=\"datetime\"],\n .edit-post-header input[type=\"datetime-local\"],\n .edit-post-header input[type=\"email\"],\n .edit-post-header input[type=\"month\"],\n .edit-post-header input[type=\"number\"],\n .edit-post-header select,\n .edit-post-header textarea,\n .edit-post-visual-editor .input-control,\n .edit-post-visual-editor input[type=\"text\"],\n .edit-post-visual-editor input[type=\"search\"],\n .edit-post-visual-editor input[type=\"radio\"],\n .edit-post-visual-editor input[type=\"tel\"],\n .edit-post-visual-editor input[type=\"time\"],\n .edit-post-visual-editor input[type=\"url\"],\n .edit-post-visual-editor input[type=\"week\"],\n .edit-post-visual-editor input[type=\"password\"],\n .edit-post-visual-editor input[type=\"checkbox\"],\n .edit-post-visual-editor input[type=\"color\"],\n .edit-post-visual-editor input[type=\"date\"],\n .edit-post-visual-editor input[type=\"datetime\"],\n .edit-post-visual-editor input[type=\"datetime-local\"],\n .edit-post-visual-editor input[type=\"email\"],\n .edit-post-visual-editor input[type=\"month\"],\n .edit-post-visual-editor input[type=\"number\"],\n .edit-post-visual-editor select,\n .edit-post-visual-editor textarea,\n .edit-post-text-editor .input-control,\n .edit-post-text-editor input[type=\"text\"],\n .edit-post-text-editor input[type=\"search\"],\n .edit-post-text-editor input[type=\"radio\"],\n .edit-post-text-editor input[type=\"tel\"],\n .edit-post-text-editor input[type=\"time\"],\n .edit-post-text-editor input[type=\"url\"],\n .edit-post-text-editor input[type=\"week\"],\n .edit-post-text-editor input[type=\"password\"],\n .edit-post-text-editor input[type=\"checkbox\"],\n .edit-post-text-editor input[type=\"color\"],\n .edit-post-text-editor input[type=\"date\"],\n .edit-post-text-editor input[type=\"datetime\"],\n .edit-post-text-editor input[type=\"datetime-local\"],\n .edit-post-text-editor input[type=\"email\"],\n .edit-post-text-editor input[type=\"month\"],\n .edit-post-text-editor input[type=\"number\"],\n .edit-post-text-editor select,\n .edit-post-text-editor textarea,\n .edit-post-sidebar .input-control,\n .edit-post-sidebar input[type=\"text\"],\n .edit-post-sidebar input[type=\"search\"],\n .edit-post-sidebar input[type=\"radio\"],\n .edit-post-sidebar input[type=\"tel\"],\n .edit-post-sidebar input[type=\"time\"],\n .edit-post-sidebar input[type=\"url\"],\n .edit-post-sidebar input[type=\"week\"],\n .edit-post-sidebar input[type=\"password\"],\n .edit-post-sidebar input[type=\"checkbox\"],\n .edit-post-sidebar input[type=\"color\"],\n .edit-post-sidebar input[type=\"date\"],\n .edit-post-sidebar input[type=\"datetime\"],\n .edit-post-sidebar input[type=\"datetime-local\"],\n .edit-post-sidebar input[type=\"email\"],\n .edit-post-sidebar input[type=\"month\"],\n .edit-post-sidebar input[type=\"number\"],\n .edit-post-sidebar select,\n .edit-post-sidebar textarea,\n .editor-post-publish-panel .input-control,\n .editor-post-publish-panel input[type=\"text\"],\n .editor-post-publish-panel input[type=\"search\"],\n .editor-post-publish-panel input[type=\"radio\"],\n .editor-post-publish-panel input[type=\"tel\"],\n .editor-post-publish-panel input[type=\"time\"],\n .editor-post-publish-panel input[type=\"url\"],\n .editor-post-publish-panel input[type=\"week\"],\n .editor-post-publish-panel input[type=\"password\"],\n .editor-post-publish-panel input[type=\"checkbox\"],\n .editor-post-publish-panel input[type=\"color\"],\n .editor-post-publish-panel input[type=\"date\"],\n .editor-post-publish-panel input[type=\"datetime\"],\n .editor-post-publish-panel input[type=\"datetime-local\"],\n .editor-post-publish-panel input[type=\"email\"],\n .editor-post-publish-panel input[type=\"month\"],\n .editor-post-publish-panel input[type=\"number\"],\n .editor-post-publish-panel select,\n .editor-post-publish-panel textarea,\n .components-popover .input-control,\n .components-popover input[type=\"text\"],\n .components-popover input[type=\"search\"],\n .components-popover input[type=\"radio\"],\n .components-popover input[type=\"tel\"],\n .components-popover input[type=\"time\"],\n .components-popover input[type=\"url\"],\n .components-popover input[type=\"week\"],\n .components-popover input[type=\"password\"],\n .components-popover input[type=\"checkbox\"],\n .components-popover input[type=\"color\"],\n .components-popover input[type=\"date\"],\n .components-popover input[type=\"datetime\"],\n .components-popover input[type=\"datetime-local\"],\n .components-popover input[type=\"email\"],\n .components-popover input[type=\"month\"],\n .components-popover input[type=\"number\"],\n .components-popover select,\n .components-popover textarea,\n .components-modal__frame .input-control,\n .components-modal__frame input[type=\"text\"],\n .components-modal__frame input[type=\"search\"],\n .components-modal__frame input[type=\"radio\"],\n .components-modal__frame input[type=\"tel\"],\n .components-modal__frame input[type=\"time\"],\n .components-modal__frame input[type=\"url\"],\n .components-modal__frame input[type=\"week\"],\n .components-modal__frame input[type=\"password\"],\n .components-modal__frame input[type=\"checkbox\"],\n .components-modal__frame input[type=\"color\"],\n .components-modal__frame input[type=\"date\"],\n .components-modal__frame input[type=\"datetime\"],\n .components-modal__frame input[type=\"datetime-local\"],\n .components-modal__frame input[type=\"email\"],\n .components-modal__frame input[type=\"month\"],\n .components-modal__frame input[type=\"number\"],\n .components-modal__frame select,\n .components-modal__frame textarea {\n transition-duration: 0s; } }\n @media (min-width: 600px) {\n .edit-post-header .input-control,\n .edit-post-header input[type=\"text\"],\n .edit-post-header input[type=\"search\"],\n .edit-post-header input[type=\"radio\"],\n .edit-post-header input[type=\"tel\"],\n .edit-post-header input[type=\"time\"],\n .edit-post-header input[type=\"url\"],\n .edit-post-header input[type=\"week\"],\n .edit-post-header input[type=\"password\"],\n .edit-post-header input[type=\"checkbox\"],\n .edit-post-header input[type=\"color\"],\n .edit-post-header input[type=\"date\"],\n .edit-post-header input[type=\"datetime\"],\n .edit-post-header input[type=\"datetime-local\"],\n .edit-post-header input[type=\"email\"],\n .edit-post-header input[type=\"month\"],\n .edit-post-header input[type=\"number\"],\n .edit-post-header select,\n .edit-post-header textarea,\n .edit-post-visual-editor .input-control,\n .edit-post-visual-editor input[type=\"text\"],\n .edit-post-visual-editor input[type=\"search\"],\n .edit-post-visual-editor input[type=\"radio\"],\n .edit-post-visual-editor input[type=\"tel\"],\n .edit-post-visual-editor input[type=\"time\"],\n .edit-post-visual-editor input[type=\"url\"],\n .edit-post-visual-editor input[type=\"week\"],\n .edit-post-visual-editor input[type=\"password\"],\n .edit-post-visual-editor input[type=\"checkbox\"],\n .edit-post-visual-editor input[type=\"color\"],\n .edit-post-visual-editor input[type=\"date\"],\n .edit-post-visual-editor input[type=\"datetime\"],\n .edit-post-visual-editor input[type=\"datetime-local\"],\n .edit-post-visual-editor input[type=\"email\"],\n .edit-post-visual-editor input[type=\"month\"],\n .edit-post-visual-editor input[type=\"number\"],\n .edit-post-visual-editor select,\n .edit-post-visual-editor textarea,\n .edit-post-text-editor .input-control,\n .edit-post-text-editor input[type=\"text\"],\n .edit-post-text-editor input[type=\"search\"],\n .edit-post-text-editor input[type=\"radio\"],\n .edit-post-text-editor input[type=\"tel\"],\n .edit-post-text-editor input[type=\"time\"],\n .edit-post-text-editor input[type=\"url\"],\n .edit-post-text-editor input[type=\"week\"],\n .edit-post-text-editor input[type=\"password\"],\n .edit-post-text-editor input[type=\"checkbox\"],\n .edit-post-text-editor input[type=\"color\"],\n .edit-post-text-editor input[type=\"date\"],\n .edit-post-text-editor input[type=\"datetime\"],\n .edit-post-text-editor input[type=\"datetime-local\"],\n .edit-post-text-editor input[type=\"email\"],\n .edit-post-text-editor input[type=\"month\"],\n .edit-post-text-editor input[type=\"number\"],\n .edit-post-text-editor select,\n .edit-post-text-editor textarea,\n .edit-post-sidebar .input-control,\n .edit-post-sidebar input[type=\"text\"],\n .edit-post-sidebar input[type=\"search\"],\n .edit-post-sidebar input[type=\"radio\"],\n .edit-post-sidebar input[type=\"tel\"],\n .edit-post-sidebar input[type=\"time\"],\n .edit-post-sidebar input[type=\"url\"],\n .edit-post-sidebar input[type=\"week\"],\n .edit-post-sidebar input[type=\"password\"],\n .edit-post-sidebar input[type=\"checkbox\"],\n .edit-post-sidebar input[type=\"color\"],\n .edit-post-sidebar input[type=\"date\"],\n .edit-post-sidebar input[type=\"datetime\"],\n .edit-post-sidebar input[type=\"datetime-local\"],\n .edit-post-sidebar input[type=\"email\"],\n .edit-post-sidebar input[type=\"month\"],\n .edit-post-sidebar input[type=\"number\"],\n .edit-post-sidebar select,\n .edit-post-sidebar textarea,\n .editor-post-publish-panel .input-control,\n .editor-post-publish-panel input[type=\"text\"],\n .editor-post-publish-panel input[type=\"search\"],\n .editor-post-publish-panel input[type=\"radio\"],\n .editor-post-publish-panel input[type=\"tel\"],\n .editor-post-publish-panel input[type=\"time\"],\n .editor-post-publish-panel input[type=\"url\"],\n .editor-post-publish-panel input[type=\"week\"],\n .editor-post-publish-panel input[type=\"password\"],\n .editor-post-publish-panel input[type=\"checkbox\"],\n .editor-post-publish-panel input[type=\"color\"],\n .editor-post-publish-panel input[type=\"date\"],\n .editor-post-publish-panel input[type=\"datetime\"],\n .editor-post-publish-panel input[type=\"datetime-local\"],\n .editor-post-publish-panel input[type=\"email\"],\n .editor-post-publish-panel input[type=\"month\"],\n .editor-post-publish-panel input[type=\"number\"],\n .editor-post-publish-panel select,\n .editor-post-publish-panel textarea,\n .components-popover .input-control,\n .components-popover input[type=\"text\"],\n .components-popover input[type=\"search\"],\n .components-popover input[type=\"radio\"],\n .components-popover input[type=\"tel\"],\n .components-popover input[type=\"time\"],\n .components-popover input[type=\"url\"],\n .components-popover input[type=\"week\"],\n .components-popover input[type=\"password\"],\n .components-popover input[type=\"checkbox\"],\n .components-popover input[type=\"color\"],\n .components-popover input[type=\"date\"],\n .components-popover input[type=\"datetime\"],\n .components-popover input[type=\"datetime-local\"],\n .components-popover input[type=\"email\"],\n .components-popover input[type=\"month\"],\n .components-popover input[type=\"number\"],\n .components-popover select,\n .components-popover textarea,\n .components-modal__frame .input-control,\n .components-modal__frame input[type=\"text\"],\n .components-modal__frame input[type=\"search\"],\n .components-modal__frame input[type=\"radio\"],\n .components-modal__frame input[type=\"tel\"],\n .components-modal__frame input[type=\"time\"],\n .components-modal__frame input[type=\"url\"],\n .components-modal__frame input[type=\"week\"],\n .components-modal__frame input[type=\"password\"],\n .components-modal__frame input[type=\"checkbox\"],\n .components-modal__frame input[type=\"color\"],\n .components-modal__frame input[type=\"date\"],\n .components-modal__frame input[type=\"datetime\"],\n .components-modal__frame input[type=\"datetime-local\"],\n .components-modal__frame input[type=\"email\"],\n .components-modal__frame input[type=\"month\"],\n .components-modal__frame input[type=\"number\"],\n .components-modal__frame select,\n .components-modal__frame textarea {\n font-size: 13px;\n /* Override core line-height. To be reviewed. */\n line-height: normal; } }\n .edit-post-header .input-control:focus,\n .edit-post-header input[type=\"text\"]:focus,\n .edit-post-header input[type=\"search\"]:focus,\n .edit-post-header input[type=\"radio\"]:focus,\n .edit-post-header input[type=\"tel\"]:focus,\n .edit-post-header input[type=\"time\"]:focus,\n .edit-post-header input[type=\"url\"]:focus,\n .edit-post-header input[type=\"week\"]:focus,\n .edit-post-header input[type=\"password\"]:focus,\n .edit-post-header input[type=\"checkbox\"]:focus,\n .edit-post-header input[type=\"color\"]:focus,\n .edit-post-header input[type=\"date\"]:focus,\n .edit-post-header input[type=\"datetime\"]:focus,\n .edit-post-header input[type=\"datetime-local\"]:focus,\n .edit-post-header input[type=\"email\"]:focus,\n .edit-post-header input[type=\"month\"]:focus,\n .edit-post-header input[type=\"number\"]:focus,\n .edit-post-header select:focus,\n .edit-post-header textarea:focus,\n .edit-post-visual-editor .input-control:focus,\n .edit-post-visual-editor input[type=\"text\"]:focus,\n .edit-post-visual-editor input[type=\"search\"]:focus,\n .edit-post-visual-editor input[type=\"radio\"]:focus,\n .edit-post-visual-editor input[type=\"tel\"]:focus,\n .edit-post-visual-editor input[type=\"time\"]:focus,\n .edit-post-visual-editor input[type=\"url\"]:focus,\n .edit-post-visual-editor input[type=\"week\"]:focus,\n .edit-post-visual-editor input[type=\"password\"]:focus,\n .edit-post-visual-editor input[type=\"checkbox\"]:focus,\n .edit-post-visual-editor input[type=\"color\"]:focus,\n .edit-post-visual-editor input[type=\"date\"]:focus,\n .edit-post-visual-editor input[type=\"datetime\"]:focus,\n .edit-post-visual-editor input[type=\"datetime-local\"]:focus,\n .edit-post-visual-editor input[type=\"email\"]:focus,\n .edit-post-visual-editor input[type=\"month\"]:focus,\n .edit-post-visual-editor input[type=\"number\"]:focus,\n .edit-post-visual-editor select:focus,\n .edit-post-visual-editor textarea:focus,\n .edit-post-text-editor .input-control:focus,\n .edit-post-text-editor input[type=\"text\"]:focus,\n .edit-post-text-editor input[type=\"search\"]:focus,\n .edit-post-text-editor input[type=\"radio\"]:focus,\n .edit-post-text-editor input[type=\"tel\"]:focus,\n .edit-post-text-editor input[type=\"time\"]:focus,\n .edit-post-text-editor input[type=\"url\"]:focus,\n .edit-post-text-editor input[type=\"week\"]:focus,\n .edit-post-text-editor input[type=\"password\"]:focus,\n .edit-post-text-editor input[type=\"checkbox\"]:focus,\n .edit-post-text-editor input[type=\"color\"]:focus,\n .edit-post-text-editor input[type=\"date\"]:focus,\n .edit-post-text-editor input[type=\"datetime\"]:focus,\n .edit-post-text-editor input[type=\"datetime-local\"]:focus,\n .edit-post-text-editor input[type=\"email\"]:focus,\n .edit-post-text-editor input[type=\"month\"]:focus,\n .edit-post-text-editor input[type=\"number\"]:focus,\n .edit-post-text-editor select:focus,\n .edit-post-text-editor textarea:focus,\n .edit-post-sidebar .input-control:focus,\n .edit-post-sidebar input[type=\"text\"]:focus,\n .edit-post-sidebar input[type=\"search\"]:focus,\n .edit-post-sidebar input[type=\"radio\"]:focus,\n .edit-post-sidebar input[type=\"tel\"]:focus,\n .edit-post-sidebar input[type=\"time\"]:focus,\n .edit-post-sidebar input[type=\"url\"]:focus,\n .edit-post-sidebar input[type=\"week\"]:focus,\n .edit-post-sidebar input[type=\"password\"]:focus,\n .edit-post-sidebar input[type=\"checkbox\"]:focus,\n .edit-post-sidebar input[type=\"color\"]:focus,\n .edit-post-sidebar input[type=\"date\"]:focus,\n .edit-post-sidebar input[type=\"datetime\"]:focus,\n .edit-post-sidebar input[type=\"datetime-local\"]:focus,\n .edit-post-sidebar input[type=\"email\"]:focus,\n .edit-post-sidebar input[type=\"month\"]:focus,\n .edit-post-sidebar input[type=\"number\"]:focus,\n .edit-post-sidebar select:focus,\n .edit-post-sidebar textarea:focus,\n .editor-post-publish-panel .input-control:focus,\n .editor-post-publish-panel input[type=\"text\"]:focus,\n .editor-post-publish-panel input[type=\"search\"]:focus,\n .editor-post-publish-panel input[type=\"radio\"]:focus,\n .editor-post-publish-panel input[type=\"tel\"]:focus,\n .editor-post-publish-panel input[type=\"time\"]:focus,\n .editor-post-publish-panel input[type=\"url\"]:focus,\n .editor-post-publish-panel input[type=\"week\"]:focus,\n .editor-post-publish-panel input[type=\"password\"]:focus,\n .editor-post-publish-panel input[type=\"checkbox\"]:focus,\n .editor-post-publish-panel input[type=\"color\"]:focus,\n .editor-post-publish-panel input[type=\"date\"]:focus,\n .editor-post-publish-panel input[type=\"datetime\"]:focus,\n .editor-post-publish-panel input[type=\"datetime-local\"]:focus,\n .editor-post-publish-panel input[type=\"email\"]:focus,\n .editor-post-publish-panel input[type=\"month\"]:focus,\n .editor-post-publish-panel input[type=\"number\"]:focus,\n .editor-post-publish-panel select:focus,\n .editor-post-publish-panel textarea:focus,\n .components-popover .input-control:focus,\n .components-popover input[type=\"text\"]:focus,\n .components-popover input[type=\"search\"]:focus,\n .components-popover input[type=\"radio\"]:focus,\n .components-popover input[type=\"tel\"]:focus,\n .components-popover input[type=\"time\"]:focus,\n .components-popover input[type=\"url\"]:focus,\n .components-popover input[type=\"week\"]:focus,\n .components-popover input[type=\"password\"]:focus,\n .components-popover input[type=\"checkbox\"]:focus,\n .components-popover input[type=\"color\"]:focus,\n .components-popover input[type=\"date\"]:focus,\n .components-popover input[type=\"datetime\"]:focus,\n .components-popover input[type=\"datetime-local\"]:focus,\n .components-popover input[type=\"email\"]:focus,\n .components-popover input[type=\"month\"]:focus,\n .components-popover input[type=\"number\"]:focus,\n .components-popover select:focus,\n .components-popover textarea:focus,\n .components-modal__frame .input-control:focus,\n .components-modal__frame input[type=\"text\"]:focus,\n .components-modal__frame input[type=\"search\"]:focus,\n .components-modal__frame input[type=\"radio\"]:focus,\n .components-modal__frame input[type=\"tel\"]:focus,\n .components-modal__frame input[type=\"time\"]:focus,\n .components-modal__frame input[type=\"url\"]:focus,\n .components-modal__frame input[type=\"week\"]:focus,\n .components-modal__frame input[type=\"password\"]:focus,\n .components-modal__frame input[type=\"checkbox\"]:focus,\n .components-modal__frame input[type=\"color\"]:focus,\n .components-modal__frame input[type=\"date\"]:focus,\n .components-modal__frame input[type=\"datetime\"]:focus,\n .components-modal__frame input[type=\"datetime-local\"]:focus,\n .components-modal__frame input[type=\"email\"]:focus,\n .components-modal__frame input[type=\"month\"]:focus,\n .components-modal__frame input[type=\"number\"]:focus,\n .components-modal__frame select:focus,\n .components-modal__frame textarea:focus {\n border-color: rgb(0, 124, 186);\n box-shadow: 0 0 0 0.5px #007cba;\n outline: 2px solid transparent; }\n body.admin-color-sunrise .edit-post-header .input-control:focus, body.admin-color-sunrise .edit-post-header input[type=\"text\"]:focus, body.admin-color-sunrise .edit-post-header input[type=\"search\"]:focus, body.admin-color-sunrise .edit-post-header input[type=\"radio\"]:focus, body.admin-color-sunrise .edit-post-header input[type=\"tel\"]:focus, body.admin-color-sunrise .edit-post-header input[type=\"time\"]:focus, body.admin-color-sunrise .edit-post-header input[type=\"url\"]:focus, body.admin-color-sunrise .edit-post-header input[type=\"week\"]:focus, body.admin-color-sunrise .edit-post-header input[type=\"password\"]:focus, body.admin-color-sunrise .edit-post-header input[type=\"checkbox\"]:focus, body.admin-color-sunrise .edit-post-header input[type=\"color\"]:focus, body.admin-color-sunrise .edit-post-header input[type=\"date\"]:focus, body.admin-color-sunrise .edit-post-header input[type=\"datetime\"]:focus, body.admin-color-sunrise .edit-post-header input[type=\"datetime-local\"]:focus, body.admin-color-sunrise .edit-post-header input[type=\"email\"]:focus, body.admin-color-sunrise .edit-post-header input[type=\"month\"]:focus, body.admin-color-sunrise .edit-post-header input[type=\"number\"]:focus, body.admin-color-sunrise .edit-post-header select:focus, body.admin-color-sunrise .edit-post-header textarea:focus, body.admin-color-sunrise .edit-post-visual-editor .input-control:focus, body.admin-color-sunrise .edit-post-visual-editor input[type=\"text\"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type=\"search\"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type=\"radio\"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type=\"tel\"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type=\"time\"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type=\"url\"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type=\"week\"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type=\"password\"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type=\"checkbox\"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type=\"color\"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type=\"date\"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type=\"datetime\"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type=\"datetime-local\"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type=\"email\"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type=\"month\"]:focus, body.admin-color-sunrise .edit-post-visual-editor input[type=\"number\"]:focus, body.admin-color-sunrise .edit-post-visual-editor select:focus, body.admin-color-sunrise .edit-post-visual-editor textarea:focus, body.admin-color-sunrise .edit-post-text-editor .input-control:focus, body.admin-color-sunrise .edit-post-text-editor input[type=\"text\"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type=\"search\"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type=\"radio\"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type=\"tel\"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type=\"time\"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type=\"url\"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type=\"week\"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type=\"password\"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type=\"checkbox\"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type=\"color\"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type=\"date\"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type=\"datetime\"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type=\"datetime-local\"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type=\"email\"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type=\"month\"]:focus, body.admin-color-sunrise .edit-post-text-editor input[type=\"number\"]:focus, body.admin-color-sunrise .edit-post-text-editor select:focus, body.admin-color-sunrise .edit-post-text-editor textarea:focus, body.admin-color-sunrise .edit-post-sidebar .input-control:focus, body.admin-color-sunrise .edit-post-sidebar input[type=\"text\"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type=\"search\"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type=\"radio\"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type=\"tel\"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type=\"time\"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type=\"url\"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type=\"week\"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type=\"password\"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type=\"checkbox\"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type=\"color\"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type=\"date\"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type=\"datetime\"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type=\"datetime-local\"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type=\"email\"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type=\"month\"]:focus, body.admin-color-sunrise .edit-post-sidebar input[type=\"number\"]:focus, body.admin-color-sunrise .edit-post-sidebar select:focus, body.admin-color-sunrise .edit-post-sidebar textarea:focus, body.admin-color-sunrise .editor-post-publish-panel .input-control:focus, body.admin-color-sunrise .editor-post-publish-panel input[type=\"text\"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type=\"search\"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type=\"radio\"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type=\"tel\"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type=\"time\"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type=\"url\"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type=\"week\"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type=\"password\"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type=\"checkbox\"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type=\"color\"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type=\"date\"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type=\"datetime\"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type=\"datetime-local\"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type=\"email\"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type=\"month\"]:focus, body.admin-color-sunrise .editor-post-publish-panel input[type=\"number\"]:focus, body.admin-color-sunrise .editor-post-publish-panel select:focus, body.admin-color-sunrise .editor-post-publish-panel textarea:focus, body.admin-color-sunrise .components-popover .input-control:focus, body.admin-color-sunrise .components-popover input[type=\"text\"]:focus, body.admin-color-sunrise .components-popover input[type=\"search\"]:focus, body.admin-color-sunrise .components-popover input[type=\"radio\"]:focus, body.admin-color-sunrise .components-popover input[type=\"tel\"]:focus, body.admin-color-sunrise .components-popover input[type=\"time\"]:focus, body.admin-color-sunrise .components-popover input[type=\"url\"]:focus, body.admin-color-sunrise .components-popover input[type=\"week\"]:focus, body.admin-color-sunrise .components-popover input[type=\"password\"]:focus, body.admin-color-sunrise .components-popover input[type=\"checkbox\"]:focus, body.admin-color-sunrise .components-popover input[type=\"color\"]:focus, body.admin-color-sunrise .components-popover input[type=\"date\"]:focus, body.admin-color-sunrise .components-popover input[type=\"datetime\"]:focus, body.admin-color-sunrise .components-popover input[type=\"datetime-local\"]:focus, body.admin-color-sunrise .components-popover input[type=\"email\"]:focus, body.admin-color-sunrise .components-popover input[type=\"month\"]:focus, body.admin-color-sunrise .components-popover input[type=\"number\"]:focus, body.admin-color-sunrise .components-popover select:focus, body.admin-color-sunrise .components-popover textarea:focus, body.admin-color-sunrise .components-modal__frame .input-control:focus, body.admin-color-sunrise .components-modal__frame input[type=\"text\"]:focus, body.admin-color-sunrise .components-modal__frame input[type=\"search\"]:focus, body.admin-color-sunrise .components-modal__frame input[type=\"radio\"]:focus, body.admin-color-sunrise .components-modal__frame input[type=\"tel\"]:focus, body.admin-color-sunrise .components-modal__frame input[type=\"time\"]:focus, body.admin-color-sunrise .components-modal__frame input[type=\"url\"]:focus, body.admin-color-sunrise .components-modal__frame input[type=\"week\"]:focus, body.admin-color-sunrise .components-modal__frame input[type=\"password\"]:focus, body.admin-color-sunrise .components-modal__frame input[type=\"checkbox\"]:focus, body.admin-color-sunrise .components-modal__frame input[type=\"color\"]:focus, body.admin-color-sunrise .components-modal__frame input[type=\"date\"]:focus, body.admin-color-sunrise .components-modal__frame input[type=\"datetime\"]:focus, body.admin-color-sunrise .components-modal__frame input[type=\"datetime-local\"]:focus, body.admin-color-sunrise .components-modal__frame input[type=\"email\"]:focus, body.admin-color-sunrise .components-modal__frame input[type=\"month\"]:focus, body.admin-color-sunrise .components-modal__frame input[type=\"number\"]:focus, body.admin-color-sunrise .components-modal__frame select:focus, body.admin-color-sunrise .components-modal__frame textarea:focus {\n border-color: rgb(209, 134, 74);\n box-shadow: 0 0 0 0.5px #d1864a; }\n body.admin-color-ocean .edit-post-header .input-control:focus, body.admin-color-ocean .edit-post-header input[type=\"text\"]:focus, body.admin-color-ocean .edit-post-header input[type=\"search\"]:focus, body.admin-color-ocean .edit-post-header input[type=\"radio\"]:focus, body.admin-color-ocean .edit-post-header input[type=\"tel\"]:focus, body.admin-color-ocean .edit-post-header input[type=\"time\"]:focus, body.admin-color-ocean .edit-post-header input[type=\"url\"]:focus, body.admin-color-ocean .edit-post-header input[type=\"week\"]:focus, body.admin-color-ocean .edit-post-header input[type=\"password\"]:focus, body.admin-color-ocean .edit-post-header input[type=\"checkbox\"]:focus, body.admin-color-ocean .edit-post-header input[type=\"color\"]:focus, body.admin-color-ocean .edit-post-header input[type=\"date\"]:focus, body.admin-color-ocean .edit-post-header input[type=\"datetime\"]:focus, body.admin-color-ocean .edit-post-header input[type=\"datetime-local\"]:focus, body.admin-color-ocean .edit-post-header input[type=\"email\"]:focus, body.admin-color-ocean .edit-post-header input[type=\"month\"]:focus, body.admin-color-ocean .edit-post-header input[type=\"number\"]:focus, body.admin-color-ocean .edit-post-header select:focus, body.admin-color-ocean .edit-post-header textarea:focus, body.admin-color-ocean .edit-post-visual-editor .input-control:focus, body.admin-color-ocean .edit-post-visual-editor input[type=\"text\"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type=\"search\"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type=\"radio\"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type=\"tel\"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type=\"time\"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type=\"url\"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type=\"week\"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type=\"password\"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type=\"checkbox\"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type=\"color\"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type=\"date\"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type=\"datetime\"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type=\"datetime-local\"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type=\"email\"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type=\"month\"]:focus, body.admin-color-ocean .edit-post-visual-editor input[type=\"number\"]:focus, body.admin-color-ocean .edit-post-visual-editor select:focus, body.admin-color-ocean .edit-post-visual-editor textarea:focus, body.admin-color-ocean .edit-post-text-editor .input-control:focus, body.admin-color-ocean .edit-post-text-editor input[type=\"text\"]:focus, body.admin-color-ocean .edit-post-text-editor input[type=\"search\"]:focus, body.admin-color-ocean .edit-post-text-editor input[type=\"radio\"]:focus, body.admin-color-ocean .edit-post-text-editor input[type=\"tel\"]:focus, body.admin-color-ocean .edit-post-text-editor input[type=\"time\"]:focus, body.admin-color-ocean .edit-post-text-editor input[type=\"url\"]:focus, body.admin-color-ocean .edit-post-text-editor input[type=\"week\"]:focus, body.admin-color-ocean .edit-post-text-editor input[type=\"password\"]:focus, body.admin-color-ocean .edit-post-text-editor input[type=\"checkbox\"]:focus, body.admin-color-ocean .edit-post-text-editor input[type=\"color\"]:focus, body.admin-color-ocean .edit-post-text-editor input[type=\"date\"]:focus, body.admin-color-ocean .edit-post-text-editor input[type=\"datetime\"]:focus, body.admin-color-ocean .edit-post-text-editor input[type=\"datetime-local\"]:focus, body.admin-color-ocean .edit-post-text-editor input[type=\"email\"]:focus, body.admin-color-ocean .edit-post-text-editor input[type=\"month\"]:focus, body.admin-color-ocean .edit-post-text-editor input[type=\"number\"]:focus, body.admin-color-ocean .edit-post-text-editor select:focus, body.admin-color-ocean .edit-post-text-editor textarea:focus, body.admin-color-ocean .edit-post-sidebar .input-control:focus, body.admin-color-ocean .edit-post-sidebar input[type=\"text\"]:focus, body.admin-color-ocean .edit-post-sidebar input[type=\"search\"]:focus, body.admin-color-ocean .edit-post-sidebar input[type=\"radio\"]:focus, body.admin-color-ocean .edit-post-sidebar input[type=\"tel\"]:focus, body.admin-color-ocean .edit-post-sidebar input[type=\"time\"]:focus, body.admin-color-ocean .edit-post-sidebar input[type=\"url\"]:focus, body.admin-color-ocean .edit-post-sidebar input[type=\"week\"]:focus, body.admin-color-ocean .edit-post-sidebar input[type=\"password\"]:focus, body.admin-color-ocean .edit-post-sidebar input[type=\"checkbox\"]:focus, body.admin-color-ocean .edit-post-sidebar input[type=\"color\"]:focus, body.admin-color-ocean .edit-post-sidebar input[type=\"date\"]:focus, body.admin-color-ocean .edit-post-sidebar input[type=\"datetime\"]:focus, body.admin-color-ocean .edit-post-sidebar input[type=\"datetime-local\"]:focus, body.admin-color-ocean .edit-post-sidebar input[type=\"email\"]:focus, body.admin-color-ocean .edit-post-sidebar input[type=\"month\"]:focus, body.admin-color-ocean .edit-post-sidebar input[type=\"number\"]:focus, body.admin-color-ocean .edit-post-sidebar select:focus, body.admin-color-ocean .edit-post-sidebar textarea:focus, body.admin-color-ocean .editor-post-publish-panel .input-control:focus, body.admin-color-ocean .editor-post-publish-panel input[type=\"text\"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type=\"search\"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type=\"radio\"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type=\"tel\"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type=\"time\"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type=\"url\"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type=\"week\"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type=\"password\"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type=\"checkbox\"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type=\"color\"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type=\"date\"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type=\"datetime\"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type=\"datetime-local\"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type=\"email\"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type=\"month\"]:focus, body.admin-color-ocean .editor-post-publish-panel input[type=\"number\"]:focus, body.admin-color-ocean .editor-post-publish-panel select:focus, body.admin-color-ocean .editor-post-publish-panel textarea:focus, body.admin-color-ocean .components-popover .input-control:focus, body.admin-color-ocean .components-popover input[type=\"text\"]:focus, body.admin-color-ocean .components-popover input[type=\"search\"]:focus, body.admin-color-ocean .components-popover input[type=\"radio\"]:focus, body.admin-color-ocean .components-popover input[type=\"tel\"]:focus, body.admin-color-ocean .components-popover input[type=\"time\"]:focus, body.admin-color-ocean .components-popover input[type=\"url\"]:focus, body.admin-color-ocean .components-popover input[type=\"week\"]:focus, body.admin-color-ocean .components-popover input[type=\"password\"]:focus, body.admin-color-ocean .components-popover input[type=\"checkbox\"]:focus, body.admin-color-ocean .components-popover input[type=\"color\"]:focus, body.admin-color-ocean .components-popover input[type=\"date\"]:focus, body.admin-color-ocean .components-popover input[type=\"datetime\"]:focus, body.admin-color-ocean .components-popover input[type=\"datetime-local\"]:focus, body.admin-color-ocean .components-popover input[type=\"email\"]:focus, body.admin-color-ocean .components-popover input[type=\"month\"]:focus, body.admin-color-ocean .components-popover input[type=\"number\"]:focus, body.admin-color-ocean .components-popover select:focus, body.admin-color-ocean .components-popover textarea:focus, body.admin-color-ocean .components-modal__frame .input-control:focus, body.admin-color-ocean .components-modal__frame input[type=\"text\"]:focus, body.admin-color-ocean .components-modal__frame input[type=\"search\"]:focus, body.admin-color-ocean .components-modal__frame input[type=\"radio\"]:focus, body.admin-color-ocean .components-modal__frame input[type=\"tel\"]:focus, body.admin-color-ocean .components-modal__frame input[type=\"time\"]:focus, body.admin-color-ocean .components-modal__frame input[type=\"url\"]:focus, body.admin-color-ocean .components-modal__frame input[type=\"week\"]:focus, body.admin-color-ocean .components-modal__frame input[type=\"password\"]:focus, body.admin-color-ocean .components-modal__frame input[type=\"checkbox\"]:focus, body.admin-color-ocean .components-modal__frame input[type=\"color\"]:focus, body.admin-color-ocean .components-modal__frame input[type=\"date\"]:focus, body.admin-color-ocean .components-modal__frame input[type=\"datetime\"]:focus, body.admin-color-ocean .components-modal__frame input[type=\"datetime-local\"]:focus, body.admin-color-ocean .components-modal__frame input[type=\"email\"]:focus, body.admin-color-ocean .components-modal__frame input[type=\"month\"]:focus, body.admin-color-ocean .components-modal__frame input[type=\"number\"]:focus, body.admin-color-ocean .components-modal__frame select:focus, body.admin-color-ocean .components-modal__frame textarea:focus {\n border-color: rgb(163, 185, 162);\n box-shadow: 0 0 0 0.5px #a3b9a2; }\n body.admin-color-midnight .edit-post-header .input-control:focus, body.admin-color-midnight .edit-post-header input[type=\"text\"]:focus, body.admin-color-midnight .edit-post-header input[type=\"search\"]:focus, body.admin-color-midnight .edit-post-header input[type=\"radio\"]:focus, body.admin-color-midnight .edit-post-header input[type=\"tel\"]:focus, body.admin-color-midnight .edit-post-header input[type=\"time\"]:focus, body.admin-color-midnight .edit-post-header input[type=\"url\"]:focus, body.admin-color-midnight .edit-post-header input[type=\"week\"]:focus, body.admin-color-midnight .edit-post-header input[type=\"password\"]:focus, body.admin-color-midnight .edit-post-header input[type=\"checkbox\"]:focus, body.admin-color-midnight .edit-post-header input[type=\"color\"]:focus, body.admin-color-midnight .edit-post-header input[type=\"date\"]:focus, body.admin-color-midnight .edit-post-header input[type=\"datetime\"]:focus, body.admin-color-midnight .edit-post-header input[type=\"datetime-local\"]:focus, body.admin-color-midnight .edit-post-header input[type=\"email\"]:focus, body.admin-color-midnight .edit-post-header input[type=\"month\"]:focus, body.admin-color-midnight .edit-post-header input[type=\"number\"]:focus, body.admin-color-midnight .edit-post-header select:focus, body.admin-color-midnight .edit-post-header textarea:focus, body.admin-color-midnight .edit-post-visual-editor .input-control:focus, body.admin-color-midnight .edit-post-visual-editor input[type=\"text\"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type=\"search\"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type=\"radio\"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type=\"tel\"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type=\"time\"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type=\"url\"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type=\"week\"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type=\"password\"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type=\"checkbox\"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type=\"color\"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type=\"date\"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type=\"datetime\"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type=\"datetime-local\"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type=\"email\"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type=\"month\"]:focus, body.admin-color-midnight .edit-post-visual-editor input[type=\"number\"]:focus, body.admin-color-midnight .edit-post-visual-editor select:focus, body.admin-color-midnight .edit-post-visual-editor textarea:focus, body.admin-color-midnight .edit-post-text-editor .input-control:focus, body.admin-color-midnight .edit-post-text-editor input[type=\"text\"]:focus, body.admin-color-midnight .edit-post-text-editor input[type=\"search\"]:focus, body.admin-color-midnight .edit-post-text-editor input[type=\"radio\"]:focus, body.admin-color-midnight .edit-post-text-editor input[type=\"tel\"]:focus, body.admin-color-midnight .edit-post-text-editor input[type=\"time\"]:focus, body.admin-color-midnight .edit-post-text-editor input[type=\"url\"]:focus, body.admin-color-midnight .edit-post-text-editor input[type=\"week\"]:focus, body.admin-color-midnight .edit-post-text-editor input[type=\"password\"]:focus, body.admin-color-midnight .edit-post-text-editor input[type=\"checkbox\"]:focus, body.admin-color-midnight .edit-post-text-editor input[type=\"color\"]:focus, body.admin-color-midnight .edit-post-text-editor input[type=\"date\"]:focus, body.admin-color-midnight .edit-post-text-editor input[type=\"datetime\"]:focus, body.admin-color-midnight .edit-post-text-editor input[type=\"datetime-local\"]:focus, body.admin-color-midnight .edit-post-text-editor input[type=\"email\"]:focus, body.admin-color-midnight .edit-post-text-editor input[type=\"month\"]:focus, body.admin-color-midnight .edit-post-text-editor input[type=\"number\"]:focus, body.admin-color-midnight .edit-post-text-editor select:focus, body.admin-color-midnight .edit-post-text-editor textarea:focus, body.admin-color-midnight .edit-post-sidebar .input-control:focus, body.admin-color-midnight .edit-post-sidebar input[type=\"text\"]:focus, body.admin-color-midnight .edit-post-sidebar input[type=\"search\"]:focus, body.admin-color-midnight .edit-post-sidebar input[type=\"radio\"]:focus, body.admin-color-midnight .edit-post-sidebar input[type=\"tel\"]:focus, body.admin-color-midnight .edit-post-sidebar input[type=\"time\"]:focus, body.admin-color-midnight .edit-post-sidebar input[type=\"url\"]:focus, body.admin-color-midnight .edit-post-sidebar input[type=\"week\"]:focus, body.admin-color-midnight .edit-post-sidebar input[type=\"password\"]:focus, body.admin-color-midnight .edit-post-sidebar input[type=\"checkbox\"]:focus, body.admin-color-midnight .edit-post-sidebar input[type=\"color\"]:focus, body.admin-color-midnight .edit-post-sidebar input[type=\"date\"]:focus, body.admin-color-midnight .edit-post-sidebar input[type=\"datetime\"]:focus, body.admin-color-midnight .edit-post-sidebar input[type=\"datetime-local\"]:focus, body.admin-color-midnight .edit-post-sidebar input[type=\"email\"]:focus, body.admin-color-midnight .edit-post-sidebar input[type=\"month\"]:focus, body.admin-color-midnight .edit-post-sidebar input[type=\"number\"]:focus, body.admin-color-midnight .edit-post-sidebar select:focus, body.admin-color-midnight .edit-post-sidebar textarea:focus, body.admin-color-midnight .editor-post-publish-panel .input-control:focus, body.admin-color-midnight .editor-post-publish-panel input[type=\"text\"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type=\"search\"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type=\"radio\"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type=\"tel\"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type=\"time\"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type=\"url\"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type=\"week\"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type=\"password\"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type=\"checkbox\"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type=\"color\"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type=\"date\"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type=\"datetime\"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type=\"datetime-local\"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type=\"email\"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type=\"month\"]:focus, body.admin-color-midnight .editor-post-publish-panel input[type=\"number\"]:focus, body.admin-color-midnight .editor-post-publish-panel select:focus, body.admin-color-midnight .editor-post-publish-panel textarea:focus, body.admin-color-midnight .components-popover .input-control:focus, body.admin-color-midnight .components-popover input[type=\"text\"]:focus, body.admin-color-midnight .components-popover input[type=\"search\"]:focus, body.admin-color-midnight .components-popover input[type=\"radio\"]:focus, body.admin-color-midnight .components-popover input[type=\"tel\"]:focus, body.admin-color-midnight .components-popover input[type=\"time\"]:focus, body.admin-color-midnight .components-popover input[type=\"url\"]:focus, body.admin-color-midnight .components-popover input[type=\"week\"]:focus, body.admin-color-midnight .components-popover input[type=\"password\"]:focus, body.admin-color-midnight .components-popover input[type=\"checkbox\"]:focus, body.admin-color-midnight .components-popover input[type=\"color\"]:focus, body.admin-color-midnight .components-popover input[type=\"date\"]:focus, body.admin-color-midnight .components-popover input[type=\"datetime\"]:focus, body.admin-color-midnight .components-popover input[type=\"datetime-local\"]:focus, body.admin-color-midnight .components-popover input[type=\"email\"]:focus, body.admin-color-midnight .components-popover input[type=\"month\"]:focus, body.admin-color-midnight .components-popover input[type=\"number\"]:focus, body.admin-color-midnight .components-popover select:focus, body.admin-color-midnight .components-popover textarea:focus, body.admin-color-midnight .components-modal__frame .input-control:focus, body.admin-color-midnight .components-modal__frame input[type=\"text\"]:focus, body.admin-color-midnight .components-modal__frame input[type=\"search\"]:focus, body.admin-color-midnight .components-modal__frame input[type=\"radio\"]:focus, body.admin-color-midnight .components-modal__frame input[type=\"tel\"]:focus, body.admin-color-midnight .components-modal__frame input[type=\"time\"]:focus, body.admin-color-midnight .components-modal__frame input[type=\"url\"]:focus, body.admin-color-midnight .components-modal__frame input[type=\"week\"]:focus, body.admin-color-midnight .components-modal__frame input[type=\"password\"]:focus, body.admin-color-midnight .components-modal__frame input[type=\"checkbox\"]:focus, body.admin-color-midnight .components-modal__frame input[type=\"color\"]:focus, body.admin-color-midnight .components-modal__frame input[type=\"date\"]:focus, body.admin-color-midnight .components-modal__frame input[type=\"datetime\"]:focus, body.admin-color-midnight .components-modal__frame input[type=\"datetime-local\"]:focus, body.admin-color-midnight .components-modal__frame input[type=\"email\"]:focus, body.admin-color-midnight .components-modal__frame input[type=\"month\"]:focus, body.admin-color-midnight .components-modal__frame input[type=\"number\"]:focus, body.admin-color-midnight .components-modal__frame select:focus, body.admin-color-midnight .components-modal__frame textarea:focus {\n border-color: rgb(225, 77, 67);\n box-shadow: 0 0 0 0.5px #e14d43; }\n body.admin-color-ectoplasm .edit-post-header .input-control:focus, body.admin-color-ectoplasm .edit-post-header input[type=\"text\"]:focus, body.admin-color-ectoplasm .edit-post-header input[type=\"search\"]:focus, body.admin-color-ectoplasm .edit-post-header input[type=\"radio\"]:focus, body.admin-color-ectoplasm .edit-post-header input[type=\"tel\"]:focus, body.admin-color-ectoplasm .edit-post-header input[type=\"time\"]:focus, body.admin-color-ectoplasm .edit-post-header input[type=\"url\"]:focus, body.admin-color-ectoplasm .edit-post-header input[type=\"week\"]:focus, body.admin-color-ectoplasm .edit-post-header input[type=\"password\"]:focus, body.admin-color-ectoplasm .edit-post-header input[type=\"checkbox\"]:focus, body.admin-color-ectoplasm .edit-post-header input[type=\"color\"]:focus, body.admin-color-ectoplasm .edit-post-header input[type=\"date\"]:focus, body.admin-color-ectoplasm .edit-post-header input[type=\"datetime\"]:focus, body.admin-color-ectoplasm .edit-post-header input[type=\"datetime-local\"]:focus, body.admin-color-ectoplasm .edit-post-header input[type=\"email\"]:focus, body.admin-color-ectoplasm .edit-post-header input[type=\"month\"]:focus, body.admin-color-ectoplasm .edit-post-header input[type=\"number\"]:focus, body.admin-color-ectoplasm .edit-post-header select:focus, body.admin-color-ectoplasm .edit-post-header textarea:focus, body.admin-color-ectoplasm .edit-post-visual-editor .input-control:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type=\"text\"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type=\"search\"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type=\"radio\"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type=\"tel\"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type=\"time\"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type=\"url\"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type=\"week\"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type=\"password\"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type=\"checkbox\"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type=\"color\"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type=\"date\"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type=\"datetime\"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type=\"datetime-local\"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type=\"email\"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type=\"month\"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor input[type=\"number\"]:focus, body.admin-color-ectoplasm .edit-post-visual-editor select:focus, body.admin-color-ectoplasm .edit-post-visual-editor textarea:focus, body.admin-color-ectoplasm .edit-post-text-editor .input-control:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type=\"text\"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type=\"search\"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type=\"radio\"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type=\"tel\"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type=\"time\"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type=\"url\"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type=\"week\"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type=\"password\"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type=\"checkbox\"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type=\"color\"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type=\"date\"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type=\"datetime\"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type=\"datetime-local\"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type=\"email\"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type=\"month\"]:focus, body.admin-color-ectoplasm .edit-post-text-editor input[type=\"number\"]:focus, body.admin-color-ectoplasm .edit-post-text-editor select:focus, body.admin-color-ectoplasm .edit-post-text-editor textarea:focus, body.admin-color-ectoplasm .edit-post-sidebar .input-control:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type=\"text\"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type=\"search\"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type=\"radio\"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type=\"tel\"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type=\"time\"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type=\"url\"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type=\"week\"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type=\"password\"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type=\"checkbox\"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type=\"color\"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type=\"date\"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type=\"datetime\"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type=\"datetime-local\"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type=\"email\"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type=\"month\"]:focus, body.admin-color-ectoplasm .edit-post-sidebar input[type=\"number\"]:focus, body.admin-color-ectoplasm .edit-post-sidebar select:focus, body.admin-color-ectoplasm .edit-post-sidebar textarea:focus, body.admin-color-ectoplasm .editor-post-publish-panel .input-control:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type=\"text\"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type=\"search\"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type=\"radio\"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type=\"tel\"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type=\"time\"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type=\"url\"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type=\"week\"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type=\"password\"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type=\"checkbox\"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type=\"color\"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type=\"date\"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type=\"datetime\"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type=\"datetime-local\"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type=\"email\"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type=\"month\"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel input[type=\"number\"]:focus, body.admin-color-ectoplasm .editor-post-publish-panel select:focus, body.admin-color-ectoplasm .editor-post-publish-panel textarea:focus, body.admin-color-ectoplasm .components-popover .input-control:focus, body.admin-color-ectoplasm .components-popover input[type=\"text\"]:focus, body.admin-color-ectoplasm .components-popover input[type=\"search\"]:focus, body.admin-color-ectoplasm .components-popover input[type=\"radio\"]:focus, body.admin-color-ectoplasm .components-popover input[type=\"tel\"]:focus, body.admin-color-ectoplasm .components-popover input[type=\"time\"]:focus, body.admin-color-ectoplasm .components-popover input[type=\"url\"]:focus, body.admin-color-ectoplasm .components-popover input[type=\"week\"]:focus, body.admin-color-ectoplasm .components-popover input[type=\"password\"]:focus, body.admin-color-ectoplasm .components-popover input[type=\"checkbox\"]:focus, body.admin-color-ectoplasm .components-popover input[type=\"color\"]:focus, body.admin-color-ectoplasm .components-popover input[type=\"date\"]:focus, body.admin-color-ectoplasm .components-popover input[type=\"datetime\"]:focus, body.admin-color-ectoplasm .components-popover input[type=\"datetime-local\"]:focus, body.admin-color-ectoplasm .components-popover input[type=\"email\"]:focus, body.admin-color-ectoplasm .components-popover input[type=\"month\"]:focus, body.admin-color-ectoplasm .components-popover input[type=\"number\"]:focus, body.admin-color-ectoplasm .components-popover select:focus, body.admin-color-ectoplasm .components-popover textarea:focus, body.admin-color-ectoplasm .components-modal__frame .input-control:focus, body.admin-color-ectoplasm .components-modal__frame input[type=\"text\"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type=\"search\"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type=\"radio\"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type=\"tel\"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type=\"time\"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type=\"url\"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type=\"week\"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type=\"password\"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type=\"checkbox\"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type=\"color\"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type=\"date\"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type=\"datetime\"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type=\"datetime-local\"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type=\"email\"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type=\"month\"]:focus, body.admin-color-ectoplasm .components-modal__frame input[type=\"number\"]:focus, body.admin-color-ectoplasm .components-modal__frame select:focus, body.admin-color-ectoplasm .components-modal__frame textarea:focus {\n border-color: rgb(167, 182, 86);\n box-shadow: 0 0 0 0.5px #a7b656; }\n body.admin-color-coffee .edit-post-header .input-control:focus, body.admin-color-coffee .edit-post-header input[type=\"text\"]:focus, body.admin-color-coffee .edit-post-header input[type=\"search\"]:focus, body.admin-color-coffee .edit-post-header input[type=\"radio\"]:focus, body.admin-color-coffee .edit-post-header input[type=\"tel\"]:focus, body.admin-color-coffee .edit-post-header input[type=\"time\"]:focus, body.admin-color-coffee .edit-post-header input[type=\"url\"]:focus, body.admin-color-coffee .edit-post-header input[type=\"week\"]:focus, body.admin-color-coffee .edit-post-header input[type=\"password\"]:focus, body.admin-color-coffee .edit-post-header input[type=\"checkbox\"]:focus, body.admin-color-coffee .edit-post-header input[type=\"color\"]:focus, body.admin-color-coffee .edit-post-header input[type=\"date\"]:focus, body.admin-color-coffee .edit-post-header input[type=\"datetime\"]:focus, body.admin-color-coffee .edit-post-header input[type=\"datetime-local\"]:focus, body.admin-color-coffee .edit-post-header input[type=\"email\"]:focus, body.admin-color-coffee .edit-post-header input[type=\"month\"]:focus, body.admin-color-coffee .edit-post-header input[type=\"number\"]:focus, body.admin-color-coffee .edit-post-header select:focus, body.admin-color-coffee .edit-post-header textarea:focus, body.admin-color-coffee .edit-post-visual-editor .input-control:focus, body.admin-color-coffee .edit-post-visual-editor input[type=\"text\"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type=\"search\"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type=\"radio\"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type=\"tel\"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type=\"time\"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type=\"url\"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type=\"week\"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type=\"password\"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type=\"checkbox\"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type=\"color\"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type=\"date\"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type=\"datetime\"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type=\"datetime-local\"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type=\"email\"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type=\"month\"]:focus, body.admin-color-coffee .edit-post-visual-editor input[type=\"number\"]:focus, body.admin-color-coffee .edit-post-visual-editor select:focus, body.admin-color-coffee .edit-post-visual-editor textarea:focus, body.admin-color-coffee .edit-post-text-editor .input-control:focus, body.admin-color-coffee .edit-post-text-editor input[type=\"text\"]:focus, body.admin-color-coffee .edit-post-text-editor input[type=\"search\"]:focus, body.admin-color-coffee .edit-post-text-editor input[type=\"radio\"]:focus, body.admin-color-coffee .edit-post-text-editor input[type=\"tel\"]:focus, body.admin-color-coffee .edit-post-text-editor input[type=\"time\"]:focus, body.admin-color-coffee .edit-post-text-editor input[type=\"url\"]:focus, body.admin-color-coffee .edit-post-text-editor input[type=\"week\"]:focus, body.admin-color-coffee .edit-post-text-editor input[type=\"password\"]:focus, body.admin-color-coffee .edit-post-text-editor input[type=\"checkbox\"]:focus, body.admin-color-coffee .edit-post-text-editor input[type=\"color\"]:focus, body.admin-color-coffee .edit-post-text-editor input[type=\"date\"]:focus, body.admin-color-coffee .edit-post-text-editor input[type=\"datetime\"]:focus, body.admin-color-coffee .edit-post-text-editor input[type=\"datetime-local\"]:focus, body.admin-color-coffee .edit-post-text-editor input[type=\"email\"]:focus, body.admin-color-coffee .edit-post-text-editor input[type=\"month\"]:focus, body.admin-color-coffee .edit-post-text-editor input[type=\"number\"]:focus, body.admin-color-coffee .edit-post-text-editor select:focus, body.admin-color-coffee .edit-post-text-editor textarea:focus, body.admin-color-coffee .edit-post-sidebar .input-control:focus, body.admin-color-coffee .edit-post-sidebar input[type=\"text\"]:focus, body.admin-color-coffee .edit-post-sidebar input[type=\"search\"]:focus, body.admin-color-coffee .edit-post-sidebar input[type=\"radio\"]:focus, body.admin-color-coffee .edit-post-sidebar input[type=\"tel\"]:focus, body.admin-color-coffee .edit-post-sidebar input[type=\"time\"]:focus, body.admin-color-coffee .edit-post-sidebar input[type=\"url\"]:focus, body.admin-color-coffee .edit-post-sidebar input[type=\"week\"]:focus, body.admin-color-coffee .edit-post-sidebar input[type=\"password\"]:focus, body.admin-color-coffee .edit-post-sidebar input[type=\"checkbox\"]:focus, body.admin-color-coffee .edit-post-sidebar input[type=\"color\"]:focus, body.admin-color-coffee .edit-post-sidebar input[type=\"date\"]:focus, body.admin-color-coffee .edit-post-sidebar input[type=\"datetime\"]:focus, body.admin-color-coffee .edit-post-sidebar input[type=\"datetime-local\"]:focus, body.admin-color-coffee .edit-post-sidebar input[type=\"email\"]:focus, body.admin-color-coffee .edit-post-sidebar input[type=\"month\"]:focus, body.admin-color-coffee .edit-post-sidebar input[type=\"number\"]:focus, body.admin-color-coffee .edit-post-sidebar select:focus, body.admin-color-coffee .edit-post-sidebar textarea:focus, body.admin-color-coffee .editor-post-publish-panel .input-control:focus, body.admin-color-coffee .editor-post-publish-panel input[type=\"text\"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type=\"search\"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type=\"radio\"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type=\"tel\"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type=\"time\"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type=\"url\"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type=\"week\"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type=\"password\"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type=\"checkbox\"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type=\"color\"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type=\"date\"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type=\"datetime\"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type=\"datetime-local\"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type=\"email\"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type=\"month\"]:focus, body.admin-color-coffee .editor-post-publish-panel input[type=\"number\"]:focus, body.admin-color-coffee .editor-post-publish-panel select:focus, body.admin-color-coffee .editor-post-publish-panel textarea:focus, body.admin-color-coffee .components-popover .input-control:focus, body.admin-color-coffee .components-popover input[type=\"text\"]:focus, body.admin-color-coffee .components-popover input[type=\"search\"]:focus, body.admin-color-coffee .components-popover input[type=\"radio\"]:focus, body.admin-color-coffee .components-popover input[type=\"tel\"]:focus, body.admin-color-coffee .components-popover input[type=\"time\"]:focus, body.admin-color-coffee .components-popover input[type=\"url\"]:focus, body.admin-color-coffee .components-popover input[type=\"week\"]:focus, body.admin-color-coffee .components-popover input[type=\"password\"]:focus, body.admin-color-coffee .components-popover input[type=\"checkbox\"]:focus, body.admin-color-coffee .components-popover input[type=\"color\"]:focus, body.admin-color-coffee .components-popover input[type=\"date\"]:focus, body.admin-color-coffee .components-popover input[type=\"datetime\"]:focus, body.admin-color-coffee .components-popover input[type=\"datetime-local\"]:focus, body.admin-color-coffee .components-popover input[type=\"email\"]:focus, body.admin-color-coffee .components-popover input[type=\"month\"]:focus, body.admin-color-coffee .components-popover input[type=\"number\"]:focus, body.admin-color-coffee .components-popover select:focus, body.admin-color-coffee .components-popover textarea:focus, body.admin-color-coffee .components-modal__frame .input-control:focus, body.admin-color-coffee .components-modal__frame input[type=\"text\"]:focus, body.admin-color-coffee .components-modal__frame input[type=\"search\"]:focus, body.admin-color-coffee .components-modal__frame input[type=\"radio\"]:focus, body.admin-color-coffee .components-modal__frame input[type=\"tel\"]:focus, body.admin-color-coffee .components-modal__frame input[type=\"time\"]:focus, body.admin-color-coffee .components-modal__frame input[type=\"url\"]:focus, body.admin-color-coffee .components-modal__frame input[type=\"week\"]:focus, body.admin-color-coffee .components-modal__frame input[type=\"password\"]:focus, body.admin-color-coffee .components-modal__frame input[type=\"checkbox\"]:focus, body.admin-color-coffee .components-modal__frame input[type=\"color\"]:focus, body.admin-color-coffee .components-modal__frame input[type=\"date\"]:focus, body.admin-color-coffee .components-modal__frame input[type=\"datetime\"]:focus, body.admin-color-coffee .components-modal__frame input[type=\"datetime-local\"]:focus, body.admin-color-coffee .components-modal__frame input[type=\"email\"]:focus, body.admin-color-coffee .components-modal__frame input[type=\"month\"]:focus, body.admin-color-coffee .components-modal__frame input[type=\"number\"]:focus, body.admin-color-coffee .components-modal__frame select:focus, body.admin-color-coffee .components-modal__frame textarea:focus {\n border-color: rgb(194, 166, 140);\n box-shadow: 0 0 0 0.5px #c2a68c; }\n body.admin-color-blue .edit-post-header .input-control:focus, body.admin-color-blue .edit-post-header input[type=\"text\"]:focus, body.admin-color-blue .edit-post-header input[type=\"search\"]:focus, body.admin-color-blue .edit-post-header input[type=\"radio\"]:focus, body.admin-color-blue .edit-post-header input[type=\"tel\"]:focus, body.admin-color-blue .edit-post-header input[type=\"time\"]:focus, body.admin-color-blue .edit-post-header input[type=\"url\"]:focus, body.admin-color-blue .edit-post-header input[type=\"week\"]:focus, body.admin-color-blue .edit-post-header input[type=\"password\"]:focus, body.admin-color-blue .edit-post-header input[type=\"checkbox\"]:focus, body.admin-color-blue .edit-post-header input[type=\"color\"]:focus, body.admin-color-blue .edit-post-header input[type=\"date\"]:focus, body.admin-color-blue .edit-post-header input[type=\"datetime\"]:focus, body.admin-color-blue .edit-post-header input[type=\"datetime-local\"]:focus, body.admin-color-blue .edit-post-header input[type=\"email\"]:focus, body.admin-color-blue .edit-post-header input[type=\"month\"]:focus, body.admin-color-blue .edit-post-header input[type=\"number\"]:focus, body.admin-color-blue .edit-post-header select:focus, body.admin-color-blue .edit-post-header textarea:focus, body.admin-color-blue .edit-post-visual-editor .input-control:focus, body.admin-color-blue .edit-post-visual-editor input[type=\"text\"]:focus, body.admin-color-blue .edit-post-visual-editor input[type=\"search\"]:focus, body.admin-color-blue .edit-post-visual-editor input[type=\"radio\"]:focus, body.admin-color-blue .edit-post-visual-editor input[type=\"tel\"]:focus, body.admin-color-blue .edit-post-visual-editor input[type=\"time\"]:focus, body.admin-color-blue .edit-post-visual-editor input[type=\"url\"]:focus, body.admin-color-blue .edit-post-visual-editor input[type=\"week\"]:focus, body.admin-color-blue .edit-post-visual-editor input[type=\"password\"]:focus, body.admin-color-blue .edit-post-visual-editor input[type=\"checkbox\"]:focus, body.admin-color-blue .edit-post-visual-editor input[type=\"color\"]:focus, body.admin-color-blue .edit-post-visual-editor input[type=\"date\"]:focus, body.admin-color-blue .edit-post-visual-editor input[type=\"datetime\"]:focus, body.admin-color-blue .edit-post-visual-editor input[type=\"datetime-local\"]:focus, body.admin-color-blue .edit-post-visual-editor input[type=\"email\"]:focus, body.admin-color-blue .edit-post-visual-editor input[type=\"month\"]:focus, body.admin-color-blue .edit-post-visual-editor input[type=\"number\"]:focus, body.admin-color-blue .edit-post-visual-editor select:focus, body.admin-color-blue .edit-post-visual-editor textarea:focus, body.admin-color-blue .edit-post-text-editor .input-control:focus, body.admin-color-blue .edit-post-text-editor input[type=\"text\"]:focus, body.admin-color-blue .edit-post-text-editor input[type=\"search\"]:focus, body.admin-color-blue .edit-post-text-editor input[type=\"radio\"]:focus, body.admin-color-blue .edit-post-text-editor input[type=\"tel\"]:focus, body.admin-color-blue .edit-post-text-editor input[type=\"time\"]:focus, body.admin-color-blue .edit-post-text-editor input[type=\"url\"]:focus, body.admin-color-blue .edit-post-text-editor input[type=\"week\"]:focus, body.admin-color-blue .edit-post-text-editor input[type=\"password\"]:focus, body.admin-color-blue .edit-post-text-editor input[type=\"checkbox\"]:focus, body.admin-color-blue .edit-post-text-editor input[type=\"color\"]:focus, body.admin-color-blue .edit-post-text-editor input[type=\"date\"]:focus, body.admin-color-blue .edit-post-text-editor input[type=\"datetime\"]:focus, body.admin-color-blue .edit-post-text-editor input[type=\"datetime-local\"]:focus, body.admin-color-blue .edit-post-text-editor input[type=\"email\"]:focus, body.admin-color-blue .edit-post-text-editor input[type=\"month\"]:focus, body.admin-color-blue .edit-post-text-editor input[type=\"number\"]:focus, body.admin-color-blue .edit-post-text-editor select:focus, body.admin-color-blue .edit-post-text-editor textarea:focus, body.admin-color-blue .edit-post-sidebar .input-control:focus, body.admin-color-blue .edit-post-sidebar input[type=\"text\"]:focus, body.admin-color-blue .edit-post-sidebar input[type=\"search\"]:focus, body.admin-color-blue .edit-post-sidebar input[type=\"radio\"]:focus, body.admin-color-blue .edit-post-sidebar input[type=\"tel\"]:focus, body.admin-color-blue .edit-post-sidebar input[type=\"time\"]:focus, body.admin-color-blue .edit-post-sidebar input[type=\"url\"]:focus, body.admin-color-blue .edit-post-sidebar input[type=\"week\"]:focus, body.admin-color-blue .edit-post-sidebar input[type=\"password\"]:focus, body.admin-color-blue .edit-post-sidebar input[type=\"checkbox\"]:focus, body.admin-color-blue .edit-post-sidebar input[type=\"color\"]:focus, body.admin-color-blue .edit-post-sidebar input[type=\"date\"]:focus, body.admin-color-blue .edit-post-sidebar input[type=\"datetime\"]:focus, body.admin-color-blue .edit-post-sidebar input[type=\"datetime-local\"]:focus, body.admin-color-blue .edit-post-sidebar input[type=\"email\"]:focus, body.admin-color-blue .edit-post-sidebar input[type=\"month\"]:focus, body.admin-color-blue .edit-post-sidebar input[type=\"number\"]:focus, body.admin-color-blue .edit-post-sidebar select:focus, body.admin-color-blue .edit-post-sidebar textarea:focus, body.admin-color-blue .editor-post-publish-panel .input-control:focus, body.admin-color-blue .editor-post-publish-panel input[type=\"text\"]:focus, body.admin-color-blue .editor-post-publish-panel input[type=\"search\"]:focus, body.admin-color-blue .editor-post-publish-panel input[type=\"radio\"]:focus, body.admin-color-blue .editor-post-publish-panel input[type=\"tel\"]:focus, body.admin-color-blue .editor-post-publish-panel input[type=\"time\"]:focus, body.admin-color-blue .editor-post-publish-panel input[type=\"url\"]:focus, body.admin-color-blue .editor-post-publish-panel input[type=\"week\"]:focus, body.admin-color-blue .editor-post-publish-panel input[type=\"password\"]:focus, body.admin-color-blue .editor-post-publish-panel input[type=\"checkbox\"]:focus, body.admin-color-blue .editor-post-publish-panel input[type=\"color\"]:focus, body.admin-color-blue .editor-post-publish-panel input[type=\"date\"]:focus, body.admin-color-blue .editor-post-publish-panel input[type=\"datetime\"]:focus, body.admin-color-blue .editor-post-publish-panel input[type=\"datetime-local\"]:focus, body.admin-color-blue .editor-post-publish-panel input[type=\"email\"]:focus, body.admin-color-blue .editor-post-publish-panel input[type=\"month\"]:focus, body.admin-color-blue .editor-post-publish-panel input[type=\"number\"]:focus, body.admin-color-blue .editor-post-publish-panel select:focus, body.admin-color-blue .editor-post-publish-panel textarea:focus, body.admin-color-blue .components-popover .input-control:focus, body.admin-color-blue .components-popover input[type=\"text\"]:focus, body.admin-color-blue .components-popover input[type=\"search\"]:focus, body.admin-color-blue .components-popover input[type=\"radio\"]:focus, body.admin-color-blue .components-popover input[type=\"tel\"]:focus, body.admin-color-blue .components-popover input[type=\"time\"]:focus, body.admin-color-blue .components-popover input[type=\"url\"]:focus, body.admin-color-blue .components-popover input[type=\"week\"]:focus, body.admin-color-blue .components-popover input[type=\"password\"]:focus, body.admin-color-blue .components-popover input[type=\"checkbox\"]:focus, body.admin-color-blue .components-popover input[type=\"color\"]:focus, body.admin-color-blue .components-popover input[type=\"date\"]:focus, body.admin-color-blue .components-popover input[type=\"datetime\"]:focus, body.admin-color-blue .components-popover input[type=\"datetime-local\"]:focus, body.admin-color-blue .components-popover input[type=\"email\"]:focus, body.admin-color-blue .components-popover input[type=\"month\"]:focus, body.admin-color-blue .components-popover input[type=\"number\"]:focus, body.admin-color-blue .components-popover select:focus, body.admin-color-blue .components-popover textarea:focus, body.admin-color-blue .components-modal__frame .input-control:focus, body.admin-color-blue .components-modal__frame input[type=\"text\"]:focus, body.admin-color-blue .components-modal__frame input[type=\"search\"]:focus, body.admin-color-blue .components-modal__frame input[type=\"radio\"]:focus, body.admin-color-blue .components-modal__frame input[type=\"tel\"]:focus, body.admin-color-blue .components-modal__frame input[type=\"time\"]:focus, body.admin-color-blue .components-modal__frame input[type=\"url\"]:focus, body.admin-color-blue .components-modal__frame input[type=\"week\"]:focus, body.admin-color-blue .components-modal__frame input[type=\"password\"]:focus, body.admin-color-blue .components-modal__frame input[type=\"checkbox\"]:focus, body.admin-color-blue .components-modal__frame input[type=\"color\"]:focus, body.admin-color-blue .components-modal__frame input[type=\"date\"]:focus, body.admin-color-blue .components-modal__frame input[type=\"datetime\"]:focus, body.admin-color-blue .components-modal__frame input[type=\"datetime-local\"]:focus, body.admin-color-blue .components-modal__frame input[type=\"email\"]:focus, body.admin-color-blue .components-modal__frame input[type=\"month\"]:focus, body.admin-color-blue .components-modal__frame input[type=\"number\"]:focus, body.admin-color-blue .components-modal__frame select:focus, body.admin-color-blue .components-modal__frame textarea:focus {\n border-color: rgb(217, 171, 89);\n box-shadow: 0 0 0 0.5px #d9ab59; }\n body.admin-color-light .edit-post-header .input-control:focus, body.admin-color-light .edit-post-header input[type=\"text\"]:focus, body.admin-color-light .edit-post-header input[type=\"search\"]:focus, body.admin-color-light .edit-post-header input[type=\"radio\"]:focus, body.admin-color-light .edit-post-header input[type=\"tel\"]:focus, body.admin-color-light .edit-post-header input[type=\"time\"]:focus, body.admin-color-light .edit-post-header input[type=\"url\"]:focus, body.admin-color-light .edit-post-header input[type=\"week\"]:focus, body.admin-color-light .edit-post-header input[type=\"password\"]:focus, body.admin-color-light .edit-post-header input[type=\"checkbox\"]:focus, body.admin-color-light .edit-post-header input[type=\"color\"]:focus, body.admin-color-light .edit-post-header input[type=\"date\"]:focus, body.admin-color-light .edit-post-header input[type=\"datetime\"]:focus, body.admin-color-light .edit-post-header input[type=\"datetime-local\"]:focus, body.admin-color-light .edit-post-header input[type=\"email\"]:focus, body.admin-color-light .edit-post-header input[type=\"month\"]:focus, body.admin-color-light .edit-post-header input[type=\"number\"]:focus, body.admin-color-light .edit-post-header select:focus, body.admin-color-light .edit-post-header textarea:focus, body.admin-color-light .edit-post-visual-editor .input-control:focus, body.admin-color-light .edit-post-visual-editor input[type=\"text\"]:focus, body.admin-color-light .edit-post-visual-editor input[type=\"search\"]:focus, body.admin-color-light .edit-post-visual-editor input[type=\"radio\"]:focus, body.admin-color-light .edit-post-visual-editor input[type=\"tel\"]:focus, body.admin-color-light .edit-post-visual-editor input[type=\"time\"]:focus, body.admin-color-light .edit-post-visual-editor input[type=\"url\"]:focus, body.admin-color-light .edit-post-visual-editor input[type=\"week\"]:focus, body.admin-color-light .edit-post-visual-editor input[type=\"password\"]:focus, body.admin-color-light .edit-post-visual-editor input[type=\"checkbox\"]:focus, body.admin-color-light .edit-post-visual-editor input[type=\"color\"]:focus, body.admin-color-light .edit-post-visual-editor input[type=\"date\"]:focus, body.admin-color-light .edit-post-visual-editor input[type=\"datetime\"]:focus, body.admin-color-light .edit-post-visual-editor input[type=\"datetime-local\"]:focus, body.admin-color-light .edit-post-visual-editor input[type=\"email\"]:focus, body.admin-color-light .edit-post-visual-editor input[type=\"month\"]:focus, body.admin-color-light .edit-post-visual-editor input[type=\"number\"]:focus, body.admin-color-light .edit-post-visual-editor select:focus, body.admin-color-light .edit-post-visual-editor textarea:focus, body.admin-color-light .edit-post-text-editor .input-control:focus, body.admin-color-light .edit-post-text-editor input[type=\"text\"]:focus, body.admin-color-light .edit-post-text-editor input[type=\"search\"]:focus, body.admin-color-light .edit-post-text-editor input[type=\"radio\"]:focus, body.admin-color-light .edit-post-text-editor input[type=\"tel\"]:focus, body.admin-color-light .edit-post-text-editor input[type=\"time\"]:focus, body.admin-color-light .edit-post-text-editor input[type=\"url\"]:focus, body.admin-color-light .edit-post-text-editor input[type=\"week\"]:focus, body.admin-color-light .edit-post-text-editor input[type=\"password\"]:focus, body.admin-color-light .edit-post-text-editor input[type=\"checkbox\"]:focus, body.admin-color-light .edit-post-text-editor input[type=\"color\"]:focus, body.admin-color-light .edit-post-text-editor input[type=\"date\"]:focus, body.admin-color-light .edit-post-text-editor input[type=\"datetime\"]:focus, body.admin-color-light .edit-post-text-editor input[type=\"datetime-local\"]:focus, body.admin-color-light .edit-post-text-editor input[type=\"email\"]:focus, body.admin-color-light .edit-post-text-editor input[type=\"month\"]:focus, body.admin-color-light .edit-post-text-editor input[type=\"number\"]:focus, body.admin-color-light .edit-post-text-editor select:focus, body.admin-color-light .edit-post-text-editor textarea:focus, body.admin-color-light .edit-post-sidebar .input-control:focus, body.admin-color-light .edit-post-sidebar input[type=\"text\"]:focus, body.admin-color-light .edit-post-sidebar input[type=\"search\"]:focus, body.admin-color-light .edit-post-sidebar input[type=\"radio\"]:focus, body.admin-color-light .edit-post-sidebar input[type=\"tel\"]:focus, body.admin-color-light .edit-post-sidebar input[type=\"time\"]:focus, body.admin-color-light .edit-post-sidebar input[type=\"url\"]:focus, body.admin-color-light .edit-post-sidebar input[type=\"week\"]:focus, body.admin-color-light .edit-post-sidebar input[type=\"password\"]:focus, body.admin-color-light .edit-post-sidebar input[type=\"checkbox\"]:focus, body.admin-color-light .edit-post-sidebar input[type=\"color\"]:focus, body.admin-color-light .edit-post-sidebar input[type=\"date\"]:focus, body.admin-color-light .edit-post-sidebar input[type=\"datetime\"]:focus, body.admin-color-light .edit-post-sidebar input[type=\"datetime-local\"]:focus, body.admin-color-light .edit-post-sidebar input[type=\"email\"]:focus, body.admin-color-light .edit-post-sidebar input[type=\"month\"]:focus, body.admin-color-light .edit-post-sidebar input[type=\"number\"]:focus, body.admin-color-light .edit-post-sidebar select:focus, body.admin-color-light .edit-post-sidebar textarea:focus, body.admin-color-light .editor-post-publish-panel .input-control:focus, body.admin-color-light .editor-post-publish-panel input[type=\"text\"]:focus, body.admin-color-light .editor-post-publish-panel input[type=\"search\"]:focus, body.admin-color-light .editor-post-publish-panel input[type=\"radio\"]:focus, body.admin-color-light .editor-post-publish-panel input[type=\"tel\"]:focus, body.admin-color-light .editor-post-publish-panel input[type=\"time\"]:focus, body.admin-color-light .editor-post-publish-panel input[type=\"url\"]:focus, body.admin-color-light .editor-post-publish-panel input[type=\"week\"]:focus, body.admin-color-light .editor-post-publish-panel input[type=\"password\"]:focus, body.admin-color-light .editor-post-publish-panel input[type=\"checkbox\"]:focus, body.admin-color-light .editor-post-publish-panel input[type=\"color\"]:focus, body.admin-color-light .editor-post-publish-panel input[type=\"date\"]:focus, body.admin-color-light .editor-post-publish-panel input[type=\"datetime\"]:focus, body.admin-color-light .editor-post-publish-panel input[type=\"datetime-local\"]:focus, body.admin-color-light .editor-post-publish-panel input[type=\"email\"]:focus, body.admin-color-light .editor-post-publish-panel input[type=\"month\"]:focus, body.admin-color-light .editor-post-publish-panel input[type=\"number\"]:focus, body.admin-color-light .editor-post-publish-panel select:focus, body.admin-color-light .editor-post-publish-panel textarea:focus, body.admin-color-light .components-popover .input-control:focus, body.admin-color-light .components-popover input[type=\"text\"]:focus, body.admin-color-light .components-popover input[type=\"search\"]:focus, body.admin-color-light .components-popover input[type=\"radio\"]:focus, body.admin-color-light .components-popover input[type=\"tel\"]:focus, body.admin-color-light .components-popover input[type=\"time\"]:focus, body.admin-color-light .components-popover input[type=\"url\"]:focus, body.admin-color-light .components-popover input[type=\"week\"]:focus, body.admin-color-light .components-popover input[type=\"password\"]:focus, body.admin-color-light .components-popover input[type=\"checkbox\"]:focus, body.admin-color-light .components-popover input[type=\"color\"]:focus, body.admin-color-light .components-popover input[type=\"date\"]:focus, body.admin-color-light .components-popover input[type=\"datetime\"]:focus, body.admin-color-light .components-popover input[type=\"datetime-local\"]:focus, body.admin-color-light .components-popover input[type=\"email\"]:focus, body.admin-color-light .components-popover input[type=\"month\"]:focus, body.admin-color-light .components-popover input[type=\"number\"]:focus, body.admin-color-light .components-popover select:focus, body.admin-color-light .components-popover textarea:focus, body.admin-color-light .components-modal__frame .input-control:focus, body.admin-color-light .components-modal__frame input[type=\"text\"]:focus, body.admin-color-light .components-modal__frame input[type=\"search\"]:focus, body.admin-color-light .components-modal__frame input[type=\"radio\"]:focus, body.admin-color-light .components-modal__frame input[type=\"tel\"]:focus, body.admin-color-light .components-modal__frame input[type=\"time\"]:focus, body.admin-color-light .components-modal__frame input[type=\"url\"]:focus, body.admin-color-light .components-modal__frame input[type=\"week\"]:focus, body.admin-color-light .components-modal__frame input[type=\"password\"]:focus, body.admin-color-light .components-modal__frame input[type=\"checkbox\"]:focus, body.admin-color-light .components-modal__frame input[type=\"color\"]:focus, body.admin-color-light .components-modal__frame input[type=\"date\"]:focus, body.admin-color-light .components-modal__frame input[type=\"datetime\"]:focus, body.admin-color-light .components-modal__frame input[type=\"datetime-local\"]:focus, body.admin-color-light .components-modal__frame input[type=\"email\"]:focus, body.admin-color-light .components-modal__frame input[type=\"month\"]:focus, body.admin-color-light .components-modal__frame input[type=\"number\"]:focus, body.admin-color-light .components-modal__frame select:focus, body.admin-color-light .components-modal__frame textarea:focus {\n border-color: rgb(0, 133, 186);\n box-shadow: 0 0 0 0.5px #0085ba; }\n .edit-post-header input[type=\"number\"],\n .edit-post-visual-editor input[type=\"number\"],\n .edit-post-text-editor input[type=\"number\"],\n .edit-post-sidebar input[type=\"number\"],\n .editor-post-publish-panel input[type=\"number\"],\n .components-popover input[type=\"number\"],\n .components-modal__frame input[type=\"number\"] {\n padding-left: 4px;\n padding-right: 4px; }\n .edit-post-header select,\n .edit-post-visual-editor select,\n .edit-post-text-editor select,\n .edit-post-sidebar select,\n .editor-post-publish-panel select,\n .components-popover select,\n .components-modal__frame select {\n padding: 3px 24px 3px 8px;\n font-size: 13px;\n color: #555d66; }\n .edit-post-header select:focus,\n .edit-post-visual-editor select:focus,\n .edit-post-text-editor select:focus,\n .edit-post-sidebar select:focus,\n .editor-post-publish-panel select:focus,\n .components-popover select:focus,\n .components-modal__frame select:focus {\n border-color: #008dbe;\n outline: 2px solid transparent;\n outline-offset: 0; }\n .edit-post-header input[type=\"checkbox\"],\n .edit-post-header input[type=\"radio\"],\n .edit-post-visual-editor input[type=\"checkbox\"],\n .edit-post-visual-editor input[type=\"radio\"],\n .edit-post-text-editor input[type=\"checkbox\"],\n .edit-post-text-editor input[type=\"radio\"],\n .edit-post-sidebar input[type=\"checkbox\"],\n .edit-post-sidebar input[type=\"radio\"],\n .editor-post-publish-panel input[type=\"checkbox\"],\n .editor-post-publish-panel input[type=\"radio\"],\n .components-popover input[type=\"checkbox\"],\n .components-popover input[type=\"radio\"],\n .components-modal__frame input[type=\"checkbox\"],\n .components-modal__frame input[type=\"radio\"] {\n border: 2px solid #757575;\n margin-right: 12px;\n transition: none; }\n .edit-post-header input[type=\"checkbox\"]:focus,\n .edit-post-header input[type=\"radio\"]:focus,\n .edit-post-visual-editor input[type=\"checkbox\"]:focus,\n .edit-post-visual-editor input[type=\"radio\"]:focus,\n .edit-post-text-editor input[type=\"checkbox\"]:focus,\n .edit-post-text-editor input[type=\"radio\"]:focus,\n .edit-post-sidebar input[type=\"checkbox\"]:focus,\n .edit-post-sidebar input[type=\"radio\"]:focus,\n .editor-post-publish-panel input[type=\"checkbox\"]:focus,\n .editor-post-publish-panel input[type=\"radio\"]:focus,\n .components-popover input[type=\"checkbox\"]:focus,\n .components-popover input[type=\"radio\"]:focus,\n .components-modal__frame input[type=\"checkbox\"]:focus,\n .components-modal__frame input[type=\"radio\"]:focus {\n border-color: #757575;\n box-shadow: 0 0 0 1px #757575; }\n .edit-post-header input[type=\"checkbox\"]:checked,\n .edit-post-header input[type=\"radio\"]:checked,\n .edit-post-visual-editor input[type=\"checkbox\"]:checked,\n .edit-post-visual-editor input[type=\"radio\"]:checked,\n .edit-post-text-editor input[type=\"checkbox\"]:checked,\n .edit-post-text-editor input[type=\"radio\"]:checked,\n .edit-post-sidebar input[type=\"checkbox\"]:checked,\n .edit-post-sidebar input[type=\"radio\"]:checked,\n .editor-post-publish-panel input[type=\"checkbox\"]:checked,\n .editor-post-publish-panel input[type=\"radio\"]:checked,\n .components-popover input[type=\"checkbox\"]:checked,\n .components-popover input[type=\"radio\"]:checked,\n .components-modal__frame input[type=\"checkbox\"]:checked,\n .components-modal__frame input[type=\"radio\"]:checked {\n background: #11a0d2;\n border-color: #11a0d2; }\n body.admin-color-sunrise .edit-post-header input[type=\"checkbox\"]:checked, body.admin-color-sunrise .edit-post-header input[type=\"radio\"]:checked, body.admin-color-sunrise .edit-post-visual-editor input[type=\"checkbox\"]:checked, body.admin-color-sunrise .edit-post-visual-editor input[type=\"radio\"]:checked, body.admin-color-sunrise .edit-post-text-editor input[type=\"checkbox\"]:checked, body.admin-color-sunrise .edit-post-text-editor input[type=\"radio\"]:checked, body.admin-color-sunrise .edit-post-sidebar input[type=\"checkbox\"]:checked, body.admin-color-sunrise .edit-post-sidebar input[type=\"radio\"]:checked, body.admin-color-sunrise .editor-post-publish-panel input[type=\"checkbox\"]:checked, body.admin-color-sunrise .editor-post-publish-panel input[type=\"radio\"]:checked, body.admin-color-sunrise .components-popover input[type=\"checkbox\"]:checked, body.admin-color-sunrise .components-popover input[type=\"radio\"]:checked, body.admin-color-sunrise .components-modal__frame input[type=\"checkbox\"]:checked, body.admin-color-sunrise .components-modal__frame input[type=\"radio\"]:checked {\n background: #c8b03c;\n border-color: #c8b03c; }\n body.admin-color-ocean .edit-post-header input[type=\"checkbox\"]:checked, body.admin-color-ocean .edit-post-header input[type=\"radio\"]:checked, body.admin-color-ocean .edit-post-visual-editor input[type=\"checkbox\"]:checked, body.admin-color-ocean .edit-post-visual-editor input[type=\"radio\"]:checked, body.admin-color-ocean .edit-post-text-editor input[type=\"checkbox\"]:checked, body.admin-color-ocean .edit-post-text-editor input[type=\"radio\"]:checked, body.admin-color-ocean .edit-post-sidebar input[type=\"checkbox\"]:checked, body.admin-color-ocean .edit-post-sidebar input[type=\"radio\"]:checked, body.admin-color-ocean .editor-post-publish-panel input[type=\"checkbox\"]:checked, body.admin-color-ocean .editor-post-publish-panel input[type=\"radio\"]:checked, body.admin-color-ocean .components-popover input[type=\"checkbox\"]:checked, body.admin-color-ocean .components-popover input[type=\"radio\"]:checked, body.admin-color-ocean .components-modal__frame input[type=\"checkbox\"]:checked, body.admin-color-ocean .components-modal__frame input[type=\"radio\"]:checked {\n background: #a3b9a2;\n border-color: #a3b9a2; }\n body.admin-color-midnight .edit-post-header input[type=\"checkbox\"]:checked, body.admin-color-midnight .edit-post-header input[type=\"radio\"]:checked, body.admin-color-midnight .edit-post-visual-editor input[type=\"checkbox\"]:checked, body.admin-color-midnight .edit-post-visual-editor input[type=\"radio\"]:checked, body.admin-color-midnight .edit-post-text-editor input[type=\"checkbox\"]:checked, body.admin-color-midnight .edit-post-text-editor input[type=\"radio\"]:checked, body.admin-color-midnight .edit-post-sidebar input[type=\"checkbox\"]:checked, body.admin-color-midnight .edit-post-sidebar input[type=\"radio\"]:checked, body.admin-color-midnight .editor-post-publish-panel input[type=\"checkbox\"]:checked, body.admin-color-midnight .editor-post-publish-panel input[type=\"radio\"]:checked, body.admin-color-midnight .components-popover input[type=\"checkbox\"]:checked, body.admin-color-midnight .components-popover input[type=\"radio\"]:checked, body.admin-color-midnight .components-modal__frame input[type=\"checkbox\"]:checked, body.admin-color-midnight .components-modal__frame input[type=\"radio\"]:checked {\n background: #77a6b9;\n border-color: #77a6b9; }\n body.admin-color-ectoplasm .edit-post-header input[type=\"checkbox\"]:checked, body.admin-color-ectoplasm .edit-post-header input[type=\"radio\"]:checked, body.admin-color-ectoplasm .edit-post-visual-editor input[type=\"checkbox\"]:checked, body.admin-color-ectoplasm .edit-post-visual-editor input[type=\"radio\"]:checked, body.admin-color-ectoplasm .edit-post-text-editor input[type=\"checkbox\"]:checked, body.admin-color-ectoplasm .edit-post-text-editor input[type=\"radio\"]:checked, body.admin-color-ectoplasm .edit-post-sidebar input[type=\"checkbox\"]:checked, body.admin-color-ectoplasm .edit-post-sidebar input[type=\"radio\"]:checked, body.admin-color-ectoplasm .editor-post-publish-panel input[type=\"checkbox\"]:checked, body.admin-color-ectoplasm .editor-post-publish-panel input[type=\"radio\"]:checked, body.admin-color-ectoplasm .components-popover input[type=\"checkbox\"]:checked, body.admin-color-ectoplasm .components-popover input[type=\"radio\"]:checked, body.admin-color-ectoplasm .components-modal__frame input[type=\"checkbox\"]:checked, body.admin-color-ectoplasm .components-modal__frame input[type=\"radio\"]:checked {\n background: #a7b656;\n border-color: #a7b656; }\n body.admin-color-coffee .edit-post-header input[type=\"checkbox\"]:checked, body.admin-color-coffee .edit-post-header input[type=\"radio\"]:checked, body.admin-color-coffee .edit-post-visual-editor input[type=\"checkbox\"]:checked, body.admin-color-coffee .edit-post-visual-editor input[type=\"radio\"]:checked, body.admin-color-coffee .edit-post-text-editor input[type=\"checkbox\"]:checked, body.admin-color-coffee .edit-post-text-editor input[type=\"radio\"]:checked, body.admin-color-coffee .edit-post-sidebar input[type=\"checkbox\"]:checked, body.admin-color-coffee .edit-post-sidebar input[type=\"radio\"]:checked, body.admin-color-coffee .editor-post-publish-panel input[type=\"checkbox\"]:checked, body.admin-color-coffee .editor-post-publish-panel input[type=\"radio\"]:checked, body.admin-color-coffee .components-popover input[type=\"checkbox\"]:checked, body.admin-color-coffee .components-popover input[type=\"radio\"]:checked, body.admin-color-coffee .components-modal__frame input[type=\"checkbox\"]:checked, body.admin-color-coffee .components-modal__frame input[type=\"radio\"]:checked {\n background: #c2a68c;\n border-color: #c2a68c; }\n body.admin-color-blue .edit-post-header input[type=\"checkbox\"]:checked, body.admin-color-blue .edit-post-header input[type=\"radio\"]:checked, body.admin-color-blue .edit-post-visual-editor input[type=\"checkbox\"]:checked, body.admin-color-blue .edit-post-visual-editor input[type=\"radio\"]:checked, body.admin-color-blue .edit-post-text-editor input[type=\"checkbox\"]:checked, body.admin-color-blue .edit-post-text-editor input[type=\"radio\"]:checked, body.admin-color-blue .edit-post-sidebar input[type=\"checkbox\"]:checked, body.admin-color-blue .edit-post-sidebar input[type=\"radio\"]:checked, body.admin-color-blue .editor-post-publish-panel input[type=\"checkbox\"]:checked, body.admin-color-blue .editor-post-publish-panel input[type=\"radio\"]:checked, body.admin-color-blue .components-popover input[type=\"checkbox\"]:checked, body.admin-color-blue .components-popover input[type=\"radio\"]:checked, body.admin-color-blue .components-modal__frame input[type=\"checkbox\"]:checked, body.admin-color-blue .components-modal__frame input[type=\"radio\"]:checked {\n background: #82b4cb;\n border-color: #82b4cb; }\n body.admin-color-light .edit-post-header input[type=\"checkbox\"]:checked, body.admin-color-light .edit-post-header input[type=\"radio\"]:checked, body.admin-color-light .edit-post-visual-editor input[type=\"checkbox\"]:checked, body.admin-color-light .edit-post-visual-editor input[type=\"radio\"]:checked, body.admin-color-light .edit-post-text-editor input[type=\"checkbox\"]:checked, body.admin-color-light .edit-post-text-editor input[type=\"radio\"]:checked, body.admin-color-light .edit-post-sidebar input[type=\"checkbox\"]:checked, body.admin-color-light .edit-post-sidebar input[type=\"radio\"]:checked, body.admin-color-light .editor-post-publish-panel input[type=\"checkbox\"]:checked, body.admin-color-light .editor-post-publish-panel input[type=\"radio\"]:checked, body.admin-color-light .components-popover input[type=\"checkbox\"]:checked, body.admin-color-light .components-popover input[type=\"radio\"]:checked, body.admin-color-light .components-modal__frame input[type=\"checkbox\"]:checked, body.admin-color-light .components-modal__frame input[type=\"radio\"]:checked {\n background: #11a0d2;\n border-color: #11a0d2; }\n .edit-post-header input[type=\"checkbox\"]:checked:focus,\n .edit-post-header input[type=\"radio\"]:checked:focus,\n .edit-post-visual-editor input[type=\"checkbox\"]:checked:focus,\n .edit-post-visual-editor input[type=\"radio\"]:checked:focus,\n .edit-post-text-editor input[type=\"checkbox\"]:checked:focus,\n .edit-post-text-editor input[type=\"radio\"]:checked:focus,\n .edit-post-sidebar input[type=\"checkbox\"]:checked:focus,\n .edit-post-sidebar input[type=\"radio\"]:checked:focus,\n .editor-post-publish-panel input[type=\"checkbox\"]:checked:focus,\n .editor-post-publish-panel input[type=\"radio\"]:checked:focus,\n .components-popover input[type=\"checkbox\"]:checked:focus,\n .components-popover input[type=\"radio\"]:checked:focus,\n .components-modal__frame input[type=\"checkbox\"]:checked:focus,\n .components-modal__frame input[type=\"radio\"]:checked:focus {\n box-shadow: 0 0 0 1.5px #757575; }\n .edit-post-header input[type=\"checkbox\"],\n .edit-post-visual-editor input[type=\"checkbox\"],\n .edit-post-text-editor input[type=\"checkbox\"],\n .edit-post-sidebar input[type=\"checkbox\"],\n .editor-post-publish-panel input[type=\"checkbox\"],\n .components-popover input[type=\"checkbox\"],\n .components-modal__frame input[type=\"checkbox\"] {\n border-radius: 2px; }\n .edit-post-header input[type=\"checkbox\"]:checked::before, .edit-post-header input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .edit-post-visual-editor input[type=\"checkbox\"]:checked::before,\n .edit-post-visual-editor input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .edit-post-text-editor input[type=\"checkbox\"]:checked::before,\n .edit-post-text-editor input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .edit-post-sidebar input[type=\"checkbox\"]:checked::before,\n .edit-post-sidebar input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .editor-post-publish-panel input[type=\"checkbox\"]:checked::before,\n .editor-post-publish-panel input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .components-popover input[type=\"checkbox\"]:checked::before,\n .components-popover input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .components-modal__frame input[type=\"checkbox\"]:checked::before,\n .components-modal__frame input[type=\"checkbox\"][aria-checked=\"mixed\"]::before {\n margin: -3px -5px;\n color: #fff; }\n @media (min-width: 782px) {\n .edit-post-header input[type=\"checkbox\"]:checked::before, .edit-post-header input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .edit-post-visual-editor input[type=\"checkbox\"]:checked::before,\n .edit-post-visual-editor input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .edit-post-text-editor input[type=\"checkbox\"]:checked::before,\n .edit-post-text-editor input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .edit-post-sidebar input[type=\"checkbox\"]:checked::before,\n .edit-post-sidebar input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .editor-post-publish-panel input[type=\"checkbox\"]:checked::before,\n .editor-post-publish-panel input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .components-popover input[type=\"checkbox\"]:checked::before,\n .components-popover input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .components-modal__frame input[type=\"checkbox\"]:checked::before,\n .components-modal__frame input[type=\"checkbox\"][aria-checked=\"mixed\"]::before {\n margin: -4px 0 0 -5px; } }\n .edit-post-header input[type=\"checkbox\"][aria-checked=\"mixed\"],\n .edit-post-visual-editor input[type=\"checkbox\"][aria-checked=\"mixed\"],\n .edit-post-text-editor input[type=\"checkbox\"][aria-checked=\"mixed\"],\n .edit-post-sidebar input[type=\"checkbox\"][aria-checked=\"mixed\"],\n .editor-post-publish-panel input[type=\"checkbox\"][aria-checked=\"mixed\"],\n .components-popover input[type=\"checkbox\"][aria-checked=\"mixed\"],\n .components-modal__frame input[type=\"checkbox\"][aria-checked=\"mixed\"] {\n background: #11a0d2;\n border-color: #11a0d2; }\n body.admin-color-sunrise .edit-post-header input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-sunrise .edit-post-visual-editor input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-sunrise .edit-post-text-editor input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-sunrise .edit-post-sidebar input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-sunrise .editor-post-publish-panel input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-sunrise .components-popover input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-sunrise .components-modal__frame input[type=\"checkbox\"][aria-checked=\"mixed\"] {\n background: #c8b03c;\n border-color: #c8b03c; }\n body.admin-color-ocean .edit-post-header input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-ocean .edit-post-visual-editor input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-ocean .edit-post-text-editor input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-ocean .edit-post-sidebar input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-ocean .editor-post-publish-panel input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-ocean .components-popover input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-ocean .components-modal__frame input[type=\"checkbox\"][aria-checked=\"mixed\"] {\n background: #a3b9a2;\n border-color: #a3b9a2; }\n body.admin-color-midnight .edit-post-header input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-midnight .edit-post-visual-editor input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-midnight .edit-post-text-editor input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-midnight .edit-post-sidebar input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-midnight .editor-post-publish-panel input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-midnight .components-popover input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-midnight .components-modal__frame input[type=\"checkbox\"][aria-checked=\"mixed\"] {\n background: #77a6b9;\n border-color: #77a6b9; }\n body.admin-color-ectoplasm .edit-post-header input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-ectoplasm .edit-post-visual-editor input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-ectoplasm .edit-post-text-editor input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-ectoplasm .edit-post-sidebar input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-ectoplasm .editor-post-publish-panel input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-ectoplasm .components-popover input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-ectoplasm .components-modal__frame input[type=\"checkbox\"][aria-checked=\"mixed\"] {\n background: #a7b656;\n border-color: #a7b656; }\n body.admin-color-coffee .edit-post-header input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-coffee .edit-post-visual-editor input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-coffee .edit-post-text-editor input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-coffee .edit-post-sidebar input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-coffee .editor-post-publish-panel input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-coffee .components-popover input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-coffee .components-modal__frame input[type=\"checkbox\"][aria-checked=\"mixed\"] {\n background: #c2a68c;\n border-color: #c2a68c; }\n body.admin-color-blue .edit-post-header input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-blue .edit-post-visual-editor input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-blue .edit-post-text-editor input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-blue .edit-post-sidebar input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-blue .editor-post-publish-panel input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-blue .components-popover input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-blue .components-modal__frame input[type=\"checkbox\"][aria-checked=\"mixed\"] {\n background: #82b4cb;\n border-color: #82b4cb; }\n body.admin-color-light .edit-post-header input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-light .edit-post-visual-editor input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-light .edit-post-text-editor input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-light .edit-post-sidebar input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-light .editor-post-publish-panel input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-light .components-popover input[type=\"checkbox\"][aria-checked=\"mixed\"], body.admin-color-light .components-modal__frame input[type=\"checkbox\"][aria-checked=\"mixed\"] {\n background: #11a0d2;\n border-color: #11a0d2; }\n .edit-post-header input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .edit-post-visual-editor input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .edit-post-text-editor input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .edit-post-sidebar input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .editor-post-publish-panel input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .components-popover input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .components-modal__frame input[type=\"checkbox\"][aria-checked=\"mixed\"]::before {\n content: \"\\f460\";\n float: left;\n display: inline-block;\n vertical-align: middle;\n width: 16px;\n /* stylelint-disable */\n font: normal 30px/1 dashicons;\n /* stylelint-enable */\n speak: none;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale; }\n @media (min-width: 782px) {\n .edit-post-header input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .edit-post-visual-editor input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .edit-post-text-editor input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .edit-post-sidebar input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .editor-post-publish-panel input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .components-popover input[type=\"checkbox\"][aria-checked=\"mixed\"]::before,\n .components-modal__frame input[type=\"checkbox\"][aria-checked=\"mixed\"]::before {\n float: none;\n font-size: 21px; } }\n .edit-post-header input[type=\"checkbox\"][aria-checked=\"mixed\"]:focus,\n .edit-post-visual-editor input[type=\"checkbox\"][aria-checked=\"mixed\"]:focus,\n .edit-post-text-editor input[type=\"checkbox\"][aria-checked=\"mixed\"]:focus,\n .edit-post-sidebar input[type=\"checkbox\"][aria-checked=\"mixed\"]:focus,\n .editor-post-publish-panel input[type=\"checkbox\"][aria-checked=\"mixed\"]:focus,\n .components-popover input[type=\"checkbox\"][aria-checked=\"mixed\"]:focus,\n .components-modal__frame input[type=\"checkbox\"][aria-checked=\"mixed\"]:focus {\n box-shadow: 0 0 0 1.5px #555d66; }\n .edit-post-header input[type=\"radio\"],\n .edit-post-visual-editor input[type=\"radio\"],\n .edit-post-text-editor input[type=\"radio\"],\n .edit-post-sidebar input[type=\"radio\"],\n .editor-post-publish-panel input[type=\"radio\"],\n .components-popover input[type=\"radio\"],\n .components-modal__frame input[type=\"radio\"] {\n border-radius: 50%; }\n .edit-post-header input[type=\"radio\"]:checked::before,\n .edit-post-visual-editor input[type=\"radio\"]:checked::before,\n .edit-post-text-editor input[type=\"radio\"]:checked::before,\n .edit-post-sidebar input[type=\"radio\"]:checked::before,\n .editor-post-publish-panel input[type=\"radio\"]:checked::before,\n .components-popover input[type=\"radio\"]:checked::before,\n .components-modal__frame input[type=\"radio\"]:checked::before {\n width: 6px;\n height: 6px;\n margin: 6px 0 0 6px;\n background-color: #fff; }\n @media (min-width: 782px) {\n .edit-post-header input[type=\"radio\"]:checked::before,\n .edit-post-visual-editor input[type=\"radio\"]:checked::before,\n .edit-post-text-editor input[type=\"radio\"]:checked::before,\n .edit-post-sidebar input[type=\"radio\"]:checked::before,\n .editor-post-publish-panel input[type=\"radio\"]:checked::before,\n .components-popover input[type=\"radio\"]:checked::before,\n .components-modal__frame input[type=\"radio\"]:checked::before {\n margin: 3px 0 0 3px; } }\n .edit-post-header input::-webkit-input-placeholder,\n .edit-post-header textarea::-webkit-input-placeholder,\n .edit-post-visual-editor input::-webkit-input-placeholder,\n .edit-post-visual-editor textarea::-webkit-input-placeholder,\n .edit-post-text-editor input::-webkit-input-placeholder,\n .edit-post-text-editor textarea::-webkit-input-placeholder,\n .edit-post-sidebar input::-webkit-input-placeholder,\n .edit-post-sidebar textarea::-webkit-input-placeholder,\n .editor-post-publish-panel input::-webkit-input-placeholder,\n .editor-post-publish-panel textarea::-webkit-input-placeholder,\n .components-popover input::-webkit-input-placeholder,\n .components-popover textarea::-webkit-input-placeholder,\n .components-modal__frame input::-webkit-input-placeholder,\n .components-modal__frame textarea::-webkit-input-placeholder {\n color: rgba(14, 28, 46, 0.62); }\n .edit-post-header input::-moz-placeholder,\n .edit-post-header textarea::-moz-placeholder,\n .edit-post-visual-editor input::-moz-placeholder,\n .edit-post-visual-editor textarea::-moz-placeholder,\n .edit-post-text-editor input::-moz-placeholder,\n .edit-post-text-editor textarea::-moz-placeholder,\n .edit-post-sidebar input::-moz-placeholder,\n .edit-post-sidebar textarea::-moz-placeholder,\n .editor-post-publish-panel input::-moz-placeholder,\n .editor-post-publish-panel textarea::-moz-placeholder,\n .components-popover input::-moz-placeholder,\n .components-popover textarea::-moz-placeholder,\n .components-modal__frame input::-moz-placeholder,\n .components-modal__frame textarea::-moz-placeholder {\n opacity: 1;\n color: rgba(14, 28, 46, 0.62); }\n .edit-post-header input:-ms-input-placeholder,\n .edit-post-header textarea:-ms-input-placeholder,\n .edit-post-visual-editor input:-ms-input-placeholder,\n .edit-post-visual-editor textarea:-ms-input-placeholder,\n .edit-post-text-editor input:-ms-input-placeholder,\n .edit-post-text-editor textarea:-ms-input-placeholder,\n .edit-post-sidebar input:-ms-input-placeholder,\n .edit-post-sidebar textarea:-ms-input-placeholder,\n .editor-post-publish-panel input:-ms-input-placeholder,\n .editor-post-publish-panel textarea:-ms-input-placeholder,\n .components-popover input:-ms-input-placeholder,\n .components-popover textarea:-ms-input-placeholder,\n .components-modal__frame input:-ms-input-placeholder,\n .components-modal__frame textarea:-ms-input-placeholder {\n color: rgba(14, 28, 46, 0.62); }\n .is-dark-theme .edit-post-header input::-webkit-input-placeholder, .is-dark-theme\n .edit-post-header textarea::-webkit-input-placeholder, .is-dark-theme\n .edit-post-visual-editor input::-webkit-input-placeholder, .is-dark-theme\n .edit-post-visual-editor textarea::-webkit-input-placeholder, .is-dark-theme\n .edit-post-text-editor input::-webkit-input-placeholder, .is-dark-theme\n .edit-post-text-editor textarea::-webkit-input-placeholder, .is-dark-theme\n .edit-post-sidebar input::-webkit-input-placeholder, .is-dark-theme\n .edit-post-sidebar textarea::-webkit-input-placeholder, .is-dark-theme\n .editor-post-publish-panel input::-webkit-input-placeholder, .is-dark-theme\n .editor-post-publish-panel textarea::-webkit-input-placeholder, .is-dark-theme\n .components-popover input::-webkit-input-placeholder, .is-dark-theme\n .components-popover textarea::-webkit-input-placeholder, .is-dark-theme\n .components-modal__frame input::-webkit-input-placeholder, .is-dark-theme\n .components-modal__frame textarea::-webkit-input-placeholder {\n color: rgba(255, 255, 255, 0.65); }\n .is-dark-theme .edit-post-header input::-moz-placeholder, .is-dark-theme\n .edit-post-header textarea::-moz-placeholder, .is-dark-theme\n .edit-post-visual-editor input::-moz-placeholder, .is-dark-theme\n .edit-post-visual-editor textarea::-moz-placeholder, .is-dark-theme\n .edit-post-text-editor input::-moz-placeholder, .is-dark-theme\n .edit-post-text-editor textarea::-moz-placeholder, .is-dark-theme\n .edit-post-sidebar input::-moz-placeholder, .is-dark-theme\n .edit-post-sidebar textarea::-moz-placeholder, .is-dark-theme\n .editor-post-publish-panel input::-moz-placeholder, .is-dark-theme\n .editor-post-publish-panel textarea::-moz-placeholder, .is-dark-theme\n .components-popover input::-moz-placeholder, .is-dark-theme\n .components-popover textarea::-moz-placeholder, .is-dark-theme\n .components-modal__frame input::-moz-placeholder, .is-dark-theme\n .components-modal__frame textarea::-moz-placeholder {\n opacity: 1;\n color: rgba(255, 255, 255, 0.65); }\n .is-dark-theme .edit-post-header input:-ms-input-placeholder, .is-dark-theme\n .edit-post-header textarea:-ms-input-placeholder, .is-dark-theme\n .edit-post-visual-editor input:-ms-input-placeholder, .is-dark-theme\n .edit-post-visual-editor textarea:-ms-input-placeholder, .is-dark-theme\n .edit-post-text-editor input:-ms-input-placeholder, .is-dark-theme\n .edit-post-text-editor textarea:-ms-input-placeholder, .is-dark-theme\n .edit-post-sidebar input:-ms-input-placeholder, .is-dark-theme\n .edit-post-sidebar textarea:-ms-input-placeholder, .is-dark-theme\n .editor-post-publish-panel input:-ms-input-placeholder, .is-dark-theme\n .editor-post-publish-panel textarea:-ms-input-placeholder, .is-dark-theme\n .components-popover input:-ms-input-placeholder, .is-dark-theme\n .components-popover textarea:-ms-input-placeholder, .is-dark-theme\n .components-modal__frame input:-ms-input-placeholder, .is-dark-theme\n .components-modal__frame textarea:-ms-input-placeholder {\n color: rgba(255, 255, 255, 0.65); }\n\n@media (min-width: 600px) {\n .block-editor__container {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n min-height: calc(100vh - 46px); } }\n\n@media (min-width: 782px) {\n .block-editor__container {\n min-height: calc(100vh - 32px); }\n body.is-fullscreen-mode .block-editor__container {\n min-height: 100vh; } }\n\n.block-editor__container img {\n max-width: 100%;\n height: auto; }\n\n.block-editor__container iframe {\n width: 100%; }\n\n.block-editor__container .components-navigate-regions {\n height: 100%; }\n\n.wp-block {\n max-width: 580px; }\n .wp-block[data-align=\"wide\"] {\n max-width: 1100px; }\n .wp-block[data-align=\"full\"] {\n max-width: none; }\n","/**\n * Colors\n */\n/**\n * Breakpoints & Media Queries\n */\n/**\n * Colors\n */\n/**\n * Fonts & basic variables.\n */\n/**\n * Grid System.\n * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/\n */\n/**\n * Dimensions.\n */\n/**\n * Shadows.\n */\n/**\n * Editor widths.\n */\n/**\n * Block UI.\n */\n/**\n * Border radii.\n */\n/**\n * Breakpoint mixins\n */\n/**\n * Long content fade mixin\n *\n * Creates a fading overlay to signify that the content is longer\n * than the space allows.\n */\n/**\n * Focus styles.\n */\n/**\n * Applies editor left position to the selector passed as argument\n */\n/**\n * Styles that are reused verbatim in a few places\n */\n/**\n * Allows users to opt-out of animations via OS-level preferences.\n */\n/**\n * Reset default styles for JavaScript UI based pages.\n * This is a WP-admin agnostic reset\n */\n/**\n * Reset the WP Admin page styles for Gutenberg-like pages.\n */\n.block-editor-format-toolbar__image-container-content {\n display: flex; }\n .block-editor-format-toolbar__image-container-content .components-button {\n align-self: flex-end;\n height: 30px;\n margin-bottom: 8px;\n margin-right: 8px;\n padding: 0 6px; }\n\n.block-editor-format-toolbar__image-container-value {\n margin: 7px;\n flex-grow: 1;\n flex-shrink: 1;\n white-space: nowrap;\n min-width: 150px;\n max-width: 500px; }\n .block-editor-format-toolbar__image-container-value.components-base-control .components-base-control__field {\n margin-bottom: 0; }\n .block-editor-format-toolbar__image-container-value.components-base-control .components-base-control__label {\n display: block; }\n\n.block-editor-format-toolbar__link-container-content {\n display: flex; }\n\n.block-editor-format-toolbar__link-container-value {\n margin: 7px;\n flex-grow: 1;\n flex-shrink: 1;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n min-width: 150px;\n max-width: 500px; }\n .block-editor-format-toolbar__link-container-value.has-invalid-link {\n color: #d94f4f; }\n\n.components-inline-color__indicator {\n position: absolute;\n background: #000;\n height: 3px;\n width: 20px;\n bottom: 6px;\n left: auto;\n right: auto;\n margin: 0 5px; }\n\n.components-inline-color-popover .components-popover__content {\n padding: 20px 18px; }\n .components-inline-color-popover .components-popover__content .components-color-palette {\n margin-top: 0.6rem; }\n .components-inline-color-popover .components-popover__content .components-base-control__title {\n display: block;\n margin-bottom: 16px;\n font-weight: 600;\n color: #191e23; }\n .components-inline-color-popover .components-popover__content .component-color-indicator {\n vertical-align: text-bottom; }\n\n.format-library-text-color-button {\n position: relative; }\n\n.format-library-text-color-button__indicator {\n height: 4px;\n width: 20px;\n position: absolute;\n bottom: 10px;\n left: 8px; }\n","/**\n * Colors\n */\n/**\n * Breakpoints & Media Queries\n */\n/**\n * Colors\n */\n/**\n * Fonts & basic variables.\n */\n/**\n * Grid System.\n * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/\n */\n/**\n * Dimensions.\n */\n/**\n * Shadows.\n */\n/**\n * Editor widths.\n */\n/**\n * Block UI.\n */\n/**\n * Border radii.\n */\n/**\n * Breakpoint mixins\n */\n/**\n * Long content fade mixin\n *\n * Creates a fading overlay to signify that the content is longer\n * than the space allows.\n */\n/**\n * Focus styles.\n */\n/**\n * Applies editor left position to the selector passed as argument\n */\n/**\n * Styles that are reused verbatim in a few places\n */\n/**\n * Allows users to opt-out of animations via OS-level preferences.\n */\n/**\n * Reset default styles for JavaScript UI based pages.\n * This is a WP-admin agnostic reset\n */\n/**\n * Reset the WP Admin page styles for Gutenberg-like pages.\n */\n.list-reusable-blocks-import-dropdown__content .components-popover__content {\n padding: 10px; }\n\n.list-reusable-blocks-import-form__label {\n display: block;\n margin-bottom: 10px; }\n\n.list-reusable-blocks-import-form__button {\n margin-top: 20px;\n float: right; }\n\n.list-reusable-blocks-import-form .components-notice__content {\n margin: 0; }\n\n.list-reusable-blocks__container {\n display: inline-flex;\n align-items: center;\n position: relative;\n top: -3px; }\n .list-reusable-blocks__container .components-button {\n height: 26px; }\n",".gutenberg__editor .block-editor-block-types-list__list-item{width:30%}.gutenberg__editor .components-drop-zone__provider,.gutenberg__editor .components-navigate-regions{height:auto;position:static}.gutenberg__editor .edit-post-layout__content{position:static;margin-left:0;min-height:calc(250px - 56px);height:auto;overflow-y:auto}.gutenberg__editor .edit-post-layout{height:auto;position:relative;top:0;left:0}.gutenberg__editor .edit-post-pinned-plugins{display:flex}.gutenberg__editor .edit-post-visual-editor{padding-top:25px;padding-bottom:75px;height:auto}.gutenberg__editor .block-editor-block-breadcrumb .components-button.is-tertiary{padding:0 8px}.gutenberg__editor .components-button.has-icon{padding:0}@media (min-width: 600px){.gutenberg__editor .edit-post-header{position:static;top:0}.gutenberg__editor .edit-post-layout{padding-top:0}}.gutenberg__editor.fixed-height .components-drop-zone__provider,.gutenberg__editor.fixed-height .components-navigate-regions{height:100%;position:absolute;top:0;bottom:0;right:0;left:0}.gutenberg__editor.fixed-height .edit-post-layout__content{height:calc(100% - 56px)}.gutenberg__editor.fixed-height .edit-post-layout{height:100%}.gutenberg__editor.fixed-height .editor-writing-flow{height:auto}.gutenberg__content .wp-block-columns{display:flex}.laraberg__editor{width:auto;overflow:hidden;border:1px solid #e2e4e7;box-sizing:border-box;min-height:400px;height:auto;position:relative;top:0;left:0;bottom:0;right:0}.laraberg__editor *:focus{outline:none}.laraberg__editor .components-notice-list{position:-webkit-sticky;position:sticky;top:0;z-index:100}.laraberg__editor .edit-post-header{z-index:100;box-sizing:border-box;position:-webkit-sticky;position:sticky}.laraberg__editor .edit-post-sidebar .edit-post-sidebar__panel-tabs ul{list-style:none;margin:0;padding:0}.laraberg__editor .editor-media-placeholder__media-library-button{margin-bottom:0.5rem}.laraberg__editor .components-placeholder{width:auto}.laraberg__editor .screen-reader-text,.laraberg__editor .screen-reader-text span,.laraberg__editor .ui-helper-hidden-accessible{border:0;clip:rect(1px, 1px, 1px, 1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal !important}.laraberg__editor input[type=\"checkbox\"],.laraberg__editor input[type=\"color\"],.laraberg__editor input[type=\"date\"],.laraberg__editor input[type=\"datetime-local\"],.laraberg__editor input[type=\"datetime\"],.laraberg__editor input[type=\"email\"],.laraberg__editor input[type=\"month\"],.laraberg__editor input[type=\"number\"],.laraberg__editor input[type=\"password\"],.laraberg__editor input[type=\"radio\"],.laraberg__editor input[type=\"search\"],.laraberg__editor input[type=\"tel\"],.laraberg__editor input[type=\"text\"],.laraberg__editor input[type=\"time\"],.laraberg__editor input[type=\"url\"],.laraberg__editor input[type=\"week\"],.laraberg__editor select,.laraberg__editor textarea{border:1px solid #ddd;box-shadow:inset 0 1px 2px rgba(0,0,0,0.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out}.laraberg__editor .editor-inserter__manage-reusable-blocks{display:none}.laraberg__editor iframe{border:0;max-width:100%}.laraberg__editor .laraberg-sidebar-content{padding:15px;margin:unset}.gutenberg__content .alignleft{float:left;margin-right:1rem}.gutenberg__content .alignright{float:right;margin-left:1rem}.gutenberg__content h1,.gutenberg__content h2,.gutenberg__content h3,.gutenberg__content h4,.gutenberg__content h5,.gutenberg__content h6{margin-bottom:24px}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper iframe{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper::before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper::before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper::before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper::before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper::before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper::before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper::before{content:\"\";display:block;padding-top:50%}.laraberg-sidebar{display:none}.wp-block-html .block-editor-plain-text{width:100%}\n"],"sourceRoot":""}
\ No newline at end of file
diff --git a/public/js/laraberg.js b/public/js/laraberg.js
index c86e412a..79fae940 100644
--- a/public/js/laraberg.js
+++ b/public/js/laraberg.js
@@ -1,4 +1,4 @@
-!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=1034)}([function(e,t,n){"use strict";n.r(t),n.d(t,"setLocaleData",(function(){return _})),n.d(t,"__",(function(){return A})),n.d(t,"_x",(function(){return C})),n.d(t,"_n",(function(){return k})),n.d(t,"_nx",(function(){return w})),n.d(t,"isRTL",(function(){return E})),n.d(t,"sprintf",(function(){return I}));var r,o,a,i,c=n(6);r={"(":9,"!":8,"*":7,"/":7,"%":7,"+":6,"-":6,"<":5,"<=":5,">":5,">=":5,"==":4,"!=":4,"&&":3,"||":2,"?":1,"?:":1},o=["(","?"],a={")":["("],":":["?","?:"]},i=/<=|>=|==|!=|&&|\|\||\?:|\(|!|\*|\/|%|\+|-|<|>|\?|\)|:/;var s={"!":function(e){return!e},"*":function(e,t){return e*t},"/":function(e,t){return e/t},"%":function(e,t){return e%t},"+":function(e,t){return e+t},"-":function(e,t){return e-t},"<":function(e,t){return e )\s*$/.test(f)&&/^\s*(\n|<\/p>)/.test(p)))return e(t,n);if(a.isMatch&&!a.isMatch(c.shortcode.attrs))return e(t,d,[].concat(Object(i.a)(r),[a.blockName]));var h=Object(s.mapValues)(Object(s.pickBy)(a.attributes,(function(e){return e.shortcode})),(function(e){return e.shortcode(c.shortcode.attrs,c)})),b=Ue(a.blockName,Hn(jr({},De(a.blockName),{attributes:a.attributes}),c.shortcode.content,h));return[f,b].concat(Object(i.a)(e(t.substr(n))))}return[t]},Cr=window.Node.COMMENT_NODE,kr=function(e){e.nodeType===Cr&&Object(ie.n)(e)};function wr(e,t){return e.every((function(e){return function(e,t){if(Jn(e))return!0;if(!t)return!1;var n=e.nodeName.toLowerCase();return[["ul","li","ol"],["h1","h2","h3","h4","h5","h6"]].some((function(e){return 0===Object(s.difference)([n,t],e).length}))}(e,t)&&wr(Array.from(e.children),t)}))}function Er(e){return"BR"===e.nodeName&&e.previousSibling&&"BR"===e.previousSibling.nodeName}var Ir=function(e,t){if("SPAN"===e.nodeName&&e.style){var n=e.style,r=n.fontWeight,o=n.fontStyle,a=n.textDecorationLine,i=n.textDecoration,c=n.verticalAlign;"bold"!==r&&"700"!==r||Object(ie.r)(t.createElement("strong"),e),"italic"===o&&Object(ie.r)(t.createElement("em"),e),("line-through"===a||Object(s.includes)(i,"line-through"))&&Object(ie.r)(t.createElement("s"),e),"super"===c?Object(ie.r)(t.createElement("sup"),e):"sub"===c&&Object(ie.r)(t.createElement("sub"),e)}else"B"===e.nodeName?e=Object(ie.p)(e,"strong"):"I"===e.nodeName?e=Object(ie.p)(e,"em"):"A"===e.nodeName&&(e.target&&"_blank"===e.target.toLowerCase()?e.rel="noreferrer noopener":(e.removeAttribute("target"),e.removeAttribute("rel")))},Sr=function(e){"SCRIPT"!==e.nodeName&&"NOSCRIPT"!==e.nodeName&&"TEMPLATE"!==e.nodeName&&"STYLE"!==e.nodeName||e.parentNode.removeChild(e)},Mr=window.parseInt;function Dr(e){return"OL"===e.nodeName||"UL"===e.nodeName}var Tr=function(e,t){if("P"===e.nodeName){var n=e.getAttribute("style");if(n&&-1!==n.indexOf("mso-list")){var r=/mso-list\s*:[^;]+level([0-9]+)/i.exec(n);if(r){var o=Mr(r[1],10)-1||0,a=e.previousElementSibling;if(!a||!Dr(a)){var i=e.textContent.trim().slice(0,1),c=/[1iIaA]/.test(i),s=t.createElement(c?"ol":"ul");c&&s.setAttribute("type",i),e.parentNode.insertBefore(s,e)}var l=e.previousElementSibling,u=l.nodeName,d=t.createElement("li"),f=l;for(e.removeChild(e.firstElementChild);e.firstChild;)d.appendChild(e.firstChild);for(;o--;)Dr(f=f.lastElementChild||f)&&(f=f.lastElementChild||f);Dr(f)||(f=f.appendChild(t.createElement(u))),f.appendChild(d),e.parentNode.removeChild(e)}}}},xr=n(34),Pr=window,Lr=Pr.atob,Br=Pr.File,Nr=function(e){if("IMG"===e.nodeName){if(0===e.src.indexOf("file:")&&(e.src=""),0===e.src.indexOf("data:")){var t,n=e.src.split(","),r=Object(tt.a)(n,2),o=r[0],a=r[1],i=o.slice(5).split(";"),c=Object(tt.a)(i,1)[0];if(!a||!c)return void(e.src="");try{t=Lr(a)}catch(t){return void(e.src="")}for(var s=new Uint8Array(t.length),l=0;l ")&&0===r.indexOf(" ")&&(c="INLINE")),"INLINE"===c)return Kr(r);var p=Ar(r),h=p.length>1;if("AUTO"===c&&!h&&function(e,t){var n=document.implementation.createHTMLDocument("");n.body.innerHTML=e;var r=Array.from(n.body.children);return!r.some(Er)&&wr(r,t)}(r,l))return Kr(r);var b=Object(s.filter)(Xe("from"),{type:"raw"}).map((function(e){return e.isMatch?e:Wr({},e,{isMatch:function(t){return e.selector&&t.matches(e.selector)}})})),m=qn("paste"),g=rr(b,m,!0),v=Object(s.compact)(Object(s.flatMap)(p,(function(e){if("string"!=typeof e)return e;var t=[Fr,Tr,Sr,mr,Nr,Ir,hr,kr,yr,gr];d||t.unshift(zr);var n=Wr({},g,{},m);return e=cr(e=ir(e,t,g),n),e=ir(e=fr(e),[Yr,Vr,Qr],g),Gr.log("Processed HTML piece:\n\n",e),function(e){var t=e.html,n=e.rawTransforms,r=document.implementation.createHTMLDocument("");return r.body.innerHTML=t,Array.from(r.body.children).map((function(e){var t=Je(n,(function(t){return(0,t.isMatch)(e)}));if(!t)return Ue("core/html",Hn("core/html",e.outerHTML));var r=t.transform,o=t.blockName;return r?r(e):Ue(o,Hn(o,e.outerHTML))}))}({html:e,rawTransforms:b})})));if("AUTO"===c&&1===v.length&&Pe(v[0].name,"__unstablePasteTextInline",!1)){var y=a.trim();if(""!==y&&-1===y.indexOf("\n"))return cr(Ut(v[0]),m)}return v}function Zr(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 Jr(){return Object(s.filter)(Xe("from"),{type:"raw"}).map((function(e){return e.isMatch?e:function(e){for(var t=1;t1&&void 0!==arguments[1]?arguments[1]:new Date,a=[],i=o()(r);for(t=0;t"),i=o.pop();e="";for(var c=0;c
";n.push([u,s.substr(l)+""]),e+=s.substr(0,l)+u}else e+=s}e+=i}var d="(?:table|thead|tfoot|caption|col|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|form|map|area|blockquote|address|math|style|p|h[1-6]|hr|fieldset|legend|section|article|aside|hgroup|header|footer|nav|figure|figcaption|details|menu|summary)";-1!==(e=a(e=(e=(e=(e=e.replace(/
\s*
/g,"\n\n")).replace(new RegExp("(<"+d+"[\\s/>])","g"),"\n\n$1")).replace(new RegExp("("+d+">)","g"),"$1\n\n")).replace(/\r\n|\r/g,"\n"),{"\n":" \x3c!-- wpnl --\x3e "})).indexOf("")),-1!==e.indexOf("")&&(e=(e=(e=e.replace(/(")).replace(/\s*(<\/?(?:param|embed)[^>]*>)\s*/g,"$1")),-1===e.indexOf("